Home
last modified time | relevance | path

Searched refs:sp_ (Results 1 – 4 of 4) sorted by relevance

/developtools/profiler/device/plugins/native_daemon/include/
Dperf_event_record.h45 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/
Dperf_event_record.h51 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/
Dstack_preprocess.cpp1011 … 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()
Dcall_stack.cpp381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()