/arkcompiler/ets_runtime/ecmascript/debugger/ |
D | js_debugger.cpp | 75 void JSDebugger::BytecodePcChanged(JSThread *thread, JSHandle<Method> method, uint32_t bcOffset) in BytecodePcChanged() argument 77 ASSERT(bcOffset < method->GetCodeSize() && "code size of current Method less then bcOffset"); in BytecodePcChanged() 78 HandleExceptionThrowEvent(thread, method, bcOffset); in BytecodePcChanged() 81 if (!HandleStep(method, bcOffset)) { in BytecodePcChanged() 82 HandleBreakpoint(method, bcOffset); in BytecodePcChanged() 86 bool JSDebugger::HandleBreakpoint(JSHandle<Method> method, uint32_t bcOffset) in HandleBreakpoint() argument 88 auto breakpoint = FindBreakpoint(method, bcOffset); in HandleBreakpoint() 112 JSPtLocation location {method->GetJSPandaFile(), method->GetMethodId(), bcOffset, in HandleBreakpoint() 119 bool JSDebugger::HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) in HandleDebuggerStmt() argument 125 JSPtLocation location {method->GetJSPandaFile(), method->GetMethodId(), bcOffset}; in HandleDebuggerStmt() [all …]
|
D | js_debugger.h | 29 JSBreakpoint(const std::string &sourceFile, PtMethod *ptMethod, uint32_t bcOffset, in JSBreakpoint() argument 31 bcOffset_(bcOffset), condFuncRef_(condFuncRef) {} in JSBreakpoint() 118 bool HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) override; 122 void BytecodePcChanged(JSThread *thread, JSHandle<Method> method, uint32_t bcOffset) override; 155 std::optional<JSBreakpoint> FindBreakpoint(JSHandle<Method> method, uint32_t bcOffset) const; 156 bool RemoveBreakpoint(const std::unique_ptr<PtMethod> &ptMethod, uint32_t bcOffset); 157 …void HandleExceptionThrowEvent(const JSThread *thread, JSHandle<Method> method, uint32_t bcOffset); 158 bool HandleStep(JSHandle<Method> method, uint32_t bcOffset); 159 bool HandleBreakpoint(JSHandle<Method> method, uint32_t bcOffset);
|
D | notification_manager.h | 35 uint32_t bcOffset) = 0; 37 virtual bool HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) = 0; 68 void BytecodePcChangedEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in BytecodePcChangedEvent() argument 73 listener_->BytecodePcChanged(thread, methodHandle, bcOffset); in BytecodePcChangedEvent() 77 void DebuggerStmtEvent(JSThread *thread, Method *method, uint32_t bcOffset) const in DebuggerStmtEvent() argument 81 listener_->HandleDebuggerStmt(methodHandle, bcOffset); in DebuggerStmtEvent()
|
D | js_debugger_interface.h | 104 virtual bool HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) = 0;
|
/arkcompiler/ets_runtime/ecmascript/compiler/ |
D | pgo_bc_info.cpp | 24 ValVec { Val { detail.bcIndex, detail.bcOffset, detail.cpIndex} }; in Record() 26 it->second.emplace_back(Val{ detail.bcIndex, detail.bcOffset, detail.cpIndex }); in Record() 67 uint32_t bcOffset = bcIns.GetAddress() - method->GetBytecodeArray(); in Record() local 70 … Record(InfoDetail {recordName, methodOffset, bcIndex, bcOffset, cpIndex}, Type::OBJ_LITERAL); in Record() 73 … Record(InfoDetail {recordName, methodOffset, bcIndex, bcOffset, cpIndex}, Type::ARRAY_LITERAL); in Record() 75 Record(InfoDetail {recordName, methodOffset, bcIndex, bcOffset, 0}, Type::CALL_TARGET); in Record()
|
D | pgo_bc_info.h | 38 uint32_t bcOffset; member 54 cb(type, val.bcIndex, val.bcOffset, val.cpIndex); in IterateValByMethodOffset() 61 uint32_t bcOffset; member
|
D | type_recorder.cpp | 155 …(const PGOBCInfo::Type type, const uint32_t bcIdx, const uint32_t bcOffset, const uint32_t cpIdx) { in CreateTypesForPGO() argument 156 auto it = bcOffsetPGOOpTypeMap_.find(bcOffset); in CreateTypesForPGO()
|
D | bytecode_info_collector.cpp | 202 … [this, &offsetTypeMap, defineMethodOffset](const int32_t bcOffset, const uint32_t typeOffset) { in IterateLiteral() argument 203 if (classDefBCIndexes_.find(bcOffset) != classDefBCIndexes_.end() || in IterateLiteral() 204 … classDefBCIndexes_.find(bcOffset - 1) != classDefBCIndexes_.end()) { // for getter setter in IterateLiteral() 207 if (bcOffset != TypeRecorder::METHOD_ANNOTATION_THIS_TYPE_OFFSET && in IterateLiteral() 209 offsetTypeMap.insert(std::make_pair(bcOffset, typeOffset)); in IterateLiteral()
|
D | async_function_lowering.cpp | 54 GateRef bcOffset = builder_.IntPtr(GeneratorContext::GENERATOR_BC_OFFSET_OFFSET); in ProcessJumpTable() local 55 val = builder_.PtrAdd(contextGate, bcOffset); in ProcessJumpTable()
|
/arkcompiler/toolchain/tooling/backend/ |
D | js_single_stepper.cpp | 38 bool SingleStepper::StepComplete(uint32_t bcOffset) const in StepComplete() 47 (InStepRange(bcOffset))) { in StepComplete() 56 if (stackDepth_ == stackDepth && InStepRange(bcOffset)) { in StepComplete()
|
D | js_single_stepper.h | 42 bool StepComplete(uint32_t bcOffset) const;
|
/arkcompiler/toolchain/tooling/agent/ |
D | debugger_impl.h | 169 bool IsWithinVariableScope(const LocalVariableInfo &localVariableInfo, uint32_t bcOffset);
|
D | debugger_impl.cpp | 1241 uint32_t bcOffset = DebuggerApi::GetBytecodeOffset(frameHandler); in GetLocalVariables() local 1244 if (!IsWithinVariableScope(localVariableInfo, bcOffset)) { in GetLocalVariables() 1274 … DebuggerImpl::IsWithinVariableScope(const LocalVariableInfo &localVariableInfo, uint32_t bcOffset) in IsWithinVariableScope() argument 1276 return bcOffset >= localVariableInfo.startOffset && bcOffset < localVariableInfo.endOffset; in IsWithinVariableScope()
|
/arkcompiler/ets_runtime/ecmascript/stubs/ |
D | runtime_stubs.cpp | 1544 auto bcOffset = frameHandler.GetBytecodeOffset(); in DEF_RUNTIME_STUBS() local 1546 debuggerMgr->GetNotificationManager()->BytecodePcChangedEvent(thread, method, bcOffset); in DEF_RUNTIME_STUBS()
|
D | runtime_stubs-inl.h | 2660 auto bcOffset = frameHandler.GetBytecodeOffset(); in RuntimeNotifyDebuggerStatement() local 2662 debuggerMgr->GetNotificationManager()->DebuggerStmtEvent(thread, method, bcOffset); in RuntimeNotifyDebuggerStatement()
|
/arkcompiler/ets_runtime/ecmascript/interpreter/ |
D | interpreter-inl.h | 856 auto bcOffset = frameHandler.GetBytecodeOffset(); in NotifyBytecodePcChanged() local 858 debuggerMgr->GetNotificationManager()->BytecodePcChangedEvent(thread, method, bcOffset); in NotifyBytecodePcChanged() 874 auto bcOffset = frameHandler.GetBytecodeOffset(); in NotifyDebuggerStmt() local 876 debuggerMgr->GetNotificationManager()->DebuggerStmtEvent(thread, method, bcOffset); in NotifyDebuggerStmt()
|