Lines Matching refs:Alloca
910 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
918 Builder->CreateStore(StartVal, Alloca); in codegen()
933 NamedValues[VarName] = Alloca; in codegen()
959 Value *CurVar = Builder->CreateLoad(Type::getDoubleTy(*TheContext), Alloca, in codegen()
962 Builder->CreateStore(NextVar, Alloca); in codegen()
1012 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
1013 Builder->CreateStore(InitVal, Alloca); in codegen()
1020 NamedValues[VarName] = Alloca; in codegen()
1074 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
1077 Builder->CreateStore(&Arg, Alloca); in codegen()
1080 NamedValues[std::string(Arg.getName())] = Alloca; in codegen()