Skip to content

Commit

Permalink
Use frameType info in JFR stackFrames
Browse files Browse the repository at this point in the history
Signed-off-by: Tobi Ajila <[email protected]>
  • Loading branch information
tajila committed Jan 10, 2025
1 parent e851174 commit 1635cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion runtime/vm/JFRConstantPoolTypes.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 1635cc6

Please sign in to comment.