1#ifdef GET_ATTR_NAMES
2#undef GET_ATTR_NAMES
3#ifndef ATTRIBUTE_ALL
4#define ATTRIBUTE_ALL(FIRST, SECOND)
5#endif
6
7#ifndef ATTRIBUTE_ENUM
8#define ATTRIBUTE_ENUM(FIRST, SECOND) ATTRIBUTE_ALL(FIRST, SECOND)
9#endif
10
11ATTRIBUTE_ENUM(AllocAlign,allocalign)
12ATTRIBUTE_ENUM(AllocatedPointer,allocptr)
13ATTRIBUTE_ENUM(AlwaysInline,alwaysinline)
14ATTRIBUTE_ENUM(Builtin,builtin)
15ATTRIBUTE_ENUM(Cold,cold)
16ATTRIBUTE_ENUM(Convergent,convergent)
17ATTRIBUTE_ENUM(CoroDestroyOnlyWhenComplete,coro_only_destroy_when_complete)
18ATTRIBUTE_ENUM(CoroElideSafe,coro_elide_safe)
19ATTRIBUTE_ENUM(DeadOnUnwind,dead_on_unwind)
20ATTRIBUTE_ENUM(DisableSanitizerInstrumentation,disable_sanitizer_instrumentation)
21ATTRIBUTE_ENUM(Flatten,flatten)
22ATTRIBUTE_ENUM(FnRetThunkExtern,fn_ret_thunk_extern)
23ATTRIBUTE_ENUM(Hot,hot)
24ATTRIBUTE_ENUM(HybridPatchable,hybrid_patchable)
25ATTRIBUTE_ENUM(ImmArg,immarg)
26ATTRIBUTE_ENUM(InReg,inreg)
27ATTRIBUTE_ENUM(InlineHint,inlinehint)
28ATTRIBUTE_ENUM(JumpTable,jumptable)
29ATTRIBUTE_ENUM(MinSize,minsize)
30ATTRIBUTE_ENUM(MustProgress,mustprogress)
31ATTRIBUTE_ENUM(Naked,naked)
32ATTRIBUTE_ENUM(Nest,nest)
33ATTRIBUTE_ENUM(NoAlias,noalias)
34ATTRIBUTE_ENUM(NoBuiltin,nobuiltin)
35ATTRIBUTE_ENUM(NoCallback,nocallback)
36ATTRIBUTE_ENUM(NoCfCheck,nocf_check)
37ATTRIBUTE_ENUM(NoCreateUndefOrPoison,nocreateundeforpoison)
38ATTRIBUTE_ENUM(NoDivergenceSource,nodivergencesource)
39ATTRIBUTE_ENUM(NoDuplicate,noduplicate)
40ATTRIBUTE_ENUM(NoExt,noext)
41ATTRIBUTE_ENUM(NoFree,nofree)
42ATTRIBUTE_ENUM(NoFreeObj,nofreeobj)
43ATTRIBUTE_ENUM(NoIPA,noipa)
44ATTRIBUTE_ENUM(NoImplicitFloat,noimplicitfloat)
45ATTRIBUTE_ENUM(NoInline,noinline)
46ATTRIBUTE_ENUM(NoMerge,nomerge)
47ATTRIBUTE_ENUM(NoOutline,nooutline)
48ATTRIBUTE_ENUM(NoProfile,noprofile)
49ATTRIBUTE_ENUM(NoRecurse,norecurse)
50ATTRIBUTE_ENUM(NoRedZone,noredzone)
51ATTRIBUTE_ENUM(NoReturn,noreturn)
52ATTRIBUTE_ENUM(NoSanitizeBounds,nosanitize_bounds)
53ATTRIBUTE_ENUM(NoSanitizeCoverage,nosanitize_coverage)
54ATTRIBUTE_ENUM(NoSync,nosync)
55ATTRIBUTE_ENUM(NoUndef,noundef)
56ATTRIBUTE_ENUM(NoUnwind,nounwind)
57ATTRIBUTE_ENUM(NonLazyBind,nonlazybind)
58ATTRIBUTE_ENUM(NonNull,nonnull)
59ATTRIBUTE_ENUM(NullPointerIsValid,null_pointer_is_valid)
60ATTRIBUTE_ENUM(OptForFuzzing,optforfuzzing)
61ATTRIBUTE_ENUM(OptimizeForDebugging,optdebug)
62ATTRIBUTE_ENUM(OptimizeForSize,optsize)
63ATTRIBUTE_ENUM(OptimizeNone,optnone)
64ATTRIBUTE_ENUM(PresplitCoroutine,presplitcoroutine)
65ATTRIBUTE_ENUM(ReadNone,readnone)
66ATTRIBUTE_ENUM(ReadOnly,readonly)
67ATTRIBUTE_ENUM(Returned,returned)
68ATTRIBUTE_ENUM(ReturnsTwice,returns_twice)
69ATTRIBUTE_ENUM(SExt,signext)
70ATTRIBUTE_ENUM(SafeStack,safestack)
71ATTRIBUTE_ENUM(SanitizeAddress,sanitize_address)
72ATTRIBUTE_ENUM(SanitizeAllocToken,sanitize_alloc_token)
73ATTRIBUTE_ENUM(SanitizeHWAddress,sanitize_hwaddress)
74ATTRIBUTE_ENUM(SanitizeMemTag,sanitize_memtag)
75ATTRIBUTE_ENUM(SanitizeMemory,sanitize_memory)
76ATTRIBUTE_ENUM(SanitizeNumericalStability,sanitize_numerical_stability)
77ATTRIBUTE_ENUM(SanitizeRealtime,sanitize_realtime)
78ATTRIBUTE_ENUM(SanitizeRealtimeBlocking,sanitize_realtime_blocking)
79ATTRIBUTE_ENUM(SanitizeThread,sanitize_thread)
80ATTRIBUTE_ENUM(SanitizeType,sanitize_type)
81ATTRIBUTE_ENUM(ShadowCallStack,shadowcallstack)
82ATTRIBUTE_ENUM(SkipProfile,skipprofile)
83ATTRIBUTE_ENUM(Speculatable,speculatable)
84ATTRIBUTE_ENUM(SpeculativeLoadHardening,speculative_load_hardening)
85ATTRIBUTE_ENUM(StackProtect,ssp)
86ATTRIBUTE_ENUM(StackProtectReq,sspreq)
87ATTRIBUTE_ENUM(StackProtectStrong,sspstrong)
88ATTRIBUTE_ENUM(StrictFP,strictfp)
89ATTRIBUTE_ENUM(SwiftAsync,swiftasync)
90ATTRIBUTE_ENUM(SwiftError,swifterror)
91ATTRIBUTE_ENUM(SwiftSelf,swiftself)
92ATTRIBUTE_ENUM(WillReturn,willreturn)
93ATTRIBUTE_ENUM(Writable,writable)
94ATTRIBUTE_ENUM(WriteOnly,writeonly)
95ATTRIBUTE_ENUM(ZExt,zeroext)
96ATTRIBUTE_ENUM(ByRef,byref)
97ATTRIBUTE_ENUM(ByVal,byval)
98ATTRIBUTE_ENUM(ElementType,elementtype)
99ATTRIBUTE_ENUM(InAlloca,inalloca)
100ATTRIBUTE_ENUM(Preallocated,preallocated)
101ATTRIBUTE_ENUM(StructRet,sret)
102ATTRIBUTE_ENUM(Alignment,align)
103ATTRIBUTE_ENUM(AllocKind,allockind)
104ATTRIBUTE_ENUM(AllocSize,allocsize)
105ATTRIBUTE_ENUM(Captures,captures)
106ATTRIBUTE_ENUM(DeadOnReturn,dead_on_return)
107ATTRIBUTE_ENUM(DenormalFPEnv,denormal_fpenv)
108ATTRIBUTE_ENUM(Dereferenceable,dereferenceable)
109ATTRIBUTE_ENUM(DereferenceableOrNull,dereferenceable_or_null)
110ATTRIBUTE_ENUM(Memory,memory)
111ATTRIBUTE_ENUM(NoFPClass,nofpclass)
112ATTRIBUTE_ENUM(StackAlignment,alignstack)
113ATTRIBUTE_ENUM(UWTable,uwtable)
114ATTRIBUTE_ENUM(VScaleRange,vscale_range)
115ATTRIBUTE_ENUM(Range,range)
116ATTRIBUTE_ENUM(Initializes,initializes)
117#undef ATTRIBUTE_ENUM
118
119#ifndef ATTRIBUTE_STRBOOL
120#define ATTRIBUTE_STRBOOL(FIRST, SECOND) ATTRIBUTE_ALL(FIRST, SECOND)
121#endif
122
123ATTRIBUTE_STRBOOL(AllowDirectAccessInHotPatchFunction,allow_direct_access_in_hot_patch_function)
124ATTRIBUTE_STRBOOL(LessPreciseFPMAD,less-precise-fpmad)
125ATTRIBUTE_STRBOOL(LoaderReplaceable,loader-replaceable)
126ATTRIBUTE_STRBOOL(MarkedForWindowsSecureHotPatching,marked_for_windows_hot_patching)
127ATTRIBUTE_STRBOOL(NoInlineLineTables,no-inline-line-tables)
128ATTRIBUTE_STRBOOL(NoJumpTables,no-jump-tables)
129ATTRIBUTE_STRBOOL(NoSignedZerosFPMath,no-signed-zeros-fp-math)
130ATTRIBUTE_STRBOOL(ProfileSampleAccurate,profile-sample-accurate)
131ATTRIBUTE_STRBOOL(UseSampleProfile,use-sample-profile)
132#undef ATTRIBUTE_STRBOOL
133
134#ifndef ATTRIBUTE_COMPLEXSTR
135#define ATTRIBUTE_COMPLEXSTR(FIRST, SECOND) ATTRIBUTE_ALL(FIRST, SECOND)
136#endif
137
138#undef ATTRIBUTE_COMPLEXSTR
139
140#undef ATTRIBUTE_ALL
141#endif
142
143#ifdef GET_ATTR_ENUM
144#undef GET_ATTR_ENUM
145FirstEnumAttr = 1,
146AllocAlign = 1,
147AllocatedPointer = 2,
148AlwaysInline = 3,
149Builtin = 4,
150Cold = 5,
151Convergent = 6,
152CoroDestroyOnlyWhenComplete = 7,
153CoroElideSafe = 8,
154DeadOnUnwind = 9,
155DisableSanitizerInstrumentation = 10,
156Flatten = 11,
157FnRetThunkExtern = 12,
158Hot = 13,
159HybridPatchable = 14,
160ImmArg = 15,
161InReg = 16,
162InlineHint = 17,
163JumpTable = 18,
164MinSize = 19,
165MustProgress = 20,
166Naked = 21,
167Nest = 22,
168NoAlias = 23,
169NoBuiltin = 24,
170NoCallback = 25,
171NoCfCheck = 26,
172NoCreateUndefOrPoison = 27,
173NoDivergenceSource = 28,
174NoDuplicate = 29,
175NoExt = 30,
176NoFree = 31,
177NoFreeObj = 32,
178NoIPA = 33,
179NoImplicitFloat = 34,
180NoInline = 35,
181NoMerge = 36,
182NoOutline = 37,
183NoProfile = 38,
184NoRecurse = 39,
185NoRedZone = 40,
186NoReturn = 41,
187NoSanitizeBounds = 42,
188NoSanitizeCoverage = 43,
189NoSync = 44,
190NoUndef = 45,
191NoUnwind = 46,
192NonLazyBind = 47,
193NonNull = 48,
194NullPointerIsValid = 49,
195OptForFuzzing = 50,
196OptimizeForDebugging = 51,
197OptimizeForSize = 52,
198OptimizeNone = 53,
199PresplitCoroutine = 54,
200ReadNone = 55,
201ReadOnly = 56,
202Returned = 57,
203ReturnsTwice = 58,
204SExt = 59,
205SafeStack = 60,
206SanitizeAddress = 61,
207SanitizeAllocToken = 62,
208SanitizeHWAddress = 63,
209SanitizeMemTag = 64,
210SanitizeMemory = 65,
211SanitizeNumericalStability = 66,
212SanitizeRealtime = 67,
213SanitizeRealtimeBlocking = 68,
214SanitizeThread = 69,
215SanitizeType = 70,
216ShadowCallStack = 71,
217SkipProfile = 72,
218Speculatable = 73,
219SpeculativeLoadHardening = 74,
220StackProtect = 75,
221StackProtectReq = 76,
222StackProtectStrong = 77,
223StrictFP = 78,
224SwiftAsync = 79,
225SwiftError = 80,
226SwiftSelf = 81,
227WillReturn = 82,
228Writable = 83,
229WriteOnly = 84,
230ZExt = 85,
231LastEnumAttr = 85,
232FirstTypeAttr = 86,
233ByRef = 86,
234ByVal = 87,
235ElementType = 88,
236InAlloca = 89,
237Preallocated = 90,
238StructRet = 91,
239LastTypeAttr = 91,
240FirstIntAttr = 92,
241Alignment = 92,
242AllocKind = 93,
243AllocSize = 94,
244Captures = 95,
245DeadOnReturn = 96,
246DenormalFPEnv = 97,
247Dereferenceable = 98,
248DereferenceableOrNull = 99,
249Memory = 100,
250NoFPClass = 101,
251StackAlignment = 102,
252UWTable = 103,
253VScaleRange = 104,
254LastIntAttr = 104,
255FirstConstantRangeAttr = 105,
256Range = 105,
257LastConstantRangeAttr = 105,
258FirstConstantRangeListAttr = 106,
259Initializes = 106,
260LastConstantRangeListAttr = 106,
261#endif
262
263#ifdef GET_ATTR_COMPAT_FUNC
264#undef GET_ATTR_COMPAT_FUNC
265static inline bool hasCompatibleFnAttrs(const Function &Caller,
266 const Function &Callee) {
267 bool Ret = true;
268
269 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee);
270 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee);
271 Ret &= isEqual<SanitizeTypeAttr>(Caller, Callee);
272 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee);
273 Ret &= isEqual<SanitizeHWAddressAttr>(Caller, Callee);
274 Ret &= isEqual<SanitizeMemTagAttr>(Caller, Callee);
275 Ret &= isEqual<SanitizeNumericalStabilityAttr>(Caller, Callee);
276 Ret &= isEqual<SanitizeRealtimeAttr>(Caller, Callee);
277 Ret &= isEqual<SanitizeRealtimeBlockingAttr>(Caller, Callee);
278 Ret &= isEqual<SafeStackAttr>(Caller, Callee);
279 Ret &= isEqual<ShadowCallStackAttr>(Caller, Callee);
280 Ret &= isEqual<UseSampleProfileAttr>(Caller, Callee);
281 Ret &= isEqual<NoProfileAttr>(Caller, Callee);
282 Ret &= checkDenormMode(Caller, Callee);
283 Ret &= checkStrictFP(Caller, Callee);
284 Ret &= isEqual(Caller, Callee, "sign-return-address");
285 Ret &= isEqual(Caller, Callee, "sign-return-address-key");
286 Ret &= isEqual(Caller, Callee, "branch-protection-pauth-lr");
287
288 return Ret;
289}
290
291static inline void mergeFnAttrs(Function &Caller,
292 const Function &Callee) {
293 setAND<LessPreciseFPMADAttr>(Caller, Callee);
294 setAND<NoSignedZerosFPMathAttr>(Caller, Callee);
295 setOR<NoImplicitFloatAttr>(Caller, Callee);
296 setOR<NoJumpTablesAttr>(Caller, Callee);
297 setOR<ProfileSampleAccurateAttr>(Caller, Callee);
298 setOR<SpeculativeLoadHardeningAttr>(Caller, Callee);
299 adjustCallerSSPLevel(Caller, Callee);
300 adjustCallerStackProbes(Caller, Callee);
301 adjustCallerStackProbeSize(Caller, Callee);
302 adjustMinLegalVectorWidth(Caller, Callee);
303 adjustNullPointerValidAttr(Caller, Callee);
304 setAND<MustProgressAttr>(Caller, Callee);
305}
306
307#endif
308#ifdef GET_ATTR_PROP_TABLE
309#undef GET_ATTR_PROP_TABLE
310static const uint8_t AttrPropTable[] = {
3110 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3120 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3130 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3140 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3150 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3160 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3170 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3180 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3190 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3200 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3210 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3220 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3230 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3240 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3250 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3260 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3270 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3280 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3290 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3300 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3310 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3320 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3330 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3340 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3350 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3360 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3370 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3380 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3390 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3400 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3410 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3420 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3430 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3440 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3450 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3460 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3470 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3480 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3490 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3500 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3510 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3520 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3530 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3540 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3550 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3560 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3570 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3580 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3590 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3600 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3610 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3620 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3630 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3640 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3650 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3660 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3670 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3680 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3690 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3700 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3710 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3720 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3730 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3740 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3750 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3760 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3770 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3780 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3790 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3800 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3810 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3820 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3830 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3840 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3850 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3860 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3870 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3880 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3890 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3900 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3910 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3920 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3930 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3940 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3950 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3960 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3970 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3980 | AttributeProperty::RetAttr | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3990 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
4000 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
4010 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
4020 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
4030 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4040 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4050 | AttributeProperty::ParamAttr | AttributeProperty::IntersectCustom,
4060 | AttributeProperty::ParamAttr | AttributeProperty::IntersectMin,
4070 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4080 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectMin,
4090 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectMin,
4100 | AttributeProperty::FnAttr | AttributeProperty::IntersectCustom,
4110 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
4120 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
4130 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4140 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4150 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
4160 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
417};
418#endif
419