Home
last modified time | relevance | path

Searched refs:bytecodeOffset (Results 1 – 20 of 20) sorted by relevance

/arkcompiler/toolchain/tooling/test/
Djs_pt_hooks_test.cpp66 uint32_t bytecodeOffset = 0; in HWTEST_F_L0() local
67 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in HWTEST_F_L0()
85 uint32_t bytecodeOffset = 0; in HWTEST_F_L0() local
86 JSPtLocation ptLocation2(nullptr, methodId, bytecodeOffset); in HWTEST_F_L0()
96 uint32_t bytecodeOffset = 0; in HWTEST_F_L0() local
97 JSPtLocation ptLocation4(nullptr, methodId, bytecodeOffset); in HWTEST_F_L0()
/arkcompiler/toolchain/tooling/test/utils/
Dtest_extractor.cpp43 …stExtractor::GetSourceLocation(const JSPandaFile *file, EntityId methodId, uint32_t bytecodeOffset) in GetSourceLocation() argument
54 MatchLineWithOffset(callbackLineFunc, methodId, bytecodeOffset); in GetSourceLocation()
55 MatchColumnWithOffset(callbackColumnFunc, methodId, bytecodeOffset); in GetSourceLocation()
Dtest_extractor.h43 …rceLocation GetSourceLocation(const JSPandaFile *file, EntityId methodId, uint32_t bytecodeOffset);
/arkcompiler/runtime_core/static_core/runtime/include/tooling/
Dpt_location.h28 explicit PtLocation(const char *pandaFile, EntityId methodId, uint32_t bytecodeOffset) in PtLocation() argument
29 : pandaFile_(pandaFile), methodId_(methodId), bytecodeOffset_(bytecodeOffset) in PtLocation()
/arkcompiler/toolchain/test/fuzztest/backend/backendsinglestep_fuzzer/
Dbackendsinglestep_fuzzer.cpp51 uint32_t bytecodeOffset = 0; in BackendSingleStepFuzzTest() local
54 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in BackendSingleStepFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendbreakpoint_fuzzer/
Dbackendbreakpoint_fuzzer.cpp51 uint32_t bytecodeOffset = 0; in BackendBreakpointFuzzTest() local
54 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in BackendBreakpointFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendloadmodule_fuzzer/
Dbackendloadmodule_fuzzer.cpp51 uint32_t bytecodeOffset = 0; in BackendLoadModuleFuzzTest() local
54 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in BackendLoadModuleFuzzTest()
/arkcompiler/ets_runtime/ecmascript/debugger/
Djs_pt_location.h30 JSPtLocation(const JSPandaFile *jsPandaFile, EntityId methodId, uint32_t bytecodeOffset,
32 bytecodeOffset_(bytecodeOffset), sourceFile_(sourceFile) in jsPandaFile_()
/arkcompiler/toolchain/test/fuzztest/backend/backendnativecalling_fuzzer/
Dbackendnativecalling_fuzzer.cpp51 uint32_t bytecodeOffset = 0; in BackendNativeCallingFuzzTest() local
54 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in BackendNativeCallingFuzzTest()
/arkcompiler/toolchain/test/fuzztest/backend/backendexception_fuzzer/
Dbackendexception_fuzzer.cpp51 uint32_t bytecodeOffset = 0; in BackendExceptionFuzzTest() local
54 JSPtLocation ptLocation1(nullptr, methodId, bytecodeOffset); in BackendExceptionFuzzTest()
/arkcompiler/runtime_core/static_core/runtime/tests/tooling/
Dtest_extractor.cpp134 SourceLocation TestExtractor::GetSourceLocation(EntityId methodId, uint32_t bytecodeOffset) in GetSourceLocation() argument
141 std::optional<size_t> line = GetLineNumberByTableOffset(lineTable, bytecodeOffset); in GetSourceLocation()
Dtest_extractor.h57 SourceLocation GetSourceLocation(EntityId methodId, uint32_t bytecodeOffset);
/arkcompiler/runtime_core/static_core/runtime/include/
Dmethod-inl.h455 inline bool Method::DecrementHotnessCounter(ManagedThread *thread, uintptr_t bytecodeOffset, in DecrementHotnessCounter() argument
505 return runtime->GetPandaVM()->GetCompiler()->CompileMethod(this, bytecodeOffset, osr, in DecrementHotnessCounter()
511 return runtime->GetPandaVM()->GetCompiler()->CompileMethod(this, bytecodeOffset, osr, in DecrementHotnessCounter()
537 inline bool Method::DecrementHotnessCounter(uintptr_t bytecodeOffset, AccVRegisterPtrT acc, bool os… in DecrementHotnessCounter() argument
539 …return DecrementHotnessCounter<IS_CALL>(ManagedThread::GetCurrent(), bytecodeOffset, acc, osr, fun… in DecrementHotnessCounter()
Dcompiler_interface.h212 …virtual bool CompileMethod(Method *method, uintptr_t bytecodeOffset, bool osr, coretypes::TaggedVa…
Dmethod.h339 …NO_THREAD_SANITIZE bool DecrementHotnessCounter(uintptr_t bytecodeOffset, [[maybe_unused]] AccVReg…
344 NO_THREAD_SANITIZE bool DecrementHotnessCounter(ManagedThread *thread, uintptr_t bytecodeOffset,
/arkcompiler/runtime_core/static_core/libpandafile/tests/
Ddebug_info_extractor_test.cpp291 uint32_t bytecodeOffset) in GetSourcePairLocationWrapper() argument
298 std::optional<size_t> line = GetLineNumberByTableOffsetWrapper(lineTable, bytecodeOffset); in GetSourcePairLocationWrapper()
/arkcompiler/runtime_core/static_core/runtime/
Dcompiler.cpp790 bool Compiler::CompileMethod(Method *method, uintptr_t bytecodeOffset, bool osr, TaggedValue func) in CompileMethod() argument
799 return OsrEntry(bytecodeOffset, GetOsrCode(method)); in CompileMethod()
Dcompiler.h683 … bool CompileMethod(Method *method, uintptr_t bytecodeOffset, bool osr, TaggedValue func) override;
/arkcompiler/ets_runtime/ecmascript/dfx/stackinfo/
Djs_stackinfo.cpp997 auto bytecodeOffset = static_cast<uint32_t>(reinterpret_cast<uint8_t *>(*bytecodePc) - in GetArkJSHeapCrashInfo() local
999 std::string info = JsStackInfo::BuildMethodTrace(method, bytecodeOffset); in GetArkJSHeapCrashInfo()
/arkcompiler/runtime_core/static_core/runtime/entrypoints/
Dentrypoints.cpp1310 auto bytecodeOffset = pc - frame->GetInstruction(); in ResolveVirtualMethod() local
1312 profData->UpdateInlineCaches(bytecodeOffset, cls); in ResolveVirtualMethod()