Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:fnInfo

199   const CGFunctionInfo &fnInfo =
203 cast<llvm::Function>(GetAddrOfCXXConstructor(ctor, ctorType, &fnInfo));
206 CodeGenFunction(*this).GenerateCode(GlobalDecl(ctor, ctorType), fn, fnInfo);
215 const CGFunctionInfo *fnInfo) {
222 if (!fnInfo)
223 fnInfo = &getTypes().arrangeCXXConstructorDeclaration(ctor, ctorType);
225 llvm::FunctionType *fnType = getTypes().GetFunctionType(*fnInfo);
263 const CGFunctionInfo &fnInfo =
267 cast<llvm::Function>(GetAddrOfCXXDestructor(dtor, dtorType, &fnInfo));
270 CodeGenFunction(*this).GenerateCode(GlobalDecl(dtor, dtorType), fn, fnInfo);
279 const CGFunctionInfo *fnInfo) {
286 if (!fnInfo) fnInfo = &getTypes().arrangeCXXDestructor(dtor, dtorType);
288 llvm::FunctionType *fnType = getTypes().GetFunctionType(*fnInfo);