/external/lldb/examples/python/ |
D | diagnose_unwind.py | 70 address_list = [cur_thread.GetFrameAtIndex(0).GetPC()] 71 this_module = backtrace_print_frame (target, 0, cur_thread.GetFrameAtIndex(0).GetPC(), initial_fp) 182 this_module = backtrace_print_frame (target, frame_num, frame.GetPC(), frame.GetFP()) 187 addresses_seen.append (frame.GetPC()) 223 …embly of %s, frame %d, address 0x%x" % (frame.GetFunctionName(), frame.GetFrameID(), frame.GetPC()) 226 debugger.HandleCommand('disassemble -F att -a 0x%x' % frame.GetPC()) 228 debugger.HandleCommand('disassemble -a 0x%x' % frame.GetPC()) 229 if frame.GetPC() in additional_addresses_to_disassemble: 230 additional_addresses_to_disassemble.remove (frame.GetPC()) 252 debugger.HandleCommand('image show-unwind -a "0x%x"' % frame.GetPC()) [all …]
|
/external/lldb/source/Target/ |
D | ThreadPlanStepInstruction.cpp | 46 m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0); in ThreadPlanStepInstruction() 119 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) in ShouldStop() 139 … addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); in ShouldStop() 142 addr_t return_addr = return_frame->GetRegisterContext()->GetPC(); in ShouldStop() 183 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr) in ShouldStop()
|
D | StackID.cpp | 52 return lhs.GetPC() == rhs.GetPC(); in operator ==() 67 return lhs.GetPC() != rhs.GetPC(); in operator !=()
|
D | ThreadPlanStepOverBreakpoint.cpp | 41 m_breakpoint_addr = m_thread.GetRegisterContext()->GetPC(); in ThreadPlanStepOverBreakpoint() 116 lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC(); in MischiefManaged()
|
D | ThreadPlanStepThrough.cpp | 49 m_start_address = GetThread().GetRegisterContext()->GetPC(0); in ThreadPlanStepThrough() 102 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0); in LookForPlanToStepThroughFromCurrentPC()
|
D | ThreadPlanStepRange.cpp | 138 lldb::addr_t pc_load_addr = m_thread.GetRegisterContext()->GetPC(); in InRange() 218 lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC(); in InSymbol() 340 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC(); in SetNextBranchBreakpoint()
|
D | ThreadPlanStepOverRange.cpp | 76 s.Address (m_thread.GetRegisterContext()->GetPC(), in ShouldStop() 360 lldb::addr_t curr_pc = m_thread.GetRegisterContext()->GetPC(); in DoWillResume()
|
D | ThreadPlanShouldStopHere.cpp | 57 lldb::addr_t current_addr = m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
|
D | StackFrameList.cpp | 88 lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC(); in GetCurrentInlinedDepth() 127 lldb::addr_t curr_pc = m_thread.GetRegisterContext()->GetPC(); in ResetCurrentInlinedDepth() 250 m_current_inlined_pc = m_thread.GetRegisterContext()->GetPC(); in SetCurrentInlinedDepth() 311 pc = reg_ctx_sp->GetPC(); in GetFramesUpTo()
|
D | ThreadPlanStepUntil.cpp | 60 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil() 70 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
|
D | ThreadPlanStepInRange.cpp | 101 s.Address (m_thread.GetRegisterContext()->GetPC(), in ShouldStop() 209 lldb::addr_t curr_addr = m_thread.GetRegisterContext()->GetPC(); in ShouldStop()
|
/external/google-breakpad/src/processor/ |
D | stackwalker_selftest.cc | 225 static uint32_t GetPC() __attribute__((noinline)); 226 static uint32_t GetPC() { in GetPC() function 278 static uint32_t GetPC() __attribute__((noinline)); 279 static uint32_t GetPC() { in GetPC() function 300 extern uint32_t GetPC(); 331 context.srr0 = GetPC(); in CountCallerFrames() 338 context.pc = GetPC(); in CountCallerFrames()
|
D | stackwalker_selftest_sol.s | 85 ENTRY(GetPC) 92 SET_SIZE(GetPC)
|
/external/lldb/test/expression_command/call-restarts/ |
D | TestCallThatRestarts.py | 43 self.assertTrue (self.orig_frame_pc == frame.GetPC(), "Restored the zeroth frame correctly") 85 self.orig_frame_pc = frame.GetPC() 143 …self.assertTrue (frame.GetPC() == self.orig_frame_pc, "Continuing returned to the place we started…
|
/external/lldb/scripts/Python/interface/ |
D | SBFrame.i | 67 GetPC () const; 279 __swig_getmethods__["pc"] = GetPC 281 if _newclass: pc = property(GetPC, SetPC)
|
/external/lldb/test/expression_command/call-throws/ |
D | TestCallThatThrows.py | 39 self.assertTrue (self.orig_frame_pc == frame.GetPC(), "Restored the zeroth frame correctly") 69 self.orig_frame_pc = frame.GetPC()
|
/external/lldb/tools/debugserver/source/MacOSX/ |
D | MachThread.cpp | 320 MachThread::GetPC(uint64_t failValue) in GetPC() function in MachThread 323 return m_arch_ap->GetPC(failValue); in GetPC() 367 GetPC(INVALID_NUB_ADDRESS), in Dump() 410 return m_process->Breakpoints().FindByAddress(GetPC()); in CurrentBreakpoint()
|
D | MachThread.h | 61 uint64_t GetPC(uint64_t failValue = INVALID_NUB_ADDRESS); // Get program counter
|
/external/lldb/test/python_api/default-constructor/ |
D | sb_frame.py | 10 obj.GetPC()
|
/external/lldb/source/Plugins/Process/Utility/ |
D | UnwindMacOSXFrameBackchain.cpp | 109 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS); in GetStackFrameData_i386() 208 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS); in GetStackFrameData_x86_64()
|
/external/lldb/include/lldb/Target/ |
D | StackID.h | 55 GetPC() const in GetPC() function
|
D | RegisterContext.h | 127 GetPC (uint64_t fail_value = LLDB_INVALID_ADDRESS);
|
/external/lldb/tools/debugserver/source/ |
D | DNBArch.h | 70 virtual uint64_t GetPC (uint64_t failValue) = 0; // Get program counter
|
/external/lldb/tools/debugserver/source/MacOSX/ppc/ |
D | DNBArchImpl.h | 43 virtual uint64_t GetPC(uint64_t failValue); // Get program counter
|
/external/lldb/include/lldb/API/ |
D | SBFrame.h | 40 GetPC () const;
|