Lines Matching refs:Alloca
1072 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1079 Builder.CreateStore(StartVal, Alloca); in Codegen()
1094 NamedValues[VarName] = Alloca; in Codegen()
1118 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1120 Builder.CreateStore(NextVar, Alloca); in Codegen()
1170 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1171 Builder.CreateStore(InitVal, Alloca); in Codegen()
1178 NamedValues[VarName] = Alloca; in Codegen()
1240 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1243 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1246 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()