Searched refs:NewAlloca (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/CodeGen/
H A DWinEHPrepare.cpp1279 AllocaInst *NewAlloca = dyn_cast<AllocaInst>(AV->clone()); local
1280 Builder.Insert(NewAlloca, AV->getName());
1281 FrameVarInfo[AV].push_back(NewAlloca);
1282 return NewAlloca;
1290 AllocaInst *NewAlloca = local
1292 FrameVarInfo[V].push_back(NewAlloca);
1293 LoadInst *NewLoad = Builder.CreateLoad(NewAlloca, V->getName() + ".reload");
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp787 Value *NewAlloca = new AllocaInst(AggTy, nullptr, Align, Arg->getName(), local
789 IFI.StaticAllocas.push_back(cast<AllocaInst>(NewAlloca));
793 return NewAlloca;
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2056 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize); local
2057 NewAlloca->setAlignment(Align);
2060 Value *NewAddress = IRB.CreateAdd(IRB.CreatePtrToInt(NewAlloca, IntptrTy),

Completed in 362 milliseconds