blob: b68fea0e494ef86487fc3740ed811eb8ce5b2716 [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"
Kuba Breckaddfdba32016-11-14 21:41:13 +000046#include "llvm/Transforms/Utils/EscapeEnumerator.h"
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000047#include "llvm/Transforms/Utils/Local.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000048#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000049
50using namespace llvm;
51
Chandler Carruth964daaa2014-04-22 02:55:47 +000052#define DEBUG_TYPE "tsan"
53
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +000054static cl::opt<bool> ClInstrumentMemoryAccesses(
55 "tsan-instrument-memory-accesses", cl::init(true),
56 cl::desc("Instrument memory accesses"), cl::Hidden);
57static cl::opt<bool> ClInstrumentFuncEntryExit(
58 "tsan-instrument-func-entry-exit", cl::init(true),
59 cl::desc("Instrument function entry and exit"), cl::Hidden);
Kuba Breckaddfdba32016-11-14 21:41:13 +000060static cl::opt<bool> ClHandleCxxExceptions(
61 "tsan-handle-cxx-exceptions", cl::init(true),
62 cl::desc("Handle C++ exceptions (insert cleanup blocks for unwinding)"),
63 cl::Hidden);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +000064static cl::opt<bool> ClInstrumentAtomics(
65 "tsan-instrument-atomics", cl::init(true),
66 cl::desc("Instrument atomics"), cl::Hidden);
Kostya Serebryany463aa812013-03-28 11:21:13 +000067static cl::opt<bool> ClInstrumentMemIntrinsics(
68 "tsan-instrument-memintrinsics", cl::init(true),
69 cl::desc("Instrument memintrinsics (memset/memcpy/memmove)"), cl::Hidden);
Kostya Serebryanyabad0022012-03-14 23:33:24 +000070
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000071STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
72STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +000073STATISTIC(NumOmittedReadsBeforeWrite,
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000074 "Number of reads ignored due to following writes");
75STATISTIC(NumAccessesWithBadSize, "Number of accesses with bad size");
76STATISTIC(NumInstrumentedVtableWrites, "Number of vtable ptr writes");
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +000077STATISTIC(NumInstrumentedVtableReads, "Number of vtable ptr reads");
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000078STATISTIC(NumOmittedReadsFromConstantGlobals,
79 "Number of reads from constant globals");
80STATISTIC(NumOmittedReadsFromVtable, "Number of vtable reads");
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +000081STATISTIC(NumOmittedNonCaptured, "Number of accesses ignored due to capturing");
Kostya Serebryanybf2de802012-04-10 18:18:56 +000082
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +000083static const char *const kTsanModuleCtorName = "tsan.module_ctor";
84static const char *const kTsanInitName = "__tsan_init";
85
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000086namespace {
Kostya Serebryanybf2de802012-04-10 18:18:56 +000087
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000088/// ThreadSanitizer: instrument the code in module to find races.
89struct ThreadSanitizer : public FunctionPass {
Mehdi Aminia28d91d2015-03-10 02:37:25 +000090 ThreadSanitizer() : FunctionPass(ID) {}
Mehdi Amini117296c2016-10-01 02:56:57 +000091 StringRef getPassName() const override;
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000092 void getAnalysisUsage(AnalysisUsage &AU) const override;
Craig Topper3e4c6972014-03-05 09:10:37 +000093 bool runOnFunction(Function &F) override;
94 bool doInitialization(Module &M) override;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000095 static char ID; // Pass identification, replacement for typeid.
96
97 private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +000098 void initializeCallbacks(Module &M);
Mehdi Aminia28d91d2015-03-10 02:37:25 +000099 bool instrumentLoadOrStore(Instruction *I, const DataLayout &DL);
100 bool instrumentAtomic(Instruction *I, const DataLayout &DL);
Kostya Serebryany463aa812013-03-28 11:21:13 +0000101 bool instrumentMemIntrinsic(Instruction *I);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000102 void chooseInstructionsToInstrument(SmallVectorImpl<Instruction *> &Local,
103 SmallVectorImpl<Instruction *> &All,
104 const DataLayout &DL);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000105 bool addrPointsToConstantData(Value *Addr);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000106 int getMemoryAccessFuncIndex(Value *Addr, const DataLayout &DL);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000107 void InsertRuntimeIgnores(Function &F);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000108
Kostya Serebryany463aa812013-03-28 11:21:13 +0000109 Type *IntptrTy;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000110 IntegerType *OrdTy;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000111 // Callbacks to run-time library are computed in doInitialization.
Kostya Serebryanya1259772012-04-27 07:31:53 +0000112 Function *TsanFuncEntry;
113 Function *TsanFuncExit;
Anna Zaks3c437372016-11-11 23:01:02 +0000114 Function *TsanIgnoreBegin;
115 Function *TsanIgnoreEnd;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000116 // Accesses sizes are powers of two: 1, 2, 4, 8, 16.
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000117 static const size_t kNumberOfAccessSizes = 5;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000118 Function *TsanRead[kNumberOfAccessSizes];
119 Function *TsanWrite[kNumberOfAccessSizes];
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000120 Function *TsanUnalignedRead[kNumberOfAccessSizes];
121 Function *TsanUnalignedWrite[kNumberOfAccessSizes];
Kostya Serebryanya1259772012-04-27 07:31:53 +0000122 Function *TsanAtomicLoad[kNumberOfAccessSizes];
123 Function *TsanAtomicStore[kNumberOfAccessSizes];
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000124 Function *TsanAtomicRMW[AtomicRMWInst::LAST_BINOP + 1][kNumberOfAccessSizes];
125 Function *TsanAtomicCAS[kNumberOfAccessSizes];
126 Function *TsanAtomicThreadFence;
127 Function *TsanAtomicSignalFence;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000128 Function *TsanVptrUpdate;
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000129 Function *TsanVptrLoad;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000130 Function *MemmoveFn, *MemcpyFn, *MemsetFn;
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000131 Function *TsanCtorFunction;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000132};
133} // namespace
134
135char ThreadSanitizer::ID = 0;
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000136INITIALIZE_PASS_BEGIN(
137 ThreadSanitizer, "tsan",
138 "ThreadSanitizer: detects data races.",
139 false, false)
140INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
141INITIALIZE_PASS_END(
142 ThreadSanitizer, "tsan",
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000143 "ThreadSanitizer: detects data races.",
144 false, false)
145
Mehdi Amini117296c2016-10-01 02:56:57 +0000146StringRef ThreadSanitizer::getPassName() const { return "ThreadSanitizer"; }
Kostya Serebryanya1259772012-04-27 07:31:53 +0000147
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000148void ThreadSanitizer::getAnalysisUsage(AnalysisUsage &AU) const {
149 AU.addRequired<TargetLibraryInfoWrapperPass>();
150}
151
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000152FunctionPass *llvm::createThreadSanitizerPass() {
153 return new ThreadSanitizer();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000154}
155
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000156void ThreadSanitizer::initializeCallbacks(Module &M) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000157 IRBuilder<> IRB(M.getContext());
Reid Klecknerb5180542017-03-21 16:57:19 +0000158 AttributeList Attr;
159 Attr = Attr.addAttribute(M.getContext(), AttributeList::FunctionIndex,
160 Attribute::NoUnwind);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000161 // Initialize the callbacks.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000162 TsanFuncEntry = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000163 "__tsan_func_entry", Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000164 TsanFuncExit = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000165 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy(), nullptr));
Anna Zaks3c437372016-11-11 23:01:02 +0000166 TsanIgnoreBegin = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000167 "__tsan_ignore_thread_begin", Attr, IRB.getVoidTy(), nullptr));
168 TsanIgnoreEnd = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
169 "__tsan_ignore_thread_end", Attr, IRB.getVoidTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000170 OrdTy = IRB.getInt32Ty();
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000171 for (size_t i = 0; i < kNumberOfAccessSizes; ++i) {
Yaron Kerendfb655f2015-08-15 19:06:14 +0000172 const unsigned ByteSize = 1U << i;
173 const unsigned BitSize = ByteSize * 8;
174 std::string ByteSizeStr = utostr(ByteSize);
175 std::string BitSizeStr = utostr(BitSize);
176 SmallString<32> ReadName("__tsan_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000177 TsanRead[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000178 ReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000179
Yaron Kerendfb655f2015-08-15 19:06:14 +0000180 SmallString<32> WriteName("__tsan_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000181 TsanWrite[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000182 WriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000183
Yaron Kerendfb655f2015-08-15 19:06:14 +0000184 SmallString<64> UnalignedReadName("__tsan_unaligned_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000185 TsanUnalignedRead[i] =
186 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000187 UnalignedReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000188
Yaron Kerendfb655f2015-08-15 19:06:14 +0000189 SmallString<64> UnalignedWriteName("__tsan_unaligned_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000190 TsanUnalignedWrite[i] =
191 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000192 UnalignedWriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000193
Kostya Serebryanya1259772012-04-27 07:31:53 +0000194 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
195 Type *PtrTy = Ty->getPointerTo();
Yaron Kerendfb655f2015-08-15 19:06:14 +0000196 SmallString<32> AtomicLoadName("__tsan_atomic" + BitSizeStr + "_load");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000197 TsanAtomicLoad[i] = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000198 M.getOrInsertFunction(AtomicLoadName, Attr, Ty, PtrTy, OrdTy, nullptr));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000199
Yaron Kerendfb655f2015-08-15 19:06:14 +0000200 SmallString<32> AtomicStoreName("__tsan_atomic" + BitSizeStr + "_store");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000201 TsanAtomicStore[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000202 AtomicStoreName, Attr, IRB.getVoidTy(), PtrTy, Ty, OrdTy, nullptr));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000203
204 for (int op = AtomicRMWInst::FIRST_BINOP;
205 op <= AtomicRMWInst::LAST_BINOP; ++op) {
Craig Topperf40110f2014-04-25 05:29:35 +0000206 TsanAtomicRMW[op][i] = nullptr;
207 const char *NamePart = nullptr;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000208 if (op == AtomicRMWInst::Xchg)
209 NamePart = "_exchange";
210 else if (op == AtomicRMWInst::Add)
211 NamePart = "_fetch_add";
212 else if (op == AtomicRMWInst::Sub)
213 NamePart = "_fetch_sub";
214 else if (op == AtomicRMWInst::And)
215 NamePart = "_fetch_and";
216 else if (op == AtomicRMWInst::Or)
217 NamePart = "_fetch_or";
218 else if (op == AtomicRMWInst::Xor)
219 NamePart = "_fetch_xor";
Dmitry Vyukova878e742012-11-27 08:09:25 +0000220 else if (op == AtomicRMWInst::Nand)
221 NamePart = "_fetch_nand";
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000222 else
223 continue;
224 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000225 TsanAtomicRMW[op][i] = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000226 M.getOrInsertFunction(RMWName, Attr, Ty, PtrTy, Ty, OrdTy, nullptr));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000227 }
228
Yaron Kerendfb655f2015-08-15 19:06:14 +0000229 SmallString<32> AtomicCASName("__tsan_atomic" + BitSizeStr +
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000230 "_compare_exchange_val");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000231 TsanAtomicCAS[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000232 AtomicCASName, Attr, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, nullptr));
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000233 }
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000234 TsanVptrUpdate = checkSanitizerInterfaceFunction(
Kuba Breckaddfdba32016-11-14 21:41:13 +0000235 M.getOrInsertFunction("__tsan_vptr_update", Attr, IRB.getVoidTy(),
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000236 IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000237 TsanVptrLoad = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000238 "__tsan_vptr_read", Attr, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000239 TsanAtomicThreadFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000240 "__tsan_atomic_thread_fence", Attr, IRB.getVoidTy(), OrdTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000241 TsanAtomicSignalFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000242 "__tsan_atomic_signal_fence", Attr, IRB.getVoidTy(), OrdTy, nullptr));
Kostya Serebryany463aa812013-03-28 11:21:13 +0000243
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000244 MemmoveFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000245 M.getOrInsertFunction("memmove", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
246 IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000247 MemcpyFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000248 M.getOrInsertFunction("memcpy", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
249 IRB.getInt8PtrTy(), IntptrTy, nullptr));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000250 MemsetFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000251 M.getOrInsertFunction("memset", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
252 IRB.getInt32Ty(), IntptrTy, nullptr));
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000253}
254
255bool ThreadSanitizer::doInitialization(Module &M) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000256 const DataLayout &DL = M.getDataLayout();
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000257 IntptrTy = DL.getIntPtrType(M.getContext());
258 std::tie(TsanCtorFunction, std::ignore) = createSanitizerCtorAndInitFunctions(
259 M, kTsanModuleCtorName, kTsanInitName, /*InitArgTypes=*/{},
260 /*InitArgs=*/{});
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000261
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000262 appendToGlobalCtors(M, TsanCtorFunction, 0);
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000263
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000264 return true;
265}
266
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000267static bool isVtableAccess(Instruction *I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000268 if (MDNode *Tag = I->getMetadata(LLVMContext::MD_tbaa))
Manman Rend8c68b12013-09-06 22:47:05 +0000269 return Tag->isTBAAVtableAccess();
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000270 return false;
271}
272
Anna Zaks1a470b62016-03-29 23:19:40 +0000273// Do not instrument known races/"benign races" that come from compiler
274// instrumentatin. The user has no way of suppressing them.
Benjamin Kramer4fb78512016-04-07 10:10:09 +0000275static bool shouldInstrumentReadWriteFromAddress(Value *Addr) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000276 // Peel off GEPs and BitCasts.
277 Addr = Addr->stripInBoundsOffsets();
278
279 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
280 if (GV->hasSection()) {
281 StringRef SectionName = GV->getSection();
282 // Check if the global is in the PGO counters section.
283 if (SectionName.endswith(getInstrProfCountersSectionName(
284 /*AddSegment=*/false)))
285 return false;
286 }
Vedant Kumar0222adb2016-06-20 21:24:26 +0000287
Vedant Kumar57faf2d2016-07-19 20:16:08 +0000288 // Check if the global is private gcov data.
289 if (GV->getName().startswith("__llvm_gcov") ||
290 GV->getName().startswith("__llvm_gcda"))
Vedant Kumar0222adb2016-06-20 21:24:26 +0000291 return false;
Anna Zaks1a470b62016-03-29 23:19:40 +0000292 }
Anna Zaks644d9d32016-06-22 00:15:52 +0000293
294 // Do not instrument acesses from different address spaces; we cannot deal
295 // with them.
296 if (Addr) {
297 Type *PtrTy = cast<PointerType>(Addr->getType()->getScalarType());
298 if (PtrTy->getPointerAddressSpace() != 0)
299 return false;
300 }
301
Anna Zaks1a470b62016-03-29 23:19:40 +0000302 return true;
303}
304
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000305bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) {
306 // If this is a GEP, just analyze its pointer operand.
307 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr))
308 Addr = GEP->getPointerOperand();
309
310 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
311 if (GV->isConstant()) {
312 // Reads from constant globals can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000313 NumOmittedReadsFromConstantGlobals++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000314 return true;
315 }
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +0000316 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) {
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000317 if (isVtableAccess(L)) {
318 // Reads from a vtable pointer can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000319 NumOmittedReadsFromVtable++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000320 return true;
321 }
322 }
323 return false;
324}
325
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000326// Instrumenting some of the accesses may be proven redundant.
327// Currently handled:
328// - read-before-write (within same BB, no calls between)
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000329// - not captured variables
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000330//
331// We do not handle some of the patterns that should not survive
332// after the classic compiler optimizations.
333// E.g. two reads from the same temp should be eliminated by CSE,
334// two writes should be eliminated by DSE, etc.
335//
336// 'Local' is a vector of insns within the same BB (no calls between).
337// 'All' is a vector of insns that will be instrumented.
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000338void ThreadSanitizer::chooseInstructionsToInstrument(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000339 SmallVectorImpl<Instruction *> &Local, SmallVectorImpl<Instruction *> &All,
340 const DataLayout &DL) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000341 SmallSet<Value*, 8> WriteTargets;
342 // Iterate from the end.
David Majnemerd7708772016-06-24 04:05:21 +0000343 for (Instruction *I : reverse(Local)) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000344 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000345 Value *Addr = Store->getPointerOperand();
346 if (!shouldInstrumentReadWriteFromAddress(Addr))
347 continue;
348 WriteTargets.insert(Addr);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000349 } else {
350 LoadInst *Load = cast<LoadInst>(I);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000351 Value *Addr = Load->getPointerOperand();
Anna Zaks1a470b62016-03-29 23:19:40 +0000352 if (!shouldInstrumentReadWriteFromAddress(Addr))
353 continue;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000354 if (WriteTargets.count(Addr)) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000355 // We will write to this temp, so no reason to analyze the read.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000356 NumOmittedReadsBeforeWrite++;
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000357 continue;
358 }
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000359 if (addrPointsToConstantData(Addr)) {
360 // Addr points to some constant data -- it can not race with any writes.
361 continue;
362 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000363 }
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000364 Value *Addr = isa<StoreInst>(*I)
365 ? cast<StoreInst>(I)->getPointerOperand()
366 : cast<LoadInst>(I)->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000367 if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) &&
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000368 !PointerMayBeCaptured(Addr, true, true)) {
369 // The variable is addressable but not captured, so it cannot be
370 // referenced from a different thread and participate in a data race
371 // (see llvm/Analysis/CaptureTracking.h for details).
372 NumOmittedNonCaptured++;
373 continue;
374 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000375 All.push_back(I);
376 }
377 Local.clear();
378}
379
Kostya Serebryanya1259772012-04-27 07:31:53 +0000380static bool isAtomic(Instruction *I) {
381 if (LoadInst *LI = dyn_cast<LoadInst>(I))
382 return LI->isAtomic() && LI->getSynchScope() == CrossThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000383 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000384 return SI->isAtomic() && SI->getSynchScope() == CrossThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000385 if (isa<AtomicRMWInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000386 return true;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000387 if (isa<AtomicCmpXchgInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000388 return true;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000389 if (isa<FenceInst>(I))
390 return true;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000391 return false;
392}
393
Kuba Breckaddfdba32016-11-14 21:41:13 +0000394void ThreadSanitizer::InsertRuntimeIgnores(Function &F) {
Anna Zaks3c437372016-11-11 23:01:02 +0000395 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
396 IRB.CreateCall(TsanIgnoreBegin);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000397 EscapeEnumerator EE(F, "tsan_ignore_cleanup", ClHandleCxxExceptions);
398 while (IRBuilder<> *AtExit = EE.Next()) {
399 AtExit->CreateCall(TsanIgnoreEnd);
Anna Zaks3c437372016-11-11 23:01:02 +0000400 }
401}
402
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000403bool ThreadSanitizer::runOnFunction(Function &F) {
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000404 // This is required to prevent instrumenting call to __tsan_init from within
405 // the module constructor.
406 if (&F == TsanCtorFunction)
407 return false;
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000408 initializeCallbacks(*F.getParent());
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000409 SmallVector<Instruction*, 8> AllLoadsAndStores;
410 SmallVector<Instruction*, 8> LocalLoadsAndStores;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000411 SmallVector<Instruction*, 8> AtomicAccesses;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000412 SmallVector<Instruction*, 8> MemIntrinCalls;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000413 bool Res = false;
414 bool HasCalls = false;
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000415 bool SanitizeFunction = F.hasFnAttribute(Attribute::SanitizeThread);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000416 const DataLayout &DL = F.getParent()->getDataLayout();
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000417 const TargetLibraryInfo *TLI =
418 &getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000419
420 // Traverse all instructions, collect loads/stores/returns, check for calls.
Alexey Samsonova02e6642014-05-29 18:40:48 +0000421 for (auto &BB : F) {
422 for (auto &Inst : BB) {
423 if (isAtomic(&Inst))
424 AtomicAccesses.push_back(&Inst);
425 else if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst))
426 LocalLoadsAndStores.push_back(&Inst);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000427 else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000428 if (CallInst *CI = dyn_cast<CallInst>(&Inst))
429 maybeMarkSanitizerLibraryCallNoBuiltin(CI, TLI);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000430 if (isa<MemIntrinsic>(Inst))
431 MemIntrinCalls.push_back(&Inst);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000432 HasCalls = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000433 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores,
434 DL);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000435 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000436 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000437 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores, DL);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000438 }
439
440 // We have collected all loads and stores.
441 // FIXME: many of these accesses do not need to be checked for races
442 // (e.g. variables that do not escape, etc).
443
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000444 // Instrument memory accesses only if we want to report bugs in the function.
445 if (ClInstrumentMemoryAccesses && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000446 for (auto Inst : AllLoadsAndStores) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000447 Res |= instrumentLoadOrStore(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000448 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000449
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000450 // Instrument atomic memory accesses in any case (they can be used to
451 // implement synchronization).
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000452 if (ClInstrumentAtomics)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000453 for (auto Inst : AtomicAccesses) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000454 Res |= instrumentAtomic(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000455 }
Kostya Serebryanya1259772012-04-27 07:31:53 +0000456
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000457 if (ClInstrumentMemIntrinsics && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000458 for (auto Inst : MemIntrinCalls) {
459 Res |= instrumentMemIntrinsic(Inst);
Kostya Serebryany463aa812013-03-28 11:21:13 +0000460 }
461
Anna Zaks3c437372016-11-11 23:01:02 +0000462 if (F.hasFnAttribute("sanitize_thread_no_checking_at_run_time")) {
463 assert(!F.hasFnAttribute(Attribute::SanitizeThread));
464 if (HasCalls)
Kuba Breckaddfdba32016-11-14 21:41:13 +0000465 InsertRuntimeIgnores(F);
Anna Zaks3c437372016-11-11 23:01:02 +0000466 }
467
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000468 // Instrument function entry/exit points if there were instrumented accesses.
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000469 if ((Res || HasCalls) && ClInstrumentFuncEntryExit) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000470 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
471 Value *ReturnAddress = IRB.CreateCall(
472 Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress),
473 IRB.getInt32(0));
474 IRB.CreateCall(TsanFuncEntry, ReturnAddress);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000475
476 EscapeEnumerator EE(F, "tsan_cleanup", ClHandleCxxExceptions);
477 while (IRBuilder<> *AtExit = EE.Next()) {
478 AtExit->CreateCall(TsanFuncExit, {});
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000479 }
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000480 Res = true;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000481 }
482 return Res;
483}
484
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000485bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I,
486 const DataLayout &DL) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000487 IRBuilder<> IRB(I);
488 bool IsWrite = isa<StoreInst>(*I);
489 Value *Addr = IsWrite
490 ? cast<StoreInst>(I)->getPointerOperand()
491 : cast<LoadInst>(I)->getPointerOperand();
Arnold Schwaighofer8eb1a482017-02-15 18:57:06 +0000492
493 // swifterror memory addresses are mem2reg promoted by instruction selection.
494 // As such they cannot have regular uses like an instrumentation function and
495 // it makes no sense to track them as memory.
496 if (Addr->isSwiftError())
497 return false;
498
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000499 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000500 if (Idx < 0)
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000501 return false;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000502 if (IsWrite && isVtableAccess(I)) {
Kostya Serebryanye36ae682012-07-05 09:07:31 +0000503 DEBUG(dbgs() << " VPTR : " << *I << "\n");
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000504 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
Kostya Serebryany08b9cf52013-12-02 08:07:15 +0000505 // StoredValue may be a vector type if we are storing several vptrs at once.
506 // In this case, just take the first element of the vector since this is
507 // enough to find vptr races.
508 if (isa<VectorType>(StoredValue->getType()))
509 StoredValue = IRB.CreateExtractElement(
510 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0));
Kostya Serebryany2460c3f2013-12-05 15:03:02 +0000511 if (StoredValue->getType()->isIntegerTy())
512 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
Kostya Serebryanye36ae682012-07-05 09:07:31 +0000513 // Call TsanVptrUpdate.
David Blaikieff6409d2015-05-18 22:13:54 +0000514 IRB.CreateCall(TsanVptrUpdate,
515 {IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()),
516 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())});
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000517 NumInstrumentedVtableWrites++;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000518 return true;
519 }
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000520 if (!IsWrite && isVtableAccess(I)) {
521 IRB.CreateCall(TsanVptrLoad,
522 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
523 NumInstrumentedVtableReads++;
524 return true;
525 }
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000526 const unsigned Alignment = IsWrite
527 ? cast<StoreInst>(I)->getAlignment()
528 : cast<LoadInst>(I)->getAlignment();
529 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000530 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000531 Value *OnAccessFunc = nullptr;
532 if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0)
533 OnAccessFunc = IsWrite ? TsanWrite[Idx] : TsanRead[Idx];
534 else
535 OnAccessFunc = IsWrite ? TsanUnalignedWrite[Idx] : TsanUnalignedRead[Idx];
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000536 IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000537 if (IsWrite) NumInstrumentedWrites++;
538 else NumInstrumentedReads++;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000539 return true;
540}
Kostya Serebryanya1259772012-04-27 07:31:53 +0000541
542static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) {
543 uint32_t v = 0;
544 switch (ord) {
JF Bastien800f87a2016-04-06 21:19:33 +0000545 case AtomicOrdering::NotAtomic:
546 llvm_unreachable("unexpected atomic ordering!");
Justin Bognerb03fd122016-08-17 05:10:15 +0000547 case AtomicOrdering::Unordered: LLVM_FALLTHROUGH;
JF Bastien800f87a2016-04-06 21:19:33 +0000548 case AtomicOrdering::Monotonic: v = 0; break;
549 // Not specified yet:
550 // case AtomicOrdering::Consume: v = 1; break;
551 case AtomicOrdering::Acquire: v = 2; break;
552 case AtomicOrdering::Release: v = 3; break;
553 case AtomicOrdering::AcquireRelease: v = 4; break;
554 case AtomicOrdering::SequentiallyConsistent: v = 5; break;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000555 }
Dmitry Vyukov0044e382012-11-09 14:12:16 +0000556 return IRB->getInt32(v);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000557}
558
Kostya Serebryany463aa812013-03-28 11:21:13 +0000559// If a memset intrinsic gets inlined by the code gen, we will miss races on it.
560// So, we either need to ensure the intrinsic is not inlined, or instrument it.
561// We do not instrument memset/memmove/memcpy intrinsics (too complicated),
562// instead we simply replace them with regular function calls, which are then
563// intercepted by the run-time.
564// Since tsan is running after everyone else, the calls should not be
565// replaced back with intrinsics. If that becomes wrong at some point,
566// we will need to call e.g. __tsan_memset to avoid the intrinsics.
567bool ThreadSanitizer::instrumentMemIntrinsic(Instruction *I) {
568 IRBuilder<> IRB(I);
569 if (MemSetInst *M = dyn_cast<MemSetInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000570 IRB.CreateCall(
571 MemsetFn,
572 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
573 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false),
574 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000575 I->eraseFromParent();
576 } else if (MemTransferInst *M = dyn_cast<MemTransferInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000577 IRB.CreateCall(
578 isa<MemCpyInst>(M) ? MemcpyFn : MemmoveFn,
579 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
580 IRB.CreatePointerCast(M->getArgOperand(1), IRB.getInt8PtrTy()),
581 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000582 I->eraseFromParent();
583 }
584 return false;
585}
586
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000587// Both llvm and ThreadSanitizer atomic operations are based on C++11/C1x
Alp Tokercb402912014-01-24 17:20:08 +0000588// standards. For background see C++11 standard. A slightly older, publicly
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000589// available draft of the standard (not entirely up-to-date, but close enough
590// for casual browsing) is available here:
Matt Beaumont-Gay000a3952012-11-26 16:27:22 +0000591// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000592// The following page contains more background information:
593// http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/
594
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000595bool ThreadSanitizer::instrumentAtomic(Instruction *I, const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000596 IRBuilder<> IRB(I);
597 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
598 Value *Addr = LI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000599 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000600 if (Idx < 0)
601 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000602 const unsigned ByteSize = 1U << Idx;
603 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000604 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000605 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000606 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
607 createOrdering(&IRB, LI->getOrdering())};
Anna Zaksc1efa642016-03-07 23:16:23 +0000608 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000609 Value *C = IRB.CreateCall(TsanAtomicLoad[Idx], Args);
610 Value *Cast = IRB.CreateBitOrPointerCast(C, OrigTy);
611 I->replaceAllUsesWith(Cast);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000612 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
613 Value *Addr = SI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000614 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000615 if (Idx < 0)
616 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000617 const unsigned ByteSize = 1U << Idx;
618 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000619 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000620 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000621 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000622 IRB.CreateBitOrPointerCast(SI->getValueOperand(), Ty),
Kostya Serebryanya1259772012-04-27 07:31:53 +0000623 createOrdering(&IRB, SI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000624 CallInst *C = CallInst::Create(TsanAtomicStore[Idx], Args);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000625 ReplaceInstWithInst(I, C);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000626 } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I)) {
627 Value *Addr = RMWI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000628 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000629 if (Idx < 0)
630 return false;
631 Function *F = TsanAtomicRMW[RMWI->getOperation()][Idx];
Craig Topperf40110f2014-04-25 05:29:35 +0000632 if (!F)
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000633 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000634 const unsigned ByteSize = 1U << Idx;
635 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000636 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
637 Type *PtrTy = Ty->getPointerTo();
638 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
639 IRB.CreateIntCast(RMWI->getValOperand(), Ty, false),
640 createOrdering(&IRB, RMWI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000641 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000642 ReplaceInstWithInst(I, C);
643 } else if (AtomicCmpXchgInst *CASI = dyn_cast<AtomicCmpXchgInst>(I)) {
644 Value *Addr = CASI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000645 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000646 if (Idx < 0)
647 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000648 const unsigned ByteSize = 1U << Idx;
649 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000650 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
651 Type *PtrTy = Ty->getPointerTo();
Anna Zaksc1efa642016-03-07 23:16:23 +0000652 Value *CmpOperand =
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000653 IRB.CreateBitOrPointerCast(CASI->getCompareOperand(), Ty);
Anna Zaksc1efa642016-03-07 23:16:23 +0000654 Value *NewOperand =
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000655 IRB.CreateBitOrPointerCast(CASI->getNewValOperand(), Ty);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000656 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Anna Zaksc1efa642016-03-07 23:16:23 +0000657 CmpOperand,
658 NewOperand,
Tim Northovere94a5182014-03-11 10:48:52 +0000659 createOrdering(&IRB, CASI->getSuccessOrdering()),
660 createOrdering(&IRB, CASI->getFailureOrdering())};
Tim Northover420a2162014-06-13 14:24:07 +0000661 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args);
Anna Zaksc1efa642016-03-07 23:16:23 +0000662 Value *Success = IRB.CreateICmpEQ(C, CmpOperand);
663 Value *OldVal = C;
664 Type *OrigOldValTy = CASI->getNewValOperand()->getType();
665 if (Ty != OrigOldValTy) {
666 // The value is a pointer, so we need to cast the return value.
667 OldVal = IRB.CreateIntToPtr(C, OrigOldValTy);
668 }
Tim Northover420a2162014-06-13 14:24:07 +0000669
Anna Zaksc1efa642016-03-07 23:16:23 +0000670 Value *Res =
671 IRB.CreateInsertValue(UndefValue::get(CASI->getType()), OldVal, 0);
Tim Northover420a2162014-06-13 14:24:07 +0000672 Res = IRB.CreateInsertValue(Res, Success, 1);
673
674 I->replaceAllUsesWith(Res);
675 I->eraseFromParent();
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000676 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) {
677 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())};
678 Function *F = FI->getSynchScope() == SingleThread ?
679 TsanAtomicSignalFence : TsanAtomicThreadFence;
Craig Toppere1d12942014-08-27 05:25:25 +0000680 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000681 ReplaceInstWithInst(I, C);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000682 }
683 return true;
684}
685
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000686int ThreadSanitizer::getMemoryAccessFuncIndex(Value *Addr,
687 const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000688 Type *OrigPtrTy = Addr->getType();
689 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
690 assert(OrigTy->isSized());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000691 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000692 if (TypeSize != 8 && TypeSize != 16 &&
693 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
694 NumAccessesWithBadSize++;
695 // Ignore all unusual sizes.
696 return -1;
697 }
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000698 size_t Idx = countTrailingZeros(TypeSize / 8);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000699 assert(Idx < kNumberOfAccessSizes);
700 return Idx;
701}