blob: 22a26d49374608a2d5b67b6a8b57b569a0a7d677 [file] [log] [blame]
Kostya Serebryanye2a0e412012-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
Chandler Carruthed0881b2012-12-03 16:50:05 +000022#include "llvm/Transforms/Instrumentation.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/ADT/SmallSet.h"
24#include "llvm/ADT/SmallString.h"
25#include "llvm/ADT/SmallVector.h"
26#include "llvm/ADT/Statistic.h"
27#include "llvm/ADT/StringExtras.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000028#include "llvm/Analysis/CaptureTracking.h"
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000029#include "llvm/Analysis/TargetLibraryInfo.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000030#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/DataLayout.h"
32#include "llvm/IR/Function.h"
33#include "llvm/IR/IRBuilder.h"
Kostya Serebryany463aa812013-03-28 11:21:13 +000034#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Intrinsics.h"
36#include "llvm/IR/LLVMContext.h"
37#include "llvm/IR/Metadata.h"
38#include "llvm/IR/Module.h"
39#include "llvm/IR/Type.h"
Anna Zaks1a470b62016-03-29 23:19:40 +000040#include "llvm/ProfileData/InstrProf.h"
Kostya Serebryanyabad0022012-03-14 23:33:24 +000041#include "llvm/Support/CommandLine.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000042#include "llvm/Support/Debug.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000043#include "llvm/Support/MathExtras.h"
Kostya Serebryany6f8a7762012-03-26 17:35:03 +000044#include "llvm/Support/raw_ostream.h"
Kostya Serebryanya1259772012-04-27 07:31:53 +000045#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000046#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000047#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000048
49using namespace llvm;
50
Chandler Carruth964daaa2014-04-22 02:55:47 +000051#define DEBUG_TYPE "tsan"
52
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +000053static cl::opt<bool> ClInstrumentMemoryAccesses(
54 "tsan-instrument-memory-accesses", cl::init(true),
55 cl::desc("Instrument memory accesses"), cl::Hidden);
56static cl::opt<bool> ClInstrumentFuncEntryExit(
57 "tsan-instrument-func-entry-exit", cl::init(true),
58 cl::desc("Instrument function entry and exit"), cl::Hidden);
59static cl::opt<bool> ClInstrumentAtomics(
60 "tsan-instrument-atomics", cl::init(true),
61 cl::desc("Instrument atomics"), cl::Hidden);
Kostya Serebryany463aa812013-03-28 11:21:13 +000062static cl::opt<bool> ClInstrumentMemIntrinsics(
63 "tsan-instrument-memintrinsics", cl::init(true),
64 cl::desc("Instrument memintrinsics (memset/memcpy/memmove)"), cl::Hidden);
Kostya Serebryanyabad0022012-03-14 23:33:24 +000065
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000066STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
67STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +000068STATISTIC(NumOmittedReadsBeforeWrite,
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000069 "Number of reads ignored due to following writes");
70STATISTIC(NumAccessesWithBadSize, "Number of accesses with bad size");
71STATISTIC(NumInstrumentedVtableWrites, "Number of vtable ptr writes");
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +000072STATISTIC(NumInstrumentedVtableReads, "Number of vtable ptr reads");
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000073STATISTIC(NumOmittedReadsFromConstantGlobals,
74 "Number of reads from constant globals");
75STATISTIC(NumOmittedReadsFromVtable, "Number of vtable reads");
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +000076STATISTIC(NumOmittedNonCaptured, "Number of accesses ignored due to capturing");
Kostya Serebryanybf2de802012-04-10 18:18:56 +000077
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +000078static const char *const kTsanModuleCtorName = "tsan.module_ctor";
79static const char *const kTsanInitName = "__tsan_init";
80
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000081namespace {
Kostya Serebryanybf2de802012-04-10 18:18:56 +000082
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000083/// ThreadSanitizer: instrument the code in module to find races.
84struct ThreadSanitizer : public FunctionPass {
Mehdi Aminia28d91d2015-03-10 02:37:25 +000085 ThreadSanitizer() : FunctionPass(ID) {}
Craig Topper3e4c6972014-03-05 09:10:37 +000086 const char *getPassName() const override;
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000087 void getAnalysisUsage(AnalysisUsage &AU) const override;
Craig Topper3e4c6972014-03-05 09:10:37 +000088 bool runOnFunction(Function &F) override;
89 bool doInitialization(Module &M) override;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000090 static char ID; // Pass identification, replacement for typeid.
91
92 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +000093 void initializeCallbacks(Module &M);
Mehdi Aminia28d91d2015-03-10 02:37:25 +000094 bool instrumentLoadOrStore(Instruction *I, const DataLayout &DL);
95 bool instrumentAtomic(Instruction *I, const DataLayout &DL);
Kostya Serebryany463aa812013-03-28 11:21:13 +000096 bool instrumentMemIntrinsic(Instruction *I);
Mehdi Aminia28d91d2015-03-10 02:37:25 +000097 void chooseInstructionsToInstrument(SmallVectorImpl<Instruction *> &Local,
98 SmallVectorImpl<Instruction *> &All,
99 const DataLayout &DL);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000100 bool addrPointsToConstantData(Value *Addr);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000101 int getMemoryAccessFuncIndex(Value *Addr, const DataLayout &DL);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000102
Kostya Serebryany463aa812013-03-28 11:21:13 +0000103 Type *IntptrTy;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000104 IntegerType *OrdTy;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000105 // Callbacks to run-time library are computed in doInitialization.
Kostya Serebryanya1259772012-04-27 07:31:53 +0000106 Function *TsanFuncEntry;
107 Function *TsanFuncExit;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000108 // Accesses sizes are powers of two: 1, 2, 4, 8, 16.
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000109 static const size_t kNumberOfAccessSizes = 5;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000110 Function *TsanRead[kNumberOfAccessSizes];
111 Function *TsanWrite[kNumberOfAccessSizes];
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000112 Function *TsanUnalignedRead[kNumberOfAccessSizes];
113 Function *TsanUnalignedWrite[kNumberOfAccessSizes];
Kostya Serebryanya1259772012-04-27 07:31:53 +0000114 Function *TsanAtomicLoad[kNumberOfAccessSizes];
115 Function *TsanAtomicStore[kNumberOfAccessSizes];
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000116 Function *TsanAtomicRMW[AtomicRMWInst::LAST_BINOP + 1][kNumberOfAccessSizes];
117 Function *TsanAtomicCAS[kNumberOfAccessSizes];
118 Function *TsanAtomicThreadFence;
119 Function *TsanAtomicSignalFence;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000120 Function *TsanVptrUpdate;
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000121 Function *TsanVptrLoad;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000122 Function *MemmoveFn, *MemcpyFn, *MemsetFn;
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000123 Function *TsanCtorFunction;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000124};
125} // namespace
126
127char ThreadSanitizer::ID = 0;
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000128INITIALIZE_PASS_BEGIN(
129 ThreadSanitizer, "tsan",
130 "ThreadSanitizer: detects data races.",
131 false, false)
132INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
133INITIALIZE_PASS_END(
134 ThreadSanitizer, "tsan",
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000135 "ThreadSanitizer: detects data races.",
136 false, false)
137
Kostya Serebryanya1259772012-04-27 07:31:53 +0000138const char *ThreadSanitizer::getPassName() const {
139 return "ThreadSanitizer";
140}
141
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000142void ThreadSanitizer::getAnalysisUsage(AnalysisUsage &AU) const {
143 AU.addRequired<TargetLibraryInfoWrapperPass>();
144}
145
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000146FunctionPass *llvm::createThreadSanitizerPass() {
147 return new ThreadSanitizer();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000148}
149
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000150void ThreadSanitizer::initializeCallbacks(Module &M) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000151 IRBuilder<> IRB(M.getContext());
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000152 // Initialize the callbacks.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000153 TsanFuncEntry = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000154 "__tsan_func_entry", IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000155 TsanFuncExit = checkSanitizerInterfaceFunction(
156 M.getOrInsertFunction("__tsan_func_exit", IRB.getVoidTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000157 OrdTy = IRB.getInt32Ty();
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000158 for (size_t i = 0; i < kNumberOfAccessSizes; ++i) {
Yaron Kerendfb655f2015-08-15 19:06:14 +0000159 const unsigned ByteSize = 1U << i;
160 const unsigned BitSize = ByteSize * 8;
161 std::string ByteSizeStr = utostr(ByteSize);
162 std::string BitSizeStr = utostr(BitSize);
163 SmallString<32> ReadName("__tsan_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000164 TsanRead[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000165 ReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000166
Yaron Kerendfb655f2015-08-15 19:06:14 +0000167 SmallString<32> WriteName("__tsan_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000168 TsanWrite[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000169 WriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000170
Yaron Kerendfb655f2015-08-15 19:06:14 +0000171 SmallString<64> UnalignedReadName("__tsan_unaligned_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000172 TsanUnalignedRead[i] =
173 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
174 UnalignedReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000175
Yaron Kerendfb655f2015-08-15 19:06:14 +0000176 SmallString<64> UnalignedWriteName("__tsan_unaligned_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000177 TsanUnalignedWrite[i] =
178 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
179 UnalignedWriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000180
Kostya Serebryanya1259772012-04-27 07:31:53 +0000181 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
182 Type *PtrTy = Ty->getPointerTo();
Yaron Kerendfb655f2015-08-15 19:06:14 +0000183 SmallString<32> AtomicLoadName("__tsan_atomic" + BitSizeStr + "_load");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000184 TsanAtomicLoad[i] = checkSanitizerInterfaceFunction(
185 M.getOrInsertFunction(AtomicLoadName, Ty, PtrTy, OrdTy, nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000186
Yaron Kerendfb655f2015-08-15 19:06:14 +0000187 SmallString<32> AtomicStoreName("__tsan_atomic" + BitSizeStr + "_store");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000188 TsanAtomicStore[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
189 AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy, nullptr));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000190
191 for (int op = AtomicRMWInst::FIRST_BINOP;
192 op <= AtomicRMWInst::LAST_BINOP; ++op) {
Craig Topperf40110f2014-04-25 05:29:35 +0000193 TsanAtomicRMW[op][i] = nullptr;
194 const char *NamePart = nullptr;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000195 if (op == AtomicRMWInst::Xchg)
196 NamePart = "_exchange";
197 else if (op == AtomicRMWInst::Add)
198 NamePart = "_fetch_add";
199 else if (op == AtomicRMWInst::Sub)
200 NamePart = "_fetch_sub";
201 else if (op == AtomicRMWInst::And)
202 NamePart = "_fetch_and";
203 else if (op == AtomicRMWInst::Or)
204 NamePart = "_fetch_or";
205 else if (op == AtomicRMWInst::Xor)
206 NamePart = "_fetch_xor";
Dmitry Vyukova878e742012-11-27 08:09:25 +0000207 else if (op == AtomicRMWInst::Nand)
208 NamePart = "_fetch_nand";
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000209 else
210 continue;
211 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000212 TsanAtomicRMW[op][i] = checkSanitizerInterfaceFunction(
213 M.getOrInsertFunction(RMWName, Ty, PtrTy, Ty, OrdTy, nullptr));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000214 }
215
Yaron Kerendfb655f2015-08-15 19:06:14 +0000216 SmallString<32> AtomicCASName("__tsan_atomic" + BitSizeStr +
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000217 "_compare_exchange_val");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000218 TsanAtomicCAS[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000219 AtomicCASName, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, nullptr));
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000220 }
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000221 TsanVptrUpdate = checkSanitizerInterfaceFunction(
222 M.getOrInsertFunction("__tsan_vptr_update", IRB.getVoidTy(),
223 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), nullptr));
224 TsanVptrLoad = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000225 "__tsan_vptr_read", IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000226 TsanAtomicThreadFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000227 "__tsan_atomic_thread_fence", IRB.getVoidTy(), OrdTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000228 TsanAtomicSignalFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Reid Kleckner971c3ea2014-11-13 22:55:19 +0000229 "__tsan_atomic_signal_fence", IRB.getVoidTy(), OrdTy, nullptr));
Kostya Serebryany463aa812013-03-28 11:21:13 +0000230
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000231 MemmoveFn = checkSanitizerInterfaceFunction(
232 M.getOrInsertFunction("memmove", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
233 IRB.getInt8PtrTy(), IntptrTy, nullptr));
234 MemcpyFn = checkSanitizerInterfaceFunction(
235 M.getOrInsertFunction("memcpy", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
236 IRB.getInt8PtrTy(), IntptrTy, nullptr));
237 MemsetFn = checkSanitizerInterfaceFunction(
238 M.getOrInsertFunction("memset", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
239 IRB.getInt32Ty(), IntptrTy, nullptr));
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000240}
241
242bool ThreadSanitizer::doInitialization(Module &M) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000243 const DataLayout &DL = M.getDataLayout();
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000244 IntptrTy = DL.getIntPtrType(M.getContext());
245 std::tie(TsanCtorFunction, std::ignore) = createSanitizerCtorAndInitFunctions(
246 M, kTsanModuleCtorName, kTsanInitName, /*InitArgTypes=*/{},
247 /*InitArgs=*/{});
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000248
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000249 appendToGlobalCtors(M, TsanCtorFunction, 0);
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000250
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000251 return true;
252}
253
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000254static bool isVtableAccess(Instruction *I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000255 if (MDNode *Tag = I->getMetadata(LLVMContext::MD_tbaa))
Manman Rend8c68b12013-09-06 22:47:05 +0000256 return Tag->isTBAAVtableAccess();
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000257 return false;
258}
259
Anna Zaks1a470b62016-03-29 23:19:40 +0000260// Do not instrument known races/"benign races" that come from compiler
261// instrumentatin. The user has no way of suppressing them.
Benjamin Kramer4fb78512016-04-07 10:10:09 +0000262static bool shouldInstrumentReadWriteFromAddress(Value *Addr) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000263 // Peel off GEPs and BitCasts.
264 Addr = Addr->stripInBoundsOffsets();
265
266 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
267 if (GV->hasSection()) {
268 StringRef SectionName = GV->getSection();
269 // Check if the global is in the PGO counters section.
270 if (SectionName.endswith(getInstrProfCountersSectionName(
271 /*AddSegment=*/false)))
272 return false;
273 }
Vedant Kumar0222adb2016-06-20 21:24:26 +0000274
275 // Check if the global is in the GCOV counters array.
276 if (GV->getName() == "__llvm_gcov_ctr")
277 return false;
Anna Zaks1a470b62016-03-29 23:19:40 +0000278 }
279 return true;
280}
281
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000282bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) {
283 // If this is a GEP, just analyze its pointer operand.
284 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr))
285 Addr = GEP->getPointerOperand();
286
287 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
288 if (GV->isConstant()) {
289 // Reads from constant globals can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000290 NumOmittedReadsFromConstantGlobals++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000291 return true;
292 }
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +0000293 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) {
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000294 if (isVtableAccess(L)) {
295 // Reads from a vtable pointer can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000296 NumOmittedReadsFromVtable++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000297 return true;
298 }
299 }
300 return false;
301}
302
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000303// Instrumenting some of the accesses may be proven redundant.
304// Currently handled:
305// - read-before-write (within same BB, no calls between)
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000306// - not captured variables
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000307//
308// We do not handle some of the patterns that should not survive
309// after the classic compiler optimizations.
310// E.g. two reads from the same temp should be eliminated by CSE,
311// two writes should be eliminated by DSE, etc.
312//
313// 'Local' is a vector of insns within the same BB (no calls between).
314// 'All' is a vector of insns that will be instrumented.
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000315void ThreadSanitizer::chooseInstructionsToInstrument(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000316 SmallVectorImpl<Instruction *> &Local, SmallVectorImpl<Instruction *> &All,
317 const DataLayout &DL) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000318 SmallSet<Value*, 8> WriteTargets;
319 // Iterate from the end.
320 for (SmallVectorImpl<Instruction*>::reverse_iterator It = Local.rbegin(),
321 E = Local.rend(); It != E; ++It) {
322 Instruction *I = *It;
323 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000324 Value *Addr = Store->getPointerOperand();
325 if (!shouldInstrumentReadWriteFromAddress(Addr))
326 continue;
327 WriteTargets.insert(Addr);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000328 } else {
329 LoadInst *Load = cast<LoadInst>(I);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000330 Value *Addr = Load->getPointerOperand();
Anna Zaks1a470b62016-03-29 23:19:40 +0000331 if (!shouldInstrumentReadWriteFromAddress(Addr))
332 continue;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000333 if (WriteTargets.count(Addr)) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000334 // We will write to this temp, so no reason to analyze the read.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000335 NumOmittedReadsBeforeWrite++;
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000336 continue;
337 }
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000338 if (addrPointsToConstantData(Addr)) {
339 // Addr points to some constant data -- it can not race with any writes.
340 continue;
341 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000342 }
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000343 Value *Addr = isa<StoreInst>(*I)
344 ? cast<StoreInst>(I)->getPointerOperand()
345 : cast<LoadInst>(I)->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000346 if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) &&
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000347 !PointerMayBeCaptured(Addr, true, true)) {
348 // The variable is addressable but not captured, so it cannot be
349 // referenced from a different thread and participate in a data race
350 // (see llvm/Analysis/CaptureTracking.h for details).
351 NumOmittedNonCaptured++;
352 continue;
353 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000354 All.push_back(I);
355 }
356 Local.clear();
357}
358
Kostya Serebryanya1259772012-04-27 07:31:53 +0000359static bool isAtomic(Instruction *I) {
360 if (LoadInst *LI = dyn_cast<LoadInst>(I))
361 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000362 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000363 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000364 if (isa<AtomicRMWInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000365 return true;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000366 if (isa<AtomicCmpXchgInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000367 return true;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000368 if (isa<FenceInst>(I))
369 return true;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000370 return false;
371}
372
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000373bool ThreadSanitizer::runOnFunction(Function &F) {
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000374 // This is required to prevent instrumenting call to __tsan_init from within
375 // the module constructor.
376 if (&F == TsanCtorFunction)
377 return false;
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000378 initializeCallbacks(*F.getParent());
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000379 SmallVector<Instruction*, 8> RetVec;
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000380 SmallVector<Instruction*, 8> AllLoadsAndStores;
381 SmallVector<Instruction*, 8> LocalLoadsAndStores;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000382 SmallVector<Instruction*, 8> AtomicAccesses;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000383 SmallVector<Instruction*, 8> MemIntrinCalls;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000384 bool Res = false;
385 bool HasCalls = false;
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000386 bool SanitizeFunction = F.hasFnAttribute(Attribute::SanitizeThread);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000387 const DataLayout &DL = F.getParent()->getDataLayout();
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000388 const TargetLibraryInfo *TLI =
389 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000390
391 // Traverse all instructions, collect loads/stores/returns, check for calls.
Alexey Samsonova02e6642014-05-29 18:40:48 +0000392 for (auto &BB : F) {
393 for (auto &Inst : BB) {
394 if (isAtomic(&Inst))
395 AtomicAccesses.push_back(&Inst);
396 else if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst))
397 LocalLoadsAndStores.push_back(&Inst);
398 else if (isa<ReturnInst>(Inst))
399 RetVec.push_back(&Inst);
400 else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000401 if (CallInst *CI = dyn_cast<CallInst>(&Inst))
402 maybeMarkSanitizerLibraryCallNoBuiltin(CI, TLI);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000403 if (isa<MemIntrinsic>(Inst))
404 MemIntrinCalls.push_back(&Inst);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000405 HasCalls = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000406 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores,
407 DL);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000408 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000409 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000410 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores, DL);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000411 }
412
413 // We have collected all loads and stores.
414 // FIXME: many of these accesses do not need to be checked for races
415 // (e.g. variables that do not escape, etc).
416
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000417 // Instrument memory accesses only if we want to report bugs in the function.
418 if (ClInstrumentMemoryAccesses && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000419 for (auto Inst : AllLoadsAndStores) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000420 Res |= instrumentLoadOrStore(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000421 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000422
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000423 // Instrument atomic memory accesses in any case (they can be used to
424 // implement synchronization).
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000425 if (ClInstrumentAtomics)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000426 for (auto Inst : AtomicAccesses) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000427 Res |= instrumentAtomic(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000428 }
Kostya Serebryanya1259772012-04-27 07:31:53 +0000429
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000430 if (ClInstrumentMemIntrinsics && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000431 for (auto Inst : MemIntrinCalls) {
432 Res |= instrumentMemIntrinsic(Inst);
Kostya Serebryany463aa812013-03-28 11:21:13 +0000433 }
434
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000435 // Instrument function entry/exit points if there were instrumented accesses.
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000436 if ((Res || HasCalls) && ClInstrumentFuncEntryExit) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000437 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
438 Value *ReturnAddress = IRB.CreateCall(
439 Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress),
440 IRB.getInt32(0));
441 IRB.CreateCall(TsanFuncEntry, ReturnAddress);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000442 for (auto RetInst : RetVec) {
443 IRBuilder<> IRBRet(RetInst);
David Blaikieff6409d2015-05-18 22:13:54 +0000444 IRBRet.CreateCall(TsanFuncExit, {});
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000445 }
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000446 Res = true;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000447 }
448 return Res;
449}
450
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000451bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I,
452 const DataLayout &DL) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000453 IRBuilder<> IRB(I);
454 bool IsWrite = isa<StoreInst>(*I);
455 Value *Addr = IsWrite
456 ? cast<StoreInst>(I)->getPointerOperand()
457 : cast<LoadInst>(I)->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000458 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000459 if (Idx < 0)
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000460 return false;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000461 if (IsWrite && isVtableAccess(I)) {
Kostya Serebryanye36ae682012-07-05 09:07:31 +0000462 DEBUG(dbgs() << " VPTR : " << *I << "\n");
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000463 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
Kostya Serebryany08b9cf52013-12-02 08:07:15 +0000464 // StoredValue may be a vector type if we are storing several vptrs at once.
465 // In this case, just take the first element of the vector since this is
466 // enough to find vptr races.
467 if (isa<VectorType>(StoredValue->getType()))
468 StoredValue = IRB.CreateExtractElement(
469 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0));
Kostya Serebryany2460c3f2013-12-05 15:03:02 +0000470 if (StoredValue->getType()->isIntegerTy())
471 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
Kostya Serebryanye36ae682012-07-05 09:07:31 +0000472 // Call TsanVptrUpdate.
David Blaikieff6409d2015-05-18 22:13:54 +0000473 IRB.CreateCall(TsanVptrUpdate,
474 {IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()),
475 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())});
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000476 NumInstrumentedVtableWrites++;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000477 return true;
478 }
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000479 if (!IsWrite && isVtableAccess(I)) {
480 IRB.CreateCall(TsanVptrLoad,
481 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
482 NumInstrumentedVtableReads++;
483 return true;
484 }
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000485 const unsigned Alignment = IsWrite
486 ? cast<StoreInst>(I)->getAlignment()
487 : cast<LoadInst>(I)->getAlignment();
488 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000489 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000490 Value *OnAccessFunc = nullptr;
491 if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0)
492 OnAccessFunc = IsWrite ? TsanWrite[Idx] : TsanRead[Idx];
493 else
494 OnAccessFunc = IsWrite ? TsanUnalignedWrite[Idx] : TsanUnalignedRead[Idx];
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000495 IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000496 if (IsWrite) NumInstrumentedWrites++;
497 else NumInstrumentedReads++;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000498 return true;
499}
Kostya Serebryanya1259772012-04-27 07:31:53 +0000500
501static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) {
502 uint32_t v = 0;
503 switch (ord) {
JF Bastien800f87a2016-04-06 21:19:33 +0000504 case AtomicOrdering::NotAtomic:
505 llvm_unreachable("unexpected atomic ordering!");
506 case AtomicOrdering::Unordered: // Fall-through.
507 case AtomicOrdering::Monotonic: v = 0; break;
508 // Not specified yet:
509 // case AtomicOrdering::Consume: v = 1; break;
510 case AtomicOrdering::Acquire: v = 2; break;
511 case AtomicOrdering::Release: v = 3; break;
512 case AtomicOrdering::AcquireRelease: v = 4; break;
513 case AtomicOrdering::SequentiallyConsistent: v = 5; break;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000514 }
Dmitry Vyukov0044e382012-11-09 14:12:16 +0000515 return IRB->getInt32(v);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000516}
517
Kostya Serebryany463aa812013-03-28 11:21:13 +0000518// If a memset intrinsic gets inlined by the code gen, we will miss races on it.
519// So, we either need to ensure the intrinsic is not inlined, or instrument it.
520// We do not instrument memset/memmove/memcpy intrinsics (too complicated),
521// instead we simply replace them with regular function calls, which are then
522// intercepted by the run-time.
523// Since tsan is running after everyone else, the calls should not be
524// replaced back with intrinsics. If that becomes wrong at some point,
525// we will need to call e.g. __tsan_memset to avoid the intrinsics.
526bool ThreadSanitizer::instrumentMemIntrinsic(Instruction *I) {
527 IRBuilder<> IRB(I);
528 if (MemSetInst *M = dyn_cast<MemSetInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000529 IRB.CreateCall(
530 MemsetFn,
531 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
532 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false),
533 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000534 I->eraseFromParent();
535 } else if (MemTransferInst *M = dyn_cast<MemTransferInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000536 IRB.CreateCall(
537 isa<MemCpyInst>(M) ? MemcpyFn : MemmoveFn,
538 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
539 IRB.CreatePointerCast(M->getArgOperand(1), IRB.getInt8PtrTy()),
540 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000541 I->eraseFromParent();
542 }
543 return false;
544}
545
Anna Zaksc1efa642016-03-07 23:16:23 +0000546static Value *createIntOrPtrToIntCast(Value *V, Type* Ty, IRBuilder<> &IRB) {
547 return isa<PointerType>(V->getType()) ?
548 IRB.CreatePtrToInt(V, Ty) : IRB.CreateIntCast(V, Ty, false);
549}
550
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000551// Both llvm and ThreadSanitizer atomic operations are based on C++11/C1x
Alp Tokercb402912014-01-24 17:20:08 +0000552// standards. For background see C++11 standard. A slightly older, publicly
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000553// available draft of the standard (not entirely up-to-date, but close enough
554// for casual browsing) is available here:
Matt Beaumont-Gay000a3952012-11-26 16:27:22 +0000555// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000556// The following page contains more background information:
557// http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/
558
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000559bool ThreadSanitizer::instrumentAtomic(Instruction *I, const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000560 IRBuilder<> IRB(I);
561 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
562 Value *Addr = LI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000563 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000564 if (Idx < 0)
565 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000566 const unsigned ByteSize = 1U << Idx;
567 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000568 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000569 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000570 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
571 createOrdering(&IRB, LI->getOrdering())};
Anna Zaksc1efa642016-03-07 23:16:23 +0000572 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
573 if (Ty == OrigTy) {
574 Instruction *C = CallInst::Create(TsanAtomicLoad[Idx], Args);
575 ReplaceInstWithInst(I, C);
576 } else {
577 // We are loading a pointer, so we need to cast the return value.
578 Value *C = IRB.CreateCall(TsanAtomicLoad[Idx], Args);
579 Instruction *Cast = CastInst::Create(Instruction::IntToPtr, C, OrigTy);
580 ReplaceInstWithInst(I, Cast);
581 }
Kostya Serebryanya1259772012-04-27 07:31:53 +0000582 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
583 Value *Addr = SI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000584 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000585 if (Idx < 0)
586 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000587 const unsigned ByteSize = 1U << Idx;
588 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000589 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000590 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000591 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Anna Zaksc1efa642016-03-07 23:16:23 +0000592 createIntOrPtrToIntCast(SI->getValueOperand(), Ty, IRB),
Kostya Serebryanya1259772012-04-27 07:31:53 +0000593 createOrdering(&IRB, SI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000594 CallInst *C = CallInst::Create(TsanAtomicStore[Idx], Args);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000595 ReplaceInstWithInst(I, C);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000596 } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I)) {
597 Value *Addr = RMWI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000598 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000599 if (Idx < 0)
600 return false;
601 Function *F = TsanAtomicRMW[RMWI->getOperation()][Idx];
Craig Topperf40110f2014-04-25 05:29:35 +0000602 if (!F)
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000603 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000604 const unsigned ByteSize = 1U << Idx;
605 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000606 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
607 Type *PtrTy = Ty->getPointerTo();
608 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
609 IRB.CreateIntCast(RMWI->getValOperand(), Ty, false),
610 createOrdering(&IRB, RMWI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000611 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000612 ReplaceInstWithInst(I, C);
613 } else if (AtomicCmpXchgInst *CASI = dyn_cast<AtomicCmpXchgInst>(I)) {
614 Value *Addr = CASI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000615 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000616 if (Idx < 0)
617 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000618 const unsigned ByteSize = 1U << Idx;
619 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000620 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
621 Type *PtrTy = Ty->getPointerTo();
Anna Zaksc1efa642016-03-07 23:16:23 +0000622 Value *CmpOperand =
623 createIntOrPtrToIntCast(CASI->getCompareOperand(), Ty, IRB);
624 Value *NewOperand =
625 createIntOrPtrToIntCast(CASI->getNewValOperand(), Ty, IRB);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000626 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Anna Zaksc1efa642016-03-07 23:16:23 +0000627 CmpOperand,
628 NewOperand,
Tim Northovere94a5182014-03-11 10:48:52 +0000629 createOrdering(&IRB, CASI->getSuccessOrdering()),
630 createOrdering(&IRB, CASI->getFailureOrdering())};
Tim Northover420a2162014-06-13 14:24:07 +0000631 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args);
Anna Zaksc1efa642016-03-07 23:16:23 +0000632 Value *Success = IRB.CreateICmpEQ(C, CmpOperand);
633 Value *OldVal = C;
634 Type *OrigOldValTy = CASI->getNewValOperand()->getType();
635 if (Ty != OrigOldValTy) {
636 // The value is a pointer, so we need to cast the return value.
637 OldVal = IRB.CreateIntToPtr(C, OrigOldValTy);
638 }
Tim Northover420a2162014-06-13 14:24:07 +0000639
Anna Zaksc1efa642016-03-07 23:16:23 +0000640 Value *Res =
641 IRB.CreateInsertValue(UndefValue::get(CASI->getType()), OldVal, 0);
Tim Northover420a2162014-06-13 14:24:07 +0000642 Res = IRB.CreateInsertValue(Res, Success, 1);
643
644 I->replaceAllUsesWith(Res);
645 I->eraseFromParent();
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000646 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) {
647 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())};
648 Function *F = FI->getSynchScope() == SingleThread ?
649 TsanAtomicSignalFence : TsanAtomicThreadFence;
Craig Toppere1d12942014-08-27 05:25:25 +0000650 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000651 ReplaceInstWithInst(I, C);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000652 }
653 return true;
654}
655
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000656int ThreadSanitizer::getMemoryAccessFuncIndex(Value *Addr,
657 const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000658 Type *OrigPtrTy = Addr->getType();
659 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
660 assert(OrigTy->isSized());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000661 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000662 if (TypeSize != 8 && TypeSize != 16 &&
663 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
664 NumAccessesWithBadSize++;
665 // Ignore all unusual sizes.
666 return -1;
667 }
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000668 size_t Idx = countTrailingZeros(TypeSize / 8);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000669 assert(Idx < kNumberOfAccessSizes);
670 return Idx;
671}