Home
last modified time | relevance | path

Searched refs:kTracePartSize (Results 1 – 5 of 5) sorted by relevance

/freebsd-13.1/contrib/llvm-project/compiler-rt/lib/tsan/rtl/
H A Dtsan_trace.h22 const int kTracePartSize = 1 << kTracePartSizeBits; variable
23 const int kTraceParts = 2 * 1024 * 1024 / kTracePartSize;
24 const int kTraceSize = kTracePartSize * kTraceParts;
H A Dtsan_rtl_report.cpp397 const int partidx = (epoch / kTracePartSize) % TraceParts(); in RestoreStack()
399 if (epoch < hdr->epoch0 || epoch >= hdr->epoch0 + kTracePartSize) in RestoreStack()
401 CHECK_EQ(RoundDown(epoch, kTracePartSize), hdr->epoch0); in RestoreStack()
404 const u64 ebegin = RoundDown(eend, kTracePartSize); in RestoreStack()
H A Dtsan_rtl.cpp619 unsigned trace = (thr->fast_state.epoch() / kTracePartSize) % TraceParts(); in TraceSwitch()
642 return TraceSize() / kTracePartSize; in TraceParts()
H A Dtsan_rtl_thread.cpp91 epoch0 = RoundUp(epoch1 + 1, kTracePartSize); in OnStarted()
H A Dtsan_rtl.h835 if (UNLIKELY((pos % kTracePartSize) == 0)) { in TraceAddEvent()