Searched refs:sp_ (Results 1 – 4 of 4) sorted by relevance
/developtools/profiler/device/plugins/native_daemon/include/ |
D | perf_event_record.h | 45 uint64_t sp_ = 0; member 59 …CallFrame(uint64_t ip, uint64_t sp = 0, bool isJsFrame = false) : ip_(ip), sp_(sp), isJsFrame_(isJ… in ip_() 68 return (ip_ == b.ip_) && (sp_ == b.sp_); 72 return (ip_ != b.ip_) || (sp_ != b.sp_); 76 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
|
/developtools/hiperf/include/ |
D | perf_event_record.h | 51 uint64_t sp_ = 0; // sp member 59 CallFrame(uint64_t ip, uint64_t sp = 0) : ip_(ip), sp_(sp) {} in ip_() 68 return (ip_ == b.ip_) && (sp_ == b.sp_); 72 return (ip_ != b.ip_) || (sp_ != b.sp_); 76 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
D | stack_preprocess.cpp | 1011 … callFrames[idx].ip_, callFrames[idx].sp_, std::string(callFrames[idx].symbolName_).c_str(), in WriteFrames() 1023 frame.set_sp(callFrame.sp_); in SetFrameInfo() 1031 frame.set_sp(callFrame.sp_); in SetFrameInfo()
|
D | call_stack.cpp | 381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
|