Home
last modified time | relevance | path

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

/developtools/profiler/device/plugins/native_daemon/include/
Dperf_event_record.h45 uint64_t sp_ = 0; member
58 CallFrame(uint64_t ip, uint64_t sp = 0) : ip_(ip), sp_(sp) {} in ip_()
67 return (ip_ == b.ip_) && (sp_ == b.sp_);
71 return (ip_ != b.ip_) || (sp_ != b.sp_);
75 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
/developtools/hiperf/include/
Dperf_event_record.h47 uint64_t sp_ = 0; member
55 CallFrame(uint64_t ip, uint64_t sp = 0) : ip_(ip), sp_(sp) {} in ip_()
64 return (ip_ == b.ip_) && (sp_ == b.sp_);
68 return (ip_ != b.ip_) || (sp_ != b.sp_);
72 return StringPrintf("ip: 0x%016llx sp: 0x%016llx", ip_, sp_); in ToString()
/developtools/profiler/host/smartperf/trace_streamer/src/filter/
Dnative_hook_filter.h29 sp_(INVALID_UINT64), in NativeHookFrameInfo()
43 sp_(sp), in NativeHookFrameInfo()
52 uint64_t sp_; variable
Dnative_hook_filter.cpp780 …callChainId, depth, frameInfo->ip_, frameInfo->sp_, frameInfo->symbolIndex_, frameInfo->filePathIn… in ParseFramesWithOutCallStackCompressedMode()
/developtools/smartperf_host/trace_streamer/src/filter/
Dnative_hook_filter.h29 sp_(INVALID_UINT64), in NativeHookFrameInfo()
43 sp_(sp), in NativeHookFrameInfo()
52 uint64_t sp_; variable
Dnative_hook_filter.cpp788 …callChainId, depth, frameInfo->ip_, frameInfo->sp_, frameInfo->symbolIndex_, frameInfo->filePathIn… in ParseFramesWithOutCallStackCompressedMode()
/developtools/smartperf_host/trace_streamer/test/unittest/
Dnative_hook_parser_test.cpp270 sp_(sp), in NativeHookFrameCache()
288 sp_ = nativeHookFrame.Sps()[index]; in NativeHookFrameCache()
312 if (frameCache.GetSp() != sp_) { in operator ==()
313 TS_LOGE("sp_ = %lu, frameCache.GetSp() = %lu", sp_, frameCache.GetSp()); in operator ==()
348 return sp_; in GetSp()
371 uint64_t sp_; member in SysTuning::TraceStreamer::NativeHookFrameCache
/developtools/hiperf/test/unittest/common/native/
Dcallstack_test.cpp679 EXPECT_EQ(TEST_DWARF_FRAMES[i].sp, callFrames[i].sp_);
/developtools/profiler/device/plugins/native_daemon/src/
Dcall_stack.cpp381 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()
Dstack_preprocess.cpp626 … callFrames[idx].ip_, callFrames[idx].sp_, std::string(callFrames[idx].symbolName_).c_str(), in WriteFrames()
637 frame.set_sp(callFrame.sp_); in SetFrameInfo()
/developtools/hiperf/src/
Dcallstack.cpp402 if (callStack.back().ip_ == ip && callStack.back().sp_ == sp) { in UnwindStep()