Lines Matching refs:Alloca
920 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in IRGen() local
927 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
942 C.NamedValues[VarName] = Alloca; in IRGen()
966 Value *CurVar = C.getBuilder().CreateLoad(Alloca, VarName.c_str()); in IRGen()
968 C.getBuilder().CreateStore(NextVar, Alloca); in IRGen()
1016 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in IRGen() local
1017 C.getBuilder().CreateStore(InitVal, Alloca); in IRGen()
1024 C.NamedValues[VarName] = Alloca; in IRGen()
1085 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1088 C.getBuilder().CreateStore(&*AI, Alloca); in CreateArgumentAllocas()
1091 C.NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()