Home
last modified time | relevance | path

Searched refs:GetPC (Results 1 – 25 of 39) 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()
131 lldb::addr_t pc_addr = GetThread().GetRegisterContext()->GetPC(); in MischiefManaged()
171 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()
321 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC(); in SetNextBranchBreakpoint()
484 lldb::addr_t addr = GetThread().GetRegisterContext()->GetPC() - 1; in IsPlanStale()
H A DThreadPlanStepOverRange.cpp133 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 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.cpp67 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 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.cpp133 DumpAddress(s.AsRawOstream(), GetThread().GetRegisterContext()->GetPC(), in ShouldStop()
245 lldb::addr_t curr_addr = thread.GetRegisterContext()->GetPC(); in ShouldStop()
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 DThreadPlanShouldStopHere.cpp48 m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
H A DThreadPlanRunToAddress.cpp193 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(); in AtOurAddress()
H A DThreadPlanTracer.cpp138 lldb::addr_t pc = reg_ctx->GetPC(); in Log()
H A DThread.cpp622 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 DSBFrameExtensions.i15 return self.GetPC()
69 pc = property(GetPC, SetPC)
/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/Plugins/Process/Utility/
H A DStopInfoMachException.cpp762 addr_t pc = reg_ctx_sp->GetPC() - pc_decrement; in CreateStopReasonWithMachException()
838 if (*prev_pc != reg_ctx_sp->GetPC()) in WasContinueInterrupted()
H A DNativeProcessSoftwareSingleStep.cpp199 next_pc = register_context.GetPC() + emulator_up->GetOpcode().GetByteSize(); in SetupSoftwareSingleStepping()
/freebsd/contrib/llvm-project/lldb/source/Commands/
H A DCommandObjectThreadUtil.cpp149 const lldb::addr_t pc = frame_sp->GetStackID().GetPC(); in BucketThread()

12