diff options
author | MITSUNARI Shigeo <[email protected]> | 2022-12-07 16:09:18 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2022-12-07 16:09:18 +0900 |
commit | f6678587615bfca1c8aa324dc1d2c7b4d0001a4b (patch) | |
tree | 5bd0476545cd391fd6ec8ed32f33ad36c627a08e /sample | |
parent | 124617ac952df2bc3c90e3a08a78d8d78625ff2c (diff) | |
download | xbyak-f6678587615bfca1c8aa324dc1d2c7b4d0001a4b.tar.gz xbyak-f6678587615bfca1c8aa324dc1d2c7b4d0001a4b.zip |
add detection of prefetchiti
Diffstat (limited to 'sample')
-rw-r--r-- | sample/test_util.cpp | 1 |
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); |