blob: 4be485c50d240e35367365eaf827ccc9efefe048 [file] [log] [blame]
Kostya Serebryanye2a0e412012-02-13 22:50:51 +00001//===-- ThreadSanitizer.cpp - race detector -------------------------------===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Kostya Serebryanye2a0e412012-02-13 22:50:51 +00006//
7//===----------------------------------------------------------------------===//
8//
9// This file is a part of ThreadSanitizer, a race detector.
10//
11// The tool is under development, for the details about previous versions see
12// http://code.google.com/p/data-race-test
13//
14// The instrumentation phase is quite simple:
15// - Insert calls to run-time library before every memory access.
16// - Optimizations may apply to avoid instrumenting some of the accesses.
17// - Insert calls at function entry/exit.
18// The rest is handled by the run-time library.
19//===----------------------------------------------------------------------===//
20
Philip Pfaffe685c76d2019-01-16 09:28:01 +000021#include "llvm/Transforms/Instrumentation/ThreadSanitizer.h"
Florian Hahna1cc8482018-06-12 11:16:56 +000022#include "llvm/ADT/SmallPtrSet.h"
Chandler Carruthed0881b2012-12-03 16:50:05 +000023#include "llvm/ADT/SmallString.h"
24#include "llvm/ADT/SmallVector.h"
25#include "llvm/ADT/Statistic.h"
26#include "llvm/ADT/StringExtras.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000027#include "llvm/Analysis/CaptureTracking.h"
Marcin Koscielnicki3feda222016-06-18 10:10:37 +000028#include "llvm/Analysis/TargetLibraryInfo.h"
David Blaikie31b98d22018-06-04 21:23:21 +000029#include "llvm/Transforms/Utils/Local.h"
Benjamin Kramer799003b2015-03-23 19:32:43 +000030#include "llvm/Analysis/ValueTracking.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000031#include "llvm/IR/DataLayout.h"
32#include "llvm/IR/Function.h"
33#include "llvm/IR/IRBuilder.h"
Kostya Serebryany463aa812013-03-28 11:21:13 +000034#include "llvm/IR/IntrinsicInst.h"
Chandler Carruth9fb823b2013-01-02 11:36:10 +000035#include "llvm/IR/Intrinsics.h"
36#include "llvm/IR/LLVMContext.h"
37#include "llvm/IR/Metadata.h"
38#include "llvm/IR/Module.h"
39#include "llvm/IR/Type.h"
Anna Zaks1a470b62016-03-29 23:19:40 +000040#include "llvm/ProfileData/InstrProf.h"
Kostya Serebryanyabad0022012-03-14 23:33:24 +000041#include "llvm/Support/CommandLine.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000042#include "llvm/Support/Debug.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000043#include "llvm/Support/MathExtras.h"
Kostya Serebryany6f8a7762012-03-26 17:35:03 +000044#include "llvm/Support/raw_ostream.h"
Chandler Carruth6bda14b2017-06-06 11:49:48 +000045#include "llvm/Transforms/Instrumentation.h"
Kostya Serebryanya1259772012-04-27 07:31:53 +000046#include "llvm/Transforms/Utils/BasicBlockUtils.h"
Kuba Breckaddfdba32016-11-14 21:41:13 +000047#include "llvm/Transforms/Utils/EscapeEnumerator.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000048#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000049
50using namespace llvm;
51
Chandler Carruth964daaa2014-04-22 02:55:47 +000052#define DEBUG_TYPE "tsan"
53
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +000054static cl::opt<bool> ClInstrumentMemoryAccesses(
55 "tsan-instrument-memory-accesses", cl::init(true),
56 cl::desc("Instrument memory accesses"), cl::Hidden);
57static cl::opt<bool> ClInstrumentFuncEntryExit(
58 "tsan-instrument-func-entry-exit", cl::init(true),
59 cl::desc("Instrument function entry and exit"), cl::Hidden);
Kuba Breckaddfdba32016-11-14 21:41:13 +000060static cl::opt<bool> ClHandleCxxExceptions(
61 "tsan-handle-cxx-exceptions", cl::init(true),
62 cl::desc("Handle C++ exceptions (insert cleanup blocks for unwinding)"),
63 cl::Hidden);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +000064static cl::opt<bool> ClInstrumentAtomics(
65 "tsan-instrument-atomics", cl::init(true),
66 cl::desc("Instrument atomics"), cl::Hidden);
Kostya Serebryany463aa812013-03-28 11:21:13 +000067static cl::opt<bool> ClInstrumentMemIntrinsics(
68 "tsan-instrument-memintrinsics", cl::init(true),
69 cl::desc("Instrument memintrinsics (memset/memcpy/memmove)"), cl::Hidden);
Kostya Serebryanyabad0022012-03-14 23:33:24 +000070
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000071STATISTIC(NumInstrumentedReads, "Number of instrumented reads");
72STATISTIC(NumInstrumentedWrites, "Number of instrumented writes");
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +000073STATISTIC(NumOmittedReadsBeforeWrite,
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000074 "Number of reads ignored due to following writes");
75STATISTIC(NumAccessesWithBadSize, "Number of accesses with bad size");
76STATISTIC(NumInstrumentedVtableWrites, "Number of vtable ptr writes");
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +000077STATISTIC(NumInstrumentedVtableReads, "Number of vtable ptr reads");
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +000078STATISTIC(NumOmittedReadsFromConstantGlobals,
79 "Number of reads from constant globals");
80STATISTIC(NumOmittedReadsFromVtable, "Number of vtable reads");
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +000081STATISTIC(NumOmittedNonCaptured, "Number of accesses ignored due to capturing");
Kostya Serebryanybf2de802012-04-10 18:18:56 +000082
Florian Hahn9697d2a2019-01-09 13:32:16 +000083static const char *const kTsanModuleCtorName = "tsan.module_ctor";
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +000084static const char *const kTsanInitName = "__tsan_init";
85
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000086namespace {
Kostya Serebryanybf2de802012-04-10 18:18:56 +000087
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000088/// ThreadSanitizer: instrument the code in module to find races.
Philip Pfaffe685c76d2019-01-16 09:28:01 +000089///
90/// Instantiating ThreadSanitizer inserts the tsan runtime library API function
91/// declarations into the module if they don't exist already. Instantiating
92/// ensures the __tsan_init function is in the list of global constructors for
93/// the module.
94struct ThreadSanitizer {
95 ThreadSanitizer(Module &M);
96 bool sanitizeFunction(Function &F, const TargetLibraryInfo &TLI);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +000097
Philip Pfaffe685c76d2019-01-16 09:28:01 +000098private:
Kostya Serebryany4b929da2012-11-29 09:54:21 +000099 void initializeCallbacks(Module &M);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000100 bool instrumentLoadOrStore(Instruction *I, const DataLayout &DL);
101 bool instrumentAtomic(Instruction *I, const DataLayout &DL);
Kostya Serebryany463aa812013-03-28 11:21:13 +0000102 bool instrumentMemIntrinsic(Instruction *I);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000103 void chooseInstructionsToInstrument(SmallVectorImpl<Instruction *> &Local,
104 SmallVectorImpl<Instruction *> &All,
105 const DataLayout &DL);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000106 bool addrPointsToConstantData(Value *Addr);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000107 int getMemoryAccessFuncIndex(Value *Addr, const DataLayout &DL);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000108 void InsertRuntimeIgnores(Function &F);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000109
Kostya Serebryany463aa812013-03-28 11:21:13 +0000110 Type *IntptrTy;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000111 IntegerType *OrdTy;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000112 // Callbacks to run-time library are computed in doInitialization.
Kostya Serebryanya1259772012-04-27 07:31:53 +0000113 Function *TsanFuncEntry;
114 Function *TsanFuncExit;
Anna Zaks3c437372016-11-11 23:01:02 +0000115 Function *TsanIgnoreBegin;
116 Function *TsanIgnoreEnd;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000117 // Accesses sizes are powers of two: 1, 2, 4, 8, 16.
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000118 static const size_t kNumberOfAccessSizes = 5;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000119 Function *TsanRead[kNumberOfAccessSizes];
120 Function *TsanWrite[kNumberOfAccessSizes];
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000121 Function *TsanUnalignedRead[kNumberOfAccessSizes];
122 Function *TsanUnalignedWrite[kNumberOfAccessSizes];
Kostya Serebryanya1259772012-04-27 07:31:53 +0000123 Function *TsanAtomicLoad[kNumberOfAccessSizes];
124 Function *TsanAtomicStore[kNumberOfAccessSizes];
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000125 Function *TsanAtomicRMW[AtomicRMWInst::LAST_BINOP + 1][kNumberOfAccessSizes];
126 Function *TsanAtomicCAS[kNumberOfAccessSizes];
127 Function *TsanAtomicThreadFence;
128 Function *TsanAtomicSignalFence;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000129 Function *TsanVptrUpdate;
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000130 Function *TsanVptrLoad;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000131 Function *MemmoveFn, *MemcpyFn, *MemsetFn;
Florian Hahn9697d2a2019-01-09 13:32:16 +0000132 Function *TsanCtorFunction;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000133};
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000134
135struct ThreadSanitizerLegacyPass : FunctionPass {
136 ThreadSanitizerLegacyPass() : FunctionPass(ID) {}
137 StringRef getPassName() const override;
138 void getAnalysisUsage(AnalysisUsage &AU) const override;
139 bool runOnFunction(Function &F) override;
140 bool doInitialization(Module &M) override;
141 static char ID; // Pass identification, replacement for typeid.
142private:
143 Optional<ThreadSanitizer> TSan;
144};
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000145} // namespace
146
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000147PreservedAnalyses ThreadSanitizerPass::run(Function &F,
148 FunctionAnalysisManager &FAM) {
149 ThreadSanitizer TSan(*F.getParent());
150 if (TSan.sanitizeFunction(F, FAM.getResult<TargetLibraryAnalysis>(F)))
151 return PreservedAnalyses::none();
152 return PreservedAnalyses::all();
153}
154
155char ThreadSanitizerLegacyPass::ID = 0;
156INITIALIZE_PASS_BEGIN(ThreadSanitizerLegacyPass, "tsan",
157 "ThreadSanitizer: detects data races.", false, false)
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000158INITIALIZE_PASS_DEPENDENCY(TargetLibraryInfoWrapperPass)
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000159INITIALIZE_PASS_END(ThreadSanitizerLegacyPass, "tsan",
160 "ThreadSanitizer: detects data races.", false, false)
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000161
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000162StringRef ThreadSanitizerLegacyPass::getPassName() const {
163 return "ThreadSanitizerLegacyPass";
164}
Kostya Serebryanya1259772012-04-27 07:31:53 +0000165
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000166void ThreadSanitizerLegacyPass::getAnalysisUsage(AnalysisUsage &AU) const {
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000167 AU.addRequired<TargetLibraryInfoWrapperPass>();
168}
169
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000170bool ThreadSanitizerLegacyPass::doInitialization(Module &M) {
171 TSan.emplace(M);
172 return true;
173}
174
175bool ThreadSanitizerLegacyPass::runOnFunction(Function &F) {
176 auto &TLI = getAnalysis<TargetLibraryInfoWrapperPass>().getTLI();
177 TSan->sanitizeFunction(F, TLI);
178 return true;
179}
180
181FunctionPass *llvm::createThreadSanitizerLegacyPassPass() {
182 return new ThreadSanitizerLegacyPass();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000183}
184
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000185void ThreadSanitizer::initializeCallbacks(Module &M) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000186 IRBuilder<> IRB(M.getContext());
Reid Klecknerb5180542017-03-21 16:57:19 +0000187 AttributeList Attr;
188 Attr = Attr.addAttribute(M.getContext(), AttributeList::FunctionIndex,
189 Attribute::NoUnwind);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000190 // Initialize the callbacks.
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000191 TsanFuncEntry = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000192 "__tsan_func_entry", Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000193 TsanFuncExit = checkSanitizerInterfaceFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000194 M.getOrInsertFunction("__tsan_func_exit", Attr, IRB.getVoidTy()));
Anna Zaks3c437372016-11-11 23:01:02 +0000195 TsanIgnoreBegin = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000196 "__tsan_ignore_thread_begin", Attr, IRB.getVoidTy()));
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000197 TsanIgnoreEnd = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000198 "__tsan_ignore_thread_end", Attr, IRB.getVoidTy()));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000199 OrdTy = IRB.getInt32Ty();
Kostya Serebryanya8531ee2012-02-14 00:52:07 +0000200 for (size_t i = 0; i < kNumberOfAccessSizes; ++i) {
Yaron Kerendfb655f2015-08-15 19:06:14 +0000201 const unsigned ByteSize = 1U << i;
202 const unsigned BitSize = ByteSize * 8;
203 std::string ByteSizeStr = utostr(ByteSize);
204 std::string BitSizeStr = utostr(BitSize);
205 SmallString<32> ReadName("__tsan_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000206 TsanRead[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000207 ReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000208
Yaron Kerendfb655f2015-08-15 19:06:14 +0000209 SmallString<32> WriteName("__tsan_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000210 TsanWrite[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000211 WriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000212
Yaron Kerendfb655f2015-08-15 19:06:14 +0000213 SmallString<64> UnalignedReadName("__tsan_unaligned_read" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000214 TsanUnalignedRead[i] =
215 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000216 UnalignedReadName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000217
Yaron Kerendfb655f2015-08-15 19:06:14 +0000218 SmallString<64> UnalignedWriteName("__tsan_unaligned_write" + ByteSizeStr);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000219 TsanUnalignedWrite[i] =
220 checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000221 UnalignedWriteName, Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000222
Kostya Serebryanya1259772012-04-27 07:31:53 +0000223 Type *Ty = Type::getIntNTy(M.getContext(), BitSize);
224 Type *PtrTy = Ty->getPointerTo();
Yaron Kerendfb655f2015-08-15 19:06:14 +0000225 SmallString<32> AtomicLoadName("__tsan_atomic" + BitSizeStr + "_load");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000226 TsanAtomicLoad[i] = checkSanitizerInterfaceFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000227 M.getOrInsertFunction(AtomicLoadName, Attr, Ty, PtrTy, OrdTy));
Kostya Serebryanya1259772012-04-27 07:31:53 +0000228
Yaron Kerendfb655f2015-08-15 19:06:14 +0000229 SmallString<32> AtomicStoreName("__tsan_atomic" + BitSizeStr + "_store");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000230 TsanAtomicStore[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000231 AtomicStoreName, Attr, IRB.getVoidTy(), PtrTy, Ty, OrdTy));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000232
233 for (int op = AtomicRMWInst::FIRST_BINOP;
234 op <= AtomicRMWInst::LAST_BINOP; ++op) {
Craig Topperf40110f2014-04-25 05:29:35 +0000235 TsanAtomicRMW[op][i] = nullptr;
236 const char *NamePart = nullptr;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000237 if (op == AtomicRMWInst::Xchg)
238 NamePart = "_exchange";
239 else if (op == AtomicRMWInst::Add)
240 NamePart = "_fetch_add";
241 else if (op == AtomicRMWInst::Sub)
242 NamePart = "_fetch_sub";
243 else if (op == AtomicRMWInst::And)
244 NamePart = "_fetch_and";
245 else if (op == AtomicRMWInst::Or)
246 NamePart = "_fetch_or";
247 else if (op == AtomicRMWInst::Xor)
248 NamePart = "_fetch_xor";
Dmitry Vyukova878e742012-11-27 08:09:25 +0000249 else if (op == AtomicRMWInst::Nand)
250 NamePart = "_fetch_nand";
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000251 else
252 continue;
253 SmallString<32> RMWName("__tsan_atomic" + itostr(BitSize) + NamePart);
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000254 TsanAtomicRMW[op][i] = checkSanitizerInterfaceFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000255 M.getOrInsertFunction(RMWName, Attr, Ty, PtrTy, Ty, OrdTy));
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000256 }
257
Yaron Kerendfb655f2015-08-15 19:06:14 +0000258 SmallString<32> AtomicCASName("__tsan_atomic" + BitSizeStr +
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000259 "_compare_exchange_val");
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000260 TsanAtomicCAS[i] = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000261 AtomicCASName, Attr, Ty, PtrTy, Ty, Ty, OrdTy, OrdTy));
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000262 }
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000263 TsanVptrUpdate = checkSanitizerInterfaceFunction(
Kuba Breckaddfdba32016-11-14 21:41:13 +0000264 M.getOrInsertFunction("__tsan_vptr_update", Attr, IRB.getVoidTy(),
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000265 IRB.getInt8PtrTy(), IRB.getInt8PtrTy()));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000266 TsanVptrLoad = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000267 "__tsan_vptr_read", Attr, IRB.getVoidTy(), IRB.getInt8PtrTy()));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000268 TsanAtomicThreadFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000269 "__tsan_atomic_thread_fence", Attr, IRB.getVoidTy(), OrdTy));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000270 TsanAtomicSignalFence = checkSanitizerInterfaceFunction(M.getOrInsertFunction(
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000271 "__tsan_atomic_signal_fence", Attr, IRB.getVoidTy(), OrdTy));
Kostya Serebryany463aa812013-03-28 11:21:13 +0000272
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000273 MemmoveFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000274 M.getOrInsertFunction("memmove", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000275 IRB.getInt8PtrTy(), IntptrTy));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000276 MemcpyFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000277 M.getOrInsertFunction("memcpy", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000278 IRB.getInt8PtrTy(), IntptrTy));
Ismail Pazarbasi198d6d52015-04-06 21:09:08 +0000279 MemsetFn = checkSanitizerInterfaceFunction(
Mehdi Aminidb11fdf2017-04-06 20:23:57 +0000280 M.getOrInsertFunction("memset", Attr, IRB.getInt8PtrTy(), IRB.getInt8PtrTy(),
Serge Guelton59a2d7b2017-04-11 15:01:18 +0000281 IRB.getInt32Ty(), IntptrTy));
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000282}
283
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000284ThreadSanitizer::ThreadSanitizer(Module &M) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000285 const DataLayout &DL = M.getDataLayout();
Ismail Pazarbasi2d4ae9f2015-05-07 21:41:23 +0000286 IntptrTy = DL.getIntPtrType(M.getContext());
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000287 std::tie(TsanCtorFunction, std::ignore) =
288 getOrCreateSanitizerCtorAndInitFunctions(
289 M, kTsanModuleCtorName, kTsanInitName, /*InitArgTypes=*/{},
290 /*InitArgs=*/{},
291 // This callback is invoked when the functions are created the first
292 // time. Hook them into the global ctors list in that case:
293 [&](Function *Ctor, Function *) { appendToGlobalCtors(M, Ctor, 0); });
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000294}
295
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000296static bool isVtableAccess(Instruction *I) {
Duncan P. N. Exon Smithde36e802014-11-11 21:30:22 +0000297 if (MDNode *Tag = I->getMetadata(LLVMContext::MD_tbaa))
Manman Rend8c68b12013-09-06 22:47:05 +0000298 return Tag->isTBAAVtableAccess();
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000299 return false;
300}
301
Anna Zaks1a470b62016-03-29 23:19:40 +0000302// Do not instrument known races/"benign races" that come from compiler
303// instrumentatin. The user has no way of suppressing them.
Xinliang David Li9a717662017-04-14 03:03:24 +0000304static bool shouldInstrumentReadWriteFromAddress(const Module *M, Value *Addr) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000305 // Peel off GEPs and BitCasts.
306 Addr = Addr->stripInBoundsOffsets();
307
308 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
309 if (GV->hasSection()) {
310 StringRef SectionName = GV->getSection();
311 // Check if the global is in the PGO counters section.
Vedant Kumar1a6a2b62017-04-15 00:09:57 +0000312 auto OF = Triple(M->getTargetTriple()).getObjectFormat();
313 if (SectionName.endswith(
314 getInstrProfSectionName(IPSK_cnts, OF, /*AddSegmentInfo=*/false)))
Anna Zaks1a470b62016-03-29 23:19:40 +0000315 return false;
316 }
Vedant Kumar0222adb2016-06-20 21:24:26 +0000317
Vedant Kumar57faf2d2016-07-19 20:16:08 +0000318 // Check if the global is private gcov data.
319 if (GV->getName().startswith("__llvm_gcov") ||
320 GV->getName().startswith("__llvm_gcda"))
Vedant Kumar0222adb2016-06-20 21:24:26 +0000321 return false;
Anna Zaks1a470b62016-03-29 23:19:40 +0000322 }
Anna Zaks644d9d32016-06-22 00:15:52 +0000323
324 // Do not instrument acesses from different address spaces; we cannot deal
325 // with them.
326 if (Addr) {
327 Type *PtrTy = cast<PointerType>(Addr->getType()->getScalarType());
328 if (PtrTy->getPointerAddressSpace() != 0)
329 return false;
330 }
331
Anna Zaks1a470b62016-03-29 23:19:40 +0000332 return true;
333}
334
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000335bool ThreadSanitizer::addrPointsToConstantData(Value *Addr) {
336 // If this is a GEP, just analyze its pointer operand.
337 if (GetElementPtrInst *GEP = dyn_cast<GetElementPtrInst>(Addr))
338 Addr = GEP->getPointerOperand();
339
340 if (GlobalVariable *GV = dyn_cast<GlobalVariable>(Addr)) {
341 if (GV->isConstant()) {
342 // Reads from constant globals can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000343 NumOmittedReadsFromConstantGlobals++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000344 return true;
345 }
Alexey Samsonovf54e3aa2012-08-30 13:47:13 +0000346 } else if (LoadInst *L = dyn_cast<LoadInst>(Addr)) {
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000347 if (isVtableAccess(L)) {
348 // Reads from a vtable pointer can not race with any writes.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000349 NumOmittedReadsFromVtable++;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000350 return true;
351 }
352 }
353 return false;
354}
355
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000356// Instrumenting some of the accesses may be proven redundant.
357// Currently handled:
358// - read-before-write (within same BB, no calls between)
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000359// - not captured variables
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000360//
361// We do not handle some of the patterns that should not survive
362// after the classic compiler optimizations.
363// E.g. two reads from the same temp should be eliminated by CSE,
364// two writes should be eliminated by DSE, etc.
365//
366// 'Local' is a vector of insns within the same BB (no calls between).
367// 'All' is a vector of insns that will be instrumented.
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000368void ThreadSanitizer::chooseInstructionsToInstrument(
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000369 SmallVectorImpl<Instruction *> &Local, SmallVectorImpl<Instruction *> &All,
370 const DataLayout &DL) {
Florian Hahna1cc8482018-06-12 11:16:56 +0000371 SmallPtrSet<Value*, 8> WriteTargets;
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000372 // Iterate from the end.
David Majnemerd7708772016-06-24 04:05:21 +0000373 for (Instruction *I : reverse(Local)) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000374 if (StoreInst *Store = dyn_cast<StoreInst>(I)) {
Anna Zaks1a470b62016-03-29 23:19:40 +0000375 Value *Addr = Store->getPointerOperand();
Xinliang David Li9a717662017-04-14 03:03:24 +0000376 if (!shouldInstrumentReadWriteFromAddress(I->getModule(), Addr))
Anna Zaks1a470b62016-03-29 23:19:40 +0000377 continue;
378 WriteTargets.insert(Addr);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000379 } else {
380 LoadInst *Load = cast<LoadInst>(I);
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000381 Value *Addr = Load->getPointerOperand();
Xinliang David Li9a717662017-04-14 03:03:24 +0000382 if (!shouldInstrumentReadWriteFromAddress(I->getModule(), Addr))
Anna Zaks1a470b62016-03-29 23:19:40 +0000383 continue;
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000384 if (WriteTargets.count(Addr)) {
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000385 // We will write to this temp, so no reason to analyze the read.
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000386 NumOmittedReadsBeforeWrite++;
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000387 continue;
388 }
Kostya Serebryany5ba61ac2012-04-10 22:29:17 +0000389 if (addrPointsToConstantData(Addr)) {
390 // Addr points to some constant data -- it can not race with any writes.
391 continue;
392 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000393 }
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000394 Value *Addr = isa<StoreInst>(*I)
395 ? cast<StoreInst>(I)->getPointerOperand()
396 : cast<LoadInst>(I)->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000397 if (isa<AllocaInst>(GetUnderlyingObject(Addr, DL)) &&
Dmitry Vyukov2e8d82e2015-02-12 09:55:28 +0000398 !PointerMayBeCaptured(Addr, true, true)) {
399 // The variable is addressable but not captured, so it cannot be
400 // referenced from a different thread and participate in a data race
401 // (see llvm/Analysis/CaptureTracking.h for details).
402 NumOmittedNonCaptured++;
403 continue;
404 }
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000405 All.push_back(I);
406 }
407 Local.clear();
408}
409
Kostya Serebryanya1259772012-04-27 07:31:53 +0000410static bool isAtomic(Instruction *I) {
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000411 // TODO: Ask TTI whether synchronization scope is between threads.
Kostya Serebryanya1259772012-04-27 07:31:53 +0000412 if (LoadInst *LI = dyn_cast<LoadInst>(I))
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000413 return LI->isAtomic() && LI->getSyncScopeID() != SyncScope::SingleThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000414 if (StoreInst *SI = dyn_cast<StoreInst>(I))
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000415 return SI->isAtomic() && SI->getSyncScopeID() != SyncScope::SingleThread;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000416 if (isa<AtomicRMWInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000417 return true;
Kostya Serebryanyae7188d2012-05-02 13:12:19 +0000418 if (isa<AtomicCmpXchgInst>(I))
Kostya Serebryanya1259772012-04-27 07:31:53 +0000419 return true;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000420 if (isa<FenceInst>(I))
421 return true;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000422 return false;
423}
424
Kuba Breckaddfdba32016-11-14 21:41:13 +0000425void ThreadSanitizer::InsertRuntimeIgnores(Function &F) {
Anna Zaks3c437372016-11-11 23:01:02 +0000426 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
427 IRB.CreateCall(TsanIgnoreBegin);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000428 EscapeEnumerator EE(F, "tsan_ignore_cleanup", ClHandleCxxExceptions);
429 while (IRBuilder<> *AtExit = EE.Next()) {
430 AtExit->CreateCall(TsanIgnoreEnd);
Anna Zaks3c437372016-11-11 23:01:02 +0000431 }
432}
433
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000434bool ThreadSanitizer::sanitizeFunction(Function &F,
435 const TargetLibraryInfo &TLI) {
Florian Hahn9697d2a2019-01-09 13:32:16 +0000436 // This is required to prevent instrumenting call to __tsan_init from within
437 // the module constructor.
438 if (&F == TsanCtorFunction)
439 return false;
Kostya Serebryany4b929da2012-11-29 09:54:21 +0000440 initializeCallbacks(*F.getParent());
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000441 SmallVector<Instruction*, 8> AllLoadsAndStores;
442 SmallVector<Instruction*, 8> LocalLoadsAndStores;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000443 SmallVector<Instruction*, 8> AtomicAccesses;
Kostya Serebryany463aa812013-03-28 11:21:13 +0000444 SmallVector<Instruction*, 8> MemIntrinCalls;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000445 bool Res = false;
446 bool HasCalls = false;
Alexey Samsonov6d8bab82014-06-02 18:08:27 +0000447 bool SanitizeFunction = F.hasFnAttribute(Attribute::SanitizeThread);
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000448 const DataLayout &DL = F.getParent()->getDataLayout();
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000449
450 // Traverse all instructions, collect loads/stores/returns, check for calls.
Alexey Samsonova02e6642014-05-29 18:40:48 +0000451 for (auto &BB : F) {
452 for (auto &Inst : BB) {
453 if (isAtomic(&Inst))
454 AtomicAccesses.push_back(&Inst);
455 else if (isa<LoadInst>(Inst) || isa<StoreInst>(Inst))
456 LocalLoadsAndStores.push_back(&Inst);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000457 else if (isa<CallInst>(Inst) || isa<InvokeInst>(Inst)) {
Marcin Koscielnicki3feda222016-06-18 10:10:37 +0000458 if (CallInst *CI = dyn_cast<CallInst>(&Inst))
Philip Pfaffe685c76d2019-01-16 09:28:01 +0000459 maybeMarkSanitizerLibraryCallNoBuiltin(CI, &TLI);
Alexey Samsonova02e6642014-05-29 18:40:48 +0000460 if (isa<MemIntrinsic>(Inst))
461 MemIntrinCalls.push_back(&Inst);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000462 HasCalls = true;
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000463 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores,
464 DL);
Kostya Serebryanybf2de802012-04-10 18:18:56 +0000465 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000466 }
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000467 chooseInstructionsToInstrument(LocalLoadsAndStores, AllLoadsAndStores, DL);
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000468 }
469
470 // We have collected all loads and stores.
471 // FIXME: many of these accesses do not need to be checked for races
472 // (e.g. variables that do not escape, etc).
473
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000474 // Instrument memory accesses only if we want to report bugs in the function.
475 if (ClInstrumentMemoryAccesses && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000476 for (auto Inst : AllLoadsAndStores) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000477 Res |= instrumentLoadOrStore(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000478 }
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000479
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000480 // Instrument atomic memory accesses in any case (they can be used to
481 // implement synchronization).
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000482 if (ClInstrumentAtomics)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000483 for (auto Inst : AtomicAccesses) {
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000484 Res |= instrumentAtomic(Inst, DL);
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000485 }
Kostya Serebryanya1259772012-04-27 07:31:53 +0000486
Alexey Samsonovd3828b82014-05-31 00:11:37 +0000487 if (ClInstrumentMemIntrinsics && SanitizeFunction)
Alexey Samsonova02e6642014-05-29 18:40:48 +0000488 for (auto Inst : MemIntrinCalls) {
489 Res |= instrumentMemIntrinsic(Inst);
Kostya Serebryany463aa812013-03-28 11:21:13 +0000490 }
491
Anna Zaks3c437372016-11-11 23:01:02 +0000492 if (F.hasFnAttribute("sanitize_thread_no_checking_at_run_time")) {
493 assert(!F.hasFnAttribute(Attribute::SanitizeThread));
494 if (HasCalls)
Kuba Breckaddfdba32016-11-14 21:41:13 +0000495 InsertRuntimeIgnores(F);
Anna Zaks3c437372016-11-11 23:01:02 +0000496 }
497
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000498 // Instrument function entry/exit points if there were instrumented accesses.
Kostya Serebryanyd23b18f2012-10-04 05:28:50 +0000499 if ((Res || HasCalls) && ClInstrumentFuncEntryExit) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000500 IRBuilder<> IRB(F.getEntryBlock().getFirstNonPHI());
501 Value *ReturnAddress = IRB.CreateCall(
502 Intrinsic::getDeclaration(F.getParent(), Intrinsic::returnaddress),
503 IRB.getInt32(0));
504 IRB.CreateCall(TsanFuncEntry, ReturnAddress);
Kuba Breckaddfdba32016-11-14 21:41:13 +0000505
506 EscapeEnumerator EE(F, "tsan_cleanup", ClHandleCxxExceptions);
507 while (IRBuilder<> *AtExit = EE.Next()) {
508 AtExit->CreateCall(TsanFuncExit, {});
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000509 }
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000510 Res = true;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000511 }
512 return Res;
513}
514
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000515bool ThreadSanitizer::instrumentLoadOrStore(Instruction *I,
516 const DataLayout &DL) {
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000517 IRBuilder<> IRB(I);
518 bool IsWrite = isa<StoreInst>(*I);
519 Value *Addr = IsWrite
520 ? cast<StoreInst>(I)->getPointerOperand()
521 : cast<LoadInst>(I)->getPointerOperand();
Arnold Schwaighofer8eb1a482017-02-15 18:57:06 +0000522
523 // swifterror memory addresses are mem2reg promoted by instruction selection.
524 // As such they cannot have regular uses like an instrumentation function and
525 // it makes no sense to track them as memory.
526 if (Addr->isSwiftError())
527 return false;
528
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000529 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000530 if (Idx < 0)
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000531 return false;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000532 if (IsWrite && isVtableAccess(I)) {
Nicola Zaghend34e60c2018-05-14 12:53:11 +0000533 LLVM_DEBUG(dbgs() << " VPTR : " << *I << "\n");
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000534 Value *StoredValue = cast<StoreInst>(I)->getValueOperand();
Kostya Serebryany08b9cf52013-12-02 08:07:15 +0000535 // StoredValue may be a vector type if we are storing several vptrs at once.
536 // In this case, just take the first element of the vector since this is
537 // enough to find vptr races.
538 if (isa<VectorType>(StoredValue->getType()))
539 StoredValue = IRB.CreateExtractElement(
540 StoredValue, ConstantInt::get(IRB.getInt32Ty(), 0));
Kostya Serebryany2460c3f2013-12-05 15:03:02 +0000541 if (StoredValue->getType()->isIntegerTy())
542 StoredValue = IRB.CreateIntToPtr(StoredValue, IRB.getInt8PtrTy());
Kostya Serebryanye36ae682012-07-05 09:07:31 +0000543 // Call TsanVptrUpdate.
David Blaikieff6409d2015-05-18 22:13:54 +0000544 IRB.CreateCall(TsanVptrUpdate,
545 {IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()),
546 IRB.CreatePointerCast(StoredValue, IRB.getInt8PtrTy())});
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000547 NumInstrumentedVtableWrites++;
Kostya Serebryany6f8a7762012-03-26 17:35:03 +0000548 return true;
549 }
Dmitry Vyukov55e63ef2013-03-22 08:51:22 +0000550 if (!IsWrite && isVtableAccess(I)) {
551 IRB.CreateCall(TsanVptrLoad,
552 IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
553 NumInstrumentedVtableReads++;
554 return true;
555 }
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000556 const unsigned Alignment = IsWrite
557 ? cast<StoreInst>(I)->getAlignment()
558 : cast<LoadInst>(I)->getAlignment();
559 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000560 const uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Dmitry Vyukov91ffdec2015-01-27 20:19:17 +0000561 Value *OnAccessFunc = nullptr;
562 if (Alignment == 0 || Alignment >= 8 || (Alignment % (TypeSize / 8)) == 0)
563 OnAccessFunc = IsWrite ? TsanWrite[Idx] : TsanRead[Idx];
564 else
565 OnAccessFunc = IsWrite ? TsanUnalignedWrite[Idx] : TsanUnalignedRead[Idx];
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000566 IRB.CreateCall(OnAccessFunc, IRB.CreatePointerCast(Addr, IRB.getInt8PtrTy()));
Kostya Serebryany5a4b7a22012-04-23 08:44:59 +0000567 if (IsWrite) NumInstrumentedWrites++;
568 else NumInstrumentedReads++;
Kostya Serebryanye2a0e412012-02-13 22:50:51 +0000569 return true;
570}
Kostya Serebryanya1259772012-04-27 07:31:53 +0000571
572static ConstantInt *createOrdering(IRBuilder<> *IRB, AtomicOrdering ord) {
573 uint32_t v = 0;
574 switch (ord) {
JF Bastien800f87a2016-04-06 21:19:33 +0000575 case AtomicOrdering::NotAtomic:
576 llvm_unreachable("unexpected atomic ordering!");
Justin Bognerb03fd122016-08-17 05:10:15 +0000577 case AtomicOrdering::Unordered: LLVM_FALLTHROUGH;
JF Bastien800f87a2016-04-06 21:19:33 +0000578 case AtomicOrdering::Monotonic: v = 0; break;
579 // Not specified yet:
580 // case AtomicOrdering::Consume: v = 1; break;
581 case AtomicOrdering::Acquire: v = 2; break;
582 case AtomicOrdering::Release: v = 3; break;
583 case AtomicOrdering::AcquireRelease: v = 4; break;
584 case AtomicOrdering::SequentiallyConsistent: v = 5; break;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000585 }
Dmitry Vyukov0044e382012-11-09 14:12:16 +0000586 return IRB->getInt32(v);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000587}
588
Kostya Serebryany463aa812013-03-28 11:21:13 +0000589// If a memset intrinsic gets inlined by the code gen, we will miss races on it.
590// So, we either need to ensure the intrinsic is not inlined, or instrument it.
591// We do not instrument memset/memmove/memcpy intrinsics (too complicated),
592// instead we simply replace them with regular function calls, which are then
593// intercepted by the run-time.
594// Since tsan is running after everyone else, the calls should not be
595// replaced back with intrinsics. If that becomes wrong at some point,
596// we will need to call e.g. __tsan_memset to avoid the intrinsics.
597bool ThreadSanitizer::instrumentMemIntrinsic(Instruction *I) {
598 IRBuilder<> IRB(I);
599 if (MemSetInst *M = dyn_cast<MemSetInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000600 IRB.CreateCall(
601 MemsetFn,
602 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
603 IRB.CreateIntCast(M->getArgOperand(1), IRB.getInt32Ty(), false),
604 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000605 I->eraseFromParent();
606 } else if (MemTransferInst *M = dyn_cast<MemTransferInst>(I)) {
David Blaikieff6409d2015-05-18 22:13:54 +0000607 IRB.CreateCall(
608 isa<MemCpyInst>(M) ? MemcpyFn : MemmoveFn,
609 {IRB.CreatePointerCast(M->getArgOperand(0), IRB.getInt8PtrTy()),
610 IRB.CreatePointerCast(M->getArgOperand(1), IRB.getInt8PtrTy()),
611 IRB.CreateIntCast(M->getArgOperand(2), IntptrTy, false)});
Kostya Serebryany463aa812013-03-28 11:21:13 +0000612 I->eraseFromParent();
613 }
614 return false;
615}
616
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000617// Both llvm and ThreadSanitizer atomic operations are based on C++11/C1x
Alp Tokercb402912014-01-24 17:20:08 +0000618// standards. For background see C++11 standard. A slightly older, publicly
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000619// available draft of the standard (not entirely up-to-date, but close enough
620// for casual browsing) is available here:
Matt Beaumont-Gay000a3952012-11-26 16:27:22 +0000621// http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2011/n3242.pdf
Dmitry Vyukov12b5cb92012-11-26 11:36:19 +0000622// The following page contains more background information:
623// http://www.hpl.hp.com/personal/Hans_Boehm/c++mm/
624
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000625bool ThreadSanitizer::instrumentAtomic(Instruction *I, const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000626 IRBuilder<> IRB(I);
627 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
628 Value *Addr = LI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000629 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000630 if (Idx < 0)
631 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000632 const unsigned ByteSize = 1U << Idx;
633 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000634 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000635 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000636 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
637 createOrdering(&IRB, LI->getOrdering())};
Anna Zaksc1efa642016-03-07 23:16:23 +0000638 Type *OrigTy = cast<PointerType>(Addr->getType())->getElementType();
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000639 Value *C = IRB.CreateCall(TsanAtomicLoad[Idx], Args);
640 Value *Cast = IRB.CreateBitOrPointerCast(C, OrigTy);
641 I->replaceAllUsesWith(Cast);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000642 } else if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
643 Value *Addr = SI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000644 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000645 if (Idx < 0)
646 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000647 const unsigned ByteSize = 1U << Idx;
648 const unsigned BitSize = ByteSize * 8;
Kostya Serebryanya1259772012-04-27 07:31:53 +0000649 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
Micah Villmow51e72462012-10-24 17:25:11 +0000650 Type *PtrTy = Ty->getPointerTo();
Kostya Serebryanya1259772012-04-27 07:31:53 +0000651 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000652 IRB.CreateBitOrPointerCast(SI->getValueOperand(), Ty),
Kostya Serebryanya1259772012-04-27 07:31:53 +0000653 createOrdering(&IRB, SI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000654 CallInst *C = CallInst::Create(TsanAtomicStore[Idx], Args);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000655 ReplaceInstWithInst(I, C);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000656 } else if (AtomicRMWInst *RMWI = dyn_cast<AtomicRMWInst>(I)) {
657 Value *Addr = RMWI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000658 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000659 if (Idx < 0)
660 return false;
661 Function *F = TsanAtomicRMW[RMWI->getOperation()][Idx];
Craig Topperf40110f2014-04-25 05:29:35 +0000662 if (!F)
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000663 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000664 const unsigned ByteSize = 1U << Idx;
665 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000666 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
667 Type *PtrTy = Ty->getPointerTo();
668 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
669 IRB.CreateIntCast(RMWI->getValOperand(), Ty, false),
670 createOrdering(&IRB, RMWI->getOrdering())};
Craig Toppere1d12942014-08-27 05:25:25 +0000671 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000672 ReplaceInstWithInst(I, C);
673 } else if (AtomicCmpXchgInst *CASI = dyn_cast<AtomicCmpXchgInst>(I)) {
674 Value *Addr = CASI->getPointerOperand();
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000675 int Idx = getMemoryAccessFuncIndex(Addr, DL);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000676 if (Idx < 0)
677 return false;
Yaron Kerendfb655f2015-08-15 19:06:14 +0000678 const unsigned ByteSize = 1U << Idx;
679 const unsigned BitSize = ByteSize * 8;
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000680 Type *Ty = Type::getIntNTy(IRB.getContext(), BitSize);
681 Type *PtrTy = Ty->getPointerTo();
Anna Zaksc1efa642016-03-07 23:16:23 +0000682 Value *CmpOperand =
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000683 IRB.CreateBitOrPointerCast(CASI->getCompareOperand(), Ty);
Anna Zaksc1efa642016-03-07 23:16:23 +0000684 Value *NewOperand =
Kuba Brecka44e875ad2016-11-07 19:09:56 +0000685 IRB.CreateBitOrPointerCast(CASI->getNewValOperand(), Ty);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000686 Value *Args[] = {IRB.CreatePointerCast(Addr, PtrTy),
Anna Zaksc1efa642016-03-07 23:16:23 +0000687 CmpOperand,
688 NewOperand,
Tim Northovere94a5182014-03-11 10:48:52 +0000689 createOrdering(&IRB, CASI->getSuccessOrdering()),
690 createOrdering(&IRB, CASI->getFailureOrdering())};
Tim Northover420a2162014-06-13 14:24:07 +0000691 CallInst *C = IRB.CreateCall(TsanAtomicCAS[Idx], Args);
Anna Zaksc1efa642016-03-07 23:16:23 +0000692 Value *Success = IRB.CreateICmpEQ(C, CmpOperand);
693 Value *OldVal = C;
694 Type *OrigOldValTy = CASI->getNewValOperand()->getType();
695 if (Ty != OrigOldValTy) {
696 // The value is a pointer, so we need to cast the return value.
697 OldVal = IRB.CreateIntToPtr(C, OrigOldValTy);
698 }
Tim Northover420a2162014-06-13 14:24:07 +0000699
Anna Zaksc1efa642016-03-07 23:16:23 +0000700 Value *Res =
701 IRB.CreateInsertValue(UndefValue::get(CASI->getType()), OldVal, 0);
Tim Northover420a2162014-06-13 14:24:07 +0000702 Res = IRB.CreateInsertValue(Res, Success, 1);
703
704 I->replaceAllUsesWith(Res);
705 I->eraseFromParent();
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000706 } else if (FenceInst *FI = dyn_cast<FenceInst>(I)) {
707 Value *Args[] = {createOrdering(&IRB, FI->getOrdering())};
Konstantin Zhuravlyovbb80d3e2017-07-11 22:23:00 +0000708 Function *F = FI->getSyncScopeID() == SyncScope::SingleThread ?
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000709 TsanAtomicSignalFence : TsanAtomicThreadFence;
Craig Toppere1d12942014-08-27 05:25:25 +0000710 CallInst *C = CallInst::Create(F, Args);
Dmitry Vyukov92b9e1d2012-11-09 12:55:36 +0000711 ReplaceInstWithInst(I, C);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000712 }
713 return true;
714}
715
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000716int ThreadSanitizer::getMemoryAccessFuncIndex(Value *Addr,
717 const DataLayout &DL) {
Kostya Serebryanya1259772012-04-27 07:31:53 +0000718 Type *OrigPtrTy = Addr->getType();
719 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
720 assert(OrigTy->isSized());
Mehdi Aminia28d91d2015-03-10 02:37:25 +0000721 uint32_t TypeSize = DL.getTypeStoreSizeInBits(OrigTy);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000722 if (TypeSize != 8 && TypeSize != 16 &&
723 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
724 NumAccessesWithBadSize++;
725 // Ignore all unusual sizes.
726 return -1;
727 }
Michael J. Spencerdf1ecbd72013-05-24 22:23:49 +0000728 size_t Idx = countTrailingZeros(TypeSize / 8);
Kostya Serebryanya1259772012-04-27 07:31:53 +0000729 assert(Idx < kNumberOfAccessSizes);
730 return Idx;
731}