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(NoNansFPMath,no-nans-fp-math)
127ATTRIBUTE_STRBOOL(NoSignedZerosFPMath,no-signed-zeros-fp-math)
128ATTRIBUTE_STRBOOL(ProfileSampleAccurate,profile-sample-accurate)
129ATTRIBUTE_STRBOOL(UseSampleProfile,use-sample-profile)
130#undef ATTRIBUTE_STRBOOL
131
132#ifndef ATTRIBUTE_COMPLEXSTR
133#define ATTRIBUTE_COMPLEXSTR(FIRST, SECOND) ATTRIBUTE_ALL(FIRST, SECOND)
134#endif
135
136#undef ATTRIBUTE_COMPLEXSTR
137
138#undef ATTRIBUTE_ALL
139#endif
140
141#ifdef GET_ATTR_ENUM
142#undef GET_ATTR_ENUM
143FirstEnumAttr = 1,
144AllocAlign = 1,
145AllocatedPointer = 2,
146AlwaysInline = 3,
147Builtin = 4,
148Cold = 5,
149Convergent = 6,
150CoroDestroyOnlyWhenComplete = 7,
151CoroElideSafe = 8,
152DeadOnUnwind = 9,
153DisableSanitizerInstrumentation = 10,
154FnRetThunkExtern = 11,
155Hot = 12,
156HybridPatchable = 13,
157ImmArg = 14,
158InReg = 15,
159InlineHint = 16,
160JumpTable = 17,
161MinSize = 18,
162MustProgress = 19,
163Naked = 20,
164Nest = 21,
165NoAlias = 22,
166NoBuiltin = 23,
167NoCallback = 24,
168NoCfCheck = 25,
169NoCreateUndefOrPoison = 26,
170NoDivergenceSource = 27,
171NoDuplicate = 28,
172NoExt = 29,
173NoFree = 30,
174NoImplicitFloat = 31,
175NoInline = 32,
176NoMerge = 33,
177NoOutline = 34,
178NoProfile = 35,
179NoRecurse = 36,
180NoRedZone = 37,
181NoReturn = 38,
182NoSanitizeBounds = 39,
183NoSanitizeCoverage = 40,
184NoSync = 41,
185NoUndef = 42,
186NoUnwind = 43,
187NonLazyBind = 44,
188NonNull = 45,
189NullPointerIsValid = 46,
190OptForFuzzing = 47,
191OptimizeForDebugging = 48,
192OptimizeForSize = 49,
193OptimizeNone = 50,
194PresplitCoroutine = 51,
195ReadNone = 52,
196ReadOnly = 53,
197Returned = 54,
198ReturnsTwice = 55,
199SExt = 56,
200SafeStack = 57,
201SanitizeAddress = 58,
202SanitizeAllocToken = 59,
203SanitizeHWAddress = 60,
204SanitizeMemTag = 61,
205SanitizeMemory = 62,
206SanitizeNumericalStability = 63,
207SanitizeRealtime = 64,
208SanitizeRealtimeBlocking = 65,
209SanitizeThread = 66,
210SanitizeType = 67,
211ShadowCallStack = 68,
212SkipProfile = 69,
213Speculatable = 70,
214SpeculativeLoadHardening = 71,
215StackProtect = 72,
216StackProtectReq = 73,
217StackProtectStrong = 74,
218StrictFP = 75,
219SwiftAsync = 76,
220SwiftError = 77,
221SwiftSelf = 78,
222WillReturn = 79,
223Writable = 80,
224WriteOnly = 81,
225ZExt = 82,
226LastEnumAttr = 82,
227FirstTypeAttr = 83,
228ByRef = 83,
229ByVal = 84,
230ElementType = 85,
231InAlloca = 86,
232Preallocated = 87,
233StructRet = 88,
234LastTypeAttr = 88,
235FirstIntAttr = 89,
236Alignment = 89,
237AllocKind = 90,
238AllocSize = 91,
239Captures = 92,
240DeadOnReturn = 93,
241DenormalFPEnv = 94,
242Dereferenceable = 95,
243DereferenceableOrNull = 96,
244Memory = 97,
245NoFPClass = 98,
246StackAlignment = 99,
247UWTable = 100,
248VScaleRange = 101,
249LastIntAttr = 101,
250FirstConstantRangeAttr = 102,
251Range = 102,
252LastConstantRangeAttr = 102,
253FirstConstantRangeListAttr = 103,
254Initializes = 103,
255LastConstantRangeListAttr = 103,
256#endif
257
258#ifdef GET_ATTR_COMPAT_FUNC
259#undef GET_ATTR_COMPAT_FUNC
260static inline bool hasCompatibleFnAttrs(const Function &Caller,
261 const Function &Callee) {
262 bool Ret = true;
263
264 Ret &= isEqual<SanitizeAddressAttr>(Caller, Callee);
265 Ret &= isEqual<SanitizeThreadAttr>(Caller, Callee);
266 Ret &= isEqual<SanitizeTypeAttr>(Caller, Callee);
267 Ret &= isEqual<SanitizeMemoryAttr>(Caller, Callee);
268 Ret &= isEqual<SanitizeHWAddressAttr>(Caller, Callee);
269 Ret &= isEqual<SanitizeMemTagAttr>(Caller, Callee);
270 Ret &= isEqual<SanitizeNumericalStabilityAttr>(Caller, Callee);
271 Ret &= isEqual<SanitizeRealtimeAttr>(Caller, Callee);
272 Ret &= isEqual<SanitizeRealtimeBlockingAttr>(Caller, Callee);
273 Ret &= isEqual<SafeStackAttr>(Caller, Callee);
274 Ret &= isEqual<ShadowCallStackAttr>(Caller, Callee);
275 Ret &= isEqual<UseSampleProfileAttr>(Caller, Callee);
276 Ret &= isEqual<NoProfileAttr>(Caller, Callee);
277 Ret &= checkDenormMode(Caller, Callee);
278 Ret &= checkStrictFP(Caller, Callee);
279 Ret &= isEqual(Caller, Callee, "sign-return-address");
280 Ret &= isEqual(Caller, Callee, "sign-return-address-key");
281 Ret &= isEqual(Caller, Callee, "branch-protection-pauth-lr");
282
283 return Ret;
284}
285
286static inline void mergeFnAttrs(Function &Caller,
287 const Function &Callee) {
288 setAND<LessPreciseFPMADAttr>(Caller, Callee);
289 setAND<NoNansFPMathAttr>(Caller, Callee);
290 setAND<NoSignedZerosFPMathAttr>(Caller, Callee);
291 setOR<NoImplicitFloatAttr>(Caller, Callee);
292 setOR<NoJumpTablesAttr>(Caller, Callee);
293 setOR<ProfileSampleAccurateAttr>(Caller, Callee);
294 setOR<SpeculativeLoadHardeningAttr>(Caller, Callee);
295 adjustCallerSSPLevel(Caller, Callee);
296 adjustCallerStackProbes(Caller, Callee);
297 adjustCallerStackProbeSize(Caller, Callee);
298 adjustMinLegalVectorWidth(Caller, Callee);
299 adjustNullPointerValidAttr(Caller, Callee);
300 setAND<MustProgressAttr>(Caller, Callee);
301}
302
303#endif
304#ifdef GET_ATTR_PROP_TABLE
305#undef GET_ATTR_PROP_TABLE
306static const uint8_t AttrPropTable[] = {
3070 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3080 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3090 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3100 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3110 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3120 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3130 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3140 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3150 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3160 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3170 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3180 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3190 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3200 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3210 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3220 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3230 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3240 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3250 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3260 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3270 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3280 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3290 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3300 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3310 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3320 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3330 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3340 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3350 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3360 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3370 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3380 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3390 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3400 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3410 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3420 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3430 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3440 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3450 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3460 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3470 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3480 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3490 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3500 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3510 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectAnd,
3520 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3530 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3540 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3550 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3560 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3570 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3580 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3590 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3600 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3610 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3620 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | 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::IntersectPreserve,
3750 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3760 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
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::ParamAttr | AttributeProperty::IntersectPreserve,
3830 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3840 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3850 | AttributeProperty::FnAttr | AttributeProperty::IntersectAnd,
3860 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3870 | AttributeProperty::ParamAttr | AttributeProperty::IntersectAnd,
3880 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
3890 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3900 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3910 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3920 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3930 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3940 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
3950 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
3960 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3970 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
3980 | AttributeProperty::ParamAttr | AttributeProperty::IntersectCustom,
3990 | AttributeProperty::ParamAttr | AttributeProperty::IntersectMin,
4000 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4010 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectMin,
4020 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectMin,
4030 | AttributeProperty::FnAttr | AttributeProperty::IntersectCustom,
4040 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
4050 | AttributeProperty::FnAttr | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectPreserve,
4060 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4070 | AttributeProperty::FnAttr | AttributeProperty::IntersectPreserve,
4080 | AttributeProperty::ParamAttr | AttributeProperty::RetAttr | AttributeProperty::IntersectCustom,
4090 | AttributeProperty::ParamAttr | AttributeProperty::IntersectPreserve,
410};
411#endif
412