/openbsd/gnu/llvm/lldb/include/lldb/Target/ |
H A D | RegisterContext.h | 172 bool SetPC(uint64_t pc); 174 bool SetPC(Address addr);
|
H A D | StackID.h | 66 void SetPC(lldb::addr_t pc) { m_pc = pc; } in SetPC() function
|
/openbsd/gnu/llvm/lldb/source/Target/ |
H A D | RegisterContext.cpp | 112 bool RegisterContext::SetPC(uint64_t pc) { in SetPC() function in RegisterContext 141 bool RegisterContext::SetPC(Address addr) { in SetPC() function in RegisterContext 149 return SetPC(callAddr); in SetPC()
|
H A D | StackFrame.cpp | 1858 m_id.SetPC(curr_frame.m_id.GetPC()); // Update the Stack ID PC value in UpdatePreviousFrameFromCurrentFrame()
|
H A D | Thread.cpp | 1611 if (!reg_ctx->SetPC(dest)) in JumpToLine()
|
/openbsd/gnu/llvm/lldb/bindings/interface/ |
H A D | SBFrame.i | 81 SetPC (lldb::addr_t new_pc); 342 pc = property(GetPC, SetPC)
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/ |
H A D | DNBArch.h | 75 virtual kern_return_t SetPC(uint64_t value) = 0;
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/ |
H A D | MachThread.cpp | 287 bool MachThread::SetPC(uint64_t value) { in SetPC() function in MachThread 289 return m_arch_up->SetPC(value); in SetPC() 345 SetPC(thread_action->addr); in ThreadWillResume()
|
H A D | MachThread.h | 65 bool SetPC(uint64_t value); // Set program counter
|
/openbsd/gnu/llvm/lldb/include/lldb/API/ |
H A D | SBFrame.h | 39 bool SetPC(lldb::addr_t new_pc);
|
/openbsd/gnu/llvm/lldb/examples/python/ |
H A D | jump.py | 190 frame.SetPC(desired_address.GetLoadAddress(target))
|
/openbsd/gnu/llvm/lldb/include/lldb/Host/common/ |
H A D | NativeRegisterContext.h | 136 Status SetPC(lldb::addr_t pc);
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/x86_64/ |
H A D | DNBArchImplX86_64.h | 47 kern_return_t SetPC(uint64_t value) override;
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm64/ |
H A D | DNBArchImplARM64.h | 57 kern_return_t SetPC(uint64_t value) override;
|
H A D | DNBArchImplARM64.cpp | 132 kern_return_t DNBArchMachARM64::SetPC(uint64_t value) { in SetPC() function in DNBArchMachARM64 577 SetPC(pc + 4); in NotifyException()
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/i386/ |
H A D | DNBArchImplI386.h | 48 kern_return_t SetPC(uint64_t value) override;
|
/openbsd/gnu/llvm/lldb/tools/debugserver/source/MacOSX/arm/ |
H A D | DNBArchImpl.h | 61 kern_return_t SetPC(uint64_t value) override;
|
/openbsd/gnu/llvm/lldb/source/Host/common/ |
H A D | NativeRegisterContext.cpp | 146 Status NativeRegisterContext::SetPC(lldb::addr_t pc) { in SetPC() function in NativeRegisterContext
|
H A D | NativeProcessProtocol.cpp | 627 error = context.SetPC(breakpoint_addr); in FixupBreakpointPCAsNeeded()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Utility/ |
H A D | StopInfoMachException.cpp | 764 reg_ctx_sp->SetPC(pc); in CreateStopReasonWithMachException()
|
/openbsd/gnu/llvm/lldb/source/API/ |
H A D | SBFrame.cpp | 345 bool SBFrame::SetPC(addr_t new_pc) { in SetPC() function in SBFrame 359 ret_val = reg_ctx_sp->SetPC(new_pc); in SetPC()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Windows/Common/ |
H A D | NativeProcessWindows.cpp | 503 register_context.SetPC(pc); in OnDebugException()
|
H A D | ProcessWindows.cpp | 469 register_context->SetPC(pc); in RefreshStateAfterStop()
|
/openbsd/gnu/llvm/lldb/source/Plugins/Process/Linux/ |
H A D | NativeProcessLinux.cpp | 1264 if (llvm::Error Err = reg_ctx.SetPC(exe_addr).ToError()) in Syscall()
|
/openbsd/gnu/llvm/lldb/source/Commands/ |
H A D | CommandObjectThread.cpp | 1683 if (!reg_ctx->SetPC(callAddr)) { in DoExecute()
|