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

/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DInlineFunction.cpp772 Value *NewAlloca = new AllocaInst(AggTy, 0, Align, Arg->getName(), local
779 Value *DestCast = new BitCastInst(NewAlloca, VoidPtrTy, "tmp", TheCall);
801 return NewAlloca;
/external/llvm/lib/Transforms/Utils/
H A DInlineFunction.cpp1219 Value *NewAlloca = new AllocaInst(AggTy, nullptr, Align, Arg->getName(), local
1221 IFI.StaticAllocas.push_back(cast<AllocaInst>(NewAlloca));
1225 return NewAlloca;
/external/llvm/lib/Transforms/Instrumentation/
H A DAddressSanitizer.cpp2333 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize); local
2334 NewAlloca->setAlignment(Align);
2337 Value *NewAddress = IRB.CreateAdd(IRB.CreatePtrToInt(NewAlloca, IntptrTy),
2345 IRB.CreateStore(IRB.CreatePtrToInt(NewAlloca, IntptrTy), DynamicAllocaLayout);

Completed in 97 milliseconds