Home
last modified time | relevance | path

Searched refs:toppc (Results 1 – 3 of 3) sorted by relevance

/external/compiler-rt/lib/tsan/rtl/
Dtsan_sync.cc253 void StackTrace::ObtainCurrent(ThreadState *thr, uptr toppc) { in ObtainCurrent() argument
256 if (n_ + !!toppc == 0) in ObtainCurrent()
261 if (n_ + !!toppc > c_) { in ObtainCurrent()
262 start = n_ - c_ + !!toppc; in ObtainCurrent()
263 n_ = c_ - !!toppc; in ObtainCurrent()
267 (n_ + !!toppc) * sizeof(s_[0])); in ObtainCurrent()
271 if (toppc) { in ObtainCurrent()
272 s_[n_] = toppc; in ObtainCurrent()
Dtsan_sync.h36 void ObtainCurrent(ThreadState *thr, uptr toppc);
Dtsan_rtl_report.cc628 const uptr toppc = TraceTopPC(thr); in ReportRace() local
629 traces[0].ObtainCurrent(thr, toppc); in ReportRace()