Lines Matching refs:Alloca
1252 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1259 Builder.CreateStore(StartVal, Alloca); in Codegen()
1274 NamedValues[VarName] = Alloca; in Codegen()
1298 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1300 Builder.CreateStore(NextVar, Alloca); in Codegen()
1350 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1351 Builder.CreateStore(InitVal, Alloca); in Codegen()
1358 NamedValues[VarName] = Alloca; in Codegen()
1420 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1423 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1426 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()