Searched refs:funcType (Results 1 – 5 of 5) sorted by relevance
/external/mesa3d/src/gallium/drivers/radeon/ |
D | AMDILPeepholeOptimizer.cpp | 657 FunctionType *funcType = FunctionType::get(aType, callTypes, false); in optimizeBitInsert() local 662 getOrInsertFunction(llvm::StringRef(name), funcType)); in optimizeBitInsert() 817 FunctionType *funcType = FunctionType::get(aType, callTypes, false); in optimizeBitExtract() local 827 getOrInsertFunction(llvm::StringRef(name), funcType)); in optimizeBitExtract() 1013 FunctionType *funcType = in expandSigned24BitOps() local 1023 getOrInsertFunction(llvm::StringRef(name), funcType)); in expandSigned24BitOps() 1045 FunctionType *funcType = in expandSigned24BitOps() local 1055 getOrInsertFunction(llvm::StringRef(name), funcType)); in expandSigned24BitOps()
|
/external/llvm/lib/Transforms/Utils/ |
D | CodeExtractor.cpp | 342 FunctionType *funcType = in constructFunction() local 346 Function *newFunction = Function::Create(funcType, in constructFunction()
|
/external/clang/lib/Frontend/Rewrite/ |
D | RewriteObjC.cpp | 312 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D); 545 void RewriteObjC::RewriteBlocksInFunctionProtoType(QualType funcType, in RewriteBlocksInFunctionProtoType() argument 548 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) { in RewriteBlocksInFunctionProtoType() 558 void RewriteObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) { in CheckFunctionPointerDecl() argument 559 const PointerType *PT = funcType->getAs<PointerType>(); in CheckFunctionPointerDecl() 560 if (PT && PointerTypeTakesAnyBlockArguments(funcType)) in CheckFunctionPointerDecl() 2121 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); in RewriteObjCQualifiedInterfaceTypes() local 2122 assert(funcType && "missing function type"); in RewriteObjCQualifiedInterfaceTypes() 2123 proto = dyn_cast<FunctionProtoType>(funcType); in RewriteObjCQualifiedInterfaceTypes() 2293 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); in RewriteBlockLiteralFunctionDecl() local [all …]
|
D | RewriteModernObjC.cpp | 387 void RewriteBlocksInFunctionProtoType(QualType funcType, NamedDecl *D); 614 void RewriteModernObjC::RewriteBlocksInFunctionProtoType(QualType funcType, in RewriteBlocksInFunctionProtoType() argument 617 = dyn_cast<FunctionProtoType>(funcType.IgnoreParens())) { in RewriteBlocksInFunctionProtoType() 627 void RewriteModernObjC::CheckFunctionPointerDecl(QualType funcType, NamedDecl *ND) { in CheckFunctionPointerDecl() argument 628 const PointerType *PT = funcType->getAs<PointerType>(); in CheckFunctionPointerDecl() 629 if (PT && PointerTypeTakesAnyBlockArguments(funcType)) in CheckFunctionPointerDecl() 2229 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); in RewriteObjCQualifiedInterfaceTypes() local 2230 assert(funcType && "missing function type"); in RewriteObjCQualifiedInterfaceTypes() 2231 proto = dyn_cast<FunctionProtoType>(funcType); in RewriteObjCQualifiedInterfaceTypes() 2404 const FunctionType *funcType = FD->getType()->getAs<FunctionType>(); in RewriteBlockLiteralFunctionDecl() local [all …]
|
/external/clang/lib/AST/ |
D | Type.cpp | 1120 if (const auto *funcType = dyn_cast<FunctionType>(splitType.Ty)) { in substObjCTypeArgs() local 1122 QualType returnType = funcType->getReturnType().substObjCTypeArgs( in substObjCTypeArgs() 1131 if (isa<FunctionNoProtoType>(funcType)) { in substObjCTypeArgs() 1134 == funcType->getReturnType().getAsOpaquePtr()) in substObjCTypeArgs() 1138 return ctx.getFunctionNoProtoType(returnType, funcType->getExtInfo()); in substObjCTypeArgs() 1141 const auto *funcProtoType = cast<FunctionProtoType>(funcType); in substObjCTypeArgs()
|