Home
last modified time | relevance | path

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

123

/external/lldb/examples/python/
Ddiagnose_unwind.py70 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/
DThreadPlanStepInstruction.cpp46 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()
DStackID.cpp52 return lhs.GetPC() == rhs.GetPC(); in operator ==()
67 return lhs.GetPC() != rhs.GetPC(); in operator !=()
DThreadPlanStepOverBreakpoint.cpp41 m_breakpoint_addr = m_thread.GetRegisterContext()->GetPC(); in ThreadPlanStepOverBreakpoint()
116 lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC(); in MischiefManaged()
DThreadPlanStepThrough.cpp49 m_start_address = GetThread().GetRegisterContext()->GetPC(0); in ThreadPlanStepThrough()
102 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0); in LookForPlanToStepThroughFromCurrentPC()
DThreadPlanStepRange.cpp138 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()
DThreadPlanStepOverRange.cpp76 s.Address (m_thread.GetRegisterContext()->GetPC(), in ShouldStop()
360 lldb::addr_t curr_pc = m_thread.GetRegisterContext()->GetPC(); in DoWillResume()
DThreadPlanShouldStopHere.cpp57 lldb::addr_t current_addr = m_owner->GetThread().GetRegisterContext()->GetPC(0); in InvokeShouldStopHereCallback()
DStackFrameList.cpp88 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()
DThreadPlanStepUntil.cpp60 m_step_from_insn = frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
70 m_return_addr = return_frame_sp->GetStackID().GetPC(); in ThreadPlanStepUntil()
DThreadPlanStepInRange.cpp101 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/
Dstackwalker_selftest.cc225 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()
Dstackwalker_selftest_sol.s85 ENTRY(GetPC)
92 SET_SIZE(GetPC)
/external/lldb/test/expression_command/call-restarts/
DTestCallThatRestarts.py43 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/
DSBFrame.i67 GetPC () const;
279 __swig_getmethods__["pc"] = GetPC
281 if _newclass: pc = property(GetPC, SetPC)
/external/lldb/test/expression_command/call-throws/
DTestCallThatThrows.py39 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/
DMachThread.cpp320 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()
DMachThread.h61 uint64_t GetPC(uint64_t failValue = INVALID_NUB_ADDRESS); // Get program counter
/external/lldb/test/python_api/default-constructor/
Dsb_frame.py10 obj.GetPC()
/external/lldb/source/Plugins/Process/Utility/
DUnwindMacOSXFrameBackchain.cpp109 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/
DStackID.h55 GetPC() const in GetPC() function
DRegisterContext.h127 GetPC (uint64_t fail_value = LLDB_INVALID_ADDRESS);
/external/lldb/tools/debugserver/source/
DDNBArch.h70 virtual uint64_t GetPC (uint64_t failValue) = 0; // Get program counter
/external/lldb/tools/debugserver/source/MacOSX/ppc/
DDNBArchImpl.h43 virtual uint64_t GetPC(uint64_t failValue); // Get program counter
/external/lldb/include/lldb/API/
DSBFrame.h40 GetPC () const;

123