/freebsd/contrib/llvm-project/lldb/source/Target/ |
H A D | ThreadPlanStepInstruction.cpp | 41 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 D | StackID.cpp | 42 return lhs.GetPC() == rhs.GetPC(); in operator ==() 55 return lhs.GetPC() != rhs.GetPC(); in operator !=()
|
H A D | ThreadPlanStepOverBreakpoint.cpp | 34 m_breakpoint_addr = thread.GetRegisterContext()->GetPC(); in ThreadPlanStepOverBreakpoint() 80 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in DoPlanExplainsStop() 131 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in MischiefManaged() 171 return GetThread().GetRegisterContext()->GetPC() != m_breakpoint_addr; in IsPlanStale()
|
H A D | ThreadPlanStepRange.cpp | 105 lldb::addr_t pc_load_addr = thread.GetRegisterContext()->GetPC(); in InRange() 198 lldb::addr_t cur_pc = GetThread().GetRegisterContext()->GetPC(); in InSymbol() 321 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC(); in SetNextBranchBreakpoint() 484 lldb::addr_t addr = GetThread().GetRegisterContext()->GetPC() - 1; in IsPlanStale()
|
H A D | ThreadPlanStepOverRange.cpp | 133 DumpAddress(s.AsRawOstream(), thread.GetRegisterContext()->GetPC(), in ShouldStop() 291 ->GetPC(); in ShouldStop() 390 lldb::addr_t curr_pc = thread.GetRegisterContext()->GetPC(); in DoWillResume()
|
H A D | ThreadPlanStepThrough.cpp | 41 m_start_address = GetThread().GetRegisterContext()->GetPC(0); in ThreadPlanStepThrough() 100 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0); in LookForPlanToStepThroughFromCurrentPC()
|
H A D | StackFrameList.cpp | 67 lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC(); in GetCurrentInlinedDepth() 114 lldb::addr_t curr_pc = m_thread.GetRegisterContext()->GetPC(); in ResetCurrentInlinedDepth() 224 m_current_inlined_pc = m_thread.GetRegisterContext()->GetPC(); in SetCurrentInlinedDepth() 405 addr_t return_pc = next_reg_ctx_sp->GetPC(); in SynthesizeTailCallFrames() 498 pc = reg_ctx_sp->GetPC(); in GetFramesUpTo()
|
H A D | ThreadPlanStepUntil.cpp | 42 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil() 50 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
|
H A D | ThreadPlanStepInRange.cpp | 133 DumpAddress(s.AsRawOstream(), GetThread().GetRegisterContext()->GetPC(), in ShouldStop() 245 lldb::addr_t curr_addr = thread.GetRegisterContext()->GetPC(); in ShouldStop()
|
H A D | RegisterContext.cpp | 95 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 D | ThreadPlanShouldStopHere.cpp | 48 m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
|
H A D | ThreadPlanRunToAddress.cpp | 193 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(); in AtOurAddress()
|
H A D | ThreadPlanTracer.cpp | 138 lldb::addr_t pc = reg_ctx->GetPC(); in Log()
|
H A D | Thread.cpp | 622 const addr_t thread_pc = reg_ctx_sp->GetPC(); in SetupForResume() 761 GetRegisterContext() ? GetRegisterContext()->GetPC() in ShouldStop() 774 GetRegisterContext() ? GetRegisterContext()->GetPC() in ShouldStop() 1428 m_prev_framezero_pc = reg_ctx_sp->GetPC(); in ClearStackFrames() 1909 lldb::addr_t pc = reg_ctx_sp->GetPC(); in IsStillAtLastBreakpointHit()
|
/freebsd/contrib/llvm-project/lldb/bindings/interface/ |
H A D | SBFrameExtensions.i | 15 return self.GetPC() 69 pc = property(GetPC, SetPC)
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Target/ |
H A D | StackID.h | 31 lldb::addr_t GetPC() const { return m_pc; } in GetPC() function
|
H A D | RegisterContext.h | 151 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 D | ArchitectureArm.cpp | 92 const addr_t pc = reg_ctx_sp->GetPC(); in OverrideStopInfo()
|
/freebsd/contrib/llvm-project/lldb/source/Host/common/ |
H A D | NativeRegisterContext.cpp | 123 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 D | SBFrame.h | 46 lldb::addr_t GetPC() const;
|
/freebsd/contrib/llvm-project/lldb/include/lldb/Host/common/ |
H A D | NativeRegisterContext.h | 131 lldb::addr_t GetPC(lldb::addr_t fail_value = LLDB_INVALID_ADDRESS);
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/DynamicLoader/Windows-DYLD/ |
H A D | DynamicLoaderWindowsDYLD.cpp | 181 uint64_t pc = thread.GetRegisterContext()->GetPC(); in GetStepThroughTrampolinePlan()
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 762 addr_t pc = reg_ctx_sp->GetPC() - pc_decrement; in CreateStopReasonWithMachException() 838 if (*prev_pc != reg_ctx_sp->GetPC()) in WasContinueInterrupted()
|
H A D | NativeProcessSoftwareSingleStep.cpp | 199 next_pc = register_context.GetPC() + emulator_up->GetOpcode().GetByteSize(); in SetupSoftwareSingleStepping()
|
/freebsd/contrib/llvm-project/lldb/source/Commands/ |
H A D | CommandObjectThreadUtil.cpp | 149 const lldb::addr_t pc = frame_sp->GetStackID().GetPC(); in BucketThread()
|