Skip to content

Commit

Permalink
Merge pull request #20910 from tajila/jfr
Browse files Browse the repository at this point in the history
Use frameType info in JFR stackFrames
  • Loading branch information
gacholio authored Jan 10, 2025
2 parents a3f892c + 1635cc6 commit 8b647bc
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 8b647bc

Please sign in to comment.