Lines Matching refs:Alloca
1177 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1184 Builder.CreateStore(StartVal, Alloca); in Codegen()
1199 NamedValues[VarName] = Alloca; in Codegen()
1223 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1225 Builder.CreateStore(NextVar, Alloca); in Codegen()
1275 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1276 Builder.CreateStore(InitVal, Alloca); in Codegen()
1283 NamedValues[VarName] = Alloca; in Codegen()
1346 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1349 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1352 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()