Qt
Internal/Contributor docs for the Qt SDK. <b>Note:</b> These are NOT official API docs; those are found <a href='https://doc.qt.io/'>here</a>.
Loading...
Searching...
No Matches
qsimd_x86_p.h
Go to the documentation of this file.
1// Copyright (C) 2022 Intel Corporation.
2// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
3// This is a generated file. DO NOT EDIT.
4// Please see util/x86simdgen/README.md
5
6//
7// W A R N I N G
8// -------------
9//
10// This file is not part of the Qt API. It exists purely as an
11// implementation detail. This header file may change from version to
12// version without notice, or even be removed.
13//
14// We mean it.
15//
16
17// This is a generated file. DO NOT EDIT.
18// Please see util/x86simdgen/README.md
19#ifndef QSIMD_X86_P_H
20#define QSIMD_X86_P_H
21
22#include <stdint.h>
23
24// in CPUID Leaf 1, EDX:
25#define cpu_feature_sse2 (UINT64_C(1) << 0)
26
27// in CPUID Leaf 1, ECX:
28#define cpu_feature_sse3 (UINT64_C(1) << 1)
29#define cpu_feature_ssse3 (UINT64_C(1) << 2)
30#define cpu_feature_fma (UINT64_C(1) << 3)
31#define cpu_feature_sse4_1 (UINT64_C(1) << 4)
32#define cpu_feature_sse4_2 (UINT64_C(1) << 5)
33#define cpu_feature_movbe (UINT64_C(1) << 6)
34#define cpu_feature_popcnt (UINT64_C(1) << 7)
35#define cpu_feature_aes (UINT64_C(1) << 8)
36#define cpu_feature_avx (UINT64_C(1) << 9)
37#define cpu_feature_f16c (UINT64_C(1) << 10)
38#define cpu_feature_rdrnd (UINT64_C(1) << 11)
39
40// in CPUID Leaf 7, Sub-leaf 0, EBX:
41#define cpu_feature_bmi (UINT64_C(1) << 12)
42#define cpu_feature_avx2 (UINT64_C(1) << 13)
43#define cpu_feature_bmi2 (UINT64_C(1) << 14)
44#define cpu_feature_avx512f (UINT64_C(1) << 15)
45#define cpu_feature_avx512dq (UINT64_C(1) << 16)
46#define cpu_feature_rdseed (UINT64_C(1) << 17)
47#define cpu_feature_avx512ifma (UINT64_C(1) << 18)
48#define cpu_feature_avx512cd (UINT64_C(1) << 19)
49#define cpu_feature_sha (UINT64_C(1) << 20)
50#define cpu_feature_avx512bw (UINT64_C(1) << 21)
51#define cpu_feature_avx512vl (UINT64_C(1) << 22)
52
53// in CPUID Leaf 7, Sub-leaf 0, ECX:
54#define cpu_feature_avx512vbmi (UINT64_C(1) << 23)
55#define cpu_feature_waitpkg (UINT64_C(1) << 24)
56#define cpu_feature_avx512vbmi2 (UINT64_C(1) << 25)
57#define cpu_feature_shstk (UINT64_C(1) << 26)
58#define cpu_feature_gfni (UINT64_C(1) << 27)
59#define cpu_feature_vaes (UINT64_C(1) << 28)
60#define cpu_feature_avx512bitalg (UINT64_C(1) << 29)
61#define cpu_feature_avx512vpopcntdq (UINT64_C(1) << 30)
62
63// in CPUID Leaf 7, Sub-leaf 0, EDX:
64#define cpu_feature_hybrid (UINT64_C(1) << 31)
65#define cpu_feature_ibt (UINT64_C(1) << 32)
66#define cpu_feature_avx512fp16 (UINT64_C(1) << 33)
67
68// in CPUID Leaf 7, Sub-leaf 1, EAX:
69#define cpu_feature_raoint (UINT64_C(1) << 34)
70#define cpu_feature_cmpccxadd (UINT64_C(1) << 35)
71#define cpu_feature_avxifma (UINT64_C(1) << 36)
72#define cpu_feature_lam (UINT64_C(1) << 37)
73
74// CPU architectures
75#define cpu_x86_64 (0 \
76 | cpu_feature_sse2)
77#define cpu_core2 (cpu_x86_64 \
78 | cpu_feature_sse3 \
79 | cpu_feature_ssse3)
80#define cpu_nhm (cpu_core2 \
81 | cpu_feature_sse4_1 \
82 | cpu_feature_sse4_2 \
83 | cpu_feature_popcnt)
84#define cpu_wsm (cpu_nhm)
85#define cpu_snb (cpu_wsm \
86 | cpu_feature_avx)
87#define cpu_ivb (cpu_snb \
88 | cpu_feature_f16c \
89 | cpu_feature_rdrnd)
90#define cpu_hsw (cpu_ivb \
91 | cpu_feature_avx2 \
92 | cpu_feature_fma \
93 | cpu_feature_bmi \
94 | cpu_feature_bmi2 \
95 | cpu_feature_movbe)
96#define cpu_bdw (cpu_hsw \
97 | cpu_feature_rdseed)
98#define cpu_bdx (cpu_bdw)
99#define cpu_skl (cpu_bdw)
100#define cpu_skx (cpu_skl \
101 | cpu_feature_avx512f \
102 | cpu_feature_avx512dq \
103 | cpu_feature_avx512cd \
104 | cpu_feature_avx512bw \
105 | cpu_feature_avx512vl)
106#define cpu_clx (cpu_skx)
107#define cpu_cpx (cpu_clx)
108#define cpu_plc (cpu_skx \
109 | cpu_feature_avx512ifma \
110 | cpu_feature_avx512vbmi)
111#define cpu_snc (cpu_plc \
112 | cpu_feature_avx512vbmi2 \
113 | cpu_feature_gfni \
114 | cpu_feature_vaes \
115 | cpu_feature_avx512bitalg \
116 | cpu_feature_avx512vpopcntdq)
117#define cpu_wlc (cpu_snc \
118 | cpu_feature_shstk \
119 | cpu_feature_ibt)
120#define cpu_glc (cpu_wlc \
121 | cpu_feature_waitpkg)
122#define cpu_rpc (cpu_glc)
123#define cpu_rwc (cpu_rpc)
124#define cpu_slm (cpu_wsm \
125 | cpu_feature_rdrnd \
126 | cpu_feature_movbe)
127#define cpu_glm (cpu_slm \
128 | cpu_feature_rdseed)
129#define cpu_tnt (cpu_glm \
130 | cpu_feature_gfni \
131 | cpu_feature_waitpkg)
132#define cpu_grt (cpu_skl \
133 | cpu_feature_gfni \
134 | cpu_feature_vaes \
135 | cpu_feature_shstk \
136 | cpu_feature_ibt \
137 | cpu_feature_waitpkg)
138#define cpu_cmt (cpu_grt \
139 | cpu_feature_cmpccxadd \
140 | cpu_feature_avxifma)
141#define cpu_cnl (cpu_plc)
142#define cpu_icl (cpu_snc)
143#define cpu_tgl (cpu_wlc)
144#define cpu_adl (cpu_grt)
145#define cpu_rpl (cpu_grt)
146#define cpu_mtl (cpu_cmt)
147#define cpu_arl (cpu_cmt)
148#define cpu_lnl (cpu_cmt)
149#define cpu_icx (cpu_snc)
150#define cpu_spr (cpu_glc)
151#define cpu_emr (cpu_spr)
152#define cpu_gnr (cpu_glc)
153#define cpu_srf (cpu_cmt \
154 | cpu_feature_cmpccxadd \
155 | cpu_feature_avxifma)
156#define cpu_grr (cpu_srf \
157 | cpu_feature_raoint)
158#define cpu_cwf (cpu_srf)
159#define cpu_nehalem (cpu_nhm)
160#define cpu_westmere (cpu_wsm)
161#define cpu_sandybridge (cpu_snb)
162#define cpu_ivybridge (cpu_ivb)
163#define cpu_haswell (cpu_hsw)
164#define cpu_broadwell (cpu_bdw)
165#define cpu_skylake (cpu_skl)
166#define cpu_skylake_avx512 (cpu_skx)
167#define cpu_cascadelake (cpu_clx)
168#define cpu_cooperlake (cpu_cpx)
169#define cpu_palmcove (cpu_plc)
170#define cpu_cannonlake (cpu_cnl)
171#define cpu_sunnycove (cpu_snc)
172#define cpu_icelake_client (cpu_icl)
173#define cpu_icelake_server (cpu_icx)
174#define cpu_willowcove (cpu_wlc)
175#define cpu_tigerlake (cpu_tgl)
176#define cpu_goldencove (cpu_glc)
177#define cpu_alderlake (cpu_adl)
178#define cpu_raptorcove (cpu_rpc)
179#define cpu_raptorlake (cpu_rpl)
180#define cpu_redwoodcove (cpu_rwc)
181#define cpu_meteorlake (cpu_mtl)
182#define cpu_arrowlake (cpu_arl)
183#define cpu_lunarlake (cpu_lnl)
184#define cpu_sapphirerapids (cpu_spr)
185#define cpu_emeraldrapids (cpu_emr)
186#define cpu_graniterapids (cpu_gnr)
187#define cpu_silvermont (cpu_slm)
188#define cpu_goldmont (cpu_glm)
189#define cpu_tremont (cpu_tnt)
190#define cpu_gracemont (cpu_grt)
191#define cpu_crestmont (cpu_cmt)
192#define cpu_grandridge (cpu_grr)
193#define cpu_sierraforest (cpu_srf)
194#define cpu_clearwaterforest (cpu_cwf)
195
196// __attribute__ target strings for GCC and Clang
197#define QT_FUNCTION_TARGET_STRING_SSE2 "sse2"
198#define QT_FUNCTION_TARGET_STRING_SSE3 "sse3"
199#define QT_FUNCTION_TARGET_STRING_SSSE3 "ssse3"
200#define QT_FUNCTION_TARGET_STRING_FMA "fma"
201#define QT_FUNCTION_TARGET_STRING_SSE4_1 "sse4.1"
202#define QT_FUNCTION_TARGET_STRING_SSE4_2 "sse4.2"
203#define QT_FUNCTION_TARGET_STRING_MOVBE "movbe"
204#define QT_FUNCTION_TARGET_STRING_POPCNT "popcnt"
205#define QT_FUNCTION_TARGET_STRING_AES "aes,sse4.2"
206#define QT_FUNCTION_TARGET_STRING_AVX "avx"
207#define QT_FUNCTION_TARGET_STRING_F16C "f16c,avx"
208#define QT_FUNCTION_TARGET_STRING_RDRND "rdrnd"
209#define QT_FUNCTION_TARGET_STRING_BMI "bmi"
210#define QT_FUNCTION_TARGET_STRING_AVX2 "avx2,avx"
211#define QT_FUNCTION_TARGET_STRING_BMI2 "bmi2"
212#define QT_FUNCTION_TARGET_STRING_AVX512F "avx512f,avx"
213#define QT_FUNCTION_TARGET_STRING_AVX512DQ "avx512dq,avx512f"
214#define QT_FUNCTION_TARGET_STRING_RDSEED "rdseed"
215#define QT_FUNCTION_TARGET_STRING_AVX512IFMA "avx512ifma,avx512f"
216#define QT_FUNCTION_TARGET_STRING_AVX512CD "avx512cd,avx512f"
217#define QT_FUNCTION_TARGET_STRING_SHA "sha"
218#define QT_FUNCTION_TARGET_STRING_AVX512BW "avx512bw,avx512f"
219#define QT_FUNCTION_TARGET_STRING_AVX512VL "avx512vl,avx512f"
220#define QT_FUNCTION_TARGET_STRING_AVX512VBMI "avx512vbmi,avx512f"
221#define QT_FUNCTION_TARGET_STRING_WAITPKG "waitpkg"
222#define QT_FUNCTION_TARGET_STRING_AVX512VBMI2 "avx512vbmi2,avx512f"
223#define QT_FUNCTION_TARGET_STRING_SHSTK "shstk"
224#define QT_FUNCTION_TARGET_STRING_GFNI "gfni"
225#define QT_FUNCTION_TARGET_STRING_VAES "vaes,avx2,avx,aes"
226#define QT_FUNCTION_TARGET_STRING_AVX512BITALG "avx512bitalg,avx512f"
227#define QT_FUNCTION_TARGET_STRING_AVX512VPOPCNTDQ "avx512vpopcntdq,avx512f"
228#define QT_FUNCTION_TARGET_STRING_HYBRID "hybrid"
229#define QT_FUNCTION_TARGET_STRING_IBT "ibt"
230#define QT_FUNCTION_TARGET_STRING_AVX512FP16 "avx512fp16,avx512f,f16c"
231#define QT_FUNCTION_TARGET_STRING_RAOINT "raoint"
232#define QT_FUNCTION_TARGET_STRING_CMPCCXADD "cmpccxadd"
233#define QT_FUNCTION_TARGET_STRING_AVXIFMA "avxifma,avx"
234#define QT_FUNCTION_TARGET_STRING_LAM "lam"
235#define QT_FUNCTION_TARGET_STRING_ARCH_X86_64 "sse2"
236#define QT_FUNCTION_TARGET_STRING_ARCH_CORE2 QT_FUNCTION_TARGET_STRING_ARCH_X86_64 ",sse3,ssse3,cx16"
237#define QT_FUNCTION_TARGET_STRING_ARCH_NHM QT_FUNCTION_TARGET_STRING_ARCH_CORE2 ",sse4.1,sse4.2,popcnt"
238#define QT_FUNCTION_TARGET_STRING_ARCH_WSM QT_FUNCTION_TARGET_STRING_ARCH_NHM
239#define QT_FUNCTION_TARGET_STRING_ARCH_SNB QT_FUNCTION_TARGET_STRING_ARCH_WSM ",avx"
240#define QT_FUNCTION_TARGET_STRING_ARCH_IVB QT_FUNCTION_TARGET_STRING_ARCH_SNB ",f16c,rdrnd,fsgsbase"
241#define QT_FUNCTION_TARGET_STRING_ARCH_HSW QT_FUNCTION_TARGET_STRING_ARCH_IVB ",avx2,fma,bmi,bmi2,lzcnt,movbe"
242#define QT_FUNCTION_TARGET_STRING_ARCH_BDW QT_FUNCTION_TARGET_STRING_ARCH_HSW ",adx,rdseed"
243#define QT_FUNCTION_TARGET_STRING_ARCH_BDX QT_FUNCTION_TARGET_STRING_ARCH_BDW
244#define QT_FUNCTION_TARGET_STRING_ARCH_SKL QT_FUNCTION_TARGET_STRING_ARCH_BDW ",xsavec,xsaves"
245#define QT_FUNCTION_TARGET_STRING_ARCH_SKX QT_FUNCTION_TARGET_STRING_ARCH_SKL ",avx512f,avx512dq,avx512cd,avx512bw,avx512vl"
246#define QT_FUNCTION_TARGET_STRING_ARCH_CLX QT_FUNCTION_TARGET_STRING_ARCH_SKX ",avx512vnni"
247#define QT_FUNCTION_TARGET_STRING_ARCH_CPX QT_FUNCTION_TARGET_STRING_ARCH_CLX ",avx512bf16"
248#define QT_FUNCTION_TARGET_STRING_ARCH_PLC QT_FUNCTION_TARGET_STRING_ARCH_SKX ",avx512ifma,avx512vbmi"
249#define QT_FUNCTION_TARGET_STRING_ARCH_SNC QT_FUNCTION_TARGET_STRING_ARCH_PLC ",avx512vbmi2,gfni,vaes,vpclmulqdq,avx512vnni,avx512bitalg,avx512vpopcntdq"
250#define QT_FUNCTION_TARGET_STRING_ARCH_WLC QT_FUNCTION_TARGET_STRING_ARCH_SNC ",shstk,movdiri,movdir64b,ibt,keylocker"
251#define QT_FUNCTION_TARGET_STRING_ARCH_GLC QT_FUNCTION_TARGET_STRING_ARCH_WLC ",avx512bf16,avxvnni,cldemote,waitpkg,serialize,uintr"
252#define QT_FUNCTION_TARGET_STRING_ARCH_RPC QT_FUNCTION_TARGET_STRING_ARCH_GLC
253#define QT_FUNCTION_TARGET_STRING_ARCH_RWC QT_FUNCTION_TARGET_STRING_ARCH_RPC ",prefetchiti"
254#define QT_FUNCTION_TARGET_STRING_ARCH_SLM QT_FUNCTION_TARGET_STRING_ARCH_WSM ",rdrnd,movbe"
255#define QT_FUNCTION_TARGET_STRING_ARCH_GLM QT_FUNCTION_TARGET_STRING_ARCH_SLM ",fsgsbase,rdseed,lzcnt,xsavec,xsaves"
256#define QT_FUNCTION_TARGET_STRING_ARCH_TNT QT_FUNCTION_TARGET_STRING_ARCH_GLM ",clwb,gfni,cldemote,waitpkg,movdiri,movdir64b"
257#define QT_FUNCTION_TARGET_STRING_ARCH_GRT QT_FUNCTION_TARGET_STRING_ARCH_SKL ",avxvnni,gfni,vaes,vpclmulqdq,serialize,shstk,cldemote,movdiri,movdir64b,ibt,waitpkg,keylocker"
258#define QT_FUNCTION_TARGET_STRING_ARCH_CMT QT_FUNCTION_TARGET_STRING_ARCH_GRT ",cmpccxadd,avxifma,avxneconvert,avxvnniint8"
259#define QT_FUNCTION_TARGET_STRING_ARCH_CNL QT_FUNCTION_TARGET_STRING_ARCH_PLC
260#define QT_FUNCTION_TARGET_STRING_ARCH_ICL QT_FUNCTION_TARGET_STRING_ARCH_SNC
261#define QT_FUNCTION_TARGET_STRING_ARCH_TGL QT_FUNCTION_TARGET_STRING_ARCH_WLC
262#define QT_FUNCTION_TARGET_STRING_ARCH_ADL QT_FUNCTION_TARGET_STRING_ARCH_GRT
263#define QT_FUNCTION_TARGET_STRING_ARCH_RPL QT_FUNCTION_TARGET_STRING_ARCH_GRT
264#define QT_FUNCTION_TARGET_STRING_ARCH_MTL QT_FUNCTION_TARGET_STRING_ARCH_CMT
265#define QT_FUNCTION_TARGET_STRING_ARCH_ARL QT_FUNCTION_TARGET_STRING_ARCH_CMT
266#define QT_FUNCTION_TARGET_STRING_ARCH_LNL QT_FUNCTION_TARGET_STRING_ARCH_CMT
267#define QT_FUNCTION_TARGET_STRING_ARCH_ICX QT_FUNCTION_TARGET_STRING_ARCH_SNC ",pconfig"
268#define QT_FUNCTION_TARGET_STRING_ARCH_SPR QT_FUNCTION_TARGET_STRING_ARCH_GLC ",pconfig,amx-tile,amx-bf16,amx-int8"
269#define QT_FUNCTION_TARGET_STRING_ARCH_EMR QT_FUNCTION_TARGET_STRING_ARCH_SPR
270#define QT_FUNCTION_TARGET_STRING_ARCH_GNR QT_FUNCTION_TARGET_STRING_ARCH_GLC ",pconfig,amx-tile,amx-bf16,amx-int8,amx-fp16,amx-complex"
271#define QT_FUNCTION_TARGET_STRING_ARCH_SRF QT_FUNCTION_TARGET_STRING_ARCH_CMT ",cmpccxadd,avxifma,avxneconvert,avxvnniint8"
272#define QT_FUNCTION_TARGET_STRING_ARCH_GRR QT_FUNCTION_TARGET_STRING_ARCH_SRF ",raoint"
273#define QT_FUNCTION_TARGET_STRING_ARCH_CWF QT_FUNCTION_TARGET_STRING_ARCH_SRF
274#define QT_FUNCTION_TARGET_STRING_ARCH_NEHALEM QT_FUNCTION_TARGET_STRING_ARCH_NHM
275#define QT_FUNCTION_TARGET_STRING_ARCH_WESTMERE QT_FUNCTION_TARGET_STRING_ARCH_WSM
276#define QT_FUNCTION_TARGET_STRING_ARCH_SANDYBRIDGE QT_FUNCTION_TARGET_STRING_ARCH_SNB
277#define QT_FUNCTION_TARGET_STRING_ARCH_IVYBRIDGE QT_FUNCTION_TARGET_STRING_ARCH_IVB
278#define QT_FUNCTION_TARGET_STRING_ARCH_HASWELL QT_FUNCTION_TARGET_STRING_ARCH_HSW
279#define QT_FUNCTION_TARGET_STRING_ARCH_BROADWELL QT_FUNCTION_TARGET_STRING_ARCH_BDW
280#define QT_FUNCTION_TARGET_STRING_ARCH_SKYLAKE QT_FUNCTION_TARGET_STRING_ARCH_SKL
281#define QT_FUNCTION_TARGET_STRING_ARCH_SKYLAKE_AVX512 QT_FUNCTION_TARGET_STRING_ARCH_SKX
282#define QT_FUNCTION_TARGET_STRING_ARCH_CASCADELAKE QT_FUNCTION_TARGET_STRING_ARCH_CLX
283#define QT_FUNCTION_TARGET_STRING_ARCH_COOPERLAKE QT_FUNCTION_TARGET_STRING_ARCH_CPX
284#define QT_FUNCTION_TARGET_STRING_ARCH_PALMCOVE QT_FUNCTION_TARGET_STRING_ARCH_PLC
285#define QT_FUNCTION_TARGET_STRING_ARCH_CANNONLAKE QT_FUNCTION_TARGET_STRING_ARCH_CNL
286#define QT_FUNCTION_TARGET_STRING_ARCH_SUNNYCOVE QT_FUNCTION_TARGET_STRING_ARCH_SNC
287#define QT_FUNCTION_TARGET_STRING_ARCH_ICELAKE_CLIENT QT_FUNCTION_TARGET_STRING_ARCH_ICL
288#define QT_FUNCTION_TARGET_STRING_ARCH_ICELAKE_SERVER QT_FUNCTION_TARGET_STRING_ARCH_ICX
289#define QT_FUNCTION_TARGET_STRING_ARCH_WILLOWCOVE QT_FUNCTION_TARGET_STRING_ARCH_WLC
290#define QT_FUNCTION_TARGET_STRING_ARCH_TIGERLAKE QT_FUNCTION_TARGET_STRING_ARCH_TGL
291#define QT_FUNCTION_TARGET_STRING_ARCH_GOLDENCOVE QT_FUNCTION_TARGET_STRING_ARCH_GLC
292#define QT_FUNCTION_TARGET_STRING_ARCH_ALDERLAKE QT_FUNCTION_TARGET_STRING_ARCH_ADL
293#define QT_FUNCTION_TARGET_STRING_ARCH_RAPTORCOVE QT_FUNCTION_TARGET_STRING_ARCH_RPC
294#define QT_FUNCTION_TARGET_STRING_ARCH_RAPTORLAKE QT_FUNCTION_TARGET_STRING_ARCH_RPL
295#define QT_FUNCTION_TARGET_STRING_ARCH_REDWOODCOVE QT_FUNCTION_TARGET_STRING_ARCH_RWC
296#define QT_FUNCTION_TARGET_STRING_ARCH_METEORLAKE QT_FUNCTION_TARGET_STRING_ARCH_MTL
297#define QT_FUNCTION_TARGET_STRING_ARCH_ARROWLAKE QT_FUNCTION_TARGET_STRING_ARCH_ARL
298#define QT_FUNCTION_TARGET_STRING_ARCH_LUNARLAKE QT_FUNCTION_TARGET_STRING_ARCH_LNL
299#define QT_FUNCTION_TARGET_STRING_ARCH_SAPPHIRERAPIDS QT_FUNCTION_TARGET_STRING_ARCH_SPR
300#define QT_FUNCTION_TARGET_STRING_ARCH_EMERALDRAPIDS QT_FUNCTION_TARGET_STRING_ARCH_EMR
301#define QT_FUNCTION_TARGET_STRING_ARCH_GRANITERAPIDS QT_FUNCTION_TARGET_STRING_ARCH_GNR
302#define QT_FUNCTION_TARGET_STRING_ARCH_SILVERMONT QT_FUNCTION_TARGET_STRING_ARCH_SLM
303#define QT_FUNCTION_TARGET_STRING_ARCH_GOLDMONT QT_FUNCTION_TARGET_STRING_ARCH_GLM
304#define QT_FUNCTION_TARGET_STRING_ARCH_TREMONT QT_FUNCTION_TARGET_STRING_ARCH_TNT
305#define QT_FUNCTION_TARGET_STRING_ARCH_GRACEMONT QT_FUNCTION_TARGET_STRING_ARCH_GRT
306#define QT_FUNCTION_TARGET_STRING_ARCH_CRESTMONT QT_FUNCTION_TARGET_STRING_ARCH_CMT
307#define QT_FUNCTION_TARGET_STRING_ARCH_GRANDRIDGE QT_FUNCTION_TARGET_STRING_ARCH_GRR
308#define QT_FUNCTION_TARGET_STRING_ARCH_SIERRAFOREST QT_FUNCTION_TARGET_STRING_ARCH_SRF
309#define QT_FUNCTION_TARGET_STRING_ARCH_CLEARWATERFOREST QT_FUNCTION_TARGET_STRING_ARCH_CWF
310
311static const uint64_t _compilerCpuFeatures = 0
312#ifdef __SSE2__
314#endif
315#ifdef __SSE3__
317#endif
318#ifdef __SSSE3__
320#endif
321#ifdef __FMA__
323#endif
324#ifdef __SSE4_1__
326#endif
327#ifdef __SSE4_2__
329#endif
330#ifdef __MOVBE__
332#endif
333#ifdef __POPCNT__
335#endif
336#ifdef __AES__
338#endif
339#ifdef __AVX__
341#endif
342#ifdef __F16C__
344#endif
345#ifdef __RDRND__
347#endif
348#ifdef __BMI__
350#endif
351#ifdef __AVX2__
353#endif
354#ifdef __BMI2__
356#endif
357#ifdef __AVX512F__
359#endif
360#ifdef __AVX512DQ__
362#endif
363#ifdef __RDSEED__
365#endif
366#ifdef __AVX512IFMA__
368#endif
369#ifdef __AVX512CD__
371#endif
372#ifdef __SHA__
374#endif
375#ifdef __AVX512BW__
377#endif
378#ifdef __AVX512VL__
380#endif
381#ifdef __AVX512VBMI__
383#endif
384#ifdef __WAITPKG__
386#endif
387#ifdef __AVX512VBMI2__
389#endif
390#ifdef __SHSTK__
392#endif
393#ifdef __GFNI__
395#endif
396#ifdef __VAES__
398#endif
399#ifdef __AVX512BITALG__
401#endif
402#ifdef __AVX512VPOPCNTDQ__
404#endif
405#ifdef __HYBRID__
407#endif
408#ifdef __IBT__
410#endif
411#ifdef __AVX512FP16__
413#endif
414#ifdef __RAOINT__
416#endif
417#ifdef __CMPCCXADD__
419#endif
420#ifdef __AVXIFMA__
422#endif
423#ifdef __LAM__
425#endif
426 ;
427
428#if (defined __cplusplus) && __cplusplus >= 201103L
429enum X86CpuFeatures : uint64_t {
430 CpuFeatureSSE2 = cpu_feature_sse2,
431 CpuFeatureSSE3 = cpu_feature_sse3,
432 CpuFeatureSSSE3 = cpu_feature_ssse3,
433 CpuFeatureFMA = cpu_feature_fma,
434 CpuFeatureSSE4_1 = cpu_feature_sse4_1,
435 CpuFeatureSSE4_2 = cpu_feature_sse4_2,
436 CpuFeatureMOVBE = cpu_feature_movbe,
437 CpuFeaturePOPCNT = cpu_feature_popcnt,
438 CpuFeatureAES = cpu_feature_aes,
439 CpuFeatureAVX = cpu_feature_avx,
440 CpuFeatureF16C = cpu_feature_f16c,
441 CpuFeatureRDRND = cpu_feature_rdrnd,
442 CpuFeatureBMI = cpu_feature_bmi,
443 CpuFeatureAVX2 = cpu_feature_avx2,
444 CpuFeatureBMI2 = cpu_feature_bmi2,
445 CpuFeatureAVX512F = cpu_feature_avx512f,
446 CpuFeatureAVX512DQ = cpu_feature_avx512dq,
447 CpuFeatureRDSEED = cpu_feature_rdseed,
448 CpuFeatureAVX512IFMA = cpu_feature_avx512ifma,
449 CpuFeatureAVX512CD = cpu_feature_avx512cd,
450 CpuFeatureSHA = cpu_feature_sha,
451 CpuFeatureAVX512BW = cpu_feature_avx512bw,
452 CpuFeatureAVX512VL = cpu_feature_avx512vl,
453 CpuFeatureAVX512VBMI = cpu_feature_avx512vbmi,
454 CpuFeatureWAITPKG = cpu_feature_waitpkg,
455 CpuFeatureAVX512VBMI2 = cpu_feature_avx512vbmi2,
456 CpuFeatureSHSTK = cpu_feature_shstk,
457 CpuFeatureGFNI = cpu_feature_gfni,
458 CpuFeatureVAES = cpu_feature_vaes,
459 CpuFeatureAVX512BITALG = cpu_feature_avx512bitalg,
460 CpuFeatureAVX512VPOPCNTDQ = cpu_feature_avx512vpopcntdq,
461 CpuFeatureHYBRID = cpu_feature_hybrid,
462 CpuFeatureIBT = cpu_feature_ibt,
463 CpuFeatureAVX512FP16 = cpu_feature_avx512fp16,
464 CpuFeatureRAOINT = cpu_feature_raoint,
465 CpuFeatureCMPCCXADD = cpu_feature_cmpccxadd,
466 CpuFeatureAVXIFMA = cpu_feature_avxifma,
467 CpuFeatureLAM = cpu_feature_lam,
468}; // enum X86CpuFeatures
469
470enum X86CpuArchitectures : uint64_t {
471 CpuArchx8664 = cpu_x86_64,
472 CpuArchCore2 = cpu_core2,
473 CpuArchNHM = cpu_nhm,
474 CpuArchWSM = cpu_wsm,
475 CpuArchSNB = cpu_snb,
476 CpuArchIVB = cpu_ivb,
477 CpuArchHSW = cpu_hsw,
478 CpuArchBDW = cpu_bdw,
479 CpuArchBDX = cpu_bdx,
480 CpuArchSKL = cpu_skl,
481 CpuArchSKX = cpu_skx,
482 CpuArchCLX = cpu_clx,
483 CpuArchCPX = cpu_cpx,
484 CpuArchPLC = cpu_plc,
485 CpuArchSNC = cpu_snc,
486 CpuArchWLC = cpu_wlc,
487 CpuArchGLC = cpu_glc,
488 CpuArchRPC = cpu_rpc,
489 CpuArchRWC = cpu_rwc,
490 CpuArchSLM = cpu_slm,
491 CpuArchGLM = cpu_glm,
492 CpuArchTNT = cpu_tnt,
493 CpuArchGRT = cpu_grt,
494 CpuArchCMT = cpu_cmt,
495 CpuArchCNL = cpu_cnl,
496 CpuArchICL = cpu_icl,
497 CpuArchTGL = cpu_tgl,
498 CpuArchADL = cpu_adl,
499 CpuArchRPL = cpu_rpl,
500 CpuArchMTL = cpu_mtl,
501 CpuArchARL = cpu_arl,
502 CpuArchLNL = cpu_lnl,
503 CpuArchICX = cpu_icx,
504 CpuArchSPR = cpu_spr,
505 CpuArchEMR = cpu_emr,
506 CpuArchGNR = cpu_gnr,
507 CpuArchSRF = cpu_srf,
508 CpuArchGRR = cpu_grr,
509 CpuArchCWF = cpu_cwf,
510 CpuArchNehalem = cpu_nehalem,
511 CpuArchWestmere = cpu_westmere,
512 CpuArchSandyBridge = cpu_sandybridge,
513 CpuArchIvyBridge = cpu_ivybridge,
514 CpuArchHaswell = cpu_haswell,
515 CpuArchBroadwell = cpu_broadwell,
516 CpuArchSkylake = cpu_skylake,
517 CpuArchSkylakeAvx512 = cpu_skylake_avx512,
518 CpuArchCascadeLake = cpu_cascadelake,
519 CpuArchCooperLake = cpu_cooperlake,
520 CpuArchPalmCove = cpu_palmcove,
521 CpuArchCannonLake = cpu_cannonlake,
522 CpuArchSunnyCove = cpu_sunnycove,
523 CpuArchIceLakeClient = cpu_icelake_client,
524 CpuArchIceLakeServer = cpu_icelake_server,
525 CpuArchWillowCove = cpu_willowcove,
526 CpuArchTigerLake = cpu_tigerlake,
527 CpuArchGoldenCove = cpu_goldencove,
528 CpuArchAlderLake = cpu_alderlake,
529 CpuArchRaptorCove = cpu_raptorcove,
530 CpuArchRaptorLake = cpu_raptorlake,
531 CpuArchRedwoodCove = cpu_redwoodcove,
532 CpuArchMeteorLake = cpu_meteorlake,
533 CpuArchArrowLake = cpu_arrowlake,
534 CpuArchLunarLake = cpu_lunarlake,
535 CpuArchSapphireRapids = cpu_sapphirerapids,
536 CpuArchEmeraldRapids = cpu_emeraldrapids,
537 CpuArchGraniteRapids = cpu_graniterapids,
538 CpuArchSilvermont = cpu_silvermont,
539 CpuArchGoldmont = cpu_goldmont,
540 CpuArchTremont = cpu_tremont,
541 CpuArchGracemont = cpu_gracemont,
542 CpuArchCrestmont = cpu_crestmont,
543 CpuArchGrandRidge = cpu_grandridge,
544 CpuArchSierraForest = cpu_sierraforest,
545 CpuArchClearwaterForest = cpu_clearwaterforest,
546}; // enum X86cpuArchitectures
547#endif /* C++11 */
548
549#endif /* QSIMD_X86_P_H */
#define cpu_skx
#define cpu_lunarlake
#define cpu_raptorlake
#define cpu_feature_rdrnd
Definition qsimd_x86_p.h:38
#define cpu_feature_gfni
Definition qsimd_x86_p.h:58
#define cpu_spr
#define cpu_rpl
#define cpu_haswell
#define cpu_feature_bmi2
Definition qsimd_x86_p.h:43
#define cpu_feature_bmi
Definition qsimd_x86_p.h:41
static const uint64_t _compilerCpuFeatures
#define cpu_feature_waitpkg
Definition qsimd_x86_p.h:55
#define cpu_cwf
#define cpu_feature_avx
Definition qsimd_x86_p.h:36
#define cpu_sierraforest
#define cpu_westmere
#define cpu_redwoodcove
#define cpu_alderlake
#define cpu_rpc
#define cpu_feature_fma
Definition qsimd_x86_p.h:30
#define cpu_skylake
#define cpu_feature_sse4_2
Definition qsimd_x86_p.h:32
#define cpu_feature_shstk
Definition qsimd_x86_p.h:57
#define cpu_srf
#define cpu_tgl
#define cpu_feature_ssse3
Definition qsimd_x86_p.h:29
#define cpu_icelake_server
#define cpu_skl
Definition qsimd_x86_p.h:99
#define cpu_arl
#define cpu_meteorlake
#define cpu_feature_avx512ifma
Definition qsimd_x86_p.h:47
#define cpu_gracemont
#define cpu_feature_avx512vpopcntdq
Definition qsimd_x86_p.h:61
#define cpu_graniterapids
#define cpu_feature_avx512f
Definition qsimd_x86_p.h:44
#define cpu_snb
Definition qsimd_x86_p.h:85
#define cpu_feature_sha
Definition qsimd_x86_p.h:49
#define cpu_clearwaterforest
#define cpu_icelake_client
#define cpu_cannonlake
#define cpu_gnr
#define cpu_willowcove
#define cpu_feature_avx2
Definition qsimd_x86_p.h:42
#define cpu_cmt
#define cpu_feature_aes
Definition qsimd_x86_p.h:35
#define cpu_bdw
Definition qsimd_x86_p.h:96
#define cpu_grr
#define cpu_feature_vaes
Definition qsimd_x86_p.h:59
#define cpu_core2
Definition qsimd_x86_p.h:77
#define cpu_feature_avx512vl
Definition qsimd_x86_p.h:51
#define cpu_slm
#define cpu_wlc
#define cpu_feature_cmpccxadd
Definition qsimd_x86_p.h:70
#define cpu_feature_lam
Definition qsimd_x86_p.h:72
#define cpu_cooperlake
#define cpu_feature_sse3
Definition qsimd_x86_p.h:28
#define cpu_feature_rdseed
Definition qsimd_x86_p.h:46
#define cpu_sunnycove
#define cpu_x86_64
Definition qsimd_x86_p.h:75
#define cpu_feature_avx512bitalg
Definition qsimd_x86_p.h:60
#define cpu_feature_sse2
Definition qsimd_x86_p.h:25
#define cpu_ivybridge
#define cpu_wsm
Definition qsimd_x86_p.h:84
#define cpu_feature_avx512dq
Definition qsimd_x86_p.h:45
#define cpu_lnl
#define cpu_grandridge
#define cpu_rwc
#define cpu_snc
#define cpu_icl
#define cpu_emeraldrapids
#define cpu_glm
#define cpu_cpx
#define cpu_grt
#define cpu_plc
#define cpu_feature_raoint
Definition qsimd_x86_p.h:69
#define cpu_tigerlake
#define cpu_clx
#define cpu_cascadelake
#define cpu_tnt
#define cpu_tremont
#define cpu_glc
#define cpu_nhm
Definition qsimd_x86_p.h:80
#define cpu_feature_ibt
Definition qsimd_x86_p.h:65
#define cpu_feature_f16c
Definition qsimd_x86_p.h:37
#define cpu_goldencove
#define cpu_feature_avx512vbmi2
Definition qsimd_x86_p.h:56
#define cpu_skylake_avx512
#define cpu_feature_avx512fp16
Definition qsimd_x86_p.h:66
#define cpu_nehalem
#define cpu_feature_avxifma
Definition qsimd_x86_p.h:71
#define cpu_emr
#define cpu_icx
#define cpu_adl
#define cpu_cnl
#define cpu_feature_avx512bw
Definition qsimd_x86_p.h:50
#define cpu_palmcove
#define cpu_bdx
Definition qsimd_x86_p.h:98
#define cpu_feature_sse4_1
Definition qsimd_x86_p.h:31
#define cpu_feature_hybrid
Definition qsimd_x86_p.h:64
#define cpu_sandybridge
#define cpu_crestmont
#define cpu_goldmont
#define cpu_arrowlake
#define cpu_silvermont
#define cpu_broadwell
#define cpu_feature_popcnt
Definition qsimd_x86_p.h:34
#define cpu_mtl
#define cpu_hsw
Definition qsimd_x86_p.h:90
#define cpu_feature_movbe
Definition qsimd_x86_p.h:33
#define cpu_raptorcove
#define cpu_ivb
Definition qsimd_x86_p.h:87
#define cpu_feature_avx512vbmi
Definition qsimd_x86_p.h:54
#define cpu_feature_avx512cd
Definition qsimd_x86_p.h:48
#define cpu_sapphirerapids