Lines Matching refs:Alloca
1032 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1039 Builder.CreateStore(StartVal, Alloca); in Codegen()
1054 NamedValues[VarName] = Alloca; in Codegen()
1078 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1080 Builder.CreateStore(NextVar, Alloca); in Codegen()
1130 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1131 Builder.CreateStore(InitVal, Alloca); in Codegen()
1138 NamedValues[VarName] = Alloca; in Codegen()
1200 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1203 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1206 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()