Searched refs:GetPC (Results 1 - 25 of 60) sorted by path

123

/external/chromium_org/third_party/tcmalloc/chromium/src/
H A Dgetpc.h34 // 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) { function
173 inline void* GetPC(const struct ucontext_t& signal_ucontext) { function
174 RAW_LOG(ERROR, "GetPC is not yet implemented on Windows\n");
180 inline void* GetPC(const ucontext_t& signal_ucontext) { function
192 inline void* GetPC(const ucontext_t& signal_ucontext) { function
H A Dprofiler.cc273 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
/external/chromium_org/third_party/tcmalloc/chromium/src/tests/
H A Dgetpc_test.cc33 // This verifies that GetPC works correctly. This test uses a minimum
35 // O/Ses and CPUs and test that GetPC is working.
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/
H A Dgetpc.h34 // 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) { function
170 inline void* GetPC(const struct ucontext_t& signal_ucontext) { function
171 RAW_LOG(ERROR, "GetPC is not yet implemented on Windows\n");
180 inline void* GetPC(const ucontext_t& signal_ucontext) { function
H A Dprofiler.cc271 stack[0] = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
/external/chromium_org/third_party/tcmalloc/vendor/src/tests/
H A Dgetpc_test.cc33 // This verifies that GetPC works correctly. This test uses a minimum
35 // O/Ses and CPUs and test that GetPC is working.
45 static volatile void* getpc_retval = NULL; // what GetPC returns
50 getpc_retval = GetPC(*reinterpret_cast<ucontext_t*>(signal_ucontext));
/external/lldb/examples/python/
H A 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 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...]
H A Dperformance.py185 print "tid = %#x pc = %#x " % (thread.GetThreadID(),frame.GetPC()),
/external/lldb/include/lldb/API/
H A DSBFrame.h40 GetPC () const;
/external/lldb/include/lldb/Target/
H A DRegisterContext.h127 GetPC (uint64_t fail_value = LLDB_INVALID_ADDRESS);
H A DStackID.h55 GetPC() const function in class:lldb_private::StackID
/external/lldb/scripts/Python/interface/
H A DSBFrame.i67 GetPC () const;
279 __swig_getmethods__["pc"] = GetPC
281 if _newclass: pc = property(GetPC, SetPC)
/external/lldb/source/API/
H A DSBFrame.cpp447 SBFrame::GetPC () const function in class:SBFrame
470 log->Printf ("SBFrame::GetPC () => error: could not reconstruct frame object for this SBFrame.");
476 log->Printf ("SBFrame::GetPC () => error: process is running");
481 log->Printf ("SBFrame(%p)::GetPC () => 0x%" PRIx64, frame, addr);
/external/lldb/source/Expression/
H A DDWARFExpression.cpp1230 pc = reg_ctx->GetPC();
1239 pc = reg_ctx_sp->GetPC();
/external/lldb/source/Plugins/DynamicLoader/Darwin-Kernel/
H A DDynamicLoaderDarwinKernel.cpp292 addr_t pc = thread->GetRegisterContext ()->GetPC(LLDB_INVALID_ADDRESS);
/external/lldb/source/Plugins/LanguageRuntime/ObjC/AppleObjCRuntime/
H A DAppleObjCTrampolineHandler.cpp833 lldb::addr_t curr_pc = thread.GetRegisterContext()->GetPC();
/external/lldb/source/Plugins/Process/POSIX/
H A DPOSIXThread.cpp396 lldb::addr_t pc = GetRegisterContext()->GetPC();
H A DRegisterContext_i386.cpp376 if ((pc = GetPC()) == LLDB_INVALID_ADDRESS)
H A DRegisterContext_x86_64.cpp903 if ((pc = GetPC()) == LLDB_INVALID_ADDRESS)
/external/lldb/source/Plugins/Process/Utility/
H A DRegisterContextLLDB.cpp101 addr_t current_pc = reg_ctx_sp->GetPC();
H A DStopInfoMachException.cpp439 addr_t pc = reg_ctx_sp->GetPC() - pc_decrement;
H A DUnwindMacOSXFrameBackchain.cpp109 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS);
208 cursor.pc = reg_ctx->GetPC (LLDB_INVALID_ADDRESS);
/external/lldb/source/Plugins/Process/gdb-remote/
H A DProcessGDBRemote.cpp1606 addr_t pc = thread_sp->GetRegisterContext()->GetPC();
1657 addr_t pc = thread_sp->GetRegisterContext()->GetPC();
/external/lldb/source/Target/
H A DProcess.cpp5328 ts.Printf("[ip 0x%" PRIx64 "] ", register_context->GetPC());
H A DRegisterContext.cpp94 RegisterContext::GetPC(uint64_t fail_value) function in class:RegisterContext

Completed in 490 milliseconds

123