Lines Matching refs:Alloca
893 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
901 Builder->CreateStore(StartVal, Alloca); in codegen()
916 NamedValues[VarName] = Alloca; in codegen()
942 Value *CurVar = Builder->CreateLoad(Type::getDoubleTy(*TheContext), Alloca, in codegen()
945 Builder->CreateStore(NextVar, Alloca); in codegen()
995 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
996 Builder->CreateStore(InitVal, Alloca); in codegen()
1003 NamedValues[VarName] = Alloca; in codegen()
1065 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
1068 Builder->CreateStore(&Arg, Alloca); in codegen()
1071 NamedValues[std::string(Arg.getName())] = Alloca; in codegen()