diff options
author | MITSUNARI Shigeo <[email protected]> | 2023-12-27 11:15:01 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2023-12-27 11:15:01 +0900 |
commit | e1864642cb5a64ff034077ec45df0aa62ae61ecc (patch) | |
tree | 73dd2c31a2e6b173bab0a2d85b6fded316f5fbed /gen | |
parent | 0750873b7f4b28f705375149a5d5fc28c12edd04 (diff) | |
download | xbyak-e1864642cb5a64ff034077ec45df0aa62ae61ecc.tar.gz xbyak-e1864642cb5a64ff034077ec45df0aa62ae61ecc.zip |
unify getMap and getMMM
Diffstat (limited to 'gen')
-rw-r--r-- | gen/avx_type_def.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/gen/avx_type_def.h b/gen/avx_type_def.h index 9a4d9b6..51bc9c2 100644 --- a/gen/avx_type_def.h +++ b/gen/avx_type_def.h @@ -49,5 +49,4 @@ static const uint64_t T_F2 = 1ull << 37; // pp = 3 // 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 |