Home
last modified time | relevance | path

Searched refs:GetBytecodePc (Results 1 – 17 of 17) sorted by relevance

/arkcompiler/runtime_core/static_core/compiler/code_info/
Dcode_info.cpp36 << ", bpc=0x" << std::hex << stackMap.GetBytecodePc(); in Dump()
61 stream << "InlineInfo #" << depth << ": bpc=0x" << std::hex << ii.GetBytecodePc() << std::dec in DumpInlineInfo()
Dcode_info.h366 … [pc](const auto &a) { return a.GetBytecodePc() == pc && a.IsOsr(); }); in FindOsrStackMap()
/arkcompiler/runtime_core/compiler/tests/
Dcode_info_test.cpp124 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/static_core/compiler/tests/
Dcode_info_test.cpp126 ASSERT_EQ(stackMap.GetBytecodePc(), 10U); in TEST_F()
228 ASSERT_EQ(stackMap.GetBytecodePc(), 10U); in TEST_F()
248 ASSERT_EQ(stackMap.GetBytecodePc(), 30U); in TEST_F()
263 ASSERT_EQ(stackMap.GetBytecodePc(), 50U); in TEST_F()
276 ASSERT_EQ(stackmap.GetBytecodePc(), 10U); in TEST_F()
280 ASSERT_EQ(stackmap.GetBytecodePc(), 30U); in TEST_F()
284 ASSERT_EQ(stackmap.GetBytecodePc(), 50U); in TEST_F()
/arkcompiler/runtime_core/static_core/runtime/
Druntime_helpers.cpp34 << method->GetLineNumberAndSourceFile(stack.GetBytecodePc()); in PrintStackTrace()
Dlanguage_context.cpp49 …t = catchMethod->FindCatchBlock(thread->GetException()->ClassAddr<Class>(), stack.GetBytecodePc()); in GetCatchMethodAndOffset()
Ddeoptimization.cpp131 pc = method->GetInstructions() + stack->GetBytecodePc(); in InvalidateCompiledEntryPoint()
Dsignal_handler.cpp61 << method->GetLineNumberAndSourceFile(stack.GetBytecodePc()); in DumpStackTrace()
Dexceptions.cpp230 auto pc = stack->GetBytecodePc(); in FindCatchBlockInCFrames()
Dstack_walker.cpp619 frame->SetBytecodeOffset(GetBytecodePc()); in ConvertToIFrame()
/arkcompiler/runtime_core/static_core/runtime/jit/
Dprofiling_data.h82 auto GetBytecodePc() const in GetBytecodePc() function
259 … [](const auto &a, uintptr_t counter) { return a.GetBytecodePc() < counter; }); in FindInlineCache()
260 return (ic == ics.end() || ic->GetBytecodePc() != pc) ? nullptr : &*ic; in FindInlineCache()
/arkcompiler/runtime_core/static_core/runtime/include/
Dstack_walker.h115 size_t GetBytecodePc() const in GetBytecodePc() function
353 return ii.GetBytecodePc(); in GetCFrameBytecodePc()
355 return stackmap_.GetBytecodePc(); in GetCFrameBytecodePc()
Dexceptions.h108 …EVENT_EXCEPTION(std::string(stack.GetMethod()->GetFullName()), stack.GetBytecodePc(), stack.GetNat… in SetExceptionEvent()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/intrinsics/
Dstd_core.cpp50 auto lineNum = method->GetLineNumFromBytecodeOffset(stack.GetBytecodePc()); in StdCoreStackTraceLines()
/arkcompiler/runtime_core/static_core/plugins/ets/runtime/interop_js/
Dinterop_context.cpp314 << method->GetLineNumberAndSourceFile(stack.GetBytecodePc()); in Fatal()
/arkcompiler/runtime_core/static_core/docs/
Ddeoptimization.md62 frame->SetBytecodeOffset(cframe.GetBytecodePc());
/arkcompiler/runtime_core/static_core/runtime/tests/
Dmethod_test.cpp458 auto pc = stack.GetBytecodePc(); in StackTraceEntryPoint()