aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2023-12-19 18:44:12 +0900
committerMITSUNARI Shigeo <[email protected]>2023-12-19 18:48:51 +0900
commit223ddfaf87b7910eccd2d3c8fa4c368027ebb3d1 (patch)
tree26a8ae86c402e715cc56c777f5ab9d7d20c9f182 /sample
parentba943b5b662caf729da3e741a797e2aa3a4f4677 (diff)
downloadxbyak-223ddfaf87b7910eccd2d3c8fa4c368027ebb3d1.tar.gz
xbyak-223ddfaf87b7910eccd2d3c8fa4c368027ebb3d1.zip
add detection of sse4a/clwb
Diffstat (limited to 'sample')
-rw-r--r--sample/test_util.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index 941a598..25d776d 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -31,6 +31,7 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tSSSE3, "ssse3" },
{ Cpu::tSSE41, "sse41" },
{ Cpu::tSSE42, "sse42" },
+ { Cpu::tSSE4a, "sse4a" },
{ Cpu::tPOPCNT, "popcnt" },
{ Cpu::t3DN, "3dn" },
{ Cpu::tE3DN, "e3dn" },
@@ -87,6 +88,7 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tWAITPKG, "waitpkg" },
{ Cpu::tCLFLUSHOPT, "clflushopt" },
{ Cpu::tCLDEMOTE, "cldemote" },
+ { Cpu::tCLWB, "clwb" },
{ Cpu::tMOVDIRI, "movdiri" },
{ Cpu::tMOVDIR64B, "movdir64b" },
{ Cpu::tUINTR, "uintr" },