Searched refs:GetBytecodePc (Results 1 – 13 of 13) sorted by relevance
/arkcompiler/runtime_core/compiler/code_info/ |
D | code_info.cpp | 36 << ", bpc=0x" << std::hex << stack_map.GetBytecodePc(); in Dump() 61 stream << "InlineInfo #" << depth << ": bpc=0x" << std::hex << ii.GetBytecodePc() << std::dec in DumpInlineInfo()
|
D | code_info.h | 367 … [pc](const auto &a) { return a.GetBytecodePc() == pc && a.IsOsr(); }); in FindOsrStackMap()
|
/arkcompiler/runtime_core/compiler/tests/ |
D | code_info_test.cpp | 124 ASSERT_EQ(stack_map.GetBytecodePc(), 10); in TEST_F() 226 ASSERT_EQ(stack_map.GetBytecodePc(), 10); in TEST_F() 246 ASSERT_EQ(stack_map.GetBytecodePc(), 30); in TEST_F() 261 ASSERT_EQ(stack_map.GetBytecodePc(), 50); in TEST_F() 274 ASSERT_EQ(stackmap.GetBytecodePc(), 10); in TEST_F() 278 ASSERT_EQ(stackmap.GetBytecodePc(), 30); in TEST_F() 282 ASSERT_EQ(stackmap.GetBytecodePc(), 50); in TEST_F()
|
/arkcompiler/runtime_core/runtime/jit/ |
D | profiling_data.h | 82 auto GetBytecodePc() const in GetBytecodePc() function 215 … [](const auto &a, uintptr_t counter) { return a.GetBytecodePc() < counter; }); in FindInlineCache() 216 return (ic == ics.end() || ic->GetBytecodePc() != pc) ? nullptr : &*ic; in FindInlineCache()
|
/arkcompiler/runtime_core/runtime/ |
D | runtime_helpers.cpp | 34 auto line_num = method->GetLineNumFromBytecodeOffset(stack.GetBytecodePc()); in PrintStackTrace()
|
D | language_context.cpp | 48 …t = catchMethod->FindCatchBlock(thread->GetException()->ClassAddr<Class>(), stack.GetBytecodePc()); in GetCatchMethodAndOffset()
|
D | deoptimization.cpp | 129 pc = stack->GetMethod()->GetInstructions() + stack->GetBytecodePc(); in InvalidateCompiledEntryPoint()
|
D | exceptions.cpp | 228 auto pc = stack->GetBytecodePc(); in FindCatchBlockInCFrames()
|
D | stack_walker.cpp | 597 frame->SetBytecodeOffset(GetBytecodePc()); in ConvertToIFrame()
|
/arkcompiler/runtime_core/runtime/include/ |
D | stack_walker.h | 115 size_t GetBytecodePc() const in GetBytecodePc() function 354 return ii.GetBytecodePc(); in GetCFrameBytecodePc() 356 return stackmap_.GetBytecodePc(); in GetCFrameBytecodePc()
|
/arkcompiler/runtime_core/docs/ |
D | deoptimization.md | 62 frame->SetBytecodeOffset(cframe.GetBytecodePc());
|
/arkcompiler/runtime_core/runtime/tests/ |
D | method_test.cpp | 479 auto pc = stack.GetBytecodePc(); in StackTraceEntryPoint()
|
/arkcompiler/runtime_core/runtime/entrypoints/ |
D | entrypoints.cpp | 859 …EVENT_EXCEPTION(std::string(stack.GetMethod()->GetFullName()), stack.GetBytecodePc(), stack.GetNat… in SetExceptionEvent()
|