Lines Matching refs:Alloca
1075 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1082 Builder.CreateStore(StartVal, Alloca); in Codegen()
1097 NamedValues[VarName] = Alloca; in Codegen()
1121 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1123 Builder.CreateStore(NextVar, Alloca); in Codegen()
1173 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1174 Builder.CreateStore(InitVal, Alloca); in Codegen()
1181 NamedValues[VarName] = Alloca; in Codegen()
1244 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1247 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1250 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()