Lines Matching refs:Alloca
792 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
799 Builder.CreateStore(StartVal, Alloca); in Codegen()
814 NamedValues[VarName] = Alloca; in Codegen()
838 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
840 Builder.CreateStore(NextVar, Alloca); in Codegen()
890 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
891 Builder.CreateStore(InitVal, Alloca); in Codegen()
898 NamedValues[VarName] = Alloca; in Codegen()
953 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
956 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
959 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()