Searched refs:toppc (Results 1 – 3 of 3) sorted by relevance
61 void StackTrace::ObtainCurrent(ThreadState *thr, uptr toppc) { in ObtainCurrent() argument64 if (n_ + !!toppc == 0) in ObtainCurrent()69 if (n_ + !!toppc > c_) { in ObtainCurrent()70 start = n_ - c_ + !!toppc; in ObtainCurrent()71 n_ = c_ - !!toppc; in ObtainCurrent()75 if (n_ + !!toppc > kTraceStackSize) { in ObtainCurrent()76 start = n_ - kTraceStackSize + !!toppc; in ObtainCurrent()77 n_ = kTraceStackSize - !!toppc; in ObtainCurrent()80 (n_ + !!toppc) * sizeof(s_[0])); in ObtainCurrent()84 if (toppc) { in ObtainCurrent()[all …]
36 void ObtainCurrent(ThreadState *thr, uptr toppc);
675 const uptr toppc = TraceTopPC(thr); in ReportRace() local676 traces[0].ObtainCurrent(thr, toppc); in ReportRace()