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