Lines Matching refs:Alloca
795 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
802 Builder.CreateStore(StartVal, Alloca); in Codegen()
817 NamedValues[VarName] = Alloca; in Codegen()
841 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
843 Builder.CreateStore(NextVar, Alloca); in Codegen()
893 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
894 Builder.CreateStore(InitVal, Alloca); in Codegen()
901 NamedValues[VarName] = Alloca; in Codegen()
957 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
960 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
963 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()