2012-11-22 23:03:11 +01:00
|
|
|
//===-- tsan_rtl_thread.cc ------------------------------------------------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "sanitizer_common/sanitizer_placement_new.h"
|
|
|
|
#include "tsan_rtl.h"
|
|
|
|
#include "tsan_mman.h"
|
|
|
|
#include "tsan_platform.h"
|
|
|
|
#include "tsan_report.h"
|
|
|
|
#include "tsan_sync.h"
|
|
|
|
|
|
|
|
namespace __tsan {
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
// ThreadContext implementation.
|
|
|
|
|
|
|
|
ThreadContext::ThreadContext(int tid)
|
|
|
|
: ThreadContextBase(tid)
|
|
|
|
, thr()
|
|
|
|
, sync()
|
|
|
|
, epoch0()
|
|
|
|
, epoch1() {
|
|
|
|
}
|
|
|
|
|
2012-11-22 23:03:11 +01:00
|
|
|
#ifndef TSAN_GO
|
2013-11-04 22:33:31 +01:00
|
|
|
ThreadContext::~ThreadContext() {
|
|
|
|
}
|
2012-11-22 23:03:11 +01:00
|
|
|
#endif
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
void ThreadContext::OnDead() {
|
2014-09-23 19:59:53 +02:00
|
|
|
CHECK_EQ(sync.size(), 0);
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadContext::OnJoined(void *arg) {
|
|
|
|
ThreadState *caller_thr = static_cast<ThreadState *>(arg);
|
2013-12-05 10:18:38 +01:00
|
|
|
AcquireImpl(caller_thr, 0, &sync);
|
2014-09-23 19:59:53 +02:00
|
|
|
sync.Reset(&caller_thr->clock_cache);
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
struct OnCreatedArgs {
|
|
|
|
ThreadState *thr;
|
|
|
|
uptr pc;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ThreadContext::OnCreated(void *arg) {
|
|
|
|
thr = 0;
|
|
|
|
if (tid == 0)
|
2012-11-22 23:03:11 +01:00
|
|
|
return;
|
2013-11-04 22:33:31 +01:00
|
|
|
OnCreatedArgs *args = static_cast<OnCreatedArgs *>(arg);
|
|
|
|
args->thr->fast_state.IncrementEpoch();
|
|
|
|
// Can't increment epoch w/o writing to the trace as well.
|
|
|
|
TraceAddEvent(args->thr, args->thr->fast_state, EventTypeMop, 0);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReleaseImpl(args->thr, 0, &sync);
|
2013-11-04 22:33:31 +01:00
|
|
|
creation_stack_id = CurrentStackId(args->thr, args->pc);
|
|
|
|
if (reuse_count == 0)
|
|
|
|
StatInc(args->thr, StatThreadMaxTid);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadContext::OnReset() {
|
2014-09-23 19:59:53 +02:00
|
|
|
CHECK_EQ(sync.size(), 0);
|
2013-11-04 22:33:31 +01:00
|
|
|
FlushUnneededShadowMemory(GetThreadTrace(tid), TraceSize() * sizeof(Event));
|
|
|
|
//!!! FlushUnneededShadowMemory(GetThreadTraceHeader(tid), sizeof(Trace));
|
|
|
|
}
|
|
|
|
|
2014-09-23 19:59:53 +02:00
|
|
|
void ThreadContext::OnDetached(void *arg) {
|
|
|
|
ThreadState *thr1 = static_cast<ThreadState*>(arg);
|
|
|
|
sync.Reset(&thr1->clock_cache);
|
|
|
|
}
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
struct OnStartedArgs {
|
|
|
|
ThreadState *thr;
|
|
|
|
uptr stk_addr;
|
|
|
|
uptr stk_size;
|
|
|
|
uptr tls_addr;
|
|
|
|
uptr tls_size;
|
|
|
|
};
|
|
|
|
|
|
|
|
void ThreadContext::OnStarted(void *arg) {
|
|
|
|
OnStartedArgs *args = static_cast<OnStartedArgs*>(arg);
|
|
|
|
thr = args->thr;
|
|
|
|
// RoundUp so that one trace part does not contain events
|
|
|
|
// from different threads.
|
|
|
|
epoch0 = RoundUp(epoch1 + 1, kTracePartSize);
|
|
|
|
epoch1 = (u64)-1;
|
2014-05-22 09:09:21 +02:00
|
|
|
new(thr) ThreadState(ctx, tid, unique_id, epoch0, reuse_count,
|
|
|
|
args->stk_addr, args->stk_size, args->tls_addr, args->tls_size);
|
2013-12-05 10:18:38 +01:00
|
|
|
#ifndef TSAN_GO
|
|
|
|
thr->shadow_stack = &ThreadTrace(thr->tid)->shadow_stack[0];
|
|
|
|
thr->shadow_stack_pos = thr->shadow_stack;
|
|
|
|
thr->shadow_stack_end = thr->shadow_stack + kShadowStackSize;
|
|
|
|
#else
|
2013-11-04 22:33:31 +01:00
|
|
|
// Setup dynamic shadow stack.
|
|
|
|
const int kInitStackSize = 8;
|
2013-12-05 10:18:38 +01:00
|
|
|
thr->shadow_stack = (uptr*)internal_alloc(MBlockShadowStack,
|
2013-11-04 22:33:31 +01:00
|
|
|
kInitStackSize * sizeof(uptr));
|
2013-12-05 10:18:38 +01:00
|
|
|
thr->shadow_stack_pos = thr->shadow_stack;
|
|
|
|
thr->shadow_stack_end = thr->shadow_stack + kInitStackSize;
|
2013-11-04 22:33:31 +01:00
|
|
|
#endif
|
|
|
|
#ifndef TSAN_GO
|
2013-12-05 10:18:38 +01:00
|
|
|
AllocatorThreadStart(thr);
|
2013-11-04 22:33:31 +01:00
|
|
|
#endif
|
2014-09-23 19:59:53 +02:00
|
|
|
if (common_flags()->detect_deadlocks) {
|
2014-05-22 09:09:21 +02:00
|
|
|
thr->dd_pt = ctx->dd->CreatePhysicalThread();
|
|
|
|
thr->dd_lt = ctx->dd->CreateLogicalThread(unique_id);
|
|
|
|
}
|
2015-01-13 18:01:30 +01:00
|
|
|
thr->fast_state.SetHistorySize(flags()->history_size);
|
|
|
|
// Commit switch to the new part of the trace.
|
|
|
|
// TraceAddEvent will reset stack0/mset0 in the new part for us.
|
|
|
|
TraceAddEvent(thr, thr->fast_state, EventTypeMop, 0);
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
thr->fast_synch_epoch = epoch0;
|
2013-12-05 10:18:38 +01:00
|
|
|
AcquireImpl(thr, 0, &sync);
|
2013-11-04 22:33:31 +01:00
|
|
|
StatInc(thr, StatSyncAcquire);
|
2014-09-23 19:59:53 +02:00
|
|
|
sync.Reset(&thr->clock_cache);
|
2013-11-04 22:33:31 +01:00
|
|
|
DPrintf("#%d: ThreadStart epoch=%zu stk_addr=%zx stk_size=%zx "
|
|
|
|
"tls_addr=%zx tls_size=%zx\n",
|
|
|
|
tid, (uptr)epoch0, args->stk_addr, args->stk_size,
|
|
|
|
args->tls_addr, args->tls_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadContext::OnFinished() {
|
|
|
|
if (!detached) {
|
|
|
|
thr->fast_state.IncrementEpoch();
|
|
|
|
// Can't increment epoch w/o writing to the trace as well.
|
|
|
|
TraceAddEvent(thr, thr->fast_state, EventTypeMop, 0);
|
2013-12-05 10:18:38 +01:00
|
|
|
ReleaseImpl(thr, 0, &sync);
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
|
|
|
epoch1 = thr->fast_state.epoch();
|
|
|
|
|
2014-09-23 19:59:53 +02:00
|
|
|
if (common_flags()->detect_deadlocks) {
|
2014-05-22 09:09:21 +02:00
|
|
|
ctx->dd->DestroyPhysicalThread(thr->dd_pt);
|
|
|
|
ctx->dd->DestroyLogicalThread(thr->dd_lt);
|
|
|
|
}
|
2014-09-23 19:59:53 +02:00
|
|
|
ctx->clock_alloc.FlushCache(&thr->clock_cache);
|
|
|
|
ctx->metamap.OnThreadIdle(thr);
|
2013-11-04 22:33:31 +01:00
|
|
|
#ifndef TSAN_GO
|
|
|
|
AllocatorThreadFinish(thr);
|
|
|
|
#endif
|
|
|
|
thr->~ThreadState();
|
2014-05-22 09:09:21 +02:00
|
|
|
StatAggregate(ctx->stat, thr->stat);
|
2013-11-04 22:33:31 +01:00
|
|
|
thr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#ifndef TSAN_GO
|
|
|
|
struct ThreadLeak {
|
|
|
|
ThreadContext *tctx;
|
|
|
|
int count;
|
|
|
|
};
|
|
|
|
|
|
|
|
static void MaybeReportThreadLeak(ThreadContextBase *tctx_base, void *arg) {
|
|
|
|
Vector<ThreadLeak> &leaks = *(Vector<ThreadLeak>*)arg;
|
|
|
|
ThreadContext *tctx = static_cast<ThreadContext*>(tctx_base);
|
|
|
|
if (tctx->detached || tctx->status != ThreadStatusFinished)
|
2012-11-22 23:03:11 +01:00
|
|
|
return;
|
2013-11-04 22:33:31 +01:00
|
|
|
for (uptr i = 0; i < leaks.Size(); i++) {
|
|
|
|
if (leaks[i].tctx->creation_stack_id == tctx->creation_stack_id) {
|
|
|
|
leaks[i].count++;
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ThreadLeak leak = {tctx, 1};
|
|
|
|
leaks.PushBack(leak);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
#ifndef TSAN_GO
|
|
|
|
static void ReportIgnoresEnabled(ThreadContext *tctx, IgnoreSet *set) {
|
|
|
|
if (tctx->tid == 0) {
|
|
|
|
Printf("ThreadSanitizer: main thread finished with ignores enabled\n");
|
|
|
|
} else {
|
|
|
|
Printf("ThreadSanitizer: thread T%d %s finished with ignores enabled,"
|
|
|
|
" created at:\n", tctx->tid, tctx->name);
|
|
|
|
PrintStack(SymbolizeStackId(tctx->creation_stack_id));
|
|
|
|
}
|
|
|
|
Printf(" One of the following ignores was not ended"
|
|
|
|
" (in order of probability)\n");
|
|
|
|
for (uptr i = 0; i < set->Size(); i++) {
|
|
|
|
Printf(" Ignore was enabled at:\n");
|
|
|
|
PrintStack(SymbolizeStackId(set->At(i)));
|
2013-11-04 22:33:31 +01:00
|
|
|
}
|
2013-12-05 10:18:38 +01:00
|
|
|
Die();
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
static void ThreadCheckIgnore(ThreadState *thr) {
|
2014-05-22 09:09:21 +02:00
|
|
|
if (ctx->after_multithreaded_fork)
|
|
|
|
return;
|
2013-12-05 10:18:38 +01:00
|
|
|
if (thr->ignore_reads_and_writes)
|
|
|
|
ReportIgnoresEnabled(thr->tctx, &thr->mop_ignore_set);
|
|
|
|
if (thr->ignore_sync)
|
|
|
|
ReportIgnoresEnabled(thr->tctx, &thr->sync_ignore_set);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
static void ThreadCheckIgnore(ThreadState *thr) {}
|
|
|
|
#endif
|
|
|
|
|
2012-11-22 23:03:11 +01:00
|
|
|
void ThreadFinalize(ThreadState *thr) {
|
2013-11-04 22:33:31 +01:00
|
|
|
ThreadCheckIgnore(thr);
|
|
|
|
#ifndef TSAN_GO
|
2012-11-22 23:03:11 +01:00
|
|
|
if (!flags()->report_thread_leaks)
|
|
|
|
return;
|
2014-05-22 09:09:21 +02:00
|
|
|
ThreadRegistryLock l(ctx->thread_registry);
|
2013-11-04 22:33:31 +01:00
|
|
|
Vector<ThreadLeak> leaks(MBlockScopedBuf);
|
2014-05-22 09:09:21 +02:00
|
|
|
ctx->thread_registry->RunCallbackForEachThreadLocked(
|
2013-11-04 22:33:31 +01:00
|
|
|
MaybeReportThreadLeak, &leaks);
|
|
|
|
for (uptr i = 0; i < leaks.Size(); i++) {
|
|
|
|
ScopedReport rep(ReportTypeThreadLeak);
|
2014-09-23 19:59:53 +02:00
|
|
|
rep.AddThread(leaks[i].tctx, true);
|
2013-11-04 22:33:31 +01:00
|
|
|
rep.SetCount(leaks[i].count);
|
2014-09-23 19:59:53 +02:00
|
|
|
OutputReport(thr, rep);
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
#endif
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
2012-11-23 15:46:25 +01:00
|
|
|
int ThreadCount(ThreadState *thr) {
|
2013-11-04 22:33:31 +01:00
|
|
|
uptr result;
|
|
|
|
ctx->thread_registry->GetNumberOfThreads(0, 0, &result);
|
|
|
|
return (int)result;
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int ThreadCreate(ThreadState *thr, uptr pc, uptr uid, bool detached) {
|
|
|
|
StatInc(thr, StatThreadCreate);
|
2013-11-04 22:33:31 +01:00
|
|
|
OnCreatedArgs args = { thr, pc };
|
|
|
|
int tid = ctx->thread_registry->CreateThread(uid, detached, thr->tid, &args);
|
2012-11-22 23:03:11 +01:00
|
|
|
DPrintf("#%d: ThreadCreate tid=%d uid=%zu\n", thr->tid, tid, uid);
|
2013-11-04 22:33:31 +01:00
|
|
|
StatSet(thr, StatThreadMaxAlive, ctx->thread_registry->GetMaxAliveThreads());
|
2012-11-22 23:03:11 +01:00
|
|
|
return tid;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadStart(ThreadState *thr, int tid, uptr os_id) {
|
|
|
|
uptr stk_addr = 0;
|
|
|
|
uptr stk_size = 0;
|
|
|
|
uptr tls_addr = 0;
|
|
|
|
uptr tls_size = 0;
|
|
|
|
GetThreadStackAndTls(tid == 0, &stk_addr, &stk_size, &tls_addr, &tls_size);
|
|
|
|
|
|
|
|
if (tid) {
|
2013-11-04 22:33:31 +01:00
|
|
|
if (stk_addr && stk_size)
|
|
|
|
MemoryRangeImitateWrite(thr, /*pc=*/ 1, stk_addr, stk_size);
|
2012-11-22 23:03:11 +01:00
|
|
|
|
|
|
|
if (tls_addr && tls_size) {
|
|
|
|
// Check that the thr object is in tls;
|
|
|
|
const uptr thr_beg = (uptr)thr;
|
|
|
|
const uptr thr_end = (uptr)thr + sizeof(*thr);
|
|
|
|
CHECK_GE(thr_beg, tls_addr);
|
|
|
|
CHECK_LE(thr_beg, tls_addr + tls_size);
|
|
|
|
CHECK_GE(thr_end, tls_addr);
|
|
|
|
CHECK_LE(thr_end, tls_addr + tls_size);
|
|
|
|
// Since the thr object is huge, skip it.
|
2013-11-04 22:33:31 +01:00
|
|
|
MemoryRangeImitateWrite(thr, /*pc=*/ 2, tls_addr, thr_beg - tls_addr);
|
|
|
|
MemoryRangeImitateWrite(thr, /*pc=*/ 2,
|
|
|
|
thr_end, tls_addr + tls_size - thr_end);
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-05 10:18:38 +01:00
|
|
|
ThreadRegistry *tr = ctx->thread_registry;
|
2013-11-04 22:33:31 +01:00
|
|
|
OnStartedArgs args = { thr, stk_addr, stk_size, tls_addr, tls_size };
|
2013-12-05 10:18:38 +01:00
|
|
|
tr->StartThread(tid, os_id, &args);
|
|
|
|
|
|
|
|
tr->Lock();
|
|
|
|
thr->tctx = (ThreadContext*)tr->GetThreadLocked(tid);
|
|
|
|
tr->Unlock();
|
2014-05-22 09:09:21 +02:00
|
|
|
|
|
|
|
#ifndef TSAN_GO
|
|
|
|
if (ctx->after_multithreaded_fork) {
|
|
|
|
thr->ignore_interceptors++;
|
|
|
|
ThreadIgnoreBegin(thr, 0);
|
|
|
|
ThreadIgnoreSyncBegin(thr, 0);
|
|
|
|
}
|
|
|
|
#endif
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadFinish(ThreadState *thr) {
|
2013-11-04 22:33:31 +01:00
|
|
|
ThreadCheckIgnore(thr);
|
2012-11-22 23:03:11 +01:00
|
|
|
StatInc(thr, StatThreadFinish);
|
|
|
|
if (thr->stk_addr && thr->stk_size)
|
2013-11-04 22:33:31 +01:00
|
|
|
DontNeedShadowFor(thr->stk_addr, thr->stk_size);
|
|
|
|
if (thr->tls_addr && thr->tls_size)
|
|
|
|
DontNeedShadowFor(thr->tls_addr, thr->tls_size);
|
2014-09-23 19:59:53 +02:00
|
|
|
thr->is_dead = true;
|
2013-11-04 22:33:31 +01:00
|
|
|
ctx->thread_registry->FinishThread(thr->tid);
|
|
|
|
}
|
2012-11-22 23:03:11 +01:00
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
static bool FindThreadByUid(ThreadContextBase *tctx, void *arg) {
|
|
|
|
uptr uid = (uptr)arg;
|
|
|
|
if (tctx->user_id == uid && tctx->status != ThreadStatusInvalid) {
|
|
|
|
tctx->user_id = 0;
|
|
|
|
return true;
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
2013-11-04 22:33:31 +01:00
|
|
|
return false;
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int ThreadTid(ThreadState *thr, uptr pc, uptr uid) {
|
2013-11-04 22:33:31 +01:00
|
|
|
int res = ctx->thread_registry->FindThread(FindThreadByUid, (void*)uid);
|
2012-11-22 23:03:11 +01:00
|
|
|
DPrintf("#%d: ThreadTid uid=%zu tid=%d\n", thr->tid, uid, res);
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadJoin(ThreadState *thr, uptr pc, int tid) {
|
|
|
|
CHECK_GT(tid, 0);
|
|
|
|
CHECK_LT(tid, kMaxTid);
|
|
|
|
DPrintf("#%d: ThreadJoin tid=%d\n", thr->tid, tid);
|
2013-11-04 22:33:31 +01:00
|
|
|
ctx->thread_registry->JoinThread(tid, thr);
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
void ThreadDetach(ThreadState *thr, uptr pc, int tid) {
|
|
|
|
CHECK_GT(tid, 0);
|
|
|
|
CHECK_LT(tid, kMaxTid);
|
2014-09-23 19:59:53 +02:00
|
|
|
ctx->thread_registry->DetachThread(tid, thr);
|
2012-11-22 23:03:11 +01:00
|
|
|
}
|
|
|
|
|
2012-12-05 14:19:55 +01:00
|
|
|
void ThreadSetName(ThreadState *thr, const char *name) {
|
2014-05-22 09:09:21 +02:00
|
|
|
ctx->thread_registry->SetThreadName(thr->tid, name);
|
2012-12-05 14:19:55 +01:00
|
|
|
}
|
|
|
|
|
2012-11-22 23:03:11 +01:00
|
|
|
void MemoryAccessRange(ThreadState *thr, uptr pc, uptr addr,
|
|
|
|
uptr size, bool is_write) {
|
|
|
|
if (size == 0)
|
|
|
|
return;
|
|
|
|
|
|
|
|
u64 *shadow_mem = (u64*)MemToShadow(addr);
|
|
|
|
DPrintf2("#%d: MemoryAccessRange: @%p %p size=%d is_write=%d\n",
|
|
|
|
thr->tid, (void*)pc, (void*)addr,
|
|
|
|
(int)size, is_write);
|
|
|
|
|
|
|
|
#if TSAN_DEBUG
|
|
|
|
if (!IsAppMem(addr)) {
|
2012-11-23 15:46:25 +01:00
|
|
|
Printf("Access to non app mem %zx\n", addr);
|
2012-11-22 23:03:11 +01:00
|
|
|
DCHECK(IsAppMem(addr));
|
|
|
|
}
|
|
|
|
if (!IsAppMem(addr + size - 1)) {
|
2012-11-23 15:46:25 +01:00
|
|
|
Printf("Access to non app mem %zx\n", addr + size - 1);
|
2012-11-22 23:03:11 +01:00
|
|
|
DCHECK(IsAppMem(addr + size - 1));
|
|
|
|
}
|
|
|
|
if (!IsShadowMem((uptr)shadow_mem)) {
|
2012-11-23 15:46:25 +01:00
|
|
|
Printf("Bad shadow addr %p (%zx)\n", shadow_mem, addr);
|
2012-11-22 23:03:11 +01:00
|
|
|
DCHECK(IsShadowMem((uptr)shadow_mem));
|
|
|
|
}
|
|
|
|
if (!IsShadowMem((uptr)(shadow_mem + size * kShadowCnt / 8 - 1))) {
|
2012-11-23 15:46:25 +01:00
|
|
|
Printf("Bad shadow addr %p (%zx)\n",
|
2012-11-22 23:03:11 +01:00
|
|
|
shadow_mem + size * kShadowCnt / 8 - 1, addr + size - 1);
|
|
|
|
DCHECK(IsShadowMem((uptr)(shadow_mem + size * kShadowCnt / 8 - 1)));
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
StatInc(thr, StatMopRange);
|
|
|
|
|
2013-11-04 22:33:31 +01:00
|
|
|
if (*shadow_mem == kShadowRodata) {
|
|
|
|
// Access to .rodata section, no races here.
|
|
|
|
// Measurements show that it can be 10-20% of all memory accesses.
|
|
|
|
StatInc(thr, StatMopRangeRodata);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-11-22 23:03:11 +01:00
|
|
|
FastState fast_state = thr->fast_state;
|
|
|
|
if (fast_state.GetIgnoreBit())
|
|
|
|
return;
|
|
|
|
|
|
|
|
fast_state.IncrementEpoch();
|
|
|
|
thr->fast_state = fast_state;
|
2012-12-05 14:19:55 +01:00
|
|
|
TraceAddEvent(thr, fast_state, EventTypeMop, pc);
|
2012-11-22 23:03:11 +01:00
|
|
|
|
|
|
|
bool unaligned = (addr % kShadowCell) != 0;
|
|
|
|
|
|
|
|
// Handle unaligned beginning, if any.
|
|
|
|
for (; addr % kShadowCell && size; addr++, size--) {
|
|
|
|
int const kAccessSizeLog = 0;
|
|
|
|
Shadow cur(fast_state);
|
|
|
|
cur.SetWrite(is_write);
|
|
|
|
cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog);
|
2013-02-13 11:46:01 +01:00
|
|
|
MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, false,
|
2012-11-22 23:03:11 +01:00
|
|
|
shadow_mem, cur);
|
|
|
|
}
|
|
|
|
if (unaligned)
|
|
|
|
shadow_mem += kShadowCnt;
|
|
|
|
// Handle middle part, if any.
|
|
|
|
for (; size >= kShadowCell; addr += kShadowCell, size -= kShadowCell) {
|
|
|
|
int const kAccessSizeLog = 3;
|
|
|
|
Shadow cur(fast_state);
|
|
|
|
cur.SetWrite(is_write);
|
|
|
|
cur.SetAddr0AndSizeLog(0, kAccessSizeLog);
|
2013-02-13 11:46:01 +01:00
|
|
|
MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, false,
|
2012-11-22 23:03:11 +01:00
|
|
|
shadow_mem, cur);
|
|
|
|
shadow_mem += kShadowCnt;
|
|
|
|
}
|
|
|
|
// Handle ending, if any.
|
|
|
|
for (; size; addr++, size--) {
|
|
|
|
int const kAccessSizeLog = 0;
|
|
|
|
Shadow cur(fast_state);
|
|
|
|
cur.SetWrite(is_write);
|
|
|
|
cur.SetAddr0AndSizeLog(addr & (kShadowCell - 1), kAccessSizeLog);
|
2013-02-13 11:46:01 +01:00
|
|
|
MemoryAccessImpl(thr, addr, kAccessSizeLog, is_write, false,
|
2012-11-22 23:03:11 +01:00
|
|
|
shadow_mem, cur);
|
|
|
|
}
|
|
|
|
}
|
2013-02-21 11:57:10 +01:00
|
|
|
|
2012-11-22 23:03:11 +01:00
|
|
|
} // namespace __tsan
|