aboutsummaryrefslogtreecommitdiffhomepage
path: root/sample
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2022-12-07 16:09:18 +0900
committerMITSUNARI Shigeo <[email protected]>2022-12-07 16:09:18 +0900
commitf6678587615bfca1c8aa324dc1d2c7b4d0001a4b (patch)
tree5bd0476545cd391fd6ec8ed32f33ad36c627a08e /sample
parent124617ac952df2bc3c90e3a08a78d8d78625ff2c (diff)
downloadxbyak-f6678587615bfca1c8aa324dc1d2c7b4d0001a4b.tar.gz
xbyak-f6678587615bfca1c8aa324dc1d2c7b4d0001a4b.zip
add detection of prefetchiti
Diffstat (limited to 'sample')
-rw-r--r--sample/test_util.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/sample/test_util.cpp b/sample/test_util.cpp
index b87b803..96e9d21 100644
--- a/sample/test_util.cpp
+++ b/sample/test_util.cpp
@@ -95,6 +95,7 @@ void putCPUinfo(bool onlyCpuidFeature)
{ Cpu::tAVX_IFMA, "avx_ifma" },
{ Cpu::tRAO_INT, "rao-int" },
{ Cpu::tCMPCCXADD, "cmpccxadd" },
+ { Cpu::tPREFETCHITI, "prefetchiti" },
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
if (cpu.has(tbl[i].type)) printf(" %s", tbl[i].str);