From 1635cc665a81d3a0aa06fba5e97d91c1905bc933 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 2d34a2b02a2..58d035d8092 100644 --- a/runtime/vm/JFRConstantPoolTypes.hpp +++ b/runtime/vm/JFRConstantPoolTypes.hpp @@ -510,7 +510,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) {