AddressSanitizer.cpp revision d2703dec271d82c8c9d22afb835c07730fd25d47
1800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
3800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//                     The LLVM Compiler Infrastructure
4800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
5800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This file is distributed under the University of Illinois Open Source
6800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// License. See LICENSE.TXT for details.
7800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
8800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===----------------------------------------------------------------------===//
9800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
10800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This file is a part of AddressSanitizer, an address sanity checker.
11800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Details of the algorithm:
12800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//  http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
14800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//===----------------------------------------------------------------------===//
15800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
16800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#define DEBUG_TYPE "asan"
17800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
18800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/ArrayRef.h"
19800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/OwningPtr.h"
20800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallSet.h"
21800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallString.h"
22800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/SmallVector.h"
23800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/ADT/StringExtras.h"
24800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Function.h"
25800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/InlineAsm.h"
26800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/IntrinsicInst.h"
27800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/LLVMContext.h"
28800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Module.h"
29800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/CommandLine.h"
30800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/DataTypes.h"
31800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/Debug.h"
32800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/IRBuilder.h"
33800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/MemoryBuffer.h"
34800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/Regex.h"
35800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/raw_ostream.h"
36800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Support/system_error.h"
37800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Target/TargetData.h"
38800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Target/TargetMachine.h"
39800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Instrumentation.h"
40800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Utils/BasicBlockUtils.h"
41800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Transforms/Utils/ModuleUtils.h"
42800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include "llvm/Type.h"
43800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
44800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include <string>
45800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany#include <algorithm>
46800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
47800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyusing namespace llvm;
48800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
49800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowScale = 3;
50800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
51800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
52800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
53800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const size_t kMaxStackMallocSize = 1 << 16;  // 64K
54800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
55800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
56800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
57800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanModuleCtorName = "asan.module_ctor";
58800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanReportErrorTemplate = "__asan_report_";
59800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanRegisterGlobalsName = "__asan_register_globals";
60800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanInitName = "__asan_init";
61800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanMappingOffsetName = "__asan_mapping_offset";
62800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanMappingScaleName = "__asan_mapping_scale";
63800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanStackMallocName = "__asan_stack_malloc";
64800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const char *kAsanStackFreeName = "__asan_stack_free";
65800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
66800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackLeftRedzoneMagic = 0xf1;
67800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackMidRedzoneMagic = 0xf2;
68800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackRightRedzoneMagic = 0xf3;
69800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic const int kAsanStackPartialRedzoneMagic = 0xf4;
70800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
71800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Command-line flags.
72800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
73800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no-]asan-reads.
74800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
75800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
76800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
77800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
78800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-stack.
79800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClStack("asan-stack",
80800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
81800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-use-after-return.
82800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
83800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
84800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -f[no]asan-globals.
85800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClGlobals("asan-globals",
86800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
87800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClMemIntrin("asan-memintrin",
88800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
89800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This flag may need to be replaced with -fasan-blacklist.
90800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<std::string>  ClBlackListFile("asan-blacklist",
91800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("File containing the list of functions to ignore "
92800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                "during instrumentation"), cl::Hidden);
93800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClUseCall("asan-use-call",
94800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Use function call to generate a crash"), cl::Hidden,
95800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::init(true));
96800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
97800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// These flags allow to change the shadow mapping.
98800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// The shadow mapping looks like
99800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//    Shadow = (Mem >> scale) + (1 << offset_log)
100800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClMappingScale("asan-mapping-scale",
101800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
102800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log",
103800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1));
104800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
105800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Optimization flags. Not user visible, used mostly for testing
106800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// and benchmarking the tool.
107800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOpt("asan-opt",
108800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
109800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
110800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Instrument the same temp just once"), cl::Hidden,
111800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::init(true));
112800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<bool> ClOptGlobals("asan-opt-globals",
113800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
114800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
115800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Debug flags.
116800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
117800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                            cl::init(0));
118800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
119800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                 cl::Hidden, cl::init(0));
120800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<std::string> ClDebugFunc("asan-debug-func",
121800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        cl::Hidden, cl::desc("Debug func"));
122800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
123800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                               cl::Hidden, cl::init(-1));
124800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
125800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                               cl::Hidden, cl::init(-1));
126800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
127800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanynamespace {
128800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
129800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Blacklisted functions are not instrumented.
130800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// The blacklist file contains one or more lines like this:
131800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// ---
132800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// fun:FunctionWildCard
133800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// ---
134800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This is similar to the "ignore" feature of ThreadSanitizer.
135800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// http://code.google.com/p/data-race-test/wiki/ThreadSanitizerIgnores
136800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyclass BlackList {
137800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany public:
138800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BlackList(const std::string &Path);
139800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool isIn(const Function &F);
140800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany private:
141800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Regex *Functions;
142800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany};
143800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
144800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany/// AddressSanitizer: instrument the code in module to find memory bugs.
145800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystruct AddressSanitizer : public ModulePass {
146800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AddressSanitizer();
147800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentMop(Instruction *I);
148800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentAddress(Instruction *OrigIns, IRBuilder<> &IRB,
149800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         Value *Addr, uint32_t TypeSize, bool IsWrite);
150800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *generateCrashCode(IRBuilder<> &IRB, Value *Addr,
151800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                 bool IsWrite, uint32_t TypeSize);
152800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool instrumentMemIntrinsic(MemIntrinsic *MI);
153800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
154800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                  Value *Size,
155800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Instruction *InsertBefore, bool IsWrite);
156800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
157800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool handleFunction(Module &M, Function &F);
158800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool poisonStackInFunction(Module &M, Function &F);
159800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  virtual bool runOnModule(Module &M);
160800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool insertGlobalRedzones(Module &M);
161800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *splitBlockAndInsertIfThen(Instruction *SplitBefore, Value *Cmp);
162800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  static char ID;  // Pass identification, replacement for typeid
163800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
164800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany private:
165800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
166800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAllocaSizeInBytes(AllocaInst *AI) {
167800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = AI->getAllocatedType();
168800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8;
169800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return SizeInBytes;
170800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
171800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAlignedSize(uint64_t SizeInBytes) {
172800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return ((SizeInBytes + RedzoneSize - 1)
173800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            / RedzoneSize) * RedzoneSize;
174800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
175800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t getAlignedAllocaSize(AllocaInst *AI) {
176800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
177800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return getAlignedSize(SizeInBytes);
178800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
179800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
180800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  void PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB,
181800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                   Value *ShadowBase, bool DoPoison);
1825a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  bool LooksLikeCodeInBug11395(Instruction *I);
183800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
184800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Module      *CurrentModule;
185800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  LLVMContext *C;
186800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TargetData *TD;
187800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t MappingOffset;
188800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int MappingScale;
189800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t RedzoneSize;
190800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int LongSize;
191800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *IntptrTy;
192800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *IntptrPtrTy;
193800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanCtorFunction;
194800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanInitFunction;
195800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *CtorInsertBefore;
196800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  OwningPtr<BlackList> BL;
197800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany};
198800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}  // namespace
199800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
200800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanychar AddressSanitizer::ID = 0;
201800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyINITIALIZE_PASS(AddressSanitizer, "asan",
202800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
203800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    false, false)
204800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyAddressSanitizer::AddressSanitizer() : ModulePass(ID) { }
205800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyModulePass *llvm::createAddressSanitizerPass() {
206800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return new AddressSanitizer();
207800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
208800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
209800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Create a constant for Str so that we can pass it to the run-time lib.
210800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) {
211800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Constant *StrConst = ConstantArray::get(M.getContext(), Str);
212800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return new GlobalVariable(M, StrConst->getType(), true,
213800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                            GlobalValue::PrivateLinkage, StrConst, "");
214800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
215800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
216800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Split the basic block and insert an if-then code.
217800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Before:
218800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Head
219800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   SplitBefore
220800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Tail
221800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// After:
222800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Head
223800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   if (Cmp)
224800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//     NewBasicBlock
225800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   SplitBefore
226800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//   Tail
227800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
228800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Returns the NewBasicBlock's terminator.
229800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyBranchInst *AddressSanitizer::splitBlockAndInsertIfThen(
230800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *SplitBefore, Value *Cmp) {
231800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *Head = SplitBefore->getParent();
232800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *Tail = Head->splitBasicBlock(SplitBefore);
233800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TerminatorInst *HeadOldTerm = Head->getTerminator();
234800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *NewBasicBlock =
235800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      BasicBlock::Create(*C, "", Head->getParent());
236800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *HeadNewTerm = BranchInst::Create(/*ifTrue*/NewBasicBlock,
237800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               /*ifFalse*/Tail,
238800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               Cmp);
239800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  ReplaceInstWithInst(HeadOldTerm, HeadNewTerm);
240800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
241800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BranchInst *CheckTerm = BranchInst::Create(Tail, NewBasicBlock);
242800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return CheckTerm;
243800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
244800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
245800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyValue *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
246800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Shadow >> scale
247800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Shadow = IRB.CreateLShr(Shadow, MappingScale);
248800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (MappingOffset == 0)
249800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Shadow;
250800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // (Shadow >> scale) | offset
251800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy,
252800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               MappingOffset));
253800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
254800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
255800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentMemIntrinsicParam(Instruction *OrigIns,
256800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
257800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Check the first byte.
258800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  {
259800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
260800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentAddress(OrigIns, IRB, Addr, 8, IsWrite);
261800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
262800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Check the last byte.
263800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  {
264800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
265800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *SizeMinusOne = IRB.CreateSub(
266800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Size, ConstantInt::get(Size->getType(), 1));
267800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    SizeMinusOne = IRB.CreateIntCast(SizeMinusOne, IntptrTy, false);
268800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
269800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AddrPlusSizeMinisOne = IRB.CreateAdd(AddrLong, SizeMinusOne);
270800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentAddress(OrigIns, IRB, AddrPlusSizeMinisOne, 8, IsWrite);
271800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
272800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
273800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
274800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Instrument memset/memmove/memcpy
275800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
276800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Dst = MI->getDest();
277800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
278800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Src = MemTran ? MemTran->getSource() : NULL;
279800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Length = MI->getLength();
280800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
281800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Constant *ConstLength = dyn_cast<Constant>(Length);
282800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *InsertBefore = MI;
283800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ConstLength) {
284800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ConstLength->isNullValue()) return false;
285800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  } else {
286800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // The size is not a constant so it could be zero -- check at run-time.
287800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(InsertBefore);
288800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
289800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Cmp = IRB.CreateICmpNE(Length,
290800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Constant::getNullValue(Length->getType()));
291800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    InsertBefore = splitBlockAndInsertIfThen(InsertBefore, Cmp);
292800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
293800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
294800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true);
295800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Src)
296800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false);
297800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
298800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
299800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
300800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic Value *getLDSTOperand(Instruction *I) {
301800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
302800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return LI->getPointerOperand();
303800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
304800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return cast<StoreInst>(*I).getPointerOperand();
305800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
306800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
307800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentMop(Instruction *I) {
308800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int IsWrite = isa<StoreInst>(*I);
309800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Addr = getLDSTOperand(I);
310800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClOpt && ClOptGlobals && isa<GlobalVariable>(Addr)) {
311800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // We are accessing a global scalar variable. Nothing to catch here.
312800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return;
313800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
314800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *OrigPtrTy = Addr->getType();
315800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
316800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
317800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(OrigTy->isSized());
318800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
319800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
320800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (TypeSize != 8  && TypeSize != 16 &&
321800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
322800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore all unusual sizes.
323800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return;
324800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
325800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
326800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(I);
327800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  instrumentAddress(I, IRB, Addr, TypeSize, IsWrite);
328800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
329800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
330800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyInstruction *AddressSanitizer::generateCrashCode(
331800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> &IRB, Value *Addr, bool IsWrite, uint32_t TypeSize) {
332800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
333800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClUseCall) {
334800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Here we use a call instead of arch-specific asm to report an error.
335800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // This is almost always slower (because the codegen needs to generate
336800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // prologue/epilogue for otherwise leaf functions) and generates more code.
337800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // This mode could be useful if we can not use SIGILL for some reason.
338800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    //
339800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // IsWrite and TypeSize are encoded in the function name.
340800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    std::string FunctionName = std::string(kAsanReportErrorTemplate) +
341800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (IsWrite ? "store" : "load") + itostr(TypeSize / 8);
342800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *ReportWarningFunc = CurrentModule->getOrInsertFunction(
343800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        FunctionName, IRB.getVoidTy(), IntptrTy, NULL);
344800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    CallInst *Call = IRB.CreateCall(ReportWarningFunc, Addr);
345800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Call->setDoesNotReturn();
346800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Call;
347800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
348800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
349800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint32_t LogOfSizeInBytes = CountTrailingZeros_32(TypeSize / 8);
350800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(8U * (1 << LogOfSizeInBytes) == TypeSize);
351800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint8_t TelltaleValue = IsWrite * 8 + LogOfSizeInBytes;
352800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(TelltaleValue < 16);
353800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
354800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Move the failing address to %rax/%eax
355800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  FunctionType *Fn1Ty = FunctionType::get(
356800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.getVoidTy(), ArrayRef<Type*>(IntptrTy), false);
357800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *MovStr = LongSize == 32
358800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ? "mov $0, %eax" : "mov $0, %rax";
359800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AsmMov = InlineAsm::get(
360800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Fn1Ty, StringRef(MovStr), StringRef("r"), true);
361800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall(AsmMov, Addr);
362800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
363800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // crash with ud2; could use int3, but it is less friendly to gdb.
364800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // after ud2 put a 1-byte instruction that encodes the access type and size.
365800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
366800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *TelltaleInsns[16] = {
367800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %eax",  // 0x50
368800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ecx",  // 0x51
369800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %edx",  // 0x52
370800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ebx",  // 0x53
371800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %esp",  // 0x54
372800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %ebp",  // 0x55
373800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %esi",  // 0x56
374800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "push   %edi",  // 0x57
375800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %eax",  // 0x58
376800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ecx",  // 0x59
377800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %edx",  // 0x5a
378800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ebx",  // 0x5b
379800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %esp",  // 0x5c
380800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %ebp",  // 0x5d
381800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %esi",  // 0x5e
382800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    "pop    %edi"   // 0x5f
383800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  };
384800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
385800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  std::string AsmStr = "ud2;";
386800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsmStr += TelltaleInsns[TelltaleValue];
387800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *MyAsm = InlineAsm::get(FunctionType::get(Type::getVoidTy(*C), false),
388800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                StringRef(AsmStr), StringRef(""), true);
389800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CallInst *AsmCall = IRB.CreateCall(MyAsm);
390800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
391800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // This saves us one jump, but triggers a bug in RA (or somewhere else):
392800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // while building 483.xalancbmk the compiler goes into infinite loop in
393800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // llvm::SpillPlacement::iterate() / RAGreedy::growRegion
394800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // AsmCall->setDoesNotReturn();
395800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return AsmCall;
396800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
397800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
398800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::instrumentAddress(Instruction *OrigIns,
399800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                         IRBuilder<> &IRB, Value *Addr,
400800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                         uint32_t TypeSize, bool IsWrite) {
401800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
402800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
403800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ShadowTy  = IntegerType::get(
404800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *C, std::max(8U, TypeSize >> MappingScale));
405800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
406800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowPtr = memToShadow(AddrLong, IRB);
407800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *CmpVal = Constant::getNullValue(ShadowTy);
408800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowValue = IRB.CreateLoad(
409800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
410800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
411800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
412800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
413800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *CheckTerm = splitBlockAndInsertIfThen(
414800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      cast<Instruction>(Cmp)->getNextNode(), Cmp);
415800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB2(CheckTerm);
416800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
417800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t Granularity = 1 << MappingScale;
418800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (TypeSize < 8 * Granularity) {
419800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Addr & (Granularity - 1)
420800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Lower3Bits = IRB2.CreateAnd(
421800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
422800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // (Addr & (Granularity - 1)) + size - 1
423800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *LastAccessedByte = IRB2.CreateAdd(
424800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Lower3Bits, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
425800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
426800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    LastAccessedByte = IRB2.CreateIntCast(
427800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        LastAccessedByte, IRB.getInt8Ty(), false);
428800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
429800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Cmp2 = IRB2.CreateICmpSGE(LastAccessedByte, ShadowValue);
430800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
431800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    CheckTerm = splitBlockAndInsertIfThen(CheckTerm, Cmp2);
432800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
433800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
434800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB1(CheckTerm);
435800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *Crash = generateCrashCode(IRB1, AddrLong, IsWrite, TypeSize);
436800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Crash->setDebugLoc(OrigIns->getDebugLoc());
437800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
438800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
439800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This function replaces all global variables with new variables that have
440800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// trailing redzones. It also creates a function that poisons
441800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// redzones and inserts this function into llvm.global_ctors.
442800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::insertGlobalRedzones(Module &M) {
443800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<GlobalVariable *, 16> GlobalsToChange;
444800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
445800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Module::GlobalListType::iterator G = M.getGlobalList().begin(),
446800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       E = M.getGlobalList().end(); G != E; ++G) {
447800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = cast<PointerType>(G->getType())->getElementType();
448800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << "GLOBAL: " << *G);
449800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
450800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (!Ty->isSized()) continue;
451800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (!G->hasInitializer()) continue;
4527cf2a04361e8613264498e50babe52d65c070473Kostya Serebryany    // Touch only those globals that will not be defined in other modules.
4537cf2a04361e8613264498e50babe52d65c070473Kostya Serebryany    // Don't handle ODR type linkages since other modules may be built w/o asan.
4542e7fb2f73641f1f1ca385fe7777075945bf4ca24Kostya Serebryany    if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
4552e7fb2f73641f1f1ca385fe7777075945bf4ca24Kostya Serebryany        G->getLinkage() != GlobalVariable::PrivateLinkage &&
4562e7fb2f73641f1f1ca385fe7777075945bf4ca24Kostya Serebryany        G->getLinkage() != GlobalVariable::InternalLinkage)
457800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      continue;
458d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany    // Two problems with thread-locals:
459d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany    //   - The address of the main thread's copy can't be computed at link-time.
460d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany    //   - Need to poison all copies, not just the main thread's one.
461d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany    if (G->isThreadLocal())
462d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany      continue;
463800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // For now, just ignore this Alloca if the alignment is large.
464800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (G->getAlignment() > RedzoneSize) continue;
465800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
466800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore all the globals with the names starting with "\01L_OBJC_".
467800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Many of those are put into the .cstring section. The linker compresses
468800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // that section by removing the spare \0s after the string terminator, so
469800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // our redzones get broken.
470800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if ((G->getName().find("\01L_OBJC_") == 0) ||
471800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (G->getName().find("\01l_OBJC_") == 0)) {
472800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G);
473800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      continue;
474800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
475800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
476800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Ignore the globals from the __OBJC section. The ObjC runtime assumes
477800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
478800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // them.
479800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (G->hasSection()) {
480800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      StringRef Section(G->getSection());
481800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if ((Section.find("__OBJC,") == 0) ||
482800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          (Section.find("__DATA, __objc_") == 0)) {
483800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G);
484800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        continue;
485800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
486800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
487800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
488800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalsToChange.push_back(G);
489800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
490800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
491800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t n = GlobalsToChange.size();
492800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (n == 0) return false;
493800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
494800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // A global is described by a structure
495800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t beg;
496800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t size;
497800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   size_t size_with_redzone;
498800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  //   const char *name;
499800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We initialize an array of such structures and pass it to a run-time call.
500800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
501800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                               IntptrTy, IntptrTy, NULL);
502800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Constant *, 16> Initializers(n);
503800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
504800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(CtorInsertBefore);
505800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
506800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0; i < n; i++) {
507800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *G = GlobalsToChange[i];
508800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    PointerType *PtrTy = cast<PointerType>(G->getType());
509800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *Ty = PtrTy->getElementType();
510800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = TD->getTypeStoreSizeInBits(Ty) / 8;
511800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t RightRedzoneSize = RedzoneSize +
512800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (RedzoneSize - (SizeInBytes % RedzoneSize));
513800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
514800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
515800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
516800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Constant *NewInitializer = ConstantStruct::get(
517800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NewTy, G->getInitializer(),
518800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Constant::getNullValue(RightRedZoneTy), NULL);
519800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
520800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *Name = createPrivateGlobalForString(M, G->getName());
521800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
522800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Create a new global variable with enough space for a redzone.
523800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    GlobalVariable *NewGlobal = new GlobalVariable(
524800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        M, NewTy, G->isConstant(), G->getLinkage(),
525800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NewInitializer, "", G, G->isThreadLocal());
526800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->copyAttributesFrom(G);
527800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->setAlignment(RedzoneSize);
528800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
529800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Indices2[2];
530800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Indices2[0] = IRB.getInt32(0);
531800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Indices2[1] = IRB.getInt32(0);
532800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
533800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    G->replaceAllUsesWith(
534800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getGetElementPtr(NewGlobal, Indices2, 2));
535800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NewGlobal->takeName(G);
536800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    G->eraseFromParent();
537800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
538800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Initializers[i] = ConstantStruct::get(
539800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        GlobalStructTy,
540800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
541800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, SizeInBytes),
542800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
543800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantExpr::getPointerCast(Name, IntptrTy),
544800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        NULL);
545800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << "NEW GLOBAL:\n" << *NewGlobal);
546800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
547800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
548800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
549800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalVariable *AllGlobals = new GlobalVariable(
550800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      M, ArrayOfGlobalStructTy, false, GlobalVariable::PrivateLinkage,
551800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
552800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
553800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Function *AsanRegisterGlobals = cast<Function>(M.getOrInsertFunction(
554800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      kAsanRegisterGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
555800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
556800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
557800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall2(AsanRegisterGlobals,
558800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  IRB.CreatePointerCast(AllGlobals, IntptrTy),
559800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  ConstantInt::get(IntptrTy, n));
560800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
561800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  DEBUG(dbgs() << M);
562800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
563800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
564800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
565800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// virtual
566800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::runOnModule(Module &M) {
567800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Initialize the private fields. No one has accessed them before.
568800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  TD = getAnalysisIfAvailable<TargetData>();
569800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!TD)
570800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return false;
571800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BL.reset(new BlackList(ClBlackListFile));
572800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
573800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CurrentModule = &M;
574800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  C = &(M.getContext());
575800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  LongSize = TD->getPointerSizeInBits();
576800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IntptrTy = Type::getIntNTy(*C, LongSize);
577800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IntptrPtrTy = PointerType::get(IntptrTy, 0);
578800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
579800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanCtorFunction = Function::Create(
580800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      FunctionType::get(Type::getVoidTy(*C), false),
581800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
582800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
583800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  CtorInsertBefore = ReturnInst::Create(*C, AsanCtorBB);
584800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
585800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // call __asan_init in the module ctor.
586800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(CtorInsertBefore);
587800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanInitFunction = cast<Function>(
588800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
589800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AsanInitFunction->setLinkage(Function::ExternalLinkage);
590800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateCall(AsanInitFunction);
591800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
592800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MappingOffset = LongSize == 32
593800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ? kDefaultShadowOffset32 : kDefaultShadowOffset64;
594800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClMappingOffsetLog >= 0) {
595800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ClMappingOffsetLog == 0) {
596800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // special case
597800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      MappingOffset = 0;
598800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else {
599800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      MappingOffset = 1ULL << ClMappingOffsetLog;
600800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
601800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
602800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MappingScale = kDefaultShadowScale;
603800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClMappingScale) {
604800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    MappingScale = ClMappingScale;
605800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
606800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Redzone used for stack and globals is at least 32 bytes.
607800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
608800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  RedzoneSize = std::max(32, (int)(1 << MappingScale));
609800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
610800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool Res = false;
611800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
612800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClGlobals)
613800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Res |= insertGlobalRedzones(M);
614800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
615800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Tell the run-time the current values of mapping offset and scale.
616800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalValue *asan_mapping_offset =
617800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
618800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     ConstantInt::get(IntptrTy, MappingOffset),
619800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     kAsanMappingOffsetName);
620800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  GlobalValue *asan_mapping_scale =
621800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
622800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         ConstantInt::get(IntptrTy, MappingScale),
623800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         kAsanMappingScaleName);
624800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Read these globals, otherwise they may be optimized away.
625800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateLoad(asan_mapping_scale, true);
626800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateLoad(asan_mapping_offset, true);
627800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
628800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
629800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Module::iterator F = M.begin(), E = M.end(); F != E; ++F) {
630800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (F->isDeclaration()) continue;
631800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Res |= handleFunction(M, *F);
632800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
633800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
634800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  appendToGlobalCtors(M, AsanCtorFunction, 1 /*high priority*/);
635800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
636800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return Res;
637800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
638800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
639800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::handleFunction(Module &M, Function &F) {
640800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (BL->isIn(F)) return false;
641800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (&F == AsanCtorFunction) return false;
642800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
643800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
644800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return false;
645800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We want to instrument every address only once per basic block
646800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // (unless there are calls between uses).
647800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallSet<Value*, 16> TempsToInstrument;
648800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Instruction*, 16> ToInstrument;
649800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
650800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Fill the set of memory operations to instrument.
651800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Function::iterator FI = F.begin(), FE = F.end();
652800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       FI != FE; ++FI) {
653800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    TempsToInstrument.clear();
654800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
655800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany         BI != BE; ++BI) {
656800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if ((isa<LoadInst>(BI) && ClInstrumentReads) ||
657800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          (isa<StoreInst>(BI) && ClInstrumentWrites)) {
658800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Value *Addr = getLDSTOperand(BI);
659800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (ClOpt && ClOptSameTemp) {
660800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          if (!TempsToInstrument.insert(Addr))
661800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            continue;  // We've seen this temp in the current BB.
662800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        }
663800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
664800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        // ok, take it.
665800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      } else {
666800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (isa<CallInst>(BI)) {
667800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          // A call inside BB.
668800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          TempsToInstrument.clear();
669800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        }
670800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        continue;
671800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
672800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      ToInstrument.push_back(BI);
673800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
674800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
675800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
676800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Instrument.
677800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  int NumInstrumented = 0;
678800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
679800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *Inst = ToInstrument[i];
680800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (ClDebugMin < 0 || ClDebugMax < 0 ||
681800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
682800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (isa<StoreInst>(Inst) || isa<LoadInst>(Inst))
683800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        instrumentMop(Inst);
684800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      else
685800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
686800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
687800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    NumInstrumented++;
688800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
689800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
690800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  DEBUG(dbgs() << F);
691800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
692800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool ChangedStack = poisonStackInFunction(M, F);
693800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
694800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // For each NSObject descendant having a +load method, this method is invoked
695800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // by the ObjC runtime before any of the static constructors is called.
696800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Therefore we need to instrument such methods with a call to __asan_init
697800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // at the beginning in order to initialize our runtime before any access to
698800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // the shadow memory.
699800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // We cannot just ignore these methods, because they may call other
700800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // instrumented functions.
701800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (F.getName().find(" load]") != std::string::npos) {
702800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRB(F.begin()->begin());
703800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRB.CreateCall(AsanInitFunction);
704800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
705800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
706800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return NumInstrumented > 0 || ChangedStack;
707800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
708800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
709800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) {
710800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 1) return PoisonByte;
711800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte;
712800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ShadowRedzoneSize == 4)
713800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return (PoisonByte << 24) + (PoisonByte << 16) +
714800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        (PoisonByte << 8) + (PoisonByte);
715800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(0 && "ShadowRedzoneSize is either 1, 2 or 4");
716800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return 0;
717800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
718800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
719800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanystatic void PoisonShadowPartialRightRedzone(uint8_t *Shadow,
720800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t Size,
721800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t RedzoneSize,
722800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            size_t ShadowGranularity,
723800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                            uint8_t Magic) {
724800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0; i < RedzoneSize;
725800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       i+= ShadowGranularity, Shadow++) {
726800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (i + ShadowGranularity <= Size) {
727800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = 0;  // fully addressable
728800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else if (i >= Size) {
729800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = Magic;  // unaddressable
730800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    } else {
731800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      *Shadow = Size - i;  // first Size-i bytes are addressable
732800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
733800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
734800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
735800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
736800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanyvoid AddressSanitizer::PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec,
737800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   IRBuilder<> IRB,
738800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   Value *ShadowBase, bool DoPoison) {
739800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t ShadowRZSize = RedzoneSize >> MappingScale;
740800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(ShadowRZSize >= 1 && ShadowRZSize <= 4);
741800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8);
742800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *RZPtrTy = PointerType::get(RZTy, 0);
743800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
744800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonLeft  = ConstantInt::get(RZTy,
745800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize));
746800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonMid   = ConstantInt::get(RZTy,
747800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize));
748800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *PoisonRight = ConstantInt::get(RZTy,
749800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize));
750800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
751800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // poison the first red zone.
752800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy));
753800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
754800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // poison all other red zones.
755800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t Pos = RedzoneSize;
756800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
757800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AllocaInst *AI = AllocaVec[i];
758800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
759800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t AlignedSize = getAlignedAllocaSize(AI);
760800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert(AlignedSize - SizeInBytes < RedzoneSize);
761800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Ptr = NULL;
762800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
763800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += AlignedSize;
764800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
765800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert(ShadowBase->getType() == IntptrTy);
766800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (SizeInBytes < AlignedSize) {
767800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // Poison the partial redzone at right
768800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Ptr = IRB.CreateAdd(
769800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          ShadowBase, ConstantInt::get(IntptrTy,
770800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                       (Pos >> MappingScale) - ShadowRZSize));
771800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      size_t AddressableBytes = RedzoneSize - (AlignedSize - SizeInBytes);
772800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      uint32_t Poison = 0;
773800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (DoPoison) {
774800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes,
775800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        RedzoneSize,
776800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        1ULL << MappingScale,
777800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                        kAsanStackPartialRedzoneMagic);
778800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
779800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      Value *PartialPoison = ConstantInt::get(RZTy, Poison);
780800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
781800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
782800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
783800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Poison the full redzone at right.
784800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Ptr = IRB.CreateAdd(ShadowBase,
785800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                        ConstantInt::get(IntptrTy, Pos >> MappingScale));
786800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *Poison = i == AllocaVec.size() - 1 ? PoisonRight : PoisonMid;
787800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
788800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
789800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += RedzoneSize;
790800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
791800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
792800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
7935a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany// Workaround for bug 11395: we don't want to instrument stack in functions
7945a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
795d2703dec271d82c8c9d22afb835c07730fd25d47Kostya Serebryany// FIXME: remove once the bug 11395 is fixed.
7965a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryanybool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
7975a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  if (LongSize != 32) return false;
7985a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  CallInst *CI = dyn_cast<CallInst>(I);
7995a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  if (!CI || !CI->isInlineAsm()) return false;
8005a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  if (CI->getNumArgOperands() <= 5) return false;
8015a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  // We have inline assembly with quite a few arguments.
8025a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany  return true;
8035a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany}
8045a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany
805800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Find all static Alloca instructions and put
806800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// poisoned red zones around all of them.
807800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Then unpoison everything back before the function returns.
808800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany//
809800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// Stack poisoning does not play well with exception handling.
810800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// When an exception is thrown, we essentially bypass the code
811800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// that unpoisones the stack. This is why the run-time library has
812800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
813800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// stack in the interceptor. This however does not work inside the
814800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// actual function which catches the exception. Most likely because the
815800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// compiler hoists the load of the shadow value somewhere too high.
816800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// This causes asan to report a non-existing bug on 453.povray.
817800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany// It sounds like an LLVM bug.
818800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool AddressSanitizer::poisonStackInFunction(Module &M, Function &F) {
819800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClStack) return false;
820800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<AllocaInst*, 16> AllocaVec;
821800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<Instruction*, 8> RetVec;
822800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t TotalSize = 0;
823800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
824800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Filter out Alloca instructions we want (and can) handle.
825800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Collect Ret instructions.
826800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (Function::iterator FI = F.begin(), FE = F.end();
827800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany       FI != FE; ++FI) {
828800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    BasicBlock &BB = *FI;
829800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    for (BasicBlock::iterator BI = BB.begin(), BE = BB.end();
830800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany         BI != BE; ++BI) {
8315a3a9c937198084498a196dae856ac5a5a005bccKostya Serebryany      if (LooksLikeCodeInBug11395(BI)) return false;
832800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (isa<ReturnInst>(BI)) {
833800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          RetVec.push_back(BI);
834800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          continue;
835800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
836800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
837800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      AllocaInst *AI = dyn_cast<AllocaInst>(BI);
838800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI) continue;
839800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (AI->isArrayAllocation()) continue;
840800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI->isStaticAlloca()) continue;
841800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (!AI->getAllocatedType()->isSized()) continue;
842800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (AI->getAlignment() > RedzoneSize) continue;
843800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      AllocaVec.push_back(AI);
844800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      uint64_t AlignedSize =  getAlignedAllocaSize(AI);
845800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      TotalSize += AlignedSize;
846800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
847800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
848800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
849800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (AllocaVec.empty()) return false;
850800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
851800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize;
852800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
853800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  bool DoStackMalloc = ClUseAfterReturn
854800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      && LocalStackSize <= kMaxStackMallocSize;
855800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
856800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Instruction *InsBefore = AllocaVec[0];
857800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRBuilder<> IRB(InsBefore);
858800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
859800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
860800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
861800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  AllocaInst *MyAlloca =
862800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
863800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MyAlloca->setAlignment(RedzoneSize);
864800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(MyAlloca->isStaticAlloca());
865800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
866800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *LocalStackBase = OrigStackBase;
867800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
868800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (DoStackMalloc) {
869800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Value *AsanStackMallocFunc = M.getOrInsertFunction(
870800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        kAsanStackMallocName, IntptrTy, IntptrTy, IntptrTy, NULL);
871800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    LocalStackBase = IRB.CreateCall2(AsanStackMallocFunc,
872800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
873800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
874800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
875800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // This string will be parsed by the run-time (DescribeStackAddress).
876800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallString<2048> StackDescriptionStorage;
877800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  raw_svector_ostream StackDescription(StackDescriptionStorage);
878800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  StackDescription << F.getName() << " " << AllocaVec.size() << " ";
879800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
880800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  uint64_t Pos = RedzoneSize;
881800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Replace Alloca instructions with base+offset.
882800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
883800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AllocaInst *AI = AllocaVec[i];
884800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
885800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StringRef Name = AI->getName();
886800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    StackDescription << Pos << " " << SizeInBytes << " "
887800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                     << Name.size() << " " << Name << " ";
888800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    uint64_t AlignedSize = getAlignedAllocaSize(AI);
889800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    assert((AlignedSize % RedzoneSize) == 0);
890800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AI->replaceAllUsesWith(
891800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        IRB.CreateIntToPtr(
892800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)),
893800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany            AI->getType()));
894800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Pos += AlignedSize + RedzoneSize;
895800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
896800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  assert(Pos == LocalStackSize);
897800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
898800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Write the Magic value and the frame description constant to the redzone.
899800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
900800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
901800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                  BasePlus0);
902800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *BasePlus1 = IRB.CreateAdd(LocalStackBase,
903800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                                   ConstantInt::get(IntptrTy, LongSize/8));
904800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  BasePlus1 = IRB.CreateIntToPtr(BasePlus1, IntptrPtrTy);
905800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *Description = IRB.CreatePointerCast(
906800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      createPrivateGlobalForString(M, StackDescription.str()),
907800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IntptrTy);
908800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  IRB.CreateStore(Description, BasePlus1);
909800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
910800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Poison the stack redzones at the entry.
911800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *ShadowBase = memToShadow(LocalStackBase, IRB);
912800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRB, ShadowBase, true);
913800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
914800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Value *AsanStackFreeFunc = NULL;
915800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (DoStackMalloc) {
916800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    AsanStackFreeFunc = M.getOrInsertFunction(
917800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        kAsanStackFreeName, IRB.getVoidTy(),
918800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        IntptrTy, IntptrTy, IntptrTy, NULL);
919800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
920800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
921800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  // Unpoison the stack before all ret instructions.
922800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, n = RetVec.size(); i < n; i++) {
923800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Instruction *Ret = RetVec[i];
924800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBuilder<> IRBRet(Ret);
925800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
926800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Mark the current frame as retired.
927800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
928800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                       BasePlus0);
929800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    // Unpoison the stack.
930800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRBRet, ShadowBase, false);
931800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
932800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (DoStackMalloc) {
933800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      IRBRet.CreateCall3(AsanStackFreeFunc, LocalStackBase,
934800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         ConstantInt::get(IntptrTy, LocalStackSize),
935800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany                         OrigStackBase);
936800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
937800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
938800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
939800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (ClDebugStack) {
940800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    DEBUG(dbgs() << F);
941800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
942800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
943800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return true;
944800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
945800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
946800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya SerebryanyBlackList::BlackList(const std::string &Path) {
947800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  Functions = NULL;
948800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *kFunPrefix = "fun:";
949800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (!ClBlackListFile.size()) return;
950800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  std::string Fun;
951800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
952800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  OwningPtr<MemoryBuffer> File;
953800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (error_code EC = MemoryBuffer::getFile(ClBlackListFile.c_str(), File)) {
954800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    errs() << EC.message();
955800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    exit(1);
956800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
957800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  MemoryBuffer *Buff = File.take();
958800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  const char *Data = Buff->getBufferStart();
959800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  size_t DataLen = Buff->getBufferSize();
960800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SmallVector<StringRef, 16> Lines;
961800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  SplitString(StringRef(Data, DataLen), Lines, "\n\r");
962800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  for (size_t i = 0, numLines = Lines.size(); i < numLines; i++) {
963800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    if (Lines[i].startswith(kFunPrefix)) {
964800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      std::string ThisFunc = Lines[i].substr(strlen(kFunPrefix));
965800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      if (Fun.size()) {
966800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Fun += "|";
967800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
968800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      // add ThisFunc replacing * with .*
969800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      for (size_t j = 0, n = ThisFunc.size(); j < n; j++) {
970800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        if (ThisFunc[j] == '*')
971800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany          Fun += '.';
972800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany        Fun += ThisFunc[j];
973800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany      }
974800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    }
975800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
976800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Fun.size()) {
977800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    Functions = new Regex(Fun);
978800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
979800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
980800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany
981800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryanybool BlackList::isIn(const Function &F) {
982800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  if (Functions) {
983800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    bool Res = Functions->match(F.getName());
984800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany    return Res;
985800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  }
986800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany  return false;
987800e03f59896ef4b26d988f1878370bb5aeec0d8Kostya Serebryany}
988