| /arkcompiler/toolchain/tooling/backend/ |
| D | js_pt_hooks.cpp | 21 void JSPtHooks::Breakpoint(const JSPtLocation &location) in Breakpoint() 30 void JSPtHooks::Exception([[maybe_unused]] const JSPtLocation &location) in Exception() 38 bool JSPtHooks::SingleStep(const JSPtLocation &location) in SingleStep()
|
| /arkcompiler/ets_frontend/merge_abc/src/ |
| D | assemblyFileLocationProto.cpp | 19 void FileLocation::Serialize(const panda::pandasm::FileLocation &location, protoPanda::FileLocation… in Serialize() 29 std::optional<panda::pandasm::FileLocation> &location) in Deserialize()
|
| D | ideHelpersProto.cpp | 19 void SourceLocation::Serialize(const panda::pandasm::SourceLocation &location, in Serialize() 29 panda::pandasm::SourceLocation &location) in Deserialize()
|
| D | assemblyRecordProto.cpp | 36 const auto &location = record.file_location; in Serialize() local
|
| /arkcompiler/toolchain/tooling/test/utils/ |
| D | test_hooks.h | 47 void Breakpoint(const JSPtLocation &location) override in Breakpoint() 61 void Exception(const JSPtLocation &location) override in Exception() 74 bool SingleStep(const JSPtLocation &location) override in SingleStep()
|
| D | test_util.h | 52 static void WaitForBreakpoint(JSPtLocation location) in WaitForBreakpoint() 71 static void WaitForStepComplete(JSPtLocation location) in WaitForStepComplete() 144 static SourceLocation GetSourceLocation(const JSPtLocation &location, const char *pandaFile) in GetSourceLocation()
|
| /arkcompiler/toolchain/tooling/base/ |
| D | pt_returns.cpp | 37 std::unique_ptr<PtJson> location = locations_[i]->ToJson(); in ToJson() local 67 std::unique_ptr<PtJson> location = locations_[i]->ToJson(); in ToJson() local 95 std::unique_ptr<PtJson> location = callFrames_[i]->ToJson(); in ToJson() local 148 std::unique_ptr<PtJson> location = callFrames_.value()[i]->ToJson(); in ToJson() local 172 std::unique_ptr<PtJson> location = result_[i]->ToJson(); in ToJson() local 181 std::unique_ptr<PtJson> location = internalPropertyDescripties_.value()[i]->ToJson(); in ToJson() local 191 std::unique_ptr<PtJson> location = privateProperties_.value()[i]->ToJson(); in ToJson() local
|
| /arkcompiler/ets_runtime/ecmascript/debugger/ |
| D | js_debugger.cpp | 28 bool JSDebugger::SetBreakpoint(const JSPtLocation &location, Local<FunctionRef> condFuncRef) in SetBreakpoint() 52 bool JSDebugger::RemoveBreakpoint(const JSPtLocation &location) in RemoveBreakpoint() 111 JSPtLocation location {method->GetJSPandaFile(), method->GetMethodId(), bcOffset, in HandleBreakpoint() local 135 JSPtLocation location {method->GetJSPandaFile(), method->GetMethodId(), bcOffset}; in HandleStep() local
|
| D | js_pt_location.h | 64 std::stringstream location; in ToString() local
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/tests/ |
| D | test_debugger.cpp | 66 std::optional<Error> TestDebugger::SetBreakpoint(const PtLocation &location) in SetBreakpoint() 75 std::optional<Error> TestDebugger::RemoveBreakpoint(const PtLocation &location) in RemoveBreakpoint()
|
| D | instruction_pointer.cpp | 43 params.AddProperty("location", [&](JsonObjectBuilder &location) { in ContinueTo() 80 … PtLocation location(GetMethod()->GetPandaFile()->GetFilename().c_str(), GetMethod()->GetFileId(), in Step() local
|
| D | breakpoint_test.cpp | 146 params.AddProperty("location", [&](JsonObjectBuilder &location) { in TEST_F() 153 params.AddProperty("location", [&](JsonObjectBuilder &location) { in TEST_F() 176 params.AddProperty("location", [&this](JsonObjectBuilder &location) { in TEST_F() 208 params.AddProperty("location", [&](JsonObjectBuilder &location) { in TEST_F() 295 params.AddProperty("location", [&](JsonObjectBuilder &location) { in TEST_F()
|
| /arkcompiler/runtime_core/runtime/tests/tooling/ |
| D | test_runner.h | 40 void Breakpoint(PtThread thread, Method *method, const PtLocation &location) override in Breakpoint() 61 … void Exception(PtThread thread, Method *method, const PtLocation &location, ObjectHeader *object, in Exception() 69 …void ExceptionCatch(PtThread thread, Method *method, const PtLocation &location, ObjectHeader *obj… in ExceptionCatch() 76 …void PropertyAccess(PtThread thread, Method *method, const PtLocation &location, ObjectHeader *obj… in PropertyAccess() 84 …void PropertyModification(PtThread thread, Method *method, const PtLocation &location, ObjectHeade… in PropertyModification() 127 void SingleStep(PtThread thread, Method *method, const PtLocation &location) override in SingleStep()
|
| D | test_util.cpp | 39 PtLocation location(pf->GetFilename().c_str(), methodId, offset); in GetVariables() local 43 …da_file::LocalVariableInfo> TestUtil::GetVariables(const panda_file::File *pf, PtLocation location) in GetVariables()
|
| D | test_util.h | 66 static PtThread WaitForBreakpoint(PtLocation location) in WaitForBreakpoint() 144 static bool SuspendUntilContinue(DebugEvent reason, PtThread thread, PtLocation location) in SuspendUntilContinue() 308 #define ASSERT_BREAKPOINT_SUCCESS(location) \ argument
|
| /arkcompiler/runtime_core/runtime/tooling/inspector/ |
| D | step_hooks.cpp | 52 void StepHooks::AddLocation(const PtLocation &location) in AddLocation() 69 void StepHooks::Breakpoint(PtThread thread, Method * /* method */, const PtLocation &location) in Breakpoint() 103 sourceFile->EnumerateLocations(lineNumber, [&](auto location) { in ContinueToLocation()
|
| D | inspector_hooks.h | 46 void Breakpoint(PtThread thread, Method *method, const PtLocation &location) override in Breakpoint() 61 void SingleStep(PtThread thread, Method *method, const PtLocation &location) override in SingleStep()
|
| D | breakpoint_hooks.cpp | 143 sourceFile.EnumerateLocations(lineNumber, [&](auto location) { in SetBreakpoint() 183 result.AddProperty("actualLocation", [&](JsonObjectBuilder &location) { in SetBreakpointAtLocation() 236 locations.Add([&](JsonObjectBuilder &location) { in SetBreakpointByUrl()
|
| /arkcompiler/runtime_core/compiler/optimizer/optimizations/regalloc/ |
| D | spill_fills_resolver.h | 51 LocationType location; member 91 LocationIndex Map(Location location) in Map()
|
| D | spill_fills_resolver.cpp | 91 static void MarkRegWrite(Location location, ArenaVector<bool> *reg_write, bool paired, size_t offse… in MarkRegWrite() 101 static bool IsRegWrite(Location location, ArenaVector<bool> *reg_write, bool paired, size_t offset) in IsRegWrite() 108 static void MarkStackWrite(Location location, ArenaVector<bool> *stack_write, size_t offset) in MarkStackWrite() 115 static bool IsStackWrite(Location location, ArenaVector<bool> *stack_write, size_t offset) in IsStackWrite()
|
| D | reg_alloc_stat.cpp | 31 auto location = interv->GetLocation(); in RegAllocStat() local
|
| D | reg_alloc_resolver.h | 68 …static inline void AddLocationToRoots(Location location, SaveStateInst *save_state, const Graph *g… in AddLocationToRoots()
|
| /arkcompiler/runtime_core/runtime/tooling/ |
| D | pt_hooks_wrapper.h | 58 void Breakpoint(PtThread thread, Method *method, const PtLocation &location) override in Breakpoint() 94 …void Exception(PtThread thread, Method *method, const PtLocation &location, ObjectHeader *exceptio… in Exception() 107 void ExceptionCatch(PtThread thread, Method *method, const PtLocation &location, in ExceptionCatch() 120 …void PropertyAccess(PtThread thread, Method *method, const PtLocation &location, ObjectHeader *obj… in PropertyAccess() 133 …void PropertyModification(PtThread thread, Method *method, const PtLocation &location, ObjectHeade… in PropertyModification() 212 void SingleStep(PtThread thread, Method *method, const PtLocation &location) override in SingleStep()
|
| D | debugger.cpp | 71 const PtLocation &location, std::optional<Error> &error) in CheckLocationInClass() 97 std::optional<Error> Debugger::CheckLocation(const PtLocation &location) in CheckLocation() 129 std::optional<Error> Debugger::SetBreakpoint(const PtLocation &location) in SetBreakpoint() 146 std::optional<Error> Debugger::RemoveBreakpoint(const PtLocation &location) in RemoveBreakpoint() 538 … PtLocation location(method->GetPandaFile()->GetFilename().c_str(), method->GetFileId(), bcOffset); in BytecodePcChanged() local 620 …ebugger::HandleBreakpoint(ManagedThread *managedThread, Method *method, const PtLocation &location) in HandleBreakpoint() 659 bool Debugger::HandleStep(ManagedThread *managedThread, Method *method, const PtLocation &location) in HandleStep() 689 …l Debugger::HandlePropertyAccess(ManagedThread *thread, Method *method, const PtLocation &location) in HandlePropertyAccess() 736 …l Debugger::HandlePropertyModify(ManagedThread *thread, Method *method, const PtLocation &location) in HandlePropertyModify() 847 bool Debugger::EraseBreakpoint(const PtLocation &location) in EraseBreakpoint()
|
| /arkcompiler/runtime_core/compiler/code_info/ |
| D | vreg_info.h | 36 VRegInfo(uint32_t value, VRegInfo::Location location, Type type, bool is_acc) in VRegInfo() function 41 VRegInfo(uint32_t value, VRegInfo::Location location, Type type, bool is_acc, uint32_t index) in VRegInfo() function 114 auto location = GetLocation(); in IsLocationRegister() local
|