Lines Matching refs:Alloca
785 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
792 Builder.CreateStore(StartVal, Alloca); in Codegen()
807 NamedValues[VarName] = Alloca; in Codegen()
831 Value *CurVar = Builder.CreateLoad(Alloca, VarName.c_str()); in Codegen()
833 Builder.CreateStore(NextVar, Alloca); in Codegen()
883 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in Codegen() local
884 Builder.CreateStore(InitVal, Alloca); in Codegen()
891 NamedValues[VarName] = Alloca; in Codegen()
950 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
953 Builder.CreateStore(AI, Alloca); in CreateArgumentAllocas()
956 NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()