| /freebsd-13.1/contrib/llvm-project/clang/lib/CodeGen/ |
| H A D | CGCleanup.h | 266 struct ExtInfo &getExtInfo() { in getExtInfo() function 271 const struct ExtInfo &getExtInfo() const { in getExtInfo() function 374 struct ExtInfo &ExtInfo = getExtInfo(); in addBranchAfter() 410 return getExtInfo().Branches.insert(Block).second; in addBranchThrough()
|
| H A D | CGCall.cpp | 113 FTNP->getExtInfo(), {}, RequiredArgs(0)); in arrangeFreeFunctionType() 190 FTP->getExtInfo(), paramInfos, in arrangeLLVMFunctionInfo() 348 FunctionType::ExtInfo extInfo = FTP->getExtInfo(); in arrangeCXXStructorDeclaration() 421 FunctionType::ExtInfo Info = FPT->getExtInfo(); in arrangeCXXConstructorCall() 453 /*chainCall=*/false, None, noProto->getExtInfo(), {},RequiredArgs::All); in arrangeFunctionDeclaration() 540 FTP->getExtInfo(), {}, RequiredArgs(1)); in arrangeUnprototypedMustTailThunk() 606 argTypes, fnType->getExtInfo(), paramInfos, in arrangeFreeFunctionLikeCall() 639 argTypes, proto->getExtInfo(), paramInfos, in arrangeBlockFunctionDeclaration() 693 FunctionType::ExtInfo info = proto->getExtInfo(); in arrangeCXXMethodCall() 726 signature.getExtInfo(), in arrangeCall() [all …]
|
| H A D | TargetInfo.cpp | 9323 FT, FT->getExtInfo().withCallingConv(CC_OpenCLKernel)); in setCUDAKernelCallingConvention()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | TypeProperties.td | 267 let Read = [{ node->getExtInfo().getNoReturn() }]; 270 let Read = [{ node->getExtInfo().getHasRegParm() }]; 273 let Read = [{ node->getExtInfo().getRegParm() }]; 276 let Read = [{ node->getExtInfo().getCC() }]; 279 let Read = [{ node->getExtInfo().getProducesResult() }]; 282 let Read = [{ node->getExtInfo().getNoCallerSavedRegs() }]; 285 let Read = [{ node->getExtInfo().getNoCfCheck() }]; 288 let Read = [{ node->getExtInfo().getCmseNSCall() }];
|
| H A D | Decl.h | 742 ExtInfo *getExtInfo() { return DeclInfo.get<ExtInfo*>(); } in getExtInfo() function 757 ? getExtInfo()->TInfo in getTypeSourceInfo() 763 getExtInfo()->TInfo = TI; in setTypeSourceInfo() 793 return hasExtInfo() ? getExtInfo()->QualifierLoc in getQualifierLoc() 803 return hasExtInfo() ? getExtInfo()->TrailingRequiresClause in getTrailingRequiresClause() 808 return hasExtInfo() ? getExtInfo()->TrailingRequiresClause in getTrailingRequiresClause() 815 return hasExtInfo() ? getExtInfo()->NumTemplParamLists : 0; in getNumTemplateParameterLists() 820 return getExtInfo()->TemplParamLists[index]; in getTemplateParameterList() 3343 const ExtInfo *getExtInfo() const { in getExtInfo() function 3543 return hasExtInfo() ? getExtInfo()->QualifierLoc in getQualifierLoc() [all …]
|
| H A D | CanonicalType.h | 489 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo) 496 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo) 503 LLVM_CLANG_CANPROXY_SIMPLE_ACCESSOR(FunctionType::ExtInfo, getExtInfo)
|
| H A D | Type.h | 3813 bool getHasRegParm() const { return getExtInfo().getHasRegParm(); } 3814 unsigned getRegParmType() const { return getExtInfo().getRegParm(); } 3819 bool getNoReturnAttr() const { return getExtInfo().getNoReturn(); } 3821 bool getCmseNSCallAttr() const { return getExtInfo().getCmseNSCall(); } 3822 CallingConv getCallConv() const { return getExtInfo().getCC(); } 3823 ExtInfo getExtInfo() const { return ExtInfo(FunctionTypeBits.ExtInfo); } 3866 Profile(ID, getReturnType(), getExtInfo()); 4110 EPI.ExtInfo = getExtInfo(); 6578 return FT->getExtInfo(); 6580 return FT->getExtInfo();
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/AST/ |
| H A D | Decl.cpp | 1875 getExtInfo()->TInfo = savedTInfo; in setQualifierInfo() 1878 getExtInfo()->QualifierLoc = QualifierLoc; in setQualifierInfo() 1881 getExtInfo()->QualifierLoc = QualifierLoc; in setQualifierInfo() 1894 getExtInfo()->TInfo = savedTInfo; in setTrailingRequiresClause() 1897 getExtInfo()->TrailingRequiresClause = TrailingRequiresClause; in setTrailingRequiresClause() 1910 getExtInfo()->TInfo = savedTInfo; in setTemplateParameterListsInfo() 1913 getExtInfo()->setTemplateParameterListsInfo(Context, TPLists); in setTemplateParameterListsInfo() 4330 getExtInfo()->QualifierLoc = QualifierLoc; in setQualifierInfo() 4334 if (getExtInfo()->NumTemplParamLists == 0) { in setQualifierInfo() 4335 getASTContext().Deallocate(getExtInfo()); in setQualifierInfo() [all …]
|
| H A D | TypePrinter.cpp | 895 FunctionType::ExtInfo Info = T->getExtInfo(); in printFunctionProtoAfter() 1023 printFunctionAfter(T->getExtInfo(), OS); in printFunctionNoProtoAfter() 1650 ->getExtInfo().getProducesResult()) in printAttributedAfter()
|
| H A D | ASTStructuralEquivalence.cpp | 911 if (!IsStructurallyEquivalent(Context, Function1->getExtInfo(), in IsStructurallyEquivalent() 912 Function2->getExtInfo())) in IsStructurallyEquivalent()
|
| H A D | ODRHash.cpp | 890 T->getExtInfo().Profile(ID); in VisitFunctionType()
|
| H A D | ItaniumMangle.cpp | 3117 if (T->getExtInfo() == FunctionType::ExtInfo()) in mangleExtFunctionInfo() 3124 StringRef CCQualifier = getCallingConvQualifierName(T->getExtInfo().getCC()); in mangleExtFunctionInfo() 3227 if (Proto->getExtInfo().getProducesResult() && FD == nullptr) in mangleBareFunctionType()
|
| H A D | Type.cpp | 1030 return Ctx.getFunctionNoProtoType(returnType, T->getExtInfo()); in VisitFunctionNoProtoType() 1327 return Ctx.getFunctionNoProtoType(returnType, funcType->getExtInfo()); in VisitFunctionType()
|
| H A D | JSONNodeDumper.cpp | 536 FunctionType::ExtInfo E = T->getExtInfo(); in VisitFunctionType()
|
| H A D | ASTDiagnostic.cpp | 103 : Context.getFunctionNoProtoType(RT, FT->getExtInfo()); in Desugar()
|
| H A D | TextNodeDumper.cpp | 1488 auto EI = T->getExtInfo(); in VisitFunctionType()
|
| H A D | ASTContext.cpp | 3051 if (T->getExtInfo() == Info) in adjustFunctionType() 3134 return getFunctionNoProtoType(RetTy, Proto->getExtInfo()); in getFunctionTypeWithoutPtrSizes() 9496 FunctionType::ExtInfo lbaseInfo = lbase->getExtInfo(); in mergeFunctionTypes() 9497 FunctionType::ExtInfo rbaseInfo = rbase->getExtInfo(); in mergeFunctionTypes()
|
| /freebsd-13.1/contrib/llvm-project/clang/include/clang/CodeGen/ |
| H A D | CGFunctionInfo.h | 699 FunctionType::ExtInfo getExtInfo() const { in getExtInfo() function
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Sema/ |
| H A D | SemaType.cpp | 7430 FunctionType::ExtInfo EI = unwrapped.get()->getExtInfo().withNoReturn(true); in handleFunctionTypeAttr() 7449 unwrapped.get()->getExtInfo().withCmseNSCall(true); in handleFunctionTypeAttr() 7472 = unwrapped.get()->getExtInfo().withProducesResult(true); in handleFunctionTypeAttr() 7490 unwrapped.get()->getExtInfo().withNoCallerSavedRegs(true); in handleFunctionTypeAttr() 7511 unwrapped.get()->getExtInfo().withNoCfCheck(true); in handleFunctionTypeAttr() 7537 unwrapped.get()->getExtInfo().withRegParm(value); in handleFunctionTypeAttr() 7655 auto EI = unwrapped.get()->getExtInfo().withCallingConv(CC); in handleFunctionTypeAttr() 7713 FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(ToCC)); in adjustMemberFunctionCC()
|
| H A D | SemaDecl.cpp | 3418 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); in MergeFunctionDecl() 3419 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); in MergeFunctionDecl() 3426 FunctionType::ExtInfo FI = FT->getExtInfo(); in MergeFunctionDecl() 9583 CallingConv CC = FT->getExtInfo().getCC(); in ActOnFunctionDeclarator() 9892 EPI.ExtInfo = FT->getExtInfo(); in ActOnFunctionDeclarator() 10367 FunctionType::ExtInfo OldTypeInfo = OldType->getExtInfo(); in areMultiversionVariantFunctionsCompatible() 10368 FunctionType::ExtInfo NewTypeInfo = NewType->getExtInfo(); in areMultiversionVariantFunctionsCompatible() 11169 FT = Context.adjustFunctionType(FT, FT->getExtInfo().withCallingConv(CC_C)); in CheckMain() 11320 FT, FT->getExtInfo().withCallingConv(CC_X86StdCall)); in CheckMSVCRTEntryPoint() 11325 FT->getExtInfo().withCallingConv(CC_C)); in CheckMSVCRTEntryPoint()
|
| H A D | SemaTemplateInstantiateDecl.cpp | 1922 if (OrigFunc->getExtInfo() == NewFunc->getExtInfo()) in adjustFunctionTypeForInstantiation() 1926 NewEPI.ExtInfo = OrigFunc->getExtInfo(); in adjustFunctionTypeForInstantiation()
|
| H A D | SemaOverload.cpp | 1565 FunctionType::ExtInfo FromEInfo = FromFn->getExtInfo(); in IsFunctionConversion() 1568 FunctionType::ExtInfo ToEInfo = ToFn->getExtInfo(); in IsFunctionConversion() 2778 FunctionType::ExtInfo FromEInfo = FromFunctionType->getExtInfo(); in IsBlockPointerConversion() 2779 FunctionType::ExtInfo ToEInfo = ToFunctionType->getExtInfo(); in IsBlockPointerConversion()
|
| H A D | SemaExpr.cpp | 3405 fty->getExtInfo()); in BuildDeclarationNameExpr() 8887 FunctionType::ExtInfo ToEInfo = ToFn->getExtInfo(); in IsInvalidCmseNSCallConversion() 8888 FunctionType::ExtInfo FromEInfo = FromFn->getExtInfo(); in IsInvalidCmseNSCallConversion() 15583 FunctionType::ExtInfo Ext = FTy->getExtInfo(); in ActOnBlockStmtExpr() 19389 FnType->getExtInfo()); in VisitCallExpr()
|
| H A D | SemaExprCXX.cpp | 6931 ReturnsRetained = FTy->getExtInfo().getProducesResult(); in MaybeBindToTemporary()
|
| /freebsd-13.1/contrib/llvm-project/clang/lib/Serialization/ |
| H A D | ASTWriterDecl.cpp | 423 Record.AddQualifierInfo(*D->getExtInfo()); in VisitTagDecl() 531 DeclaratorDecl::ExtInfo *Info = D->getExtInfo(); in VisitDeclaratorDecl()
|