Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:Alloca

1148   // At -O0 we generate an explicit alloca for the BlockPointer, so the RA
1153 llvm::AllocaInst *Alloca = CreateTempAlloca(BlockPointer->getType(),
1156 Alloca->setAlignment(Align);
1160 Builder.CreateAlignedStore(BlockPointer, Alloca, Align);
1161 BlockPointerDbgLoc = Alloca;
1181 llvm::AllocaInst *alloca =
1183 alloca->setAlignment(align);
1185 Builder.CreateAlignedStore(capture.getConstant(), alloca, align);
1187 LocalDeclMap[variable] = alloca;
2101 // That's an alloca of the byref structure type.