Lines Matching refs:Alloca
915 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
923 Builder->CreateStore(StartVal, Alloca); in codegen()
938 NamedValues[VarName] = Alloca; in codegen()
964 Value *CurVar = Builder->CreateLoad(Type::getDoubleTy(*TheContext), Alloca, in codegen()
967 Builder->CreateStore(NextVar, Alloca); in codegen()
1017 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
1018 Builder->CreateStore(InitVal, Alloca); in codegen()
1025 NamedValues[VarName] = Alloca; in codegen()
1079 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
1082 Builder->CreateStore(&Arg, Alloca); in codegen()
1085 NamedValues[std::string(Arg.getName())] = Alloca; in codegen()