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