Lines Matching refs:Alloca
813 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
820 Builder.CreateStore(StartVal, Alloca); in Codegen()
835 NamedValues[VarName] = Alloca; in Codegen()
859 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
861 Builder.CreateStore(NextVar, Alloca); in Codegen()
911 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
912 Builder.CreateStore(InitVal, Alloca); in Codegen()
919 NamedValues[VarName] = Alloca; in Codegen()
975 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
978 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
981 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()