Searched refs:sp_ (Results 1 - 4 of 4) sorted by relevance
/developtools/profiler/device/plugins/native_daemon/include/ |
H A 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_(isJsFrame) {} in CallFrame() 68 return (ip_ == b.ip_) && (sp_ == b.sp_); in operator ==() 72 return (ip_ != b.ip_) || (sp_ != b.sp_); in operator !=() 76 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
|
/developtools/hiperf/include/ |
H A D | perf_event_record.h | 53 uint64_t sp_ = 0; // sp member 61 CallFrame(uint64_t ip, uint64_t sp = 0) : ip_(ip), sp_(sp) {} in CallFrame() 70 return (ip_ == b.ip_) && (sp_ == b.sp_); in operator ==() 74 return (ip_ != b.ip_) || (sp_ != b.sp_); in operator !=() 78 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
|
/developtools/profiler/device/plugins/native_daemon/src/ |
H A D | stack_preprocess.cpp | 1088 callFrames[idx].ip_, callFrames[idx].sp_, std::string(callFrames[idx].symbolName_).c_str(), in WriteFrames() 1100 frame.set_sp(callFrame.sp_); in SetFrameInfo() 1108 frame.set_sp(callFrame.sp_); in SetFrameInfo()
|
H A D | call_stack.cpp | 381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) {
in UnwindStep()
|
Completed in 6 milliseconds