Home
last modified time | relevance | path

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

/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl-old/
H A Dtsan_shadow.h23 class FastState {
25 FastState(u64 tid, u64 epoch) { in FastState() function
33 explicit FastState(u64 x) : x_(x) {} in FastState() function
103 class Shadow : public FastState {
105 explicit Shadow(u64 x) : FastState(x) {} in Shadow()
107 explicit Shadow(const FastState &s) : FastState(s.x_) { ClearHistorySize(); } in Shadow()
H A Dtsan_rtl_access.cpp378 FastState fast_state = thr->fast_state; in MemoryAccess()
557 FastState fast_state = thr->fast_state; in MemoryAccessRange()
H A Dtsan_rtl.h135 FastState fast_state;
611 void ALWAYS_INLINE TraceAddEvent(ThreadState *thr, FastState fs, in TraceAddEvent()
H A Dtsan_rtl_mutex.cpp119 FastState last(last_lock); in MutexDestroy()
H A Dtsan_rtl_report.cpp926 FastState s(thr->racy_state[i]); in ReportRace()
/llvm-project-15.0.7/compiler-rt/lib/tsan/rtl/
H A Dtsan_shadow.h16 class FastState {
18 FastState() { Reset(); } in FastState() function
55 static_assert(sizeof(FastState) == kShadowSize, "bad FastState size");
61 Shadow(FastState state, u32 addr, u32 size, AccessType typ) { in Shadow()
133 FastState fs; in FreedMarker()
H A Dtsan_rtl_access.cpp137 FastState fast_state = thr->fast_state; in TraceTime()
432 FastState fast_state = thr->fast_state; in MemoryAccess()
457 FastState fast_state = thr->fast_state; in MemoryAccess16()
494 FastState fast_state = thr->fast_state; in UnalignedMemoryAccess()
704 FastState fast_state = thr->fast_state; in MemoryAccessRangeT()
H A Dtsan_sync.h59 FastState last_lock;
H A Dtsan_rtl_mutex.cpp27 FastState last_lock, StackID creation_stack_id);
102 FastState last_lock; in MutexDestroy()
555 FastState last_lock, StackID creation_stack_id) { in ReportDestroyLocked()
H A Dtsan_rtl.h159 FastState fast_state;
/llvm-project-15.0.7/compiler-rt/lib/tsan/tests/unit/
H A Dtsan_shadow_test.cpp34 FastState fs; in TEST()