Home | History | Annotate | Download | only in CodeGen

Lines Matching defs:fnInfo

199   const CGFunctionInfo &fnInfo = getTypes().getFunctionInfo(ctor, ctorType);
202 cast<llvm::Function>(GetAddrOfCXXConstructor(ctor, ctorType, &fnInfo));
205 CodeGenFunction(*this).GenerateCode(GlobalDecl(ctor, ctorType), fn, fnInfo);
214 const CGFunctionInfo *fnInfo) {
221 if (!fnInfo) fnInfo = &getTypes().getFunctionInfo(ctor, ctorType);
225 getTypes().GetFunctionType(*fnInfo, proto->isVariadic());
263 const CGFunctionInfo &fnInfo = getTypes().getFunctionInfo(dtor, dtorType);
266 cast<llvm::Function>(GetAddrOfCXXDestructor(dtor, dtorType, &fnInfo));
269 CodeGenFunction(*this).GenerateCode(GlobalDecl(dtor, dtorType), fn, fnInfo);
278 const CGFunctionInfo *fnInfo) {
285 if (!fnInfo) fnInfo = &getTypes().getFunctionInfo(dtor, dtorType);
288 getTypes().GetFunctionType(*fnInfo, false);