blob: 299060a42fe8ef84c22da39bf81fd129e51a90f5 [file] [log] [blame]
Kostya Serebryany60ebb1942012-02-13 22:50:51 +00001//===-- ThreadSanitizer.cpp - race detector -------------------------------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of ThreadSanitizer, a race detector.
11//
12// The tool is under development, for the details about previous versions see
13// http://code.google.com/p/data-race-test
14//
15// The instrumentation phase is quite simple:
16// - Insert calls to run-time library before every memory access.
17// - Optimizations may apply to avoid instrumenting some of the accesses.
18// - Insert calls at function entry/exit.
19// The rest is handled by the run-time library.
20//===----------------------------------------------------------------------===//
21
22#define DEBUG_TYPE "tsan"
23
Chandler Carruthd04a8d42012-12-03 16:50:05 +000024#include "llvm/Transforms/Instrumentation.h"
Chandler Carruthd04a8d42012-12-03 16:50:05 +000025#include "llvm/ADT/SmallSet.h"
26#include "llvm/ADT/SmallString.h"
27#include "llvm/ADT/SmallVector.h"
28#include "llvm/ADT/Statistic.h"
29#include "llvm/ADT/StringExtras.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000030#include "llvm/IR/DataLayout.h"
31#include "llvm/IR/Function.h"
32#include "llvm/IR/IRBuilder.h"
Kostya Serebryanyf4644812013-03-28 11:21:13 +000033#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000034#include "llvm/IR/Intrinsics.h"
35#include "llvm/IR/LLVMContext.h"
36#include "llvm/IR/Metadata.h"
37#include "llvm/IR/Module.h"
38#include "llvm/IR/Type.h"
Kostya Serebryany6e590e32012-03-14 23:33:24 +000039#include "llvm/Support/CommandLine.h"
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000040#include "llvm/Support/Debug.h"
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000041#include "llvm/Support/MathExtras.h"
Kostya Serebryany52eb69922012-03-26 17:35:03 +000042#include "llvm/Support/raw_ostream.h"
Kostya Serebryanye5079222012-04-27 07:31:53 +000043#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Chandler Carruth90230c82013-01-19 08:03:47 +000044#include "llvm/Transforms/Utils/BlackList.h"
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000045#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000046
47using namespace llvm;
48
Alexey Samsonovf045df12012-12-28 09:30:44 +000049static cl::opt<std::string> ClBlacklistFile("tsan-blacklist",
Kostya Serebryany6e590e32012-03-14 23:33:24 +000050 cl::desc("Blacklist file"), cl::Hidden);
Kostya Serebryany41d876c2012-10-04 05:28:50 +000051static cl::opt<bool> ClInstrumentMemoryAccesses(
52 "tsan-instrument-memory-accesses", cl::init(true),
53 cl::desc("Instrument memory accesses"), cl::Hidden);
54static cl::opt<bool> ClInstrumentFuncEntryExit(
55 "tsan-instrument-func-entry-exit", cl::init(true),
56 cl::desc("Instrument function entry and exit"), cl::Hidden);
57static cl::opt<bool> ClInstrumentAtomics(
58 "tsan-instrument-atomics", cl::init(true),
59 cl::desc("Instrument atomics"), cl::Hidden);
Kostya Serebryanyf4644812013-03-28 11:21:13 +000060static cl::opt<bool> ClInstrumentMemIntrinsics(
61 "tsan-instrument-memintrinsics", cl::init(true),
62 cl::desc("Instrument memintrinsics (memset/memcpy/memmove)"), cl::Hidden);
Kostya Serebryany6e590e32012-03-14 23:33:24 +000063
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +000064STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
65STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Alexey Samsonov1dfe9b52012-08-30 13:47:13 +000066STATISTIC(NumOmittedReadsBeforeWrite,
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +000067 "Number of reads ignored due to following writes");
68STATISTIC(NumAccessesWithBadSize, "Number of accesses with bad size");
69STATISTIC(NumInstrumentedVtableWrites, "Number of vtable ptr writes");
Dmitry Vyukovab78ac12013-03-22 08:51:22 +000070STATISTIC(NumInstrumentedVtableReads, "Number of vtable ptr reads");
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +000071STATISTIC(NumOmittedReadsFromConstantGlobals,
72 "Number of reads from constant globals");
73STATISTIC(NumOmittedReadsFromVtable, "Number of vtable reads");
Kostya Serebryany2076af02012-04-10 18:18:56 +000074
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000075namespace {
Kostya Serebryany2076af02012-04-10 18:18:56 +000076
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000077/// ThreadSanitizer: instrument the code in module to find races.
78struct ThreadSanitizer : public FunctionPass {
Alexey Samsonovf045df12012-12-28 09:30:44 +000079 ThreadSanitizer(StringRef BlacklistFile = StringRef())
80 : FunctionPass(ID),
81 TD(0),
82 BlacklistFile(BlacklistFile.empty() ? ClBlacklistFile
83 : BlacklistFile) { }
Kostya Serebryanye5079222012-04-27 07:31:53 +000084 const char *getPassName() const;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000085 bool runOnFunction(Function &F);
86 bool doInitialization(Module &M);
Kostya Serebryany60ebb1942012-02-13 22:50:51 +000087 static char ID; // Pass identification, replacement for typeid.
88
89 private:
Kostya Serebryany8b390ff2012-11-29 09:54:21 +000090 void initializeCallbacks(Module &M);
Kostya Serebryanye5079222012-04-27 07:31:53 +000091 bool instrumentLoadOrStore(Instruction *I);
92 bool instrumentAtomic(Instruction *I);
Kostya Serebryanyf4644812013-03-28 11:21:13 +000093 bool instrumentMemIntrinsic(Instruction *I);
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +000094 void chooseInstructionsToInstrument(SmallVectorImpl<Instruction*> &Local,
95 SmallVectorImpl<Instruction*> &All);
Kostya Serebryanycff60c12012-04-10 22:29:17 +000096 bool addrPointsToConstantData(Value *Addr);
Kostya Serebryanye5079222012-04-27 07:31:53 +000097 int getMemoryAccessFuncIndex(Value *Addr);
Kostya Serebryany2076af02012-04-10 18:18:56 +000098
Micah Villmow3574eca2012-10-08 16:38:25 +000099 DataLayout *TD;
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000100 Type *IntptrTy;
Alexey Samsonovf045df12012-12-28 09:30:44 +0000101 SmallString<64> BlacklistFile;
Kostya Serebryanyb5b86d22012-08-24 16:44:47 +0000102 OwningPtr<BlackList> BL;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000103 IntegerType *OrdTy;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000104 // Callbacks to run-time library are computed in doInitialization.
Kostya Serebryanye5079222012-04-27 07:31:53 +0000105 Function *TsanFuncEntry;
106 Function *TsanFuncExit;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000107 // Accesses sizes are powers of two: 1, 2, 4, 8, 16.
Kostya Serebryany3eccaa62012-02-14 00:52:07 +0000108 static const size_t kNumberOfAccessSizes = 5;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000109 Function *TsanRead[kNumberOfAccessSizes];
110 Function *TsanWrite[kNumberOfAccessSizes];
111 Function *TsanAtomicLoad[kNumberOfAccessSizes];
112 Function *TsanAtomicStore[kNumberOfAccessSizes];
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000113 Function *TsanAtomicRMW[AtomicRMWInst::LAST_BINOP + 1][kNumberOfAccessSizes];
114 Function *TsanAtomicCAS[kNumberOfAccessSizes];
115 Function *TsanAtomicThreadFence;
116 Function *TsanAtomicSignalFence;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000117 Function *TsanVptrUpdate;
Dmitry Vyukovab78ac12013-03-22 08:51:22 +0000118 Function *TsanVptrLoad;
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000119 Function *MemmoveFn, *MemcpyFn, *MemsetFn;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000120};
121} // namespace
122
123char ThreadSanitizer::ID = 0;
124INITIALIZE_PASS(ThreadSanitizer, "tsan",
125 "ThreadSanitizer: detects data races.",
126 false, false)
127
Kostya Serebryanye5079222012-04-27 07:31:53 +0000128const char *ThreadSanitizer::getPassName() const {
129 return "ThreadSanitizer";
130}
131
Alexey Samsonovf045df12012-12-28 09:30:44 +0000132FunctionPass *llvm::createThreadSanitizerPass(StringRef BlacklistFile) {
133 return new ThreadSanitizer(BlacklistFile);
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000134}
135
Kostya Serebryanye5079222012-04-27 07:31:53 +0000136static Function *checkInterfaceFunction(Constant *FuncOrBitcast) {
137 if (Function *F = dyn_cast<Function>(FuncOrBitcast))
138 return F;
139 FuncOrBitcast->dump();
140 report_fatal_error("ThreadSanitizer interface function redefined");
141}
142
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000143void ThreadSanitizer::initializeCallbacks(Module &M) {
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000144 IRBuilder<> IRB(M.getContext());
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000145 // Initialize the callbacks.
Kostya Serebryanye5079222012-04-27 07:31:53 +0000146 TsanFuncEntry = checkInterfaceFunction(M.getOrInsertFunction(
147 "__tsan_func_entry", IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
148 TsanFuncExit = checkInterfaceFunction(M.getOrInsertFunction(
149 "__tsan_func_exit", IRB.getVoidTy(), NULL));
150 OrdTy = IRB.getInt32Ty();
Kostya Serebryany3eccaa62012-02-14 00:52:07 +0000151 for (size_t i = 0; i < kNumberOfAccessSizes; ++i) {
Kostya Serebryanye5079222012-04-27 07:31:53 +0000152 const size_t ByteSize = 1 << i;
153 const size_t BitSize = ByteSize * 8;
154 SmallString<32> ReadName("__tsan_read" + itostr(ByteSize));
155 TsanRead[i] = checkInterfaceFunction(M.getOrInsertFunction(
156 ReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
157
158 SmallString<32> WriteName("__tsan_write" + itostr(ByteSize));
159 TsanWrite[i] = checkInterfaceFunction(M.getOrInsertFunction(
160 WriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
161
162 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
163 Type *PtrTy = Ty->getPointerTo();
164 SmallString<32> AtomicLoadName("__tsan_atomic" + itostr(BitSize) +
165 "_load");
166 TsanAtomicLoad[i] = checkInterfaceFunction(M.getOrInsertFunction(
167 AtomicLoadName, Ty, PtrTy, OrdTy, NULL));
168
169 SmallString<32> AtomicStoreName("__tsan_atomic" + itostr(BitSize) +
170 "_store");
171 TsanAtomicStore[i] = checkInterfaceFunction(M.getOrInsertFunction(
172 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy,
173 NULL));
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000174
175 for (int op = AtomicRMWInst::FIRST_BINOP;
176 op <= AtomicRMWInst::LAST_BINOP; ++op) {
177 TsanAtomicRMW[op][i] = NULL;
178 const char *NamePart = NULL;
179 if (op == AtomicRMWInst::Xchg)
180 NamePart = "_exchange";
181 else if (op == AtomicRMWInst::Add)
182 NamePart = "_fetch_add";
183 else if (op == AtomicRMWInst::Sub)
184 NamePart = "_fetch_sub";
185 else if (op == AtomicRMWInst::And)
186 NamePart = "_fetch_and";
187 else if (op == AtomicRMWInst::Or)
188 NamePart = "_fetch_or";
189 else if (op == AtomicRMWInst::Xor)
190 NamePart = "_fetch_xor";
Dmitry Vyukovb10675e2012-11-27 08:09:25 +0000191 else if (op == AtomicRMWInst::Nand)
192 NamePart = "_fetch_nand";
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000193 else
194 continue;
195 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
196 TsanAtomicRMW[op][i] = checkInterfaceFunction(M.getOrInsertFunction(
197 RMWName, Ty, PtrTy, Ty, OrdTy, NULL));
198 }
199
200 SmallString<32> AtomicCASName("__tsan_atomic" + itostr(BitSize) +
201 "_compare_exchange_val");
202 TsanAtomicCAS[i] = checkInterfaceFunction(M.getOrInsertFunction(
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000203 AtomicCASName, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, NULL));
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000204 }
Kostya Serebryanye5079222012-04-27 07:31:53 +0000205 TsanVptrUpdate = checkInterfaceFunction(M.getOrInsertFunction(
206 "__tsan_vptr_update", IRB.getVoidTy(), IRB.getInt8PtrTy(),
207 IRB.getInt8PtrTy(), NULL));
Dmitry Vyukovab78ac12013-03-22 08:51:22 +0000208 TsanVptrLoad = checkInterfaceFunction(M.getOrInsertFunction(
209 "__tsan_vptr_read", IRB.getVoidTy(), IRB.getInt8PtrTy(), NULL));
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000210 TsanAtomicThreadFence = checkInterfaceFunction(M.getOrInsertFunction(
211 "__tsan_atomic_thread_fence", IRB.getVoidTy(), OrdTy, NULL));
212 TsanAtomicSignalFence = checkInterfaceFunction(M.getOrInsertFunction(
213 "__tsan_atomic_signal_fence", IRB.getVoidTy(), OrdTy, NULL));
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000214
215 MemmoveFn = checkInterfaceFunction(M.getOrInsertFunction(
216 "memmove", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
217 IRB.getInt8PtrTy(), IntptrTy, NULL));
218 MemcpyFn = checkInterfaceFunction(M.getOrInsertFunction(
219 "memcpy", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
220 IntptrTy, NULL));
221 MemsetFn = checkInterfaceFunction(M.getOrInsertFunction(
222 "memset", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt32Ty(),
223 IntptrTy, NULL));
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000224}
225
226bool ThreadSanitizer::doInitialization(Module &M) {
227 TD = getAnalysisIfAvailable<DataLayout>();
228 if (!TD)
229 return false;
Alexey Samsonovf045df12012-12-28 09:30:44 +0000230 BL.reset(new BlackList(BlacklistFile));
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000231
232 // Always insert a call to __tsan_init into the module's CTORs.
233 IRBuilder<> IRB(M.getContext());
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000234 IntptrTy = IRB.getIntPtrTy(TD);
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000235 Value *TsanInit = M.getOrInsertFunction("__tsan_init",
236 IRB.getVoidTy(), NULL);
237 appendToGlobalCtors(M, cast<Function>(TsanInit), 0);
238
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000239 return true;
240}
241
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000242static bool isVtableAccess(Instruction *I) {
243 if (MDNode *Tag = I->getMetadata(LLVMContext::MD_tbaa)) {
244 if (Tag->getNumOperands() < 1) return false;
245 if (MDString *Tag1 = dyn_cast<MDString>(Tag->getOperand(0))) {
246 if (Tag1->getString() == "vtable pointer") return true;
247 }
248 }
249 return false;
250}
251
252bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) {
253 // If this is a GEP, just analyze its pointer operand.
254 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr))
255 Addr = GEP->getPointerOperand();
256
257 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
258 if (GV->isConstant()) {
259 // Reads from constant globals can not race with any writes.
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +0000260 NumOmittedReadsFromConstantGlobals++;
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000261 return true;
262 }
Alexey Samsonov1dfe9b52012-08-30 13:47:13 +0000263 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) {
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000264 if (isVtableAccess(L)) {
265 // Reads from a vtable pointer can not race with any writes.
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +0000266 NumOmittedReadsFromVtable++;
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000267 return true;
268 }
269 }
270 return false;
271}
272
Kostya Serebryany2076af02012-04-10 18:18:56 +0000273// Instrumenting some of the accesses may be proven redundant.
274// Currently handled:
275// - read-before-write (within same BB, no calls between)
276//
277// We do not handle some of the patterns that should not survive
278// after the classic compiler optimizations.
279// E.g. two reads from the same temp should be eliminated by CSE,
280// two writes should be eliminated by DSE, etc.
281//
282// 'Local' is a vector of insns within the same BB (no calls between).
283// 'All' is a vector of insns that will be instrumented.
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000284void ThreadSanitizer::chooseInstructionsToInstrument(
Kostya Serebryany2076af02012-04-10 18:18:56 +0000285 SmallVectorImpl<Instruction*> &Local,
286 SmallVectorImpl<Instruction*> &All) {
287 SmallSet<Value*, 8> WriteTargets;
288 // Iterate from the end.
289 for (SmallVectorImpl<Instruction*>::reverse_iterator It = Local.rbegin(),
290 E = Local.rend(); It != E; ++It) {
291 Instruction *I = *It;
292 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
293 WriteTargets.insert(Store->getPointerOperand());
294 } else {
295 LoadInst *Load = cast<LoadInst>(I);
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000296 Value *Addr = Load->getPointerOperand();
297 if (WriteTargets.count(Addr)) {
Kostya Serebryany2076af02012-04-10 18:18:56 +0000298 // We will write to this temp, so no reason to analyze the read.
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +0000299 NumOmittedReadsBeforeWrite++;
Kostya Serebryany2076af02012-04-10 18:18:56 +0000300 continue;
301 }
Kostya Serebryanycff60c12012-04-10 22:29:17 +0000302 if (addrPointsToConstantData(Addr)) {
303 // Addr points to some constant data -- it can not race with any writes.
304 continue;
305 }
Kostya Serebryany2076af02012-04-10 18:18:56 +0000306 }
307 All.push_back(I);
308 }
309 Local.clear();
310}
311
Kostya Serebryanye5079222012-04-27 07:31:53 +0000312static bool isAtomic(Instruction *I) {
313 if (LoadInst *LI = dyn_cast<LoadInst>(I))
314 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000315 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Kostya Serebryanye5079222012-04-27 07:31:53 +0000316 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000317 if (isa<AtomicRMWInst>(I))
Kostya Serebryanye5079222012-04-27 07:31:53 +0000318 return true;
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000319 if (isa<AtomicCmpXchgInst>(I))
Kostya Serebryanye5079222012-04-27 07:31:53 +0000320 return true;
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000321 if (isa<FenceInst>(I))
322 return true;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000323 return false;
324}
325
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000326bool ThreadSanitizer::runOnFunction(Function &F) {
327 if (!TD) return false;
Kostya Serebryany6e590e32012-03-14 23:33:24 +0000328 if (BL->isIn(F)) return false;
Kostya Serebryany8b390ff2012-11-29 09:54:21 +0000329 initializeCallbacks(*F.getParent());
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000330 SmallVector<Instruction*, 8> RetVec;
Kostya Serebryany2076af02012-04-10 18:18:56 +0000331 SmallVector<Instruction*, 8> AllLoadsAndStores;
332 SmallVector<Instruction*, 8> LocalLoadsAndStores;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000333 SmallVector<Instruction*, 8> AtomicAccesses;
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000334 SmallVector<Instruction*, 8> MemIntrinCalls;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000335 bool Res = false;
336 bool HasCalls = false;
337
338 // Traverse all instructions, collect loads/stores/returns, check for calls.
339 for (Function::iterator FI = F.begin(), FE = F.end();
340 FI != FE; ++FI) {
341 BasicBlock &BB = *FI;
342 for (BasicBlock::iterator BI = BB.begin(), BE = BB.end();
343 BI != BE; ++BI) {
Kostya Serebryanye5079222012-04-27 07:31:53 +0000344 if (isAtomic(BI))
345 AtomicAccesses.push_back(BI);
346 else if (isa<LoadInst>(BI) || isa<StoreInst>(BI))
Kostya Serebryany2076af02012-04-10 18:18:56 +0000347 LocalLoadsAndStores.push_back(BI);
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000348 else if (isa<ReturnInst>(BI))
349 RetVec.push_back(BI);
Kostya Serebryany2076af02012-04-10 18:18:56 +0000350 else if (isa<CallInst>(BI) || isa<InvokeInst>(BI)) {
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000351 if (isa<MemIntrinsic>(BI))
352 MemIntrinCalls.push_back(BI);
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000353 HasCalls = true;
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000354 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores);
Kostya Serebryany2076af02012-04-10 18:18:56 +0000355 }
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000356 }
Kostya Serebryany37cb9ac2012-05-02 13:12:19 +0000357 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores);
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000358 }
359
360 // We have collected all loads and stores.
361 // FIXME: many of these accesses do not need to be checked for races
362 // (e.g. variables that do not escape, etc).
363
364 // Instrument memory accesses.
Kostya Serebryany41d876c2012-10-04 05:28:50 +0000365 if (ClInstrumentMemoryAccesses)
366 for (size_t i = 0, n = AllLoadsAndStores.size(); i < n; ++i) {
367 Res |= instrumentLoadOrStore(AllLoadsAndStores[i]);
368 }
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000369
Kostya Serebryanye5079222012-04-27 07:31:53 +0000370 // Instrument atomic memory accesses.
Kostya Serebryany41d876c2012-10-04 05:28:50 +0000371 if (ClInstrumentAtomics)
372 for (size_t i = 0, n = AtomicAccesses.size(); i < n; ++i) {
373 Res |= instrumentAtomic(AtomicAccesses[i]);
374 }
Kostya Serebryanye5079222012-04-27 07:31:53 +0000375
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000376 if (ClInstrumentMemIntrinsics)
377 for (size_t i = 0, n = MemIntrinCalls.size(); i < n; ++i) {
378 Res |= instrumentMemIntrinsic(MemIntrinCalls[i]);
379 }
380
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000381 // Instrument function entry/exit points if there were instrumented accesses.
Kostya Serebryany41d876c2012-10-04 05:28:50 +0000382 if ((Res || HasCalls) && ClInstrumentFuncEntryExit) {
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000383 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
384 Value *ReturnAddress = IRB.CreateCall(
385 Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress),
386 IRB.getInt32(0));
387 IRB.CreateCall(TsanFuncEntry, ReturnAddress);
388 for (size_t i = 0, n = RetVec.size(); i < n; ++i) {
389 IRBuilder<> IRBRet(RetVec[i]);
390 IRBRet.CreateCall(TsanFuncExit);
391 }
Kostya Serebryany52eb69922012-03-26 17:35:03 +0000392 Res = true;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000393 }
394 return Res;
395}
396
397bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I) {
398 IRBuilder<> IRB(I);
399 bool IsWrite = isa<StoreInst>(*I);
400 Value *Addr = IsWrite
401 ? cast<StoreInst>(I)->getPointerOperand()
402 : cast<LoadInst>(I)->getPointerOperand();
Kostya Serebryanye5079222012-04-27 07:31:53 +0000403 int Idx = getMemoryAccessFuncIndex(Addr);
404 if (Idx < 0)
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000405 return false;
Kostya Serebryany52eb69922012-03-26 17:35:03 +0000406 if (IsWrite && isVtableAccess(I)) {
Kostya Serebryany4a002ab2012-07-05 09:07:31 +0000407 DEBUG(dbgs() << " VPTR : " << *I << "\n");
Kostya Serebryany52eb69922012-03-26 17:35:03 +0000408 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
Kostya Serebryany4a002ab2012-07-05 09:07:31 +0000409 // StoredValue does not necessary have a pointer type.
410 if (isa<IntegerType>(StoredValue->getType()))
411 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
412 // Call TsanVptrUpdate.
Kostya Serebryany52eb69922012-03-26 17:35:03 +0000413 IRB.CreateCall2(TsanVptrUpdate,
414 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()),
415 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy()));
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +0000416 NumInstrumentedVtableWrites++;
Kostya Serebryany52eb69922012-03-26 17:35:03 +0000417 return true;
418 }
Dmitry Vyukovab78ac12013-03-22 08:51:22 +0000419 if (!IsWrite && isVtableAccess(I)) {
420 IRB.CreateCall(TsanVptrLoad,
421 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
422 NumInstrumentedVtableReads++;
423 return true;
424 }
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000425 Value *OnAccessFunc = IsWrite ? TsanWrite[Idx] : TsanRead[Idx];
426 IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
Kostya Serebryany2d5fdf82012-04-23 08:44:59 +0000427 if (IsWrite) NumInstrumentedWrites++;
428 else NumInstrumentedReads++;
Kostya Serebryany60ebb1942012-02-13 22:50:51 +0000429 return true;
430}
Kostya Serebryanye5079222012-04-27 07:31:53 +0000431
432static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) {
433 uint32_t v = 0;
434 switch (ord) {
435 case NotAtomic: assert(false);
436 case Unordered: // Fall-through.
Dmitry Vyukovc2e9ca12012-11-09 14:12:16 +0000437 case Monotonic: v = 0; break;
Dmitry Vyukov9a33f9f2012-11-26 14:55:26 +0000438 // case Consume: v = 1; break; // Not specified yet.
Dmitry Vyukovc2e9ca12012-11-09 14:12:16 +0000439 case Acquire: v = 2; break;
440 case Release: v = 3; break;
441 case AcquireRelease: v = 4; break;
442 case SequentiallyConsistent: v = 5; break;
Kostya Serebryanye5079222012-04-27 07:31:53 +0000443 }
Dmitry Vyukovc2e9ca12012-11-09 14:12:16 +0000444 return IRB->getInt32(v);
Kostya Serebryanye5079222012-04-27 07:31:53 +0000445}
446
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000447static ConstantInt *createFailOrdering(IRBuilder<> *IRB, AtomicOrdering ord) {
448 uint32_t v = 0;
449 switch (ord) {
450 case NotAtomic: assert(false);
451 case Unordered: // Fall-through.
452 case Monotonic: v = 0; break;
Dmitry Vyukov9a33f9f2012-11-26 14:55:26 +0000453 // case Consume: v = 1; break; // Not specified yet.
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000454 case Acquire: v = 2; break;
455 case Release: v = 0; break;
456 case AcquireRelease: v = 2; break;
457 case SequentiallyConsistent: v = 5; break;
458 }
459 return IRB->getInt32(v);
460}
461
Kostya Serebryanyf4644812013-03-28 11:21:13 +0000462// If a memset intrinsic gets inlined by the code gen, we will miss races on it.
463// So, we either need to ensure the intrinsic is not inlined, or instrument it.
464// We do not instrument memset/memmove/memcpy intrinsics (too complicated),
465// instead we simply replace them with regular function calls, which are then
466// intercepted by the run-time.
467// Since tsan is running after everyone else, the calls should not be
468// replaced back with intrinsics. If that becomes wrong at some point,
469// we will need to call e.g. __tsan_memset to avoid the intrinsics.
470bool ThreadSanitizer::instrumentMemIntrinsic(Instruction *I) {
471 IRBuilder<> IRB(I);
472 if (MemSetInst *M = dyn_cast<MemSetInst>(I)) {
473 IRB.CreateCall3(MemsetFn,
474 IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
475 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false),
476 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false));
477 I->eraseFromParent();
478 } else if (MemTransferInst *M = dyn_cast<MemTransferInst>(I)) {
479 IRB.CreateCall3(isa<MemCpyInst>(M) ? MemcpyFn : MemmoveFn,
480 IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
481 IRB.CreatePointerCast(M->getArgOperand(1), IRB.getInt8PtrTy()),
482 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false));
483 I->eraseFromParent();
484 }
485 return false;
486}
487
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000488// Both llvm and ThreadSanitizer atomic operations are based on C++11/C1x
489// standards. For background see C++11 standard. A slightly older, publically
490// available draft of the standard (not entirely up-to-date, but close enough
491// for casual browsing) is available here:
Matt Beaumont-Gay70af9092012-11-26 16:27:22 +0000492// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000493// The following page contains more background information:
494// http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/
495
Kostya Serebryanye5079222012-04-27 07:31:53 +0000496bool ThreadSanitizer::instrumentAtomic(Instruction *I) {
497 IRBuilder<> IRB(I);
498 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
499 Value *Addr = LI->getPointerOperand();
500 int Idx = getMemoryAccessFuncIndex(Addr);
501 if (Idx < 0)
502 return false;
503 const size_t ByteSize = 1 << Idx;
504 const size_t BitSize = ByteSize * 8;
505 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmowb8bce922012-10-24 17:25:11 +0000506 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanye5079222012-04-27 07:31:53 +0000507 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
508 createOrdering(&IRB, LI->getOrdering())};
509 CallInst *C = CallInst::Create(TsanAtomicLoad[Idx],
510 ArrayRef<Value*>(Args));
511 ReplaceInstWithInst(I, C);
512
513 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
514 Value *Addr = SI->getPointerOperand();
515 int Idx = getMemoryAccessFuncIndex(Addr);
516 if (Idx < 0)
517 return false;
518 const size_t ByteSize = 1 << Idx;
519 const size_t BitSize = ByteSize * 8;
520 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmowb8bce922012-10-24 17:25:11 +0000521 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanye5079222012-04-27 07:31:53 +0000522 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
523 IRB.CreateIntCast(SI->getValueOperand(), Ty, false),
524 createOrdering(&IRB, SI->getOrdering())};
525 CallInst *C = CallInst::Create(TsanAtomicStore[Idx],
526 ArrayRef<Value*>(Args));
527 ReplaceInstWithInst(I, C);
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000528 } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I)) {
529 Value *Addr = RMWI->getPointerOperand();
530 int Idx = getMemoryAccessFuncIndex(Addr);
531 if (Idx < 0)
532 return false;
533 Function *F = TsanAtomicRMW[RMWI->getOperation()][Idx];
534 if (F == NULL)
535 return false;
536 const size_t ByteSize = 1 << Idx;
537 const size_t BitSize = ByteSize * 8;
538 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
539 Type *PtrTy = Ty->getPointerTo();
540 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
541 IRB.CreateIntCast(RMWI->getValOperand(), Ty, false),
542 createOrdering(&IRB, RMWI->getOrdering())};
543 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args));
544 ReplaceInstWithInst(I, C);
545 } else if (AtomicCmpXchgInst *CASI = dyn_cast<AtomicCmpXchgInst>(I)) {
546 Value *Addr = CASI->getPointerOperand();
547 int Idx = getMemoryAccessFuncIndex(Addr);
548 if (Idx < 0)
549 return false;
550 const size_t ByteSize = 1 << Idx;
551 const size_t BitSize = ByteSize * 8;
552 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
553 Type *PtrTy = Ty->getPointerTo();
554 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
555 IRB.CreateIntCast(CASI->getCompareOperand(), Ty, false),
556 IRB.CreateIntCast(CASI->getNewValOperand(), Ty, false),
Dmitry Vyukov6702e532012-11-26 11:36:19 +0000557 createOrdering(&IRB, CASI->getOrdering()),
558 createFailOrdering(&IRB, CASI->getOrdering())};
Dmitry Vyukov9f8a90b2012-11-09 12:55:36 +0000559 CallInst *C = CallInst::Create(TsanAtomicCAS[Idx], ArrayRef<Value*>(Args));
560 ReplaceInstWithInst(I, C);
561 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) {
562 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())};
563 Function *F = FI->getSynchScope() == SingleThread ?
564 TsanAtomicSignalFence : TsanAtomicThreadFence;
565 CallInst *C = CallInst::Create(F, ArrayRef<Value*>(Args));
566 ReplaceInstWithInst(I, C);
Kostya Serebryanye5079222012-04-27 07:31:53 +0000567 }
568 return true;
569}
570
571int ThreadSanitizer::getMemoryAccessFuncIndex(Value *Addr) {
572 Type *OrigPtrTy = Addr->getType();
573 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
574 assert(OrigTy->isSized());
575 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
576 if (TypeSize != 8 && TypeSize != 16 &&
577 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
578 NumAccessesWithBadSize++;
579 // Ignore all unusual sizes.
580 return -1;
581 }
582 size_t Idx = CountTrailingZeros_32(TypeSize / 8);
583 assert(Idx < kNumberOfAccessSizes);
584 return Idx;
585}