Home
last modified time | relevance | path

Searched refs:getCanonicalParamType (Results 1 – 5 of 5) sorted by relevance

/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGCall.cpp388 argTypes.push_back(ctx.getCanonicalParamType(arg.Ty)); in getArgTypesForCall()
396 argTypes.push_back(ctx.getCanonicalParamType(arg->getType())); in getArgTypesForDeclaration()
428 ArgTypes.push_back(Context.getCanonicalParamType(Arg.Ty)); in arrangeCXXConstructorCall()
504 argTys.push_back(Context.getCanonicalParamType(receiverType)); in arrangeObjCMessageSendSignature()
506 argTys.push_back(Context.getCanonicalParamType(Context.getObjCSelType())); in arrangeObjCMessageSendSignature()
509 argTys.push_back(Context.getCanonicalParamType(I->getType())); in arrangeObjCMessageSendSignature()
626 argTypes.push_back(CGT.getContext().getCanonicalParamType(arg.Ty)); in arrangeFreeFunctionLikeCall()
672 argTypes.push_back(Context.getCanonicalParamType(Arg.Ty)); in arrangeBuiltinFunctionCall()
H A DCGObjCMac.cpp240 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getGetPropertyFn()
241 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getGetPropertyFn()
255 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getSetPropertyFn()
256 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getSetPropertyFn()
283 CanQualType IdType = Ctx.getCanonicalParamType(Ctx.getObjCIdType()); in getOptimizedSetPropertyFn()
284 CanQualType SelType = Ctx.getCanonicalParamType(Ctx.getObjCSelType()); in getOptimizedSetPropertyFn()
344 Params.push_back(Ctx.getCanonicalParamType(Ctx.getObjCIdType())); in getEnumerationMutationFn()
H A DCGStmtOpenMP.cpp413 static QualType getCanonicalParamType(ASTContext &C, QualType T) { in getCanonicalParamType() function
416 getCanonicalParamType(C, T.getNonReferenceType()), in getCanonicalParamType()
419 return C.getPointerType(getCanonicalParamType(C, T->getPointeeType())); in getCanonicalParamType()
422 return getCanonicalParamType(C, VLA->getElementType()); in getCanonicalParamType()
426 return C.getCanonicalParamType(T); in getCanonicalParamType()
511 ArgType = getCanonicalParamType(Ctx, ArgType); in emitOutlinedFunctionPrologue()
/freebsd/contrib/llvm-project/clang/include/clang/AST/
H A DASTContext.h2631 CanQualType getCanonicalParamType(QualType T) const;
/freebsd/contrib/llvm-project/clang/lib/AST/
H A DASTContext.cpp4836 CanonicalArgs.push_back(getCanonicalParamType(ArgArray[i])); in getFunctionTypeInternal()
6420 CanQualType ASTContext::getCanonicalParamType(QualType T) const { in getCanonicalParamType() function in ASTContext