blob: aad31b4c6ede5bbd85830fe8962c5728ed3b0643 [file] [log] [blame]
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001//===-- AddressSanitizer.cpp - memory error detector ------------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// This file is a part of AddressSanitizer, an address sanity checker.
11// Details of the algorithm:
12// http://code.google.com/p/address-sanitizer/wiki/AddressSanitizerAlgorithm
13//
14//===----------------------------------------------------------------------===//
15
16#define DEBUG_TYPE "asan"
17
Kostya Serebryanyb5b86d22012-08-24 16:44:47 +000018#include "BlackList.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000019#include "llvm/Function.h"
20#include "llvm/IRBuilder.h"
Kostya Serebryanyf7b08222012-07-20 09:54:50 +000021#include "llvm/InlineAsm.h"
Chandler Carruth06cb8ed2012-06-29 12:38:19 +000022#include "llvm/IntrinsicInst.h"
23#include "llvm/LLVMContext.h"
24#include "llvm/Module.h"
25#include "llvm/Type.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000026#include "llvm/ADT/ArrayRef.h"
27#include "llvm/ADT/OwningPtr.h"
28#include "llvm/ADT/SmallSet.h"
29#include "llvm/ADT/SmallString.h"
30#include "llvm/ADT/SmallVector.h"
31#include "llvm/ADT/StringExtras.h"
Evgeniy Stepanov06fdbaa2012-05-23 11:52:12 +000032#include "llvm/ADT/Triple.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000033#include "llvm/Support/CommandLine.h"
34#include "llvm/Support/DataTypes.h"
35#include "llvm/Support/Debug.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000036#include "llvm/Support/raw_ostream.h"
37#include "llvm/Support/system_error.h"
Micah Villmow3574eca2012-10-08 16:38:25 +000038#include "llvm/DataLayout.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000039#include "llvm/Target/TargetMachine.h"
40#include "llvm/Transforms/Instrumentation.h"
41#include "llvm/Transforms/Utils/BasicBlockUtils.h"
42#include "llvm/Transforms/Utils/ModuleUtils.h"
Kostya Serebryany800e03f2011-11-16 01:35:23 +000043
44#include <string>
45#include <algorithm>
46
47using namespace llvm;
48
49static const uint64_t kDefaultShadowScale = 3;
50static const uint64_t kDefaultShadowOffset32 = 1ULL << 29;
51static const uint64_t kDefaultShadowOffset64 = 1ULL << 44;
Evgeniy Stepanov06fdbaa2012-05-23 11:52:12 +000052static const uint64_t kDefaultShadowOffsetAndroid = 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +000053
54static const size_t kMaxStackMallocSize = 1 << 16; // 64K
55static const uintptr_t kCurrentStackFrameMagic = 0x41B58AB3;
56static const uintptr_t kRetiredStackFrameMagic = 0x45E0360E;
57
58static const char *kAsanModuleCtorName = "asan.module_ctor";
Kostya Serebryany7bcfc992011-12-15 21:59:03 +000059static const char *kAsanModuleDtorName = "asan.module_dtor";
60static const int kAsanCtorAndCtorPriority = 1;
Kostya Serebryany800e03f2011-11-16 01:35:23 +000061static const char *kAsanReportErrorTemplate = "__asan_report_";
62static const char *kAsanRegisterGlobalsName = "__asan_register_globals";
Kostya Serebryany7bcfc992011-12-15 21:59:03 +000063static const char *kAsanUnregisterGlobalsName = "__asan_unregister_globals";
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +000064static const char *kAsanPoisonGlobalsName = "__asan_before_dynamic_init";
65static const char *kAsanUnpoisonGlobalsName = "__asan_after_dynamic_init";
Kostya Serebryany800e03f2011-11-16 01:35:23 +000066static const char *kAsanInitName = "__asan_init";
Kostya Serebryany95e3cf42012-02-08 21:36:17 +000067static const char *kAsanHandleNoReturnName = "__asan_handle_no_return";
Kostya Serebryany800e03f2011-11-16 01:35:23 +000068static const char *kAsanMappingOffsetName = "__asan_mapping_offset";
69static const char *kAsanMappingScaleName = "__asan_mapping_scale";
70static const char *kAsanStackMallocName = "__asan_stack_malloc";
71static const char *kAsanStackFreeName = "__asan_stack_free";
72
73static const int kAsanStackLeftRedzoneMagic = 0xf1;
74static const int kAsanStackMidRedzoneMagic = 0xf2;
75static const int kAsanStackRightRedzoneMagic = 0xf3;
76static const int kAsanStackPartialRedzoneMagic = 0xf4;
77
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +000078// Accesses sizes are powers of two: 1, 2, 4, 8, 16.
79static const size_t kNumberOfAccessSizes = 5;
80
Kostya Serebryany800e03f2011-11-16 01:35:23 +000081// Command-line flags.
82
83// This flag may need to be replaced with -f[no-]asan-reads.
84static cl::opt<bool> ClInstrumentReads("asan-instrument-reads",
85 cl::desc("instrument read instructions"), cl::Hidden, cl::init(true));
86static cl::opt<bool> ClInstrumentWrites("asan-instrument-writes",
87 cl::desc("instrument write instructions"), cl::Hidden, cl::init(true));
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +000088static cl::opt<bool> ClInstrumentAtomics("asan-instrument-atomics",
89 cl::desc("instrument atomic instructions (rmw, cmpxchg)"),
90 cl::Hidden, cl::init(true));
Kostya Serebryany6e2d5062012-08-15 08:58:58 +000091static cl::opt<bool> ClAlwaysSlowPath("asan-always-slow-path",
92 cl::desc("use instrumentation with slow path for all accesses"),
93 cl::Hidden, cl::init(false));
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +000094// This flag limits the number of instructions to be instrumented
Kostya Serebryany324cbb82012-06-28 09:34:41 +000095// in any given BB. Normally, this should be set to unlimited (INT_MAX),
96// but due to http://llvm.org/bugs/show_bug.cgi?id=12652 we temporary
97// set it to 10000.
98static cl::opt<int> ClMaxInsnsToInstrumentPerBB("asan-max-ins-per-bb",
99 cl::init(10000),
100 cl::desc("maximal number of instructions to instrument in any given BB"),
101 cl::Hidden);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000102// This flag may need to be replaced with -f[no]asan-stack.
103static cl::opt<bool> ClStack("asan-stack",
104 cl::desc("Handle stack memory"), cl::Hidden, cl::init(true));
105// This flag may need to be replaced with -f[no]asan-use-after-return.
106static cl::opt<bool> ClUseAfterReturn("asan-use-after-return",
107 cl::desc("Check return-after-free"), cl::Hidden, cl::init(false));
108// This flag may need to be replaced with -f[no]asan-globals.
109static cl::opt<bool> ClGlobals("asan-globals",
110 cl::desc("Handle global objects"), cl::Hidden, cl::init(true));
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000111static cl::opt<bool> ClInitializers("asan-initialization-order",
112 cl::desc("Handle C++ initializer order"), cl::Hidden, cl::init(false));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000113static cl::opt<bool> ClMemIntrin("asan-memintrin",
114 cl::desc("Handle memset/memcpy/memmove"), cl::Hidden, cl::init(true));
115// This flag may need to be replaced with -fasan-blacklist.
116static cl::opt<std::string> ClBlackListFile("asan-blacklist",
117 cl::desc("File containing the list of functions to ignore "
118 "during instrumentation"), cl::Hidden);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000119
120// These flags allow to change the shadow mapping.
121// The shadow mapping looks like
122// Shadow = (Mem >> scale) + (1 << offset_log)
123static cl::opt<int> ClMappingScale("asan-mapping-scale",
124 cl::desc("scale of asan shadow mapping"), cl::Hidden, cl::init(0));
125static cl::opt<int> ClMappingOffsetLog("asan-mapping-offset-log",
126 cl::desc("offset of asan shadow mapping"), cl::Hidden, cl::init(-1));
127
128// Optimization flags. Not user visible, used mostly for testing
129// and benchmarking the tool.
130static cl::opt<bool> ClOpt("asan-opt",
131 cl::desc("Optimize instrumentation"), cl::Hidden, cl::init(true));
132static cl::opt<bool> ClOptSameTemp("asan-opt-same-temp",
133 cl::desc("Instrument the same temp just once"), cl::Hidden,
134 cl::init(true));
135static cl::opt<bool> ClOptGlobals("asan-opt-globals",
136 cl::desc("Don't instrument scalar globals"), cl::Hidden, cl::init(true));
137
138// Debug flags.
139static cl::opt<int> ClDebug("asan-debug", cl::desc("debug"), cl::Hidden,
140 cl::init(0));
141static cl::opt<int> ClDebugStack("asan-debug-stack", cl::desc("debug stack"),
142 cl::Hidden, cl::init(0));
143static cl::opt<std::string> ClDebugFunc("asan-debug-func",
144 cl::Hidden, cl::desc("Debug func"));
145static cl::opt<int> ClDebugMin("asan-debug-min", cl::desc("Debug min inst"),
146 cl::Hidden, cl::init(-1));
147static cl::opt<int> ClDebugMax("asan-debug-max", cl::desc("Debug man inst"),
148 cl::Hidden, cl::init(-1));
149
150namespace {
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000151/// A set of dynamically initialized globals extracted from metadata.
152class SetOfDynamicallyInitializedGlobals {
153 public:
154 void Init(Module& M) {
155 // Clang generates metadata identifying all dynamically initialized globals.
156 NamedMDNode *DynamicGlobals =
157 M.getNamedMetadata("llvm.asan.dynamically_initialized_globals");
158 if (!DynamicGlobals)
159 return;
160 for (int i = 0, n = DynamicGlobals->getNumOperands(); i < n; ++i) {
161 MDNode *MDN = DynamicGlobals->getOperand(i);
162 assert(MDN->getNumOperands() == 1);
163 Value *VG = MDN->getOperand(0);
164 // The optimizer may optimize away a global entirely, in which case we
165 // cannot instrument access to it.
166 if (!VG)
167 continue;
168 DynInitGlobals.insert(cast<GlobalVariable>(VG));
169 }
170 }
171 bool Contains(GlobalVariable *G) { return DynInitGlobals.count(G) != 0; }
172 private:
173 SmallSet<GlobalValue*, 32> DynInitGlobals;
174};
175
176
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000177/// AddressSanitizer: instrument the code in module to find memory bugs.
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000178struct AddressSanitizer : public FunctionPass {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000179 AddressSanitizer();
Alexander Potapenko25878042012-01-23 11:22:43 +0000180 virtual const char *getPassName() const;
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000181 void instrumentMop(Instruction *I);
182 void instrumentAddress(Instruction *OrigIns, IRBuilder<> &IRB,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000183 Value *Addr, uint32_t TypeSize, bool IsWrite);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000184 Value *createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
185 Value *ShadowValue, uint32_t TypeSize);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000186 Instruction *generateCrashCode(Instruction *InsertBefore, Value *Addr,
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000187 bool IsWrite, size_t AccessSizeIndex);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000188 bool instrumentMemIntrinsic(MemIntrinsic *MI);
189 void instrumentMemIntrinsicParam(Instruction *OrigIns, Value *Addr,
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000190 Value *Size,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000191 Instruction *InsertBefore, bool IsWrite);
192 Value *memToShadow(Value *Shadow, IRBuilder<> &IRB);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000193 bool runOnFunction(Function &F);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000194 void createInitializerPoisonCalls(Module &M,
195 Value *FirstAddr, Value *LastAddr);
Kostya Serebryanya1a8a322012-01-30 23:50:10 +0000196 bool maybeInsertAsanInitAtFunctionEntry(Function &F);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000197 bool poisonStackInFunction(Function &F);
198 virtual bool doInitialization(Module &M);
199 virtual bool doFinalization(Module &M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000200 bool insertGlobalRedzones(Module &M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000201 static char ID; // Pass identification, replacement for typeid
202
203 private:
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000204 uint64_t getAllocaSizeInBytes(AllocaInst *AI) {
205 Type *Ty = AI->getAllocatedType();
Evgeniy Stepanovd8313be2012-03-02 10:41:08 +0000206 uint64_t SizeInBytes = TD->getTypeAllocSize(Ty);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000207 return SizeInBytes;
208 }
209 uint64_t getAlignedSize(uint64_t SizeInBytes) {
210 return ((SizeInBytes + RedzoneSize - 1)
211 / RedzoneSize) * RedzoneSize;
212 }
213 uint64_t getAlignedAllocaSize(AllocaInst *AI) {
214 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
215 return getAlignedSize(SizeInBytes);
216 }
217
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000218 Function *checkInterfaceFunction(Constant *FuncOrBitcast);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000219 bool ShouldInstrumentGlobal(GlobalVariable *G);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000220 void PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec, IRBuilder<> IRB,
221 Value *ShadowBase, bool DoPoison);
Kostya Serebryany5a3a9c92011-11-18 01:41:06 +0000222 bool LooksLikeCodeInBug11395(Instruction *I);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000223 void FindDynamicInitializers(Module &M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000224
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000225 LLVMContext *C;
Micah Villmow3574eca2012-10-08 16:38:25 +0000226 DataLayout *TD;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000227 uint64_t MappingOffset;
228 int MappingScale;
229 size_t RedzoneSize;
230 int LongSize;
231 Type *IntptrTy;
232 Type *IntptrPtrTy;
233 Function *AsanCtorFunction;
234 Function *AsanInitFunction;
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000235 Function *AsanStackMallocFunc, *AsanStackFreeFunc;
236 Function *AsanHandleNoReturnFunc;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000237 Instruction *CtorInsertBefore;
Kostya Serebryanyb5b86d22012-08-24 16:44:47 +0000238 OwningPtr<BlackList> BL;
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +0000239 // This array is indexed by AccessIsWrite and log2(AccessSize).
240 Function *AsanErrorCallback[2][kNumberOfAccessSizes];
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000241 InlineAsm *EmptyAsm;
Kostya Serebryanya5f54f12012-11-01 13:42:40 +0000242 SmallSet<GlobalValue*, 32> GlobalsCreatedByAsan;
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000243 SetOfDynamicallyInitializedGlobals DynamicallyInitializedGlobals;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000244};
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000245
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000246} // namespace
247
248char AddressSanitizer::ID = 0;
249INITIALIZE_PASS(AddressSanitizer, "asan",
250 "AddressSanitizer: detects use-after-free and out-of-bounds bugs.",
251 false, false)
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000252AddressSanitizer::AddressSanitizer() : FunctionPass(ID) { }
253FunctionPass *llvm::createAddressSanitizerPass() {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000254 return new AddressSanitizer();
255}
256
Alexander Potapenko25878042012-01-23 11:22:43 +0000257const char *AddressSanitizer::getPassName() const {
258 return "AddressSanitizer";
259}
260
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000261static size_t TypeSizeToSizeIndex(uint32_t TypeSize) {
262 size_t Res = CountTrailingZeros_32(TypeSize / 8);
263 assert(Res < kNumberOfAccessSizes);
264 return Res;
265}
266
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000267// Create a constant for Str so that we can pass it to the run-time lib.
268static GlobalVariable *createPrivateGlobalForString(Module &M, StringRef Str) {
Chris Lattner18c7f802012-02-05 02:29:43 +0000269 Constant *StrConst = ConstantDataArray::getString(M.getContext(), Str);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000270 return new GlobalVariable(M, StrConst->getType(), true,
271 GlobalValue::PrivateLinkage, StrConst, "");
272}
273
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000274Value *AddressSanitizer::memToShadow(Value *Shadow, IRBuilder<> &IRB) {
275 // Shadow >> scale
276 Shadow = IRB.CreateLShr(Shadow, MappingScale);
277 if (MappingOffset == 0)
278 return Shadow;
279 // (Shadow >> scale) | offset
280 return IRB.CreateOr(Shadow, ConstantInt::get(IntptrTy,
281 MappingOffset));
282}
283
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000284void AddressSanitizer::instrumentMemIntrinsicParam(
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000285 Instruction *OrigIns,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000286 Value *Addr, Value *Size, Instruction *InsertBefore, bool IsWrite) {
287 // Check the first byte.
288 {
289 IRBuilder<> IRB(InsertBefore);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000290 instrumentAddress(OrigIns, IRB, Addr, 8, IsWrite);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000291 }
292 // Check the last byte.
293 {
294 IRBuilder<> IRB(InsertBefore);
295 Value *SizeMinusOne = IRB.CreateSub(
296 Size, ConstantInt::get(Size->getType(), 1));
297 SizeMinusOne = IRB.CreateIntCast(SizeMinusOne, IntptrTy, false);
298 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
299 Value *AddrPlusSizeMinisOne = IRB.CreateAdd(AddrLong, SizeMinusOne);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000300 instrumentAddress(OrigIns, IRB, AddrPlusSizeMinisOne, 8, IsWrite);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000301 }
302}
303
304// Instrument memset/memmove/memcpy
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000305bool AddressSanitizer::instrumentMemIntrinsic(MemIntrinsic *MI) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000306 Value *Dst = MI->getDest();
307 MemTransferInst *MemTran = dyn_cast<MemTransferInst>(MI);
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000308 Value *Src = MemTran ? MemTran->getSource() : 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000309 Value *Length = MI->getLength();
310
311 Constant *ConstLength = dyn_cast<Constant>(Length);
312 Instruction *InsertBefore = MI;
313 if (ConstLength) {
314 if (ConstLength->isNullValue()) return false;
315 } else {
316 // The size is not a constant so it could be zero -- check at run-time.
317 IRBuilder<> IRB(InsertBefore);
318
319 Value *Cmp = IRB.CreateICmpNE(Length,
Kostya Serebryany56139bc2012-07-02 11:42:29 +0000320 Constant::getNullValue(Length->getType()));
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000321 InsertBefore = SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000322 }
323
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000324 instrumentMemIntrinsicParam(MI, Dst, Length, InsertBefore, true);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000325 if (Src)
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000326 instrumentMemIntrinsicParam(MI, Src, Length, InsertBefore, false);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000327 return true;
328}
329
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000330// If I is an interesting memory access, return the PointerOperand
331// and set IsWrite. Otherwise return NULL.
332static Value *isInterestingMemoryAccess(Instruction *I, bool *IsWrite) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000333 if (LoadInst *LI = dyn_cast<LoadInst>(I)) {
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000334 if (!ClInstrumentReads) return NULL;
335 *IsWrite = false;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000336 return LI->getPointerOperand();
337 }
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000338 if (StoreInst *SI = dyn_cast<StoreInst>(I)) {
339 if (!ClInstrumentWrites) return NULL;
340 *IsWrite = true;
341 return SI->getPointerOperand();
342 }
343 if (AtomicRMWInst *RMW = dyn_cast<AtomicRMWInst>(I)) {
344 if (!ClInstrumentAtomics) return NULL;
345 *IsWrite = true;
346 return RMW->getPointerOperand();
347 }
348 if (AtomicCmpXchgInst *XCHG = dyn_cast<AtomicCmpXchgInst>(I)) {
349 if (!ClInstrumentAtomics) return NULL;
350 *IsWrite = true;
351 return XCHG->getPointerOperand();
352 }
353 return NULL;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000354}
355
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000356void AddressSanitizer::instrumentMop(Instruction *I) {
Axel Naumann3780ad82012-09-17 14:20:57 +0000357 bool IsWrite = false;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000358 Value *Addr = isInterestingMemoryAccess(I, &IsWrite);
359 assert(Addr);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000360 if (ClOpt && ClOptGlobals) {
361 if (GlobalVariable *G = dyn_cast<GlobalVariable>(Addr)) {
362 // If initialization order checking is disabled, a simple access to a
363 // dynamically initialized global is always valid.
364 if (!ClInitializers)
365 return;
366 // If a global variable does not have dynamic initialization we don't
367 // have to instrument it. However, if a global has external linkage, we
368 // assume it has dynamic initialization, as it may have an initializer
369 // in a different TU.
370 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000371 !DynamicallyInitializedGlobals.Contains(G))
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000372 return;
373 }
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000374 }
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000375
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000376 Type *OrigPtrTy = Addr->getType();
377 Type *OrigTy = cast<PointerType>(OrigPtrTy)->getElementType();
378
379 assert(OrigTy->isSized());
380 uint32_t TypeSize = TD->getTypeStoreSizeInBits(OrigTy);
381
382 if (TypeSize != 8 && TypeSize != 16 &&
383 TypeSize != 32 && TypeSize != 64 && TypeSize != 128) {
384 // Ignore all unusual sizes.
385 return;
386 }
387
388 IRBuilder<> IRB(I);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000389 instrumentAddress(I, IRB, Addr, TypeSize, IsWrite);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000390}
391
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000392// Validate the result of Module::getOrInsertFunction called for an interface
393// function of AddressSanitizer. If the instrumented module defines a function
394// with the same name, their prototypes must match, otherwise
395// getOrInsertFunction returns a bitcast.
396Function *AddressSanitizer::checkInterfaceFunction(Constant *FuncOrBitcast) {
397 if (isa<Function>(FuncOrBitcast)) return cast<Function>(FuncOrBitcast);
398 FuncOrBitcast->dump();
399 report_fatal_error("trying to redefine an AddressSanitizer "
400 "interface function");
401}
402
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000403Instruction *AddressSanitizer::generateCrashCode(
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000404 Instruction *InsertBefore, Value *Addr,
Kostya Serebryany4f0c6962012-07-17 11:04:12 +0000405 bool IsWrite, size_t AccessSizeIndex) {
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000406 IRBuilder<> IRB(InsertBefore);
407 CallInst *Call = IRB.CreateCall(AsanErrorCallback[IsWrite][AccessSizeIndex],
408 Addr);
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000409 // We don't do Call->setDoesNotReturn() because the BB already has
410 // UnreachableInst at the end.
411 // This EmptyAsm is required to avoid callback merge.
412 IRB.CreateCall(EmptyAsm);
Kostya Serebryany3c7faae2012-01-06 18:09:21 +0000413 return Call;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000414}
415
Kostya Serebryany2735cf42012-07-16 17:12:07 +0000416Value *AddressSanitizer::createSlowPathCmp(IRBuilder<> &IRB, Value *AddrLong,
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000417 Value *ShadowValue,
418 uint32_t TypeSize) {
419 size_t Granularity = 1 << MappingScale;
420 // Addr & (Granularity - 1)
421 Value *LastAccessedByte = IRB.CreateAnd(
422 AddrLong, ConstantInt::get(IntptrTy, Granularity - 1));
423 // (Addr & (Granularity - 1)) + size - 1
424 if (TypeSize / 8 > 1)
425 LastAccessedByte = IRB.CreateAdd(
426 LastAccessedByte, ConstantInt::get(IntptrTy, TypeSize / 8 - 1));
427 // (uint8_t) ((Addr & (Granularity-1)) + size - 1)
428 LastAccessedByte = IRB.CreateIntCast(
Kostya Serebryany6e2d5062012-08-15 08:58:58 +0000429 LastAccessedByte, ShadowValue->getType(), false);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000430 // ((uint8_t) ((Addr & (Granularity-1)) + size - 1)) >= ShadowValue
431 return IRB.CreateICmpSGE(LastAccessedByte, ShadowValue);
432}
433
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000434void AddressSanitizer::instrumentAddress(Instruction *OrigIns,
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000435 IRBuilder<> &IRB, Value *Addr,
436 uint32_t TypeSize, bool IsWrite) {
437 Value *AddrLong = IRB.CreatePointerCast(Addr, IntptrTy);
438
439 Type *ShadowTy = IntegerType::get(
440 *C, std::max(8U, TypeSize >> MappingScale));
441 Type *ShadowPtrTy = PointerType::get(ShadowTy, 0);
442 Value *ShadowPtr = memToShadow(AddrLong, IRB);
443 Value *CmpVal = Constant::getNullValue(ShadowTy);
444 Value *ShadowValue = IRB.CreateLoad(
445 IRB.CreateIntToPtr(ShadowPtr, ShadowPtrTy));
446
447 Value *Cmp = IRB.CreateICmpNE(ShadowValue, CmpVal);
Kostya Serebryany11c2a472012-08-13 14:08:46 +0000448 size_t AccessSizeIndex = TypeSizeToSizeIndex(TypeSize);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000449 size_t Granularity = 1 << MappingScale;
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000450 TerminatorInst *CrashTerm = 0;
451
Kostya Serebryany6e2d5062012-08-15 08:58:58 +0000452 if (ClAlwaysSlowPath || (TypeSize < 8 * Granularity)) {
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000453 TerminatorInst *CheckTerm =
454 SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), false);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000455 assert(dyn_cast<BranchInst>(CheckTerm)->isUnconditional());
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000456 BasicBlock *NextBB = CheckTerm->getSuccessor(0);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000457 IRB.SetInsertPoint(CheckTerm);
458 Value *Cmp2 = createSlowPathCmp(IRB, AddrLong, ShadowValue, TypeSize);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000459 BasicBlock *CrashBlock =
460 BasicBlock::Create(*C, "", NextBB->getParent(), NextBB);
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000461 CrashTerm = new UnreachableInst(*C, CrashBlock);
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000462 BranchInst *NewTerm = BranchInst::Create(CrashBlock, NextBB, Cmp2);
463 ReplaceInstWithInst(CheckTerm, NewTerm);
Kostya Serebryanyc0ed3e52012-07-16 16:15:40 +0000464 } else {
Evgeniy Stepanov4a2dec02012-10-19 10:48:31 +0000465 CrashTerm = SplitBlockAndInsertIfThen(cast<Instruction>(Cmp), true);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000466 }
Kostya Serebryanyebd64542012-08-14 14:04:51 +0000467
468 Instruction *Crash =
469 generateCrashCode(CrashTerm, AddrLong, IsWrite, AccessSizeIndex);
470 Crash->setDebugLoc(OrigIns->getDebugLoc());
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000471}
472
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000473void AddressSanitizer::createInitializerPoisonCalls(Module &M,
474 Value *FirstAddr,
475 Value *LastAddr) {
476 // We do all of our poisoning and unpoisoning within _GLOBAL__I_a.
477 Function *GlobalInit = M.getFunction("_GLOBAL__I_a");
478 // If that function is not present, this TU contains no globals, or they have
479 // all been optimized away
480 if (!GlobalInit)
481 return;
482
483 // Set up the arguments to our poison/unpoison functions.
484 IRBuilder<> IRB(GlobalInit->begin()->getFirstInsertionPt());
485
486 // Declare our poisoning and unpoisoning functions.
487 Function *AsanPoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
488 kAsanPoisonGlobalsName, IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
489 AsanPoisonGlobals->setLinkage(Function::ExternalLinkage);
490 Function *AsanUnpoisonGlobals = checkInterfaceFunction(M.getOrInsertFunction(
491 kAsanUnpoisonGlobalsName, IRB.getVoidTy(), NULL));
492 AsanUnpoisonGlobals->setLinkage(Function::ExternalLinkage);
493
494 // Add a call to poison all external globals before the given function starts.
495 IRB.CreateCall2(AsanPoisonGlobals, FirstAddr, LastAddr);
496
497 // Add calls to unpoison all globals before each return instruction.
498 for (Function::iterator I = GlobalInit->begin(), E = GlobalInit->end();
499 I != E; ++I) {
500 if (ReturnInst *RI = dyn_cast<ReturnInst>(I->getTerminator())) {
501 CallInst::Create(AsanUnpoisonGlobals, "", RI);
502 }
503 }
504}
505
506bool AddressSanitizer::ShouldInstrumentGlobal(GlobalVariable *G) {
507 Type *Ty = cast<PointerType>(G->getType())->getElementType();
Kostya Serebryany324d96b2012-10-17 13:40:06 +0000508 DEBUG(dbgs() << "GLOBAL: " << *G << "\n");
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000509
Kostya Serebryany59a4a472012-09-05 07:29:56 +0000510 if (BL->isIn(*G)) return false;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000511 if (!Ty->isSized()) return false;
512 if (!G->hasInitializer()) return false;
Alexey Samsonov9ce84c12012-11-02 12:20:34 +0000513 if (GlobalsCreatedByAsan.count(G)) return false; // Our own global.
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000514 // Touch only those globals that will not be defined in other modules.
515 // Don't handle ODR type linkages since other modules may be built w/o asan.
516 if (G->getLinkage() != GlobalVariable::ExternalLinkage &&
517 G->getLinkage() != GlobalVariable::PrivateLinkage &&
518 G->getLinkage() != GlobalVariable::InternalLinkage)
519 return false;
520 // Two problems with thread-locals:
521 // - The address of the main thread's copy can't be computed at link-time.
522 // - Need to poison all copies, not just the main thread's one.
523 if (G->isThreadLocal())
524 return false;
525 // For now, just ignore this Alloca if the alignment is large.
526 if (G->getAlignment() > RedzoneSize) return false;
527
528 // Ignore all the globals with the names starting with "\01L_OBJC_".
529 // Many of those are put into the .cstring section. The linker compresses
530 // that section by removing the spare \0s after the string terminator, so
531 // our redzones get broken.
532 if ((G->getName().find("\01L_OBJC_") == 0) ||
533 (G->getName().find("\01l_OBJC_") == 0)) {
534 DEBUG(dbgs() << "Ignoring \\01L_OBJC_* global: " << *G);
535 return false;
536 }
537
538 if (G->hasSection()) {
539 StringRef Section(G->getSection());
540 // Ignore the globals from the __OBJC section. The ObjC runtime assumes
541 // those conform to /usr/lib/objc/runtime.h, so we can't add redzones to
542 // them.
543 if ((Section.find("__OBJC,") == 0) ||
544 (Section.find("__DATA, __objc_") == 0)) {
545 DEBUG(dbgs() << "Ignoring ObjC runtime global: " << *G);
546 return false;
547 }
548 // See http://code.google.com/p/address-sanitizer/issues/detail?id=32
549 // Constant CFString instances are compiled in the following way:
550 // -- the string buffer is emitted into
551 // __TEXT,__cstring,cstring_literals
552 // -- the constant NSConstantString structure referencing that buffer
553 // is placed into __DATA,__cfstring
554 // Therefore there's no point in placing redzones into __DATA,__cfstring.
555 // Moreover, it causes the linker to crash on OS X 10.7
556 if (Section.find("__DATA,__cfstring") == 0) {
557 DEBUG(dbgs() << "Ignoring CFString: " << *G);
558 return false;
559 }
560 }
561
562 return true;
563}
564
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000565// This function replaces all global variables with new variables that have
566// trailing redzones. It also creates a function that poisons
567// redzones and inserts this function into llvm.global_ctors.
568bool AddressSanitizer::insertGlobalRedzones(Module &M) {
569 SmallVector<GlobalVariable *, 16> GlobalsToChange;
570
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000571 for (Module::GlobalListType::iterator G = M.global_begin(),
572 E = M.global_end(); G != E; ++G) {
573 if (ShouldInstrumentGlobal(G))
574 GlobalsToChange.push_back(G);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000575 }
576
577 size_t n = GlobalsToChange.size();
578 if (n == 0) return false;
579
580 // A global is described by a structure
581 // size_t beg;
582 // size_t size;
583 // size_t size_with_redzone;
584 // const char *name;
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000585 // size_t has_dynamic_init;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000586 // We initialize an array of such structures and pass it to a run-time call.
587 StructType *GlobalStructTy = StructType::get(IntptrTy, IntptrTy,
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000588 IntptrTy, IntptrTy,
589 IntptrTy, NULL);
590 SmallVector<Constant *, 16> Initializers(n), DynamicInit;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000591
592 IRBuilder<> IRB(CtorInsertBefore);
593
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000594 // The addresses of the first and last dynamically initialized globals in
595 // this TU. Used in initialization order checking.
596 Value *FirstDynamic = 0, *LastDynamic = 0;
597
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000598 for (size_t i = 0; i < n; i++) {
599 GlobalVariable *G = GlobalsToChange[i];
600 PointerType *PtrTy = cast<PointerType>(G->getType());
601 Type *Ty = PtrTy->getElementType();
Kostya Serebryany208a4ff2012-03-21 15:28:50 +0000602 uint64_t SizeInBytes = TD->getTypeAllocSize(Ty);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000603 uint64_t RightRedzoneSize = RedzoneSize +
604 (RedzoneSize - (SizeInBytes % RedzoneSize));
605 Type *RightRedZoneTy = ArrayType::get(IRB.getInt8Ty(), RightRedzoneSize);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000606 // Determine whether this global should be poisoned in initialization.
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000607 bool GlobalHasDynamicInitializer =
608 DynamicallyInitializedGlobals.Contains(G);
Kostya Serebryany59a4a472012-09-05 07:29:56 +0000609 // Don't check initialization order if this global is blacklisted.
Kostya Serebryany7dadac62012-09-05 09:00:18 +0000610 GlobalHasDynamicInitializer &= !BL->isInInit(*G);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000611
612 StructType *NewTy = StructType::get(Ty, RightRedZoneTy, NULL);
613 Constant *NewInitializer = ConstantStruct::get(
614 NewTy, G->getInitializer(),
615 Constant::getNullValue(RightRedZoneTy), NULL);
616
Kostya Serebryanya4b2b1d2011-12-15 22:55:55 +0000617 SmallString<2048> DescriptionOfGlobal = G->getName();
618 DescriptionOfGlobal += " (";
619 DescriptionOfGlobal += M.getModuleIdentifier();
620 DescriptionOfGlobal += ")";
621 GlobalVariable *Name = createPrivateGlobalForString(M, DescriptionOfGlobal);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000622
623 // Create a new global variable with enough space for a redzone.
624 GlobalVariable *NewGlobal = new GlobalVariable(
625 M, NewTy, G->isConstant(), G->getLinkage(),
Hans Wennborgce718ff2012-06-23 11:37:03 +0000626 NewInitializer, "", G, G->getThreadLocalMode());
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000627 NewGlobal->copyAttributesFrom(G);
628 NewGlobal->setAlignment(RedzoneSize);
629
630 Value *Indices2[2];
631 Indices2[0] = IRB.getInt32(0);
632 Indices2[1] = IRB.getInt32(0);
633
634 G->replaceAllUsesWith(
Kostya Serebryanyf1639ab2012-01-28 04:27:16 +0000635 ConstantExpr::getGetElementPtr(NewGlobal, Indices2, true));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000636 NewGlobal->takeName(G);
637 G->eraseFromParent();
638
639 Initializers[i] = ConstantStruct::get(
640 GlobalStructTy,
641 ConstantExpr::getPointerCast(NewGlobal, IntptrTy),
642 ConstantInt::get(IntptrTy, SizeInBytes),
643 ConstantInt::get(IntptrTy, SizeInBytes + RightRedzoneSize),
644 ConstantExpr::getPointerCast(Name, IntptrTy),
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000645 ConstantInt::get(IntptrTy, GlobalHasDynamicInitializer),
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000646 NULL);
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000647
648 // Populate the first and last globals declared in this TU.
649 if (ClInitializers && GlobalHasDynamicInitializer) {
650 LastDynamic = ConstantExpr::getPointerCast(NewGlobal, IntptrTy);
651 if (FirstDynamic == 0)
652 FirstDynamic = LastDynamic;
653 }
654
Kostya Serebryany324d96b2012-10-17 13:40:06 +0000655 DEBUG(dbgs() << "NEW GLOBAL: " << *NewGlobal << "\n");
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000656 }
657
658 ArrayType *ArrayOfGlobalStructTy = ArrayType::get(GlobalStructTy, n);
659 GlobalVariable *AllGlobals = new GlobalVariable(
660 M, ArrayOfGlobalStructTy, false, GlobalVariable::PrivateLinkage,
661 ConstantArray::get(ArrayOfGlobalStructTy, Initializers), "");
662
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000663 // Create calls for poisoning before initializers run and unpoisoning after.
664 if (ClInitializers && FirstDynamic && LastDynamic)
665 createInitializerPoisonCalls(M, FirstDynamic, LastDynamic);
666
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000667 Function *AsanRegisterGlobals = checkInterfaceFunction(M.getOrInsertFunction(
Kostya Serebryany9b9f87a2012-08-21 08:24:25 +0000668 kAsanRegisterGlobalsName, IRB.getVoidTy(),
669 IntptrTy, IntptrTy, NULL));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000670 AsanRegisterGlobals->setLinkage(Function::ExternalLinkage);
671
672 IRB.CreateCall2(AsanRegisterGlobals,
673 IRB.CreatePointerCast(AllGlobals, IntptrTy),
674 ConstantInt::get(IntptrTy, n));
675
Kostya Serebryany7bcfc992011-12-15 21:59:03 +0000676 // We also need to unregister globals at the end, e.g. when a shared library
677 // gets closed.
678 Function *AsanDtorFunction = Function::Create(
679 FunctionType::get(Type::getVoidTy(*C), false),
680 GlobalValue::InternalLinkage, kAsanModuleDtorName, &M);
681 BasicBlock *AsanDtorBB = BasicBlock::Create(*C, "", AsanDtorFunction);
682 IRBuilder<> IRB_Dtor(ReturnInst::Create(*C, AsanDtorBB));
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000683 Function *AsanUnregisterGlobals =
684 checkInterfaceFunction(M.getOrInsertFunction(
685 kAsanUnregisterGlobalsName,
686 IRB.getVoidTy(), IntptrTy, IntptrTy, NULL));
Kostya Serebryany7bcfc992011-12-15 21:59:03 +0000687 AsanUnregisterGlobals->setLinkage(Function::ExternalLinkage);
688
689 IRB_Dtor.CreateCall2(AsanUnregisterGlobals,
690 IRB.CreatePointerCast(AllGlobals, IntptrTy),
691 ConstantInt::get(IntptrTy, n));
692 appendToGlobalDtors(M, AsanDtorFunction, kAsanCtorAndCtorPriority);
693
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000694 DEBUG(dbgs() << M);
695 return true;
696}
697
698// virtual
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000699bool AddressSanitizer::doInitialization(Module &M) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000700 // Initialize the private fields. No one has accessed them before.
Micah Villmow3574eca2012-10-08 16:38:25 +0000701 TD = getAnalysisIfAvailable<DataLayout>();
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000702
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000703 if (!TD)
704 return false;
Kostya Serebryanyb5b86d22012-08-24 16:44:47 +0000705 BL.reset(new BlackList(ClBlackListFile));
Kostya Serebryanyca23d432012-11-20 13:00:01 +0000706 DynamicallyInitializedGlobals.Init(M);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000707
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000708 C = &(M.getContext());
Chandler Carruth426c2bf2012-11-01 09:14:31 +0000709 LongSize = TD->getPointerSizeInBits();
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000710 IntptrTy = Type::getIntNTy(*C, LongSize);
711 IntptrPtrTy = PointerType::get(IntptrTy, 0);
712
713 AsanCtorFunction = Function::Create(
714 FunctionType::get(Type::getVoidTy(*C), false),
715 GlobalValue::InternalLinkage, kAsanModuleCtorName, &M);
716 BasicBlock *AsanCtorBB = BasicBlock::Create(*C, "", AsanCtorFunction);
717 CtorInsertBefore = ReturnInst::Create(*C, AsanCtorBB);
718
719 // call __asan_init in the module ctor.
720 IRBuilder<> IRB(CtorInsertBefore);
Alexander Potapenko55cabae2012-04-23 10:47:31 +0000721 AsanInitFunction = checkInterfaceFunction(
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000722 M.getOrInsertFunction(kAsanInitName, IRB.getVoidTy(), NULL));
723 AsanInitFunction->setLinkage(Function::ExternalLinkage);
724 IRB.CreateCall(AsanInitFunction);
725
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +0000726 // Create __asan_report* callbacks.
727 for (size_t AccessIsWrite = 0; AccessIsWrite <= 1; AccessIsWrite++) {
728 for (size_t AccessSizeIndex = 0; AccessSizeIndex < kNumberOfAccessSizes;
729 AccessSizeIndex++) {
730 // IsWrite and TypeSize are encoded in the function name.
731 std::string FunctionName = std::string(kAsanReportErrorTemplate) +
732 (AccessIsWrite ? "store" : "load") + itostr(1 << AccessSizeIndex);
Kostya Serebryany4f0c6962012-07-17 11:04:12 +0000733 // If we are merging crash callbacks, they have two parameters.
Kostya Serebryany7846c1c2012-11-07 12:42:18 +0000734 AsanErrorCallback[AccessIsWrite][AccessSizeIndex] =
735 checkInterfaceFunction(M.getOrInsertFunction(
736 FunctionName, IRB.getVoidTy(), IntptrTy, NULL));
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +0000737 }
738 }
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000739
740 AsanStackMallocFunc = checkInterfaceFunction(M.getOrInsertFunction(
741 kAsanStackMallocName, IntptrTy, IntptrTy, IntptrTy, NULL));
742 AsanStackFreeFunc = checkInterfaceFunction(M.getOrInsertFunction(
743 kAsanStackFreeName, IRB.getVoidTy(),
744 IntptrTy, IntptrTy, IntptrTy, NULL));
745 AsanHandleNoReturnFunc = checkInterfaceFunction(M.getOrInsertFunction(
746 kAsanHandleNoReturnName, IRB.getVoidTy(), NULL));
747
Kostya Serebryanyf7b08222012-07-20 09:54:50 +0000748 // We insert an empty inline asm after __asan_report* to avoid callback merge.
749 EmptyAsm = InlineAsm::get(FunctionType::get(IRB.getVoidTy(), false),
750 StringRef(""), StringRef(""),
751 /*hasSideEffects=*/true);
Kostya Serebryany9db5b5f2012-07-16 14:09:42 +0000752
Evgeniy Stepanov06fdbaa2012-05-23 11:52:12 +0000753 llvm::Triple targetTriple(M.getTargetTriple());
Logan Chien43bf7092012-09-02 09:29:46 +0000754 bool isAndroid = targetTriple.getEnvironment() == llvm::Triple::Android;
Evgeniy Stepanov06fdbaa2012-05-23 11:52:12 +0000755
756 MappingOffset = isAndroid ? kDefaultShadowOffsetAndroid :
757 (LongSize == 32 ? kDefaultShadowOffset32 : kDefaultShadowOffset64);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000758 if (ClMappingOffsetLog >= 0) {
759 if (ClMappingOffsetLog == 0) {
760 // special case
761 MappingOffset = 0;
762 } else {
763 MappingOffset = 1ULL << ClMappingOffsetLog;
764 }
765 }
766 MappingScale = kDefaultShadowScale;
767 if (ClMappingScale) {
768 MappingScale = ClMappingScale;
769 }
770 // Redzone used for stack and globals is at least 32 bytes.
771 // For scales 6 and 7, the redzone has to be 64 and 128 bytes respectively.
772 RedzoneSize = std::max(32, (int)(1 << MappingScale));
773
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000774
Kostya Serebryany8c0134a2012-03-19 16:40:35 +0000775 if (ClMappingOffsetLog >= 0) {
776 // Tell the run-time the current values of mapping offset and scale.
777 GlobalValue *asan_mapping_offset =
778 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
779 ConstantInt::get(IntptrTy, MappingOffset),
780 kAsanMappingOffsetName);
781 // Read the global, otherwise it may be optimized away.
782 IRB.CreateLoad(asan_mapping_offset, true);
783 }
784 if (ClMappingScale) {
785 GlobalValue *asan_mapping_scale =
786 new GlobalVariable(M, IntptrTy, true, GlobalValue::LinkOnceODRLinkage,
787 ConstantInt::get(IntptrTy, MappingScale),
788 kAsanMappingScaleName);
789 // Read the global, otherwise it may be optimized away.
790 IRB.CreateLoad(asan_mapping_scale, true);
791 }
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000792
Kostya Serebryany7bcfc992011-12-15 21:59:03 +0000793 appendToGlobalCtors(M, AsanCtorFunction, kAsanCtorAndCtorPriority);
Kostya Serebryany9b027412011-12-12 18:01:46 +0000794
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000795 return true;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000796}
797
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000798bool AddressSanitizer::doFinalization(Module &M) {
799 // We transform the globals at the very end so that the optimization analysis
800 // works on the original globals.
801 if (ClGlobals)
802 return insertGlobalRedzones(M);
803 return false;
804}
805
806
Kostya Serebryanya1a8a322012-01-30 23:50:10 +0000807bool AddressSanitizer::maybeInsertAsanInitAtFunctionEntry(Function &F) {
808 // For each NSObject descendant having a +load method, this method is invoked
809 // by the ObjC runtime before any of the static constructors is called.
810 // Therefore we need to instrument such methods with a call to __asan_init
811 // at the beginning in order to initialize our runtime before any access to
812 // the shadow memory.
813 // We cannot just ignore these methods, because they may call other
814 // instrumented functions.
815 if (F.getName().find(" load]") != std::string::npos) {
816 IRBuilder<> IRB(F.begin()->begin());
817 IRB.CreateCall(AsanInitFunction);
818 return true;
819 }
820 return false;
821}
822
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000823bool AddressSanitizer::runOnFunction(Function &F) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000824 if (BL->isIn(F)) return false;
825 if (&F == AsanCtorFunction) return false;
Kostya Serebryany324d96b2012-10-17 13:40:06 +0000826 DEBUG(dbgs() << "ASAN instrumenting:\n" << F << "\n");
Kostya Serebryanya1a8a322012-01-30 23:50:10 +0000827
828 // If needed, insert __asan_init before checking for AddressSafety attr.
829 maybeInsertAsanInitAtFunctionEntry(F);
830
Bill Wendling67658342012-10-09 07:45:08 +0000831 if (!F.getFnAttributes().hasAttribute(Attributes::AddressSafety))
832 return false;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000833
834 if (!ClDebugFunc.empty() && ClDebugFunc != F.getName())
835 return false;
Bill Wendling67658342012-10-09 07:45:08 +0000836
837 // We want to instrument every address only once per basic block (unless there
838 // are calls between uses).
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000839 SmallSet<Value*, 16> TempsToInstrument;
840 SmallVector<Instruction*, 16> ToInstrument;
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000841 SmallVector<Instruction*, 8> NoReturnCalls;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000842 bool IsWrite;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000843
844 // Fill the set of memory operations to instrument.
845 for (Function::iterator FI = F.begin(), FE = F.end();
846 FI != FE; ++FI) {
847 TempsToInstrument.clear();
Kostya Serebryany324cbb82012-06-28 09:34:41 +0000848 int NumInsnsPerBB = 0;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000849 for (BasicBlock::iterator BI = FI->begin(), BE = FI->end();
850 BI != BE; ++BI) {
Kostya Serebryanybcb55ce2012-01-11 18:15:23 +0000851 if (LooksLikeCodeInBug11395(BI)) return false;
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000852 if (Value *Addr = isInterestingMemoryAccess(BI, &IsWrite)) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000853 if (ClOpt && ClOptSameTemp) {
854 if (!TempsToInstrument.insert(Addr))
855 continue; // We've seen this temp in the current BB.
856 }
857 } else if (isa<MemIntrinsic>(BI) && ClMemIntrin) {
858 // ok, take it.
859 } else {
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000860 if (CallInst *CI = dyn_cast<CallInst>(BI)) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000861 // A call inside BB.
862 TempsToInstrument.clear();
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000863 if (CI->doesNotReturn()) {
864 NoReturnCalls.push_back(CI);
865 }
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000866 }
867 continue;
868 }
869 ToInstrument.push_back(BI);
Kostya Serebryany324cbb82012-06-28 09:34:41 +0000870 NumInsnsPerBB++;
871 if (NumInsnsPerBB >= ClMaxInsnsToInstrumentPerBB)
872 break;
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000873 }
874 }
875
876 // Instrument.
877 int NumInstrumented = 0;
878 for (size_t i = 0, n = ToInstrument.size(); i != n; i++) {
879 Instruction *Inst = ToInstrument[i];
880 if (ClDebugMin < 0 || ClDebugMax < 0 ||
881 (NumInstrumented >= ClDebugMin && NumInstrumented <= ClDebugMax)) {
Kostya Serebryanye6cf2e02012-05-30 09:04:06 +0000882 if (isInterestingMemoryAccess(Inst, &IsWrite))
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000883 instrumentMop(Inst);
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000884 else
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000885 instrumentMemIntrinsic(cast<MemIntrinsic>(Inst));
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000886 }
887 NumInstrumented++;
888 }
889
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000890 bool ChangedStack = poisonStackInFunction(F);
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000891
892 // We must unpoison the stack before every NoReturn call (throw, _exit, etc).
893 // See e.g. http://code.google.com/p/address-sanitizer/issues/detail?id=37
894 for (size_t i = 0, n = NoReturnCalls.size(); i != n; i++) {
895 Instruction *CI = NoReturnCalls[i];
896 IRBuilder<> IRB(CI);
Kostya Serebryanyee4edec2012-10-15 14:20:06 +0000897 IRB.CreateCall(AsanHandleNoReturnFunc);
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000898 }
Kostya Serebryany324d96b2012-10-17 13:40:06 +0000899 DEBUG(dbgs() << "ASAN done instrumenting:\n" << F << "\n");
Kostya Serebryany95e3cf42012-02-08 21:36:17 +0000900
901 return NumInstrumented > 0 || ChangedStack || !NoReturnCalls.empty();
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000902}
903
904static uint64_t ValueForPoison(uint64_t PoisonByte, size_t ShadowRedzoneSize) {
905 if (ShadowRedzoneSize == 1) return PoisonByte;
906 if (ShadowRedzoneSize == 2) return (PoisonByte << 8) + PoisonByte;
907 if (ShadowRedzoneSize == 4)
908 return (PoisonByte << 24) + (PoisonByte << 16) +
909 (PoisonByte << 8) + (PoisonByte);
Craig Topper85814382012-02-07 05:05:23 +0000910 llvm_unreachable("ShadowRedzoneSize is either 1, 2 or 4");
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000911}
912
913static void PoisonShadowPartialRightRedzone(uint8_t *Shadow,
914 size_t Size,
915 size_t RedzoneSize,
916 size_t ShadowGranularity,
917 uint8_t Magic) {
918 for (size_t i = 0; i < RedzoneSize;
919 i+= ShadowGranularity, Shadow++) {
920 if (i + ShadowGranularity <= Size) {
921 *Shadow = 0; // fully addressable
922 } else if (i >= Size) {
923 *Shadow = Magic; // unaddressable
924 } else {
925 *Shadow = Size - i; // first Size-i bytes are addressable
926 }
927 }
928}
929
930void AddressSanitizer::PoisonStack(const ArrayRef<AllocaInst*> &AllocaVec,
931 IRBuilder<> IRB,
932 Value *ShadowBase, bool DoPoison) {
933 size_t ShadowRZSize = RedzoneSize >> MappingScale;
934 assert(ShadowRZSize >= 1 && ShadowRZSize <= 4);
935 Type *RZTy = Type::getIntNTy(*C, ShadowRZSize * 8);
936 Type *RZPtrTy = PointerType::get(RZTy, 0);
937
938 Value *PoisonLeft = ConstantInt::get(RZTy,
939 ValueForPoison(DoPoison ? kAsanStackLeftRedzoneMagic : 0LL, ShadowRZSize));
940 Value *PoisonMid = ConstantInt::get(RZTy,
941 ValueForPoison(DoPoison ? kAsanStackMidRedzoneMagic : 0LL, ShadowRZSize));
942 Value *PoisonRight = ConstantInt::get(RZTy,
943 ValueForPoison(DoPoison ? kAsanStackRightRedzoneMagic : 0LL, ShadowRZSize));
944
945 // poison the first red zone.
946 IRB.CreateStore(PoisonLeft, IRB.CreateIntToPtr(ShadowBase, RZPtrTy));
947
948 // poison all other red zones.
949 uint64_t Pos = RedzoneSize;
950 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
951 AllocaInst *AI = AllocaVec[i];
952 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
953 uint64_t AlignedSize = getAlignedAllocaSize(AI);
954 assert(AlignedSize - SizeInBytes < RedzoneSize);
955 Value *Ptr = NULL;
956
957 Pos += AlignedSize;
958
959 assert(ShadowBase->getType() == IntptrTy);
960 if (SizeInBytes < AlignedSize) {
961 // Poison the partial redzone at right
962 Ptr = IRB.CreateAdd(
963 ShadowBase, ConstantInt::get(IntptrTy,
964 (Pos >> MappingScale) - ShadowRZSize));
965 size_t AddressableBytes = RedzoneSize - (AlignedSize - SizeInBytes);
966 uint32_t Poison = 0;
967 if (DoPoison) {
968 PoisonShadowPartialRightRedzone((uint8_t*)&Poison, AddressableBytes,
969 RedzoneSize,
970 1ULL << MappingScale,
971 kAsanStackPartialRedzoneMagic);
972 }
973 Value *PartialPoison = ConstantInt::get(RZTy, Poison);
974 IRB.CreateStore(PartialPoison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
975 }
976
977 // Poison the full redzone at right.
978 Ptr = IRB.CreateAdd(ShadowBase,
979 ConstantInt::get(IntptrTy, Pos >> MappingScale));
980 Value *Poison = i == AllocaVec.size() - 1 ? PoisonRight : PoisonMid;
981 IRB.CreateStore(Poison, IRB.CreateIntToPtr(Ptr, RZPtrTy));
982
983 Pos += RedzoneSize;
984 }
985}
986
Kostya Serebryany5a3a9c92011-11-18 01:41:06 +0000987// Workaround for bug 11395: we don't want to instrument stack in functions
988// with large assembly blobs (32-bit only), otherwise reg alloc may crash.
Kostya Serebryanyd2703de2011-11-23 02:10:54 +0000989// FIXME: remove once the bug 11395 is fixed.
Kostya Serebryany5a3a9c92011-11-18 01:41:06 +0000990bool AddressSanitizer::LooksLikeCodeInBug11395(Instruction *I) {
991 if (LongSize != 32) return false;
992 CallInst *CI = dyn_cast<CallInst>(I);
993 if (!CI || !CI->isInlineAsm()) return false;
994 if (CI->getNumArgOperands() <= 5) return false;
995 // We have inline assembly with quite a few arguments.
996 return true;
997}
998
Kostya Serebryany800e03f2011-11-16 01:35:23 +0000999// Find all static Alloca instructions and put
1000// poisoned red zones around all of them.
1001// Then unpoison everything back before the function returns.
1002//
1003// Stack poisoning does not play well with exception handling.
1004// When an exception is thrown, we essentially bypass the code
1005// that unpoisones the stack. This is why the run-time library has
1006// to intercept __cxa_throw (as well as longjmp, etc) and unpoison the entire
1007// stack in the interceptor. This however does not work inside the
1008// actual function which catches the exception. Most likely because the
1009// compiler hoists the load of the shadow value somewhere too high.
1010// This causes asan to report a non-existing bug on 453.povray.
1011// It sounds like an LLVM bug.
Kostya Serebryanyee4edec2012-10-15 14:20:06 +00001012bool AddressSanitizer::poisonStackInFunction(Function &F) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001013 if (!ClStack) return false;
1014 SmallVector<AllocaInst*, 16> AllocaVec;
1015 SmallVector<Instruction*, 8> RetVec;
1016 uint64_t TotalSize = 0;
1017
1018 // Filter out Alloca instructions we want (and can) handle.
1019 // Collect Ret instructions.
1020 for (Function::iterator FI = F.begin(), FE = F.end();
1021 FI != FE; ++FI) {
1022 BasicBlock &BB = *FI;
1023 for (BasicBlock::iterator BI = BB.begin(), BE = BB.end();
1024 BI != BE; ++BI) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001025 if (isa<ReturnInst>(BI)) {
1026 RetVec.push_back(BI);
1027 continue;
1028 }
1029
1030 AllocaInst *AI = dyn_cast<AllocaInst>(BI);
1031 if (!AI) continue;
1032 if (AI->isArrayAllocation()) continue;
1033 if (!AI->isStaticAlloca()) continue;
1034 if (!AI->getAllocatedType()->isSized()) continue;
1035 if (AI->getAlignment() > RedzoneSize) continue;
1036 AllocaVec.push_back(AI);
1037 uint64_t AlignedSize = getAlignedAllocaSize(AI);
1038 TotalSize += AlignedSize;
1039 }
1040 }
1041
1042 if (AllocaVec.empty()) return false;
1043
1044 uint64_t LocalStackSize = TotalSize + (AllocaVec.size() + 1) * RedzoneSize;
1045
1046 bool DoStackMalloc = ClUseAfterReturn
1047 && LocalStackSize <= kMaxStackMallocSize;
1048
1049 Instruction *InsBefore = AllocaVec[0];
1050 IRBuilder<> IRB(InsBefore);
1051
1052
1053 Type *ByteArrayTy = ArrayType::get(IRB.getInt8Ty(), LocalStackSize);
1054 AllocaInst *MyAlloca =
1055 new AllocaInst(ByteArrayTy, "MyAlloca", InsBefore);
1056 MyAlloca->setAlignment(RedzoneSize);
1057 assert(MyAlloca->isStaticAlloca());
1058 Value *OrigStackBase = IRB.CreatePointerCast(MyAlloca, IntptrTy);
1059 Value *LocalStackBase = OrigStackBase;
1060
1061 if (DoStackMalloc) {
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001062 LocalStackBase = IRB.CreateCall2(AsanStackMallocFunc,
1063 ConstantInt::get(IntptrTy, LocalStackSize), OrigStackBase);
1064 }
1065
1066 // This string will be parsed by the run-time (DescribeStackAddress).
1067 SmallString<2048> StackDescriptionStorage;
1068 raw_svector_ostream StackDescription(StackDescriptionStorage);
1069 StackDescription << F.getName() << " " << AllocaVec.size() << " ";
1070
1071 uint64_t Pos = RedzoneSize;
1072 // Replace Alloca instructions with base+offset.
1073 for (size_t i = 0, n = AllocaVec.size(); i < n; i++) {
1074 AllocaInst *AI = AllocaVec[i];
1075 uint64_t SizeInBytes = getAllocaSizeInBytes(AI);
1076 StringRef Name = AI->getName();
1077 StackDescription << Pos << " " << SizeInBytes << " "
1078 << Name.size() << " " << Name << " ";
1079 uint64_t AlignedSize = getAlignedAllocaSize(AI);
1080 assert((AlignedSize % RedzoneSize) == 0);
1081 AI->replaceAllUsesWith(
1082 IRB.CreateIntToPtr(
1083 IRB.CreateAdd(LocalStackBase, ConstantInt::get(IntptrTy, Pos)),
1084 AI->getType()));
1085 Pos += AlignedSize + RedzoneSize;
1086 }
1087 assert(Pos == LocalStackSize);
1088
1089 // Write the Magic value and the frame description constant to the redzone.
1090 Value *BasePlus0 = IRB.CreateIntToPtr(LocalStackBase, IntptrPtrTy);
1091 IRB.CreateStore(ConstantInt::get(IntptrTy, kCurrentStackFrameMagic),
1092 BasePlus0);
1093 Value *BasePlus1 = IRB.CreateAdd(LocalStackBase,
1094 ConstantInt::get(IntptrTy, LongSize/8));
1095 BasePlus1 = IRB.CreateIntToPtr(BasePlus1, IntptrPtrTy);
Alexey Samsonov9ce84c12012-11-02 12:20:34 +00001096 GlobalVariable *StackDescriptionGlobal =
Kostya Serebryanya5f54f12012-11-01 13:42:40 +00001097 createPrivateGlobalForString(*F.getParent(), StackDescription.str());
1098 GlobalsCreatedByAsan.insert(StackDescriptionGlobal);
1099 Value *Description = IRB.CreatePointerCast(StackDescriptionGlobal, IntptrTy);
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001100 IRB.CreateStore(Description, BasePlus1);
1101
1102 // Poison the stack redzones at the entry.
1103 Value *ShadowBase = memToShadow(LocalStackBase, IRB);
1104 PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRB, ShadowBase, true);
1105
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001106 // Unpoison the stack before all ret instructions.
1107 for (size_t i = 0, n = RetVec.size(); i < n; i++) {
1108 Instruction *Ret = RetVec[i];
1109 IRBuilder<> IRBRet(Ret);
1110
1111 // Mark the current frame as retired.
1112 IRBRet.CreateStore(ConstantInt::get(IntptrTy, kRetiredStackFrameMagic),
1113 BasePlus0);
1114 // Unpoison the stack.
1115 PoisonStack(ArrayRef<AllocaInst*>(AllocaVec), IRBRet, ShadowBase, false);
1116
1117 if (DoStackMalloc) {
1118 IRBRet.CreateCall3(AsanStackFreeFunc, LocalStackBase,
1119 ConstantInt::get(IntptrTy, LocalStackSize),
1120 OrigStackBase);
1121 }
1122 }
1123
Kostya Serebryanybd0052a2012-10-19 06:20:53 +00001124 // We are done. Remove the old unused alloca instructions.
1125 for (size_t i = 0, n = AllocaVec.size(); i < n; i++)
1126 AllocaVec[i]->eraseFromParent();
1127
Kostya Serebryany800e03f2011-11-16 01:35:23 +00001128 if (ClDebugStack) {
1129 DEBUG(dbgs() << F);
1130 }
1131
1132 return true;
1133}