Searched defs:fnInfo (Results 1 - 2 of 2) sorted by relevance

/external/clang/lib/CodeGen/
H A DCGCXX.cpp199 const CGFunctionInfo &fnInfo = local
203 cast<llvm::Function>(GetAddrOfCXXConstructor(ctor, ctorType, &fnInfo));
206 CodeGenFunction(*this).GenerateCode(GlobalDecl(ctor, ctorType), fn, fnInfo); local
215 const CGFunctionInfo *fnInfo) {
222 if (!fnInfo)
223 fnInfo = &getTypes().arrangeCXXConstructorDeclaration(ctor, ctorType);
225 llvm::FunctionType *fnType = getTypes().GetFunctionType(*fnInfo);
263 const CGFunctionInfo &fnInfo = local
267 cast<llvm::Function>(GetAddrOfCXXDestructor(dtor, dtorType, &fnInfo));
270 CodeGenFunction(*this).GenerateCode(GlobalDecl(dtor, dtorType), fn, fnInfo); local
213 GetAddrOfCXXConstructor(const CXXConstructorDecl *ctor, CXXCtorType ctorType, const CGFunctionInfo *fnInfo) argument
277 GetAddrOfCXXDestructor(const CXXDestructorDecl *dtor, CXXDtorType dtorType, const CGFunctionInfo *fnInfo) argument
[all...]
H A DCGBlocks.cpp1035 const CGFunctionInfo &fnInfo = local
1039 if (CGM.ReturnTypeUsesSRet(fnInfo))
1042 llvm::FunctionType *fnLLVMType = CGM.getTypes().GetFunctionType(fnInfo);
1049 CGM.SetInternalFunctionAttributes(blockDecl, fn, fnInfo);
1052 StartFunction(blockDecl, fnType->getResultType(), fn, fnInfo, args,

Completed in 58 milliseconds