Lines Matching refs:Alloca
1084 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
1094 Builder->CreateStore(StartVal, Alloca); in codegen()
1109 NamedValues[VarName] = Alloca; in codegen()
1135 Value *CurVar = Builder->CreateLoad(Type::getDoubleTy(*TheContext), Alloca, in codegen()
1138 Builder->CreateStore(NextVar, Alloca); in codegen()
1188 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
1189 Builder->CreateStore(InitVal, Alloca); in codegen()
1196 NamedValues[VarName] = Alloca; in codegen()
1273 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
1280 DBuilder->insertDeclare(Alloca, D, DBuilder->createExpression(), in codegen()
1285 Builder->CreateStore(&Arg, Alloca); in codegen()
1288 NamedValues[std::string(Arg.getName())] = Alloca; in codegen()