Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 1 | //===-- 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 | |
Dmitry Vyukov | 2e8d82e | 2015-02-12 09:55:28 +0000 | [diff] [blame] | 22 | #include "llvm/Analysis/CaptureTracking.h" |
| 23 | #include "llvm/Analysis/ValueTracking.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 24 | #include "llvm/Transforms/Instrumentation.h" |
Chandler Carruth | ed0881b | 2012-12-03 16:50:05 +0000 | [diff] [blame] | 25 | #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 Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 30 | #include "llvm/IR/DataLayout.h" |
| 31 | #include "llvm/IR/Function.h" |
| 32 | #include "llvm/IR/IRBuilder.h" |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 33 | #include "llvm/IR/IntrinsicInst.h" |
Chandler Carruth | 9fb823b | 2013-01-02 11:36:10 +0000 | [diff] [blame] | 34 | #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 Serebryany | abad002 | 2012-03-14 23:33:24 +0000 | [diff] [blame] | 39 | #include "llvm/Support/CommandLine.h" |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 40 | #include "llvm/Support/Debug.h" |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 41 | #include "llvm/Support/MathExtras.h" |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 42 | #include "llvm/Support/raw_ostream.h" |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 43 | #include "llvm/Transforms/Utils/BasicBlockUtils.h" |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 44 | #include "llvm/Transforms/Utils/ModuleUtils.h" |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 45 | |
| 46 | using namespace llvm; |
| 47 | |
Chandler Carruth | 964daaa | 2014-04-22 02:55:47 +0000 | [diff] [blame] | 48 | #define DEBUG_TYPE "tsan" |
| 49 | |
Kostya Serebryany | d23b18f | 2012-10-04 05:28:50 +0000 | [diff] [blame] | 50 | static cl::opt<bool> ClInstrumentMemoryAccesses( |
| 51 | "tsan-instrument-memory-accesses", cl::init(true), |
| 52 | cl::desc("Instrument memory accesses"), cl::Hidden); |
| 53 | static cl::opt<bool> ClInstrumentFuncEntryExit( |
| 54 | "tsan-instrument-func-entry-exit", cl::init(true), |
| 55 | cl::desc("Instrument function entry and exit"), cl::Hidden); |
| 56 | static cl::opt<bool> ClInstrumentAtomics( |
| 57 | "tsan-instrument-atomics", cl::init(true), |
| 58 | cl::desc("Instrument atomics"), cl::Hidden); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 59 | static cl::opt<bool> ClInstrumentMemIntrinsics( |
| 60 | "tsan-instrument-memintrinsics", cl::init(true), |
| 61 | cl::desc("Instrument memintrinsics (memset/memcpy/memmove)"), cl::Hidden); |
Kostya Serebryany | abad002 | 2012-03-14 23:33:24 +0000 | [diff] [blame] | 62 | |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 63 | STATISTIC(NumInstrumentedReads, "Number of instrumented reads"); |
| 64 | STATISTIC(NumInstrumentedWrites, "Number of instrumented writes"); |
Alexey Samsonov | f54e3aa | 2012-08-30 13:47:13 +0000 | [diff] [blame] | 65 | STATISTIC(NumOmittedReadsBeforeWrite, |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 66 | "Number of reads ignored due to following writes"); |
| 67 | STATISTIC(NumAccessesWithBadSize, "Number of accesses with bad size"); |
| 68 | STATISTIC(NumInstrumentedVtableWrites, "Number of vtable ptr writes"); |
Dmitry Vyukov | 55e63ef | 2013-03-22 08:51:22 +0000 | [diff] [blame] | 69 | STATISTIC(NumInstrumentedVtableReads, "Number of vtable ptr reads"); |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 70 | STATISTIC(NumOmittedReadsFromConstantGlobals, |
| 71 | "Number of reads from constant globals"); |
| 72 | STATISTIC(NumOmittedReadsFromVtable, "Number of vtable reads"); |
Dmitry Vyukov | 2e8d82e | 2015-02-12 09:55:28 +0000 | [diff] [blame] | 73 | STATISTIC(NumOmittedNonCaptured, "Number of accesses ignored due to capturing"); |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 74 | |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 75 | namespace { |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 76 | |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 77 | /// ThreadSanitizer: instrument the code in module to find races. |
| 78 | struct ThreadSanitizer : public FunctionPass { |
Alexey Samsonov | 6d8bab8 | 2014-06-02 18:08:27 +0000 | [diff] [blame] | 79 | ThreadSanitizer() : FunctionPass(ID), DL(nullptr) {} |
Craig Topper | 3e4c697 | 2014-03-05 09:10:37 +0000 | [diff] [blame] | 80 | const char *getPassName() const override; |
| 81 | bool runOnFunction(Function &F) override; |
| 82 | bool doInitialization(Module &M) override; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 83 | static char ID; // Pass identification, replacement for typeid. |
| 84 | |
| 85 | private: |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 86 | void initializeCallbacks(Module &M); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 87 | bool instrumentLoadOrStore(Instruction *I); |
| 88 | bool instrumentAtomic(Instruction *I); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 89 | bool instrumentMemIntrinsic(Instruction *I); |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 90 | void chooseInstructionsToInstrument(SmallVectorImpl<Instruction*> &Local, |
| 91 | SmallVectorImpl<Instruction*> &All); |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 92 | bool addrPointsToConstantData(Value *Addr); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 93 | int getMemoryAccessFuncIndex(Value *Addr); |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 94 | |
Rafael Espindola | aeff8a9 | 2014-02-24 23:12:18 +0000 | [diff] [blame] | 95 | const DataLayout *DL; |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 96 | Type *IntptrTy; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 97 | IntegerType *OrdTy; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 98 | // Callbacks to run-time library are computed in doInitialization. |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 99 | Function *TsanFuncEntry; |
| 100 | Function *TsanFuncExit; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 101 | // Accesses sizes are powers of two: 1, 2, 4, 8, 16. |
Kostya Serebryany | a8531ee | 2012-02-14 00:52:07 +0000 | [diff] [blame] | 102 | static const size_t kNumberOfAccessSizes = 5; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 103 | Function *TsanRead[kNumberOfAccessSizes]; |
| 104 | Function *TsanWrite[kNumberOfAccessSizes]; |
Dmitry Vyukov | 91ffdec | 2015-01-27 20:19:17 +0000 | [diff] [blame] | 105 | Function *TsanUnalignedRead[kNumberOfAccessSizes]; |
| 106 | Function *TsanUnalignedWrite[kNumberOfAccessSizes]; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 107 | Function *TsanAtomicLoad[kNumberOfAccessSizes]; |
| 108 | Function *TsanAtomicStore[kNumberOfAccessSizes]; |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 109 | Function *TsanAtomicRMW[AtomicRMWInst::LAST_BINOP + 1][kNumberOfAccessSizes]; |
| 110 | Function *TsanAtomicCAS[kNumberOfAccessSizes]; |
| 111 | Function *TsanAtomicThreadFence; |
| 112 | Function *TsanAtomicSignalFence; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 113 | Function *TsanVptrUpdate; |
Dmitry Vyukov | 55e63ef | 2013-03-22 08:51:22 +0000 | [diff] [blame] | 114 | Function *TsanVptrLoad; |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 115 | Function *MemmoveFn, *MemcpyFn, *MemsetFn; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 116 | }; |
| 117 | } // namespace |
| 118 | |
| 119 | char ThreadSanitizer::ID = 0; |
| 120 | INITIALIZE_PASS(ThreadSanitizer, "tsan", |
| 121 | "ThreadSanitizer: detects data races.", |
| 122 | false, false) |
| 123 | |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 124 | const char *ThreadSanitizer::getPassName() const { |
| 125 | return "ThreadSanitizer"; |
| 126 | } |
| 127 | |
Alexey Samsonov | 6d8bab8 | 2014-06-02 18:08:27 +0000 | [diff] [blame] | 128 | FunctionPass *llvm::createThreadSanitizerPass() { |
| 129 | return new ThreadSanitizer(); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 130 | } |
| 131 | |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 132 | static Function *checkInterfaceFunction(Constant *FuncOrBitcast) { |
| 133 | if (Function *F = dyn_cast<Function>(FuncOrBitcast)) |
| 134 | return F; |
| 135 | FuncOrBitcast->dump(); |
| 136 | report_fatal_error("ThreadSanitizer interface function redefined"); |
| 137 | } |
| 138 | |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 139 | void ThreadSanitizer::initializeCallbacks(Module &M) { |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 140 | IRBuilder<> IRB(M.getContext()); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 141 | // Initialize the callbacks. |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 142 | TsanFuncEntry = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 143 | "__tsan_func_entry", IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 144 | TsanFuncExit = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 145 | "__tsan_func_exit", IRB.getVoidTy(), nullptr)); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 146 | OrdTy = IRB.getInt32Ty(); |
Kostya Serebryany | a8531ee | 2012-02-14 00:52:07 +0000 | [diff] [blame] | 147 | for (size_t i = 0; i < kNumberOfAccessSizes; ++i) { |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 148 | const size_t ByteSize = 1 << i; |
| 149 | const size_t BitSize = ByteSize * 8; |
| 150 | SmallString<32> ReadName("__tsan_read" + itostr(ByteSize)); |
| 151 | TsanRead[i] = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 152 | ReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 153 | |
| 154 | SmallString<32> WriteName("__tsan_write" + itostr(ByteSize)); |
| 155 | TsanWrite[i] = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 156 | WriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 157 | |
Dmitry Vyukov | 91ffdec | 2015-01-27 20:19:17 +0000 | [diff] [blame] | 158 | SmallString<64> UnalignedReadName("__tsan_unaligned_read" + |
| 159 | itostr(ByteSize)); |
| 160 | TsanUnalignedRead[i] = checkInterfaceFunction(M.getOrInsertFunction( |
| 161 | UnalignedReadName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
| 162 | |
| 163 | SmallString<64> UnalignedWriteName("__tsan_unaligned_write" + |
| 164 | itostr(ByteSize)); |
| 165 | TsanUnalignedWrite[i] = checkInterfaceFunction(M.getOrInsertFunction( |
| 166 | UnalignedWriteName, IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
| 167 | |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 168 | Type *Ty = Type::getIntNTy(M.getContext(), BitSize); |
| 169 | Type *PtrTy = Ty->getPointerTo(); |
| 170 | SmallString<32> AtomicLoadName("__tsan_atomic" + itostr(BitSize) + |
| 171 | "_load"); |
| 172 | TsanAtomicLoad[i] = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 173 | AtomicLoadName, Ty, PtrTy, OrdTy, nullptr)); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 174 | |
| 175 | SmallString<32> AtomicStoreName("__tsan_atomic" + itostr(BitSize) + |
| 176 | "_store"); |
| 177 | TsanAtomicStore[i] = checkInterfaceFunction(M.getOrInsertFunction( |
| 178 | AtomicStoreName, IRB.getVoidTy(), PtrTy, Ty, OrdTy, |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 179 | nullptr)); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 180 | |
| 181 | for (int op = AtomicRMWInst::FIRST_BINOP; |
| 182 | op <= AtomicRMWInst::LAST_BINOP; ++op) { |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 183 | TsanAtomicRMW[op][i] = nullptr; |
| 184 | const char *NamePart = nullptr; |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 185 | if (op == AtomicRMWInst::Xchg) |
| 186 | NamePart = "_exchange"; |
| 187 | else if (op == AtomicRMWInst::Add) |
| 188 | NamePart = "_fetch_add"; |
| 189 | else if (op == AtomicRMWInst::Sub) |
| 190 | NamePart = "_fetch_sub"; |
| 191 | else if (op == AtomicRMWInst::And) |
| 192 | NamePart = "_fetch_and"; |
| 193 | else if (op == AtomicRMWInst::Or) |
| 194 | NamePart = "_fetch_or"; |
| 195 | else if (op == AtomicRMWInst::Xor) |
| 196 | NamePart = "_fetch_xor"; |
Dmitry Vyukov | a878e74 | 2012-11-27 08:09:25 +0000 | [diff] [blame] | 197 | else if (op == AtomicRMWInst::Nand) |
| 198 | NamePart = "_fetch_nand"; |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 199 | else |
| 200 | continue; |
| 201 | SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart); |
| 202 | TsanAtomicRMW[op][i] = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 203 | RMWName, Ty, PtrTy, Ty, OrdTy, nullptr)); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 204 | } |
| 205 | |
| 206 | SmallString<32> AtomicCASName("__tsan_atomic" + itostr(BitSize) + |
| 207 | "_compare_exchange_val"); |
| 208 | TsanAtomicCAS[i] = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 209 | AtomicCASName, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy, nullptr)); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 210 | } |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 211 | TsanVptrUpdate = checkInterfaceFunction(M.getOrInsertFunction( |
| 212 | "__tsan_vptr_update", IRB.getVoidTy(), IRB.getInt8PtrTy(), |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 213 | IRB.getInt8PtrTy(), nullptr)); |
Dmitry Vyukov | 55e63ef | 2013-03-22 08:51:22 +0000 | [diff] [blame] | 214 | TsanVptrLoad = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 215 | "__tsan_vptr_read", IRB.getVoidTy(), IRB.getInt8PtrTy(), nullptr)); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 216 | TsanAtomicThreadFence = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 217 | "__tsan_atomic_thread_fence", IRB.getVoidTy(), OrdTy, nullptr)); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 218 | TsanAtomicSignalFence = checkInterfaceFunction(M.getOrInsertFunction( |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 219 | "__tsan_atomic_signal_fence", IRB.getVoidTy(), OrdTy, nullptr)); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 220 | |
| 221 | MemmoveFn = checkInterfaceFunction(M.getOrInsertFunction( |
| 222 | "memmove", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 223 | IRB.getInt8PtrTy(), IntptrTy, nullptr)); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 224 | MemcpyFn = checkInterfaceFunction(M.getOrInsertFunction( |
| 225 | "memcpy", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 226 | IntptrTy, nullptr)); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 227 | MemsetFn = checkInterfaceFunction(M.getOrInsertFunction( |
| 228 | "memset", IRB.getInt8PtrTy(), IRB.getInt8PtrTy(), IRB.getInt32Ty(), |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 229 | IntptrTy, nullptr)); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 230 | } |
| 231 | |
| 232 | bool ThreadSanitizer::doInitialization(Module &M) { |
Mehdi Amini | 46a4355 | 2015-03-04 18:43:29 +0000 | [diff] [blame] | 233 | DL = &M.getDataLayout(); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 234 | |
| 235 | // Always insert a call to __tsan_init into the module's CTORs. |
| 236 | IRBuilder<> IRB(M.getContext()); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 237 | IntptrTy = IRB.getIntPtrTy(DL); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 238 | Value *TsanInit = M.getOrInsertFunction("__tsan_init", |
Reid Kleckner | 971c3ea | 2014-11-13 22:55:19 +0000 | [diff] [blame] | 239 | IRB.getVoidTy(), nullptr); |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 240 | appendToGlobalCtors(M, cast<Function>(TsanInit), 0); |
| 241 | |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 242 | return true; |
| 243 | } |
| 244 | |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 245 | static bool isVtableAccess(Instruction *I) { |
Duncan P. N. Exon Smith | de36e80 | 2014-11-11 21:30:22 +0000 | [diff] [blame] | 246 | if (MDNode *Tag = I->getMetadata(LLVMContext::MD_tbaa)) |
Manman Ren | d8c68b1 | 2013-09-06 22:47:05 +0000 | [diff] [blame] | 247 | return Tag->isTBAAVtableAccess(); |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 248 | return false; |
| 249 | } |
| 250 | |
| 251 | bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) { |
| 252 | // If this is a GEP, just analyze its pointer operand. |
| 253 | if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr)) |
| 254 | Addr = GEP->getPointerOperand(); |
| 255 | |
| 256 | if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) { |
| 257 | if (GV->isConstant()) { |
| 258 | // Reads from constant globals can not race with any writes. |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 259 | NumOmittedReadsFromConstantGlobals++; |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 260 | return true; |
| 261 | } |
Alexey Samsonov | f54e3aa | 2012-08-30 13:47:13 +0000 | [diff] [blame] | 262 | } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) { |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 263 | if (isVtableAccess(L)) { |
| 264 | // Reads from a vtable pointer can not race with any writes. |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 265 | NumOmittedReadsFromVtable++; |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 266 | return true; |
| 267 | } |
| 268 | } |
| 269 | return false; |
| 270 | } |
| 271 | |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 272 | // Instrumenting some of the accesses may be proven redundant. |
| 273 | // Currently handled: |
| 274 | // - read-before-write (within same BB, no calls between) |
Dmitry Vyukov | 2e8d82e | 2015-02-12 09:55:28 +0000 | [diff] [blame] | 275 | // - not captured variables |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 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 Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 284 | void ThreadSanitizer::chooseInstructionsToInstrument( |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 285 | 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 Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 296 | Value *Addr = Load->getPointerOperand(); |
| 297 | if (WriteTargets.count(Addr)) { |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 298 | // We will write to this temp, so no reason to analyze the read. |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 299 | NumOmittedReadsBeforeWrite++; |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 300 | continue; |
| 301 | } |
Kostya Serebryany | 5ba61ac | 2012-04-10 22:29:17 +0000 | [diff] [blame] | 302 | if (addrPointsToConstantData(Addr)) { |
| 303 | // Addr points to some constant data -- it can not race with any writes. |
| 304 | continue; |
| 305 | } |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 306 | } |
Dmitry Vyukov | 2e8d82e | 2015-02-12 09:55:28 +0000 | [diff] [blame] | 307 | Value *Addr = isa<StoreInst>(*I) |
| 308 | ? cast<StoreInst>(I)->getPointerOperand() |
| 309 | : cast<LoadInst>(I)->getPointerOperand(); |
| 310 | if (isa<AllocaInst>(GetUnderlyingObject(Addr, nullptr)) && |
| 311 | !PointerMayBeCaptured(Addr, true, true)) { |
| 312 | // The variable is addressable but not captured, so it cannot be |
| 313 | // referenced from a different thread and participate in a data race |
| 314 | // (see llvm/Analysis/CaptureTracking.h for details). |
| 315 | NumOmittedNonCaptured++; |
| 316 | continue; |
| 317 | } |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 318 | All.push_back(I); |
| 319 | } |
| 320 | Local.clear(); |
| 321 | } |
| 322 | |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 323 | static bool isAtomic(Instruction *I) { |
| 324 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) |
| 325 | return LI->isAtomic() && LI->getSynchScope() == CrossThread; |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 326 | if (StoreInst *SI = dyn_cast<StoreInst>(I)) |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 327 | return SI->isAtomic() && SI->getSynchScope() == CrossThread; |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 328 | if (isa<AtomicRMWInst>(I)) |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 329 | return true; |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 330 | if (isa<AtomicCmpXchgInst>(I)) |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 331 | return true; |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 332 | if (isa<FenceInst>(I)) |
| 333 | return true; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 334 | return false; |
| 335 | } |
| 336 | |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 337 | bool ThreadSanitizer::runOnFunction(Function &F) { |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 338 | if (!DL) return false; |
Kostya Serebryany | 4b929da | 2012-11-29 09:54:21 +0000 | [diff] [blame] | 339 | initializeCallbacks(*F.getParent()); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 340 | SmallVector<Instruction*, 8> RetVec; |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 341 | SmallVector<Instruction*, 8> AllLoadsAndStores; |
| 342 | SmallVector<Instruction*, 8> LocalLoadsAndStores; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 343 | SmallVector<Instruction*, 8> AtomicAccesses; |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 344 | SmallVector<Instruction*, 8> MemIntrinCalls; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 345 | bool Res = false; |
| 346 | bool HasCalls = false; |
Alexey Samsonov | 6d8bab8 | 2014-06-02 18:08:27 +0000 | [diff] [blame] | 347 | bool SanitizeFunction = F.hasFnAttribute(Attribute::SanitizeThread); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 348 | |
| 349 | // Traverse all instructions, collect loads/stores/returns, check for calls. |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 350 | for (auto &BB : F) { |
| 351 | for (auto &Inst : BB) { |
| 352 | if (isAtomic(&Inst)) |
| 353 | AtomicAccesses.push_back(&Inst); |
| 354 | else if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst)) |
| 355 | LocalLoadsAndStores.push_back(&Inst); |
| 356 | else if (isa<ReturnInst>(Inst)) |
| 357 | RetVec.push_back(&Inst); |
| 358 | else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) { |
| 359 | if (isa<MemIntrinsic>(Inst)) |
| 360 | MemIntrinCalls.push_back(&Inst); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 361 | HasCalls = true; |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 362 | chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores); |
Kostya Serebryany | bf2de80 | 2012-04-10 18:18:56 +0000 | [diff] [blame] | 363 | } |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 364 | } |
Kostya Serebryany | ae7188d | 2012-05-02 13:12:19 +0000 | [diff] [blame] | 365 | chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 366 | } |
| 367 | |
| 368 | // We have collected all loads and stores. |
| 369 | // FIXME: many of these accesses do not need to be checked for races |
| 370 | // (e.g. variables that do not escape, etc). |
| 371 | |
Alexey Samsonov | d3828b8 | 2014-05-31 00:11:37 +0000 | [diff] [blame] | 372 | // Instrument memory accesses only if we want to report bugs in the function. |
| 373 | if (ClInstrumentMemoryAccesses && SanitizeFunction) |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 374 | for (auto Inst : AllLoadsAndStores) { |
| 375 | Res |= instrumentLoadOrStore(Inst); |
Kostya Serebryany | d23b18f | 2012-10-04 05:28:50 +0000 | [diff] [blame] | 376 | } |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 377 | |
Alexey Samsonov | d3828b8 | 2014-05-31 00:11:37 +0000 | [diff] [blame] | 378 | // Instrument atomic memory accesses in any case (they can be used to |
| 379 | // implement synchronization). |
Kostya Serebryany | d23b18f | 2012-10-04 05:28:50 +0000 | [diff] [blame] | 380 | if (ClInstrumentAtomics) |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 381 | for (auto Inst : AtomicAccesses) { |
| 382 | Res |= instrumentAtomic(Inst); |
Kostya Serebryany | d23b18f | 2012-10-04 05:28:50 +0000 | [diff] [blame] | 383 | } |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 384 | |
Alexey Samsonov | d3828b8 | 2014-05-31 00:11:37 +0000 | [diff] [blame] | 385 | if (ClInstrumentMemIntrinsics && SanitizeFunction) |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 386 | for (auto Inst : MemIntrinCalls) { |
| 387 | Res |= instrumentMemIntrinsic(Inst); |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 388 | } |
| 389 | |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 390 | // Instrument function entry/exit points if there were instrumented accesses. |
Kostya Serebryany | d23b18f | 2012-10-04 05:28:50 +0000 | [diff] [blame] | 391 | if ((Res || HasCalls) && ClInstrumentFuncEntryExit) { |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 392 | IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI()); |
| 393 | Value *ReturnAddress = IRB.CreateCall( |
| 394 | Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress), |
| 395 | IRB.getInt32(0)); |
| 396 | IRB.CreateCall(TsanFuncEntry, ReturnAddress); |
Alexey Samsonov | a02e664 | 2014-05-29 18:40:48 +0000 | [diff] [blame] | 397 | for (auto RetInst : RetVec) { |
| 398 | IRBuilder<> IRBRet(RetInst); |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 399 | IRBRet.CreateCall(TsanFuncExit); |
| 400 | } |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 401 | Res = true; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 402 | } |
| 403 | return Res; |
| 404 | } |
| 405 | |
| 406 | bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I) { |
| 407 | IRBuilder<> IRB(I); |
| 408 | bool IsWrite = isa<StoreInst>(*I); |
| 409 | Value *Addr = IsWrite |
| 410 | ? cast<StoreInst>(I)->getPointerOperand() |
| 411 | : cast<LoadInst>(I)->getPointerOperand(); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 412 | int Idx = getMemoryAccessFuncIndex(Addr); |
| 413 | if (Idx < 0) |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 414 | return false; |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 415 | if (IsWrite && isVtableAccess(I)) { |
Kostya Serebryany | e36ae68 | 2012-07-05 09:07:31 +0000 | [diff] [blame] | 416 | DEBUG(dbgs() << " VPTR : " << *I << "\n"); |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 417 | Value *StoredValue = cast<StoreInst>(I)->getValueOperand(); |
Kostya Serebryany | 08b9cf5 | 2013-12-02 08:07:15 +0000 | [diff] [blame] | 418 | // StoredValue may be a vector type if we are storing several vptrs at once. |
| 419 | // In this case, just take the first element of the vector since this is |
| 420 | // enough to find vptr races. |
| 421 | if (isa<VectorType>(StoredValue->getType())) |
| 422 | StoredValue = IRB.CreateExtractElement( |
| 423 | StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0)); |
Kostya Serebryany | 2460c3f | 2013-12-05 15:03:02 +0000 | [diff] [blame] | 424 | if (StoredValue->getType()->isIntegerTy()) |
| 425 | StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy()); |
Kostya Serebryany | e36ae68 | 2012-07-05 09:07:31 +0000 | [diff] [blame] | 426 | // Call TsanVptrUpdate. |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 427 | IRB.CreateCall2(TsanVptrUpdate, |
| 428 | IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()), |
Kostya Serebryany | 2460c3f | 2013-12-05 15:03:02 +0000 | [diff] [blame] | 429 | IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())); |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 430 | NumInstrumentedVtableWrites++; |
Kostya Serebryany | 6f8a776 | 2012-03-26 17:35:03 +0000 | [diff] [blame] | 431 | return true; |
| 432 | } |
Dmitry Vyukov | 55e63ef | 2013-03-22 08:51:22 +0000 | [diff] [blame] | 433 | if (!IsWrite && isVtableAccess(I)) { |
| 434 | IRB.CreateCall(TsanVptrLoad, |
| 435 | IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy())); |
| 436 | NumInstrumentedVtableReads++; |
| 437 | return true; |
| 438 | } |
Dmitry Vyukov | 91ffdec | 2015-01-27 20:19:17 +0000 | [diff] [blame] | 439 | const unsigned Alignment = IsWrite |
| 440 | ? cast<StoreInst>(I)->getAlignment() |
| 441 | : cast<LoadInst>(I)->getAlignment(); |
| 442 | Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType(); |
| 443 | const uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy); |
| 444 | Value *OnAccessFunc = nullptr; |
| 445 | if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0) |
| 446 | OnAccessFunc = IsWrite ? TsanWrite[Idx] : TsanRead[Idx]; |
| 447 | else |
| 448 | OnAccessFunc = IsWrite ? TsanUnalignedWrite[Idx] : TsanUnalignedRead[Idx]; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 449 | IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy())); |
Kostya Serebryany | 5a4b7a2 | 2012-04-23 08:44:59 +0000 | [diff] [blame] | 450 | if (IsWrite) NumInstrumentedWrites++; |
| 451 | else NumInstrumentedReads++; |
Kostya Serebryany | e2a0e41 | 2012-02-13 22:50:51 +0000 | [diff] [blame] | 452 | return true; |
| 453 | } |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 454 | |
| 455 | static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) { |
| 456 | uint32_t v = 0; |
| 457 | switch (ord) { |
Craig Topper | d3c02f1 | 2015-01-05 10:15:49 +0000 | [diff] [blame] | 458 | case NotAtomic: llvm_unreachable("unexpected atomic ordering!"); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 459 | case Unordered: // Fall-through. |
Dmitry Vyukov | 0044e38 | 2012-11-09 14:12:16 +0000 | [diff] [blame] | 460 | case Monotonic: v = 0; break; |
Dmitry Vyukov | 93e67b6 | 2012-11-26 14:55:26 +0000 | [diff] [blame] | 461 | // case Consume: v = 1; break; // Not specified yet. |
Dmitry Vyukov | 0044e38 | 2012-11-09 14:12:16 +0000 | [diff] [blame] | 462 | case Acquire: v = 2; break; |
| 463 | case Release: v = 3; break; |
| 464 | case AcquireRelease: v = 4; break; |
| 465 | case SequentiallyConsistent: v = 5; break; |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 466 | } |
Dmitry Vyukov | 0044e38 | 2012-11-09 14:12:16 +0000 | [diff] [blame] | 467 | return IRB->getInt32(v); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 468 | } |
| 469 | |
Kostya Serebryany | 463aa81 | 2013-03-28 11:21:13 +0000 | [diff] [blame] | 470 | // If a memset intrinsic gets inlined by the code gen, we will miss races on it. |
| 471 | // So, we either need to ensure the intrinsic is not inlined, or instrument it. |
| 472 | // We do not instrument memset/memmove/memcpy intrinsics (too complicated), |
| 473 | // instead we simply replace them with regular function calls, which are then |
| 474 | // intercepted by the run-time. |
| 475 | // Since tsan is running after everyone else, the calls should not be |
| 476 | // replaced back with intrinsics. If that becomes wrong at some point, |
| 477 | // we will need to call e.g. __tsan_memset to avoid the intrinsics. |
| 478 | bool ThreadSanitizer::instrumentMemIntrinsic(Instruction *I) { |
| 479 | IRBuilder<> IRB(I); |
| 480 | if (MemSetInst *M = dyn_cast<MemSetInst>(I)) { |
| 481 | IRB.CreateCall3(MemsetFn, |
| 482 | IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()), |
| 483 | IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false), |
| 484 | IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)); |
| 485 | I->eraseFromParent(); |
| 486 | } else if (MemTransferInst *M = dyn_cast<MemTransferInst>(I)) { |
| 487 | IRB.CreateCall3(isa<MemCpyInst>(M) ? MemcpyFn : MemmoveFn, |
| 488 | IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()), |
| 489 | IRB.CreatePointerCast(M->getArgOperand(1), IRB.getInt8PtrTy()), |
| 490 | IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)); |
| 491 | I->eraseFromParent(); |
| 492 | } |
| 493 | return false; |
| 494 | } |
| 495 | |
Dmitry Vyukov | 12b5cb9 | 2012-11-26 11:36:19 +0000 | [diff] [blame] | 496 | // Both llvm and ThreadSanitizer atomic operations are based on C++11/C1x |
Alp Toker | cb40291 | 2014-01-24 17:20:08 +0000 | [diff] [blame] | 497 | // standards. For background see C++11 standard. A slightly older, publicly |
Dmitry Vyukov | 12b5cb9 | 2012-11-26 11:36:19 +0000 | [diff] [blame] | 498 | // available draft of the standard (not entirely up-to-date, but close enough |
| 499 | // for casual browsing) is available here: |
Matt Beaumont-Gay | 000a395 | 2012-11-26 16:27:22 +0000 | [diff] [blame] | 500 | // http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf |
Dmitry Vyukov | 12b5cb9 | 2012-11-26 11:36:19 +0000 | [diff] [blame] | 501 | // The following page contains more background information: |
| 502 | // http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/ |
| 503 | |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 504 | bool ThreadSanitizer::instrumentAtomic(Instruction *I) { |
| 505 | IRBuilder<> IRB(I); |
| 506 | if (LoadInst *LI = dyn_cast<LoadInst>(I)) { |
| 507 | Value *Addr = LI->getPointerOperand(); |
| 508 | int Idx = getMemoryAccessFuncIndex(Addr); |
| 509 | if (Idx < 0) |
| 510 | return false; |
| 511 | const size_t ByteSize = 1 << Idx; |
| 512 | const size_t BitSize = ByteSize * 8; |
| 513 | Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); |
Micah Villmow | 51e7246 | 2012-10-24 17:25:11 +0000 | [diff] [blame] | 514 | Type *PtrTy = Ty->getPointerTo(); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 515 | Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), |
| 516 | createOrdering(&IRB, LI->getOrdering())}; |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 517 | CallInst *C = CallInst::Create(TsanAtomicLoad[Idx], Args); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 518 | ReplaceInstWithInst(I, C); |
| 519 | |
| 520 | } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) { |
| 521 | Value *Addr = SI->getPointerOperand(); |
| 522 | int Idx = getMemoryAccessFuncIndex(Addr); |
| 523 | if (Idx < 0) |
| 524 | return false; |
| 525 | const size_t ByteSize = 1 << Idx; |
| 526 | const size_t BitSize = ByteSize * 8; |
| 527 | Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); |
Micah Villmow | 51e7246 | 2012-10-24 17:25:11 +0000 | [diff] [blame] | 528 | Type *PtrTy = Ty->getPointerTo(); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 529 | Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), |
| 530 | IRB.CreateIntCast(SI->getValueOperand(), Ty, false), |
| 531 | createOrdering(&IRB, SI->getOrdering())}; |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 532 | CallInst *C = CallInst::Create(TsanAtomicStore[Idx], Args); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 533 | ReplaceInstWithInst(I, C); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 534 | } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I)) { |
| 535 | Value *Addr = RMWI->getPointerOperand(); |
| 536 | int Idx = getMemoryAccessFuncIndex(Addr); |
| 537 | if (Idx < 0) |
| 538 | return false; |
| 539 | Function *F = TsanAtomicRMW[RMWI->getOperation()][Idx]; |
Craig Topper | f40110f | 2014-04-25 05:29:35 +0000 | [diff] [blame] | 540 | if (!F) |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 541 | return false; |
| 542 | const size_t ByteSize = 1 << Idx; |
| 543 | const size_t BitSize = ByteSize * 8; |
| 544 | Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); |
| 545 | Type *PtrTy = Ty->getPointerTo(); |
| 546 | Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), |
| 547 | IRB.CreateIntCast(RMWI->getValOperand(), Ty, false), |
| 548 | createOrdering(&IRB, RMWI->getOrdering())}; |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 549 | CallInst *C = CallInst::Create(F, Args); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 550 | ReplaceInstWithInst(I, C); |
| 551 | } else if (AtomicCmpXchgInst *CASI = dyn_cast<AtomicCmpXchgInst>(I)) { |
| 552 | Value *Addr = CASI->getPointerOperand(); |
| 553 | int Idx = getMemoryAccessFuncIndex(Addr); |
| 554 | if (Idx < 0) |
| 555 | return false; |
| 556 | const size_t ByteSize = 1 << Idx; |
| 557 | const size_t BitSize = ByteSize * 8; |
| 558 | Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize); |
| 559 | Type *PtrTy = Ty->getPointerTo(); |
| 560 | Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy), |
| 561 | IRB.CreateIntCast(CASI->getCompareOperand(), Ty, false), |
| 562 | IRB.CreateIntCast(CASI->getNewValOperand(), Ty, false), |
Tim Northover | e94a518 | 2014-03-11 10:48:52 +0000 | [diff] [blame] | 563 | createOrdering(&IRB, CASI->getSuccessOrdering()), |
| 564 | createOrdering(&IRB, CASI->getFailureOrdering())}; |
Tim Northover | 420a216 | 2014-06-13 14:24:07 +0000 | [diff] [blame] | 565 | CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args); |
| 566 | Value *Success = IRB.CreateICmpEQ(C, CASI->getCompareOperand()); |
| 567 | |
| 568 | Value *Res = IRB.CreateInsertValue(UndefValue::get(CASI->getType()), C, 0); |
| 569 | Res = IRB.CreateInsertValue(Res, Success, 1); |
| 570 | |
| 571 | I->replaceAllUsesWith(Res); |
| 572 | I->eraseFromParent(); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 573 | } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) { |
| 574 | Value *Args[] = {createOrdering(&IRB, FI->getOrdering())}; |
| 575 | Function *F = FI->getSynchScope() == SingleThread ? |
| 576 | TsanAtomicSignalFence : TsanAtomicThreadFence; |
Craig Topper | e1d1294 | 2014-08-27 05:25:25 +0000 | [diff] [blame] | 577 | CallInst *C = CallInst::Create(F, Args); |
Dmitry Vyukov | 92b9e1d | 2012-11-09 12:55:36 +0000 | [diff] [blame] | 578 | ReplaceInstWithInst(I, C); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 579 | } |
| 580 | return true; |
| 581 | } |
| 582 | |
| 583 | int ThreadSanitizer::getMemoryAccessFuncIndex(Value *Addr) { |
| 584 | Type *OrigPtrTy = Addr->getType(); |
| 585 | Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType(); |
| 586 | assert(OrigTy->isSized()); |
Rafael Espindola | 37dc9e1 | 2014-02-21 00:06:31 +0000 | [diff] [blame] | 587 | uint32_t TypeSize = DL->getTypeStoreSizeInBits(OrigTy); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 588 | if (TypeSize != 8 && TypeSize != 16 && |
| 589 | TypeSize != 32 && TypeSize != 64 && TypeSize != 128) { |
| 590 | NumAccessesWithBadSize++; |
| 591 | // Ignore all unusual sizes. |
| 592 | return -1; |
| 593 | } |
Michael J. Spencer | df1ecbd7 | 2013-05-24 22:23:49 +0000 | [diff] [blame] | 594 | size_t Idx = countTrailingZeros(TypeSize / 8); |
Kostya Serebryany | a125977 | 2012-04-27 07:31:53 +0000 | [diff] [blame] | 595 | assert(Idx < kNumberOfAccessSizes); |
| 596 | return Idx; |
| 597 | } |