Home
last modified time | relevance | path

Searched refs:GetBytecodeString (Results 1 – 7 of 7) sorted by relevance

/arkcompiler/runtime_core/static_core/bytecode_optimizer/tests/
Druntime_adapter_test.cpp110 EXPECT_EQ(adapter.GetBytecodeString(main, 0U), std::string("ldai 1")); in TEST()
/arkcompiler/runtime_core/bytecode_optimizer/tests/
Druntime_adapter_test.cpp110 EXPECT_EQ(adapter.GetBytecodeString(main, 0), std::string("ldai 1")); in TEST()
/arkcompiler/runtime_core/static_core/bytecode_optimizer/
Druntime_adapter.h286 std::string GetBytecodeString(MethodPtr method, uintptr_t pc) const override in GetBytecodeString() function
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.h355 std::string GetBytecodeString(MethodPtr method, uintptr_t pc) const override;
Dcompiler.cpp408 std::string PandaRuntimeInterface::GetBytecodeString(MethodPtr method, uintptr_t pc) const in GetBytecodeString() function in panda::PandaRuntimeInterface
/arkcompiler/runtime_core/static_core/compiler/optimizer/ir/
Druntime_interface.h465 …virtual std::string GetBytecodeString([[maybe_unused]] MethodPtr method, [[maybe_unused]] uintptr_… in GetBytecodeString() function
Ddump.cpp1026 auto byteCode = graph->GetRuntime()->GetBytecodeString(graph->GetMethod(), pc_); in DumpBytecode()