Lines Matching refs:FPT
154 CanQual<FunctionProtoType> FPT) { in appendParameterTypes() argument
156 if (!FPT->hasExtParameterInfos()) { in appendParameterTypes()
159 prefix.append(FPT->param_type_begin(), FPT->param_type_end()); in appendParameterTypes()
167 prefix.reserve(prefix.size() + FPT->getNumParams()); in appendParameterTypes()
169 auto ExtInfos = FPT->getExtParameterInfos(); in appendParameterTypes()
170 assert(ExtInfos.size() == FPT->getNumParams()); in appendParameterTypes()
171 for (unsigned I = 0, E = FPT->getNumParams(); I != E; ++I) { in appendParameterTypes()
172 prefix.push_back(FPT->getParamType(I)); in appendParameterTypes()
177 addExtParameterInfosForCall(paramInfos, FPT.getTypePtr(), PrefixSize, in appendParameterTypes()
423 CanQual<FunctionProtoType> FPT = GetFormalType(D); in arrangeCXXConstructorCall() local
426 FPT, TotalPrefixArgs + ExtraSuffixArgs) in arrangeCXXConstructorCall()
436 FunctionType::ExtInfo Info = FPT->getExtInfo(); in arrangeCXXConstructorCall()
440 if (PassProtoArgs && FPT->hasExtParameterInfos()) { in arrangeCXXConstructorCall()
442 addExtParameterInfosForCall(ParamInfos, FPT.getTypePtr(), TotalPrefixArgs, in arrangeCXXConstructorCall()
1757 const FunctionProtoType *FPT = MD->getType()->castAs<FunctionProtoType>(); in GetFunctionTypeForVTable() local
1759 if (!isFuncTypeConvertible(FPT)) in GetFunctionTypeForVTable()
1767 const FunctionProtoType *FPT) { in AddAttributesFromFunctionProtoType() argument
1768 if (!FPT) in AddAttributesFromFunctionProtoType()
1771 if (!isUnresolvedExceptionSpec(FPT->getExceptionSpecType()) && in AddAttributesFromFunctionProtoType()
1772 FPT->isNothrow()) in AddAttributesFromFunctionProtoType()
1775 unsigned SMEBits = FPT->getAArch64SMEAttributes(); in AddAttributesFromFunctionProtoType()
4455 const auto *FPT = Prototype.P.get<const FunctionProtoType *>(); in EmitCallArgs() local
4456 IsVariadic = FPT->isVariadic(); in EmitCallArgs()
4457 ExplicitCC = FPT->getExtInfo().getCC(); in EmitCallArgs()
4458 ArgTypes.assign(FPT->param_type_begin() + ParamsToSkip, in EmitCallArgs()
4459 FPT->param_type_end()); in EmitCallArgs()