Lines Matching refs:Alloca
1035 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1042 Builder.CreateStore(StartVal, Alloca); in Codegen()
1057 NamedValues[VarName] = Alloca; in Codegen()
1081 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1083 Builder.CreateStore(NextVar, Alloca); in Codegen()
1133 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1134 Builder.CreateStore(InitVal, Alloca); in Codegen()
1141 NamedValues[VarName] = Alloca; in Codegen()
1204 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1207 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1210 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()