Retro68/gcc/libsanitizer/tsan/tsan_clock.h

128 lines
3.0 KiB
C
Raw Normal View History

2014-09-21 17:33:12 +00:00
//===-- tsan_clock.h --------------------------------------------*- C++ -*-===//
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// This file is a part of ThreadSanitizer (TSan), a race detector.
//
//===----------------------------------------------------------------------===//
#ifndef TSAN_CLOCK_H
#define TSAN_CLOCK_H
#include "tsan_defs.h"
2015-08-28 15:33:40 +00:00
#include "tsan_dense_alloc.h"
2014-09-21 17:33:12 +00:00
namespace __tsan {
2015-08-28 15:33:40 +00:00
struct ClockElem {
u64 epoch : kClkBits;
u64 reused : 64 - kClkBits;
};
struct ClockBlock {
static const uptr kSize = 512;
static const uptr kTableSize = kSize / sizeof(u32);
static const uptr kClockCount = kSize / sizeof(ClockElem);
union {
u32 table[kTableSize];
ClockElem clock[kClockCount];
};
ClockBlock() {
}
};
typedef DenseSlabAlloc<ClockBlock, 1<<16, 1<<10> ClockAlloc;
typedef DenseSlabAllocCache ClockCache;
2014-09-21 17:33:12 +00:00
// The clock that lives in sync variables (mutexes, atomics, etc).
class SyncClock {
public:
SyncClock();
2015-08-28 15:33:40 +00:00
~SyncClock();
2014-09-21 17:33:12 +00:00
uptr size() const {
2015-08-28 15:33:40 +00:00
return size_;
2014-09-21 17:33:12 +00:00
}
2015-08-28 15:33:40 +00:00
u64 get(unsigned tid) const {
return elem(tid).epoch;
2014-09-21 17:33:12 +00:00
}
2015-08-28 15:33:40 +00:00
void Resize(ClockCache *c, uptr nclk);
void Reset(ClockCache *c);
void DebugDump(int(*printf)(const char *s, ...));
2014-09-21 17:33:12 +00:00
private:
friend struct ThreadClock;
2015-08-28 15:33:40 +00:00
static const uptr kDirtyTids = 2;
unsigned release_store_tid_;
unsigned release_store_reused_;
unsigned dirty_tids_[kDirtyTids];
// tab_ contains indirect pointer to a 512b block using DenseSlabAlloc.
// If size_ <= 64, then tab_ points to an array with 64 ClockElem's.
// Otherwise, tab_ points to an array with 128 u32 elements,
// each pointing to the second-level 512b block with 64 ClockElem's.
ClockBlock *tab_;
u32 tab_idx_;
u32 size_;
ClockElem &elem(unsigned tid) const;
2014-09-21 17:33:12 +00:00
};
// The clock that lives in threads.
struct ThreadClock {
public:
2015-08-28 15:33:40 +00:00
typedef DenseSlabAllocCache Cache;
explicit ThreadClock(unsigned tid, unsigned reused = 0);
2014-09-21 17:33:12 +00:00
u64 get(unsigned tid) const {
DCHECK_LT(tid, kMaxTidInClock);
2015-08-28 15:33:40 +00:00
return clk_[tid].epoch;
2014-09-21 17:33:12 +00:00
}
2015-08-28 15:33:40 +00:00
void set(unsigned tid, u64 v);
void set(u64 v) {
DCHECK_GE(v, clk_[tid_].epoch);
clk_[tid_].epoch = v;
2014-09-21 17:33:12 +00:00
}
2015-08-28 15:33:40 +00:00
void tick() {
clk_[tid_].epoch++;
2014-09-21 17:33:12 +00:00
}
uptr size() const {
return nclk_;
}
2015-08-28 15:33:40 +00:00
void acquire(ClockCache *c, const SyncClock *src);
void release(ClockCache *c, SyncClock *dst) const;
void acq_rel(ClockCache *c, SyncClock *dst);
void ReleaseStore(ClockCache *c, SyncClock *dst) const;
void DebugReset();
void DebugDump(int(*printf)(const char *s, ...));
2014-09-21 17:33:12 +00:00
private:
2015-08-28 15:33:40 +00:00
static const uptr kDirtyTids = SyncClock::kDirtyTids;
const unsigned tid_;
const unsigned reused_;
u64 last_acquire_;
2014-09-21 17:33:12 +00:00
uptr nclk_;
2015-08-28 15:33:40 +00:00
ClockElem clk_[kMaxTidInClock];
bool IsAlreadyAcquired(const SyncClock *src) const;
void UpdateCurrentThread(SyncClock *dst) const;
2014-09-21 17:33:12 +00:00
};
} // namespace __tsan
#endif // TSAN_CLOCK_H