diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-27 11:07:07 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-27 11:07:07 +0900 |
commit | ee4984222677fa293bfe4ffc25f77abd11f62906 (patch) | |
tree | 40aaf35c32c3f15d1454ecc525db57e49d10177d /gen | |
parent | 5c95842bebbd005e0fbfe48692ae066361b18a7b (diff) | |
download | xbyak-ee4984222677fa293bfe4ffc25f77abd11f62906.tar.gz xbyak-ee4984222677fa293bfe4ffc25f77abd11f62906.zip |
T_MAP1 is not necessary
Diffstat (limited to 'gen')
-rw-r--r-- | gen/avx_type.hpp | 1 | ||||
-rw-r--r-- | gen/avx_type_def.h | 2 |
2 files changed, 0 insertions, 3 deletions
diff --git a/gen/avx_type.hpp b/gen/avx_type.hpp index 5ec0229..a24a0a0 100644 --- a/gen/avx_type.hpp +++ b/gen/avx_type.hpp @@ -67,7 +67,6 @@ std::string type2String(uint64_t type) if (type & T_MAP3) str += "|T_MAP3"; if (type & T_ND1) str += "|T_ND1"; if (type & T_ZU) str += "|T_ZU"; - if (type & T_MAP1) str += "|T_MAP1"; if (str[0] == '|') str = str.substr(1); return str; diff --git a/gen/avx_type_def.h b/gen/avx_type_def.h index 81052c4..41b2aa5 100644 --- a/gen/avx_type_def.h +++ b/gen/avx_type_def.h @@ -47,9 +47,7 @@ static const uint64_t T_ND1 = 1ull << 35; // ND=1 static const uint64_t T_ZU = 1ull << 36; // ND=ZU static const uint64_t T_F2 = 1ull << 37; // pp = 3 - static const uint64_t T_MAP1 = 1ull << 38; // kmov // T_66 = 1, T_F3 = 2, T_F2 = 3 static inline uint32_t getPP(uint64_t type) { return (type & T_66) ? 1 : (type & T_F3) ? 2 : (type & T_F2) ? 3 : 0; } static inline uint32_t getMMM(uint64_t type) { return (type & T_0F) ? 1 : (type & T_0F38) ? 2 : (type & T_0F3A) ? 3 : 0; } - // @@@end of avx_type_def.h |