HomeSort by relevance Sort by last modified time
    Searched refs:GetPC (Results 1 - 25 of 60) sorted by null

1 2 3

  /external/chromium_org/third_party/tcmalloc/chromium/src/
getpc.h 34 // the single (inline) function GetPC. GetPC is used in a signal
78 // GetPC can try to identify this situation, on architectures where it
137 inline void* GetPC(const ucontext_t& signal_ucontext) {
173 inline void* GetPC(const struct ucontext_t& signal_ucontext) {
174 RAW_LOG(ERROR, "GetPC is not yet implemented on Windows\n");
180 inline void* GetPC(const ucontext_t& signal_ucontext) {
192 inline void* GetPC(const ucontext_t& signal_ucontext) {
  /external/lldb/source/Target/
StackID.cpp 52 return lhs.GetPC() == rhs.GetPC();
67 return lhs.GetPC() != rhs.GetPC();
ThreadPlanStepInstruction.cpp 46 m_instruction_addr = m_thread.GetRegisterContext()->GetPC(0);
119 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr)
139 addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC();
142 addr_t return_addr = return_frame->GetRegisterContext()->GetPC();
183 if (m_thread.GetRegisterContext()->GetPC(0) != m_instruction_addr)
ThreadPlanShouldStopHere.cpp 57 lldb::addr_t current_addr = m_owner->GetThread().GetRegisterContext()->GetPC(0);
ThreadPlanStepOverBreakpoint.cpp 41 m_breakpoint_addr = m_thread.GetRegisterContext()->GetPC();
116 lldb::addr_t pc_addr = m_thread.GetRegisterContext()->GetPC();
ThreadPlanStepThrough.cpp 49 m_start_address = GetThread().GetRegisterContext()->GetPC(0);
102 lldb::addr_t current_address = GetThread().GetRegisterContext()->GetPC(0);
ThreadPlanStepRange.cpp 138 lldb::addr_t pc_load_addr = m_thread.GetRegisterContext()->GetPC();
218 lldb::addr_t cur_pc = m_thread.GetRegisterContext()->GetPC();
340 lldb::addr_t cur_addr = GetThread().GetRegisterContext()->GetPC();
ThreadPlanStepOverRange.cpp 76 s.Address (m_thread.GetRegisterContext()->GetPC(),
360 lldb::addr_t curr_pc = m_thread.GetRegisterContext()->GetPC();
ThreadPlanStepUntil.cpp 60 m_step_from_insn = frame_sp->GetStackID().GetPC();
70 m_return_addr = return_frame_sp->GetStackID().GetPC();
  /external/chromium_org/third_party/tcmalloc/vendor/src/
getpc.h 34 // the single (inline) function GetPC. GetPC is used in a signal
76 // GetPC can try to identify this situation, on architectures where it
134 inline void* GetPC(const ucontext_t& signal_ucontext) {
170 inline void* GetPC(const struct ucontext_t& signal_ucontext) {
171 RAW_LOG(ERROR, "GetPC is not yet implemented on Windows\n");
180 inline void* GetPC(const ucontext_t& signal_ucontext) {
  /external/lldb/examples/python/
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 print "Disassembly 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/chromium_org/third_party/tcmalloc/chromium/src/tests/
getpc_test.cc 33 // This verifies that GetPC works correctly. This test uses a minimum
35 // O/Ses and CPUs and test that GetPC is working.
38 #include "getpc.h" // should be first to get the _GNU_SOURCE dfn
45 static volatile void* getpc_retval = NULL; // what GetPC returns
50 getpc_retval = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
  /external/chromium_org/third_party/tcmalloc/vendor/src/tests/
getpc_test.cc 33 // This verifies that GetPC works correctly. This test uses a minimum
35 // O/Ses and CPUs and test that GetPC is working.
38 #include "getpc.h" // should be first to get the _GNU_SOURCE dfn
45 static volatile void* getpc_retval = NULL; // what GetPC returns
50 getpc_retval = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
  /external/lldb/include/lldb/Target/
StackID.h 55 GetPC() const
RegisterContext.h 127 GetPC (uint64_t fail_value = LLDB_INVALID_ADDRESS);
  /external/lldb/test/python_api/default-constructor/
sb_frame.py 10 obj.GetPC()
  /external/lldb/scripts/Python/interface/
SBFrame.i 67 GetPC () const;
279 __swig_getmethods__["pc"] = GetPC
281 if _newclass: pc = property(GetPC, SetPC)
  /external/lldb/test/expression_command/call-throws/
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/
DNBArch.h 70 virtual uint64_t GetPC (uint64_t failValue) = 0; // Get program counter
  /external/lldb/test/expression_command/call-restarts/
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/include/lldb/API/
SBFrame.h 40 GetPC () const;
  /external/lldb/tools/debugserver/source/MacOSX/
MachThread.cpp 320 MachThread::GetPC(uint64_t failValue)
323 return m_arch_ap->GetPC(failValue);
367 GetPC(INVALID_NUB_ADDRESS),
410 return m_process->Breakpoints().FindByAddress(GetPC());
MachThread.h 61 uint64_t GetPC(uint64_t failValue = INVALID_NUB_ADDRESS); // Get program counter
  /external/lldb/tools/debugserver/source/MacOSX/ppc/
DNBArchImpl.h 43 virtual uint64_t GetPC(uint64_t failValue); // Get program counter
  /external/lldb/source/Plugins/Process/Utility/
UnwindMacOSXFrameBackchain.cpp 109 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS);
208 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS);

Completed in 1177 milliseconds

1 2 3