Lines Matching refs:Alloca
916 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
924 Builder->CreateStore(StartVal, Alloca); in codegen()
939 NamedValues[VarName] = Alloca; in codegen()
966 Builder->CreateLoad(Alloca->getAllocatedType(), Alloca, VarName.c_str()); in codegen()
968 Builder->CreateStore(NextVar, Alloca); in codegen()
1018 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, VarName); in codegen() local
1019 Builder->CreateStore(InitVal, Alloca); in codegen()
1026 NamedValues[VarName] = Alloca; in codegen()
1080 AllocaInst *Alloca = CreateEntryBlockAlloca(TheFunction, Arg.getName()); in codegen() local
1083 Builder->CreateStore(&Arg, Alloca); in codegen()
1086 NamedValues[std::string(Arg.getName())] = Alloca; in codegen()