MCPcopy Create free account
hub / github.com/async-profiler/async-profiler / unwindPrologue

Method unwindPrologue

src/stackFrame_arm.cpp:80–88  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

78}
79
80bool StackFrame::unwindPrologue(NMethod* nm, uintptr_t& pc, uintptr_t& sp, uintptr_t& fp) {
81 instruction_t* ip = (instruction_t*)pc;
82 instruction_t* entry = (instruction_t*)nm->entry();
83 if (ip <= entry) {
84 pc = link();
85 return true;
86 }
87 return false;
88}
89
90bool StackFrame::unwindEpilogue(NMethod* nm, uintptr_t& pc, uintptr_t& sp, uintptr_t& fp) {
91 // Not yet implemented

Callers 1

walkVMMethod · 0.45

Calls 1

entryMethod · 0.45

Tested by

no test coverage detected