Home
last modified time | relevance | path

Searched refs:bcOffset (Results 1 – 16 of 16) sorted by relevance

/arkcompiler/ets_runtime/ecmascript/debugger/
Djs_debugger.cpp75 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 …]
Djs_debugger.h29 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);
Dnotification_manager.h35 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()
Djs_debugger_interface.h104 virtual bool HandleDebuggerStmt(JSHandle<Method> method, uint32_t bcOffset) = 0;
/arkcompiler/ets_runtime/ecmascript/compiler/
Dpgo_bc_info.cpp24 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()
Dpgo_bc_info.h38 uint32_t bcOffset; member
54 cb(type, val.bcIndex, val.bcOffset, val.cpIndex); in IterateValByMethodOffset()
61 uint32_t bcOffset; member
Dtype_recorder.cpp155 …(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()
Dbytecode_info_collector.cpp202 … [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()
Dasync_function_lowering.cpp54 GateRef bcOffset = builder_.IntPtr(GeneratorContext::GENERATOR_BC_OFFSET_OFFSET); in ProcessJumpTable() local
55 val = builder_.PtrAdd(contextGate, bcOffset); in ProcessJumpTable()
/arkcompiler/toolchain/tooling/backend/
Djs_single_stepper.cpp38 bool SingleStepper::StepComplete(uint32_t bcOffset) const in StepComplete()
47 (InStepRange(bcOffset))) { in StepComplete()
56 if (stackDepth_ == stackDepth && InStepRange(bcOffset)) { in StepComplete()
Djs_single_stepper.h42 bool StepComplete(uint32_t bcOffset) const;
/arkcompiler/toolchain/tooling/agent/
Ddebugger_impl.h169 bool IsWithinVariableScope(const LocalVariableInfo &localVariableInfo, uint32_t bcOffset);
Ddebugger_impl.cpp1241 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/
Druntime_stubs.cpp1544 auto bcOffset = frameHandler.GetBytecodeOffset(); in DEF_RUNTIME_STUBS() local
1546 debuggerMgr->GetNotificationManager()->BytecodePcChangedEvent(thread, method, bcOffset); in DEF_RUNTIME_STUBS()
Druntime_stubs-inl.h2660 auto bcOffset = frameHandler.GetBytecodeOffset(); in RuntimeNotifyDebuggerStatement() local
2662 debuggerMgr->GetNotificationManager()->DebuggerStmtEvent(thread, method, bcOffset); in RuntimeNotifyDebuggerStatement()
/arkcompiler/ets_runtime/ecmascript/interpreter/
Dinterpreter-inl.h856 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()