Lines Matching refs:Alloca
919 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in IRGen() local
926 C.getBuilder().CreateStore(StartVal, Alloca); in IRGen()
941 C.NamedValues[VarName] = Alloca; in IRGen()
965 Value *CurVar = C.getBuilder().CreateLoad(Alloca, VarName.c_str()); in IRGen()
967 C.getBuilder().CreateStore(NextVar, Alloca); in IRGen()
1015 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in IRGen() local
1016 C.getBuilder().CreateStore(InitVal, Alloca); in IRGen()
1023 C.NamedValues[VarName] = Alloca; in IRGen()
1084 AllocaInst *Alloca = CreateEntryBlockAlloca(F, Args[Idx]); in CreateArgumentAllocas() local
1087 C.getBuilder().CreateStore(&*AI, Alloca); in CreateArgumentAllocas()
1090 C.NamedValues[Args[Idx]] = Alloca; in CreateArgumentAllocas()