Home
last modified time | relevance | path

Searched refs:GetPC (Results 1 – 25 of 40) sorted by relevance

12

/freebsd/contrib/llvm-project/lldb/source/Target/
H A DThreadPlanStepInstruction.cpp41 m_instruction_addr = thread.GetRegisterContext()->GetPC(0); in SetUpState()
104 uint64_t pc = thread.GetRegisterContext()->GetPC(0); in IsPlanStale()
112 return (thread.GetRegisterContext()->GetPC(0) != m_instruction_addr); in IsPlanStale()
144 if (thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) { in ShouldStop()
187 thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); in ShouldStop()
191 addr_t return_addr = return_frame->GetRegisterContext()->GetPC(); in ShouldStop()
221 lldb::addr_t pc_addr = thread.GetRegisterContext()->GetPC(0); in ShouldStop()
H A DStackID.cpp42 return lhs.GetPC() == rhs.GetPC(); in operator ==()
55 return lhs.GetPC() != rhs.GetPC(); in operator !=()
H A DThreadPlanStepOverBreakpoint.cpp34 m_breakpoint_addr = thread.GetRegisterContext()->GetPC(); in ThreadPlanStepOverBreakpoint()
80 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in DoPlanExplainsStop()
138 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in MischiefManaged()
178 return GetThread().GetRegisterContext()->GetPC() != m_breakpoint_addr; in IsPlanStale()
H A DThreadPlanStepRange.cpp105 lldb::addr_t pc_load_addr = thread.GetRegisterContext()->GetPC(); in InRange()
198 lldb::addr_t cur_pc = GetThread().GetRegisterContext()->GetPC(); in InSymbol()
344 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC(); in SetNextBranchBreakpoint()
551 lldb::addr_t addr = GetThread().GetRegisterContext()->GetPC() - 1; in IsPlanStale()
H A DThreadPlanStepOverRange.cpp145 DumpAddress(s.AsRawOstream(), thread.GetRegisterContext()->GetPC(), in ShouldStop()
306 ->GetPC(); in ShouldStop()
411 lldb::addr_t curr_pc = thread.GetRegisterContext()->GetPC(); in DoWillResume()
H A DThreadPlanStepThrough.cpp41 m_start_address = GetThread().GetRegisterContext()->GetPC(0); in ThreadPlanStepThrough()
100 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0); in LookForPlanToStepThroughFromCurrentPC()
H A DStackFrameList.cpp68 lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC(); in GetCurrentInlinedDepth()
99 m_current_inlined_pc = m_thread.GetRegisterContext()->GetPC(); in ResetCurrentInlinedDepth()
137 m_current_inlined_pc = m_thread.GetRegisterContext()->GetPC(); in SetCurrentInlinedDepth()
306 addr_t return_pc = next_reg_ctx_sp->GetPC(); in SynthesizeTailCallFrames()
441 pc = reg_ctx_sp->GetPC(); in FetchFramesUpTo()
H A DThreadPlanStepUntil.cpp42 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
50 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
H A DThreadPlanStepInRange.cpp134 DumpAddress(s.AsRawOstream(), GetThread().GetRegisterContext()->GetPC(), in ShouldStop()
247 lldb::addr_t curr_addr = thread.GetRegisterContext()->GetPC(); in ShouldStop()
H A DThreadPlanStepOut.cpp76 m_step_from_insn = thread.GetRegisterContext()->GetPC(0); in ThreadPlanStepOut()
98 m_step_from_insn = thread.GetRegisterContext()->GetPC(0); in ThreadPlanStepOut()
H A DRegisterContext.cpp95 uint64_t RegisterContext::GetPC(uint64_t fail_value) { in GetPC() function in RegisterContext
134 addr_t pc = GetPC(LLDB_INVALID_ADDRESS); in GetPCForSymbolication()
H A DThreadPlanRunToAddress.cpp193 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(); in AtOurAddress()
H A DThreadPlanShouldStopHere.cpp50 m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
H A DThreadPlanTracer.cpp139 lldb::addr_t pc = reg_ctx->GetPC(); in Log()
H A DThread.cpp640 const addr_t thread_pc = reg_ctx_sp->GetPC(); in SetupToStepOverBreakpointIfNeeded()
790 GetRegisterContext() ? GetRegisterContext()->GetPC() in ShouldStop()
803 GetRegisterContext() ? GetRegisterContext()->GetPC() in ShouldStop()
1460 m_prev_framezero_pc = reg_ctx_sp->GetPC(); in ClearStackFrames()
1957 lldb::addr_t pc = reg_ctx_sp->GetPC(); in IsStillAtLastBreakpointHit()
/freebsd/contrib/llvm-project/lldb/bindings/interface/
H A DSBFrameExtensions.i15 return self.GetPC()
69 pc = property(GetPC, SetPC)
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/
H A DStopInfoMachException.cpp594 addr_t pc = reg_ctx_sp->GetPC(); in CreateStopReasonWithMachException()
724 addr_t pc = reg_ctx_sp->GetPC() - pc_decrement; in CreateStopReasonWithMachException()
811 if (*prev_pc != reg_ctx_sp->GetPC()) in WasContinueInterrupted()
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/
H A DStackID.h31 lldb::addr_t GetPC() const { return m_pc; } in GetPC() function
H A DRegisterContext.h151 uint64_t GetPC(uint64_t fail_value = LLDB_INVALID_ADDRESS);
171 /// The return address (GetPC()) should always be shown to the user,
/freebsd/contrib/llvm-project/lldb/source/Plugins/Architecture/Arm/
H A DArchitectureArm.cpp92 const addr_t pc = reg_ctx_sp->GetPC(); in OverrideStopInfo()
/freebsd/contrib/llvm-project/lldb/source/Host/common/
H A DNativeRegisterContext.cpp123 lldb::addr_t NativeRegisterContext::GetPC(lldb::addr_t fail_value) { in GetPC() function in NativeRegisterContext
140 return GetPC(fail_value); in GetPCfromBreakpointLocation()
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBFrame.h46 lldb::addr_t GetPC() const;
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/
H A DNativeRegisterContext.h131 lldb::addr_t GetPC(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS);
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/
H A DDynamicLoaderWindowsDYLD.cpp181 uint64_t pc = thread.GetRegisterContext()->GetPC(); in GetStepThroughTrampolinePlan()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp151 const lldb::addr_t pc = frame_sp->GetStackID().GetPC(); in BucketThread()

12