Lines Matching refs:Alloca
1255 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1262 Builder.CreateStore(StartVal, Alloca); in Codegen()
1277 NamedValues[VarName] = Alloca; in Codegen()
1301 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
1303 Builder.CreateStore(NextVar, Alloca); in Codegen()
1353 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
1354 Builder.CreateStore(InitVal, Alloca); in Codegen()
1361 NamedValues[VarName] = Alloca; in Codegen()
1424 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1427 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
1430 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()