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