Home
last modified time | relevance | path

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

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