Searched refs:NewAlloca (Results 1 – 3 of 3) sorted by relevance
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/ |
D | InlineFunction.cpp | 772 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/ |
D | InlineFunction.cpp | 1219 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/ |
D | AddressSanitizer.cpp | 2333 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()
|