/external/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 53 AllocaInst *Var1 = Builder.CreateAlloca(Builder.getInt8Ty()); in TEST_F() 54 AllocaInst *Var2 = Builder.CreateAlloca(Builder.getInt32Ty()); in TEST_F() 55 AllocaInst *Var3 = Builder.CreateAlloca(Builder.getInt8Ty(), in TEST_F() 300 AllocaInst *I = Builder.CreateAlloca(Builder.getInt8Ty()); in TEST_F()
|
/external/llvm/examples/ExceptionDemo/ |
D | ExceptionDemo.cpp | 256 llvm::AllocaInst *ret = tmp.CreateAlloca(type, 0, varName.c_str()); in createEntryBlockAlloca() 924 stringVar = builder.CreateAlloca(stringConstant->getType()); in generateStringPrint() 968 stringVar = builder.CreateAlloca(stringConstant->getType()); in generateIntegerPrint()
|
/external/llvm/lib/CodeGen/ |
D | StackProtector.cpp | 354 AI = B.CreateAlloca(PtrTy, nullptr, "StackGuardSlot"); in CreatePrologue()
|
D | ShadowStackGCLowering.cpp | 398 AtEntry.CreateAlloca(ConcreteStackEntryTy, nullptr, "gc_frame"); in runOnFunction()
|
D | WinEHPrepare.cpp | 1291 Builder.CreateAlloca(V->getType(), nullptr, "eh.temp.alloca"); in materializeValueFor()
|
/external/llvm/unittests/Transforms/Utils/ |
D | Cloning.cpp | 246 AllocaInst* Alloca = IBuilder.CreateAlloca(IntegerType::getInt32Ty(C)); in CreateOldFunctionBodyAndDI()
|
/external/llvm/lib/Transforms/Instrumentation/ |
D | AddressSanitizer.cpp | 1707 Alloca = IRB.CreateAlloca(IRB.getInt8Ty(), in createAllocaForLayout() 1711 Alloca = IRB.CreateAlloca(ArrayType::get(IRB.getInt8Ty(), L.FrameSize), in createAllocaForLayout() 2056 AllocaInst *NewAlloca = IRB.CreateAlloca(IRB.getInt8Ty(), NewSize); in handleDynamicAllocaCall()
|
D | MemorySanitizer.cpp | 2817 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); in finalizeInstrumentation() 2934 VAArgTLSCopy = IRB.CreateAlloca(Type::getInt8Ty(*MS.C), CopySize); in finalizeInstrumentation()
|
D | DataFlowSanitizer.cpp | 1305 DFSF.AllocaShadowMap[&I] = IRB.CreateAlloca(DFSF.DFS.ShadowTy); in visitAllocaInst()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 637 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
D | toy.cpp | 1008 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 682 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 622 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
D | toy.cpp | 906 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineLoadStoreAlloca.cpp | 183 AllocaInst *New = IC.Builder->CreateAlloca(NewTy, nullptr, AI.getName()); in simplifyAllocaArraySize()
|
D | InstCombineCasts.cpp | 140 AllocaInst *New = AllocaBuilder.CreateAlloca(CastElTy, Amt); in PromoteCastOfAllocation()
|
/external/llvm/examples/Kaleidoscope/MCJIT/initial/ |
D | toy.cpp | 866 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Chapter8/ |
D | toy.cpp | 872 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/MCJIT/complete/ |
D | toy.cpp | 1080 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_irgen/ |
D | toy.cpp | 750 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Orc/initial/ |
D | toy.cpp | 750 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Orc/lazy_codegen/ |
D | toy.cpp | 750 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/llvm/examples/Kaleidoscope/Orc/fully_lazy/ |
D | toy.cpp | 751 return TmpB.CreateAlloca(Type::getDoubleTy(getGlobalContext()), 0, in CreateEntryBlockAlloca()
|
/external/clang/lib/CodeGen/ |
D | CGDecl.cpp | 999 llvm::AllocaInst *vla = Builder.CreateAlloca(llvmTy, elementCount, "vla"); in EmitAutoVarAlloca()
|
/external/llvm/lib/IR/ |
D | Core.cpp | 2457 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), nullptr, Name)); in LLVMBuildAlloca() 2462 return wrap(unwrap(B)->CreateAlloca(unwrap(Ty), unwrap(Val), Name)); in LLVMBuildArrayAlloca()
|