Lines Matching defs:Alloca
1069 // Finds all Alloca instructions and puts
1139 /// Collect Alloca instructions we want (and can) handle.
3285 AllocaInst *Alloca;
3287 Alloca = IRB.CreateAlloca(IRB.getInt8Ty(),
3291 Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize),
3293 assert(Alloca->isStaticAlloca());
3297 Alloca->setAlignment(Align(FrameAlignment));
3298 return IRB.CreatePointerCast(Alloca, IntptrTy);
3347 // 1) store <Argument>, <Alloca> OR
3349 // store <CastArgument> to <Alloca>
3361 auto *Alloca = dyn_cast<AllocaInst>(Store->getPointerOperand());
3362 if (!Alloca || ASan.isInterestingAlloca(*Alloca))
3558 // Replace Alloca instructions with base+offset.