From 36bc22e7a1af0550d1c573493fe9c83300b568fc Mon Sep 17 00:00:00 2001 From: Tobi Ajila Date: Fri, 10 Jan 2025 12:51:23 -0500 Subject: [PATCH] Use frameType info in JFR stackFrames Signed-off-by: Tobi Ajila --- runtime/vm/JFRConstantPoolTypes.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/runtime/vm/JFRConstantPoolTypes.hpp b/runtime/vm/JFRConstantPoolTypes.hpp index 8e5ca15e942..6812ed41336 100644 --- a/runtime/vm/JFRConstantPoolTypes.hpp +++ b/runtime/vm/JFRConstantPoolTypes.hpp @@ -503,7 +503,7 @@ class VM_JFRConstantPoolTypes { goto skipFrame; } else { frame->methodIndex = cp->getMethodEntry(romMethod, ramClass); - frame->frameType = Interpreted; /* TODO need a way to know if its JIT'ed and inlined */ + frame->frameType = (FrameType) frameType; } if ((UDATA)-1 == bytecodeOffset) {