diff options
author | MITSUNARI Shigeo <[email protected]> | 2018-01-05 23:19:44 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2018-01-05 23:19:44 +0900 |
commit | 04fdfb1e2c1b8b168a05743e07ecffa4fd61610c (patch) | |
tree | ef1197cc503f2c9fec875f344c6c081bf052d146 | |
parent | e6354f8be279e19f42f2cee72099cc392788d666 (diff) | |
download | xbyak-04fdfb1e2c1b8b168a05743e07ecffa4fd61610c.tar.gz xbyak-04fdfb1e2c1b8b168a05743e07ecffa4fd61610c.zip |
update version
-rw-r--r-- | readme.md | 3 | ||||
-rw-r--r-- | readme.txt | 3 | ||||
-rw-r--r-- | xbyak/xbyak.h | 2 | ||||
-rw-r--r-- | xbyak/xbyak_mnemonic.h | 2 |
4 files changed, 6 insertions, 4 deletions
@@ -1,5 +1,5 @@ -Xbyak 5.53 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ +Xbyak 5.60 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ ============= Abstract @@ -333,6 +333,7 @@ The header files under xbyak/ are independent of cybozulib. History ------------- +* 2018/Jan/05 ver 5.60 support AVX-512 for Ice lake(319433-030.pdf) * 2017/Aug/22 ver 5.53 fix mpx encoding, add bnd() prefix * 2017/Aug/18 ver 5.52 fix align (thanks to MerryMage) * 2017/Aug/17 ver 5.51 add multi-byte nop and align() uses it(thanks to inolen) @@ -1,5 +1,5 @@ - C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.53
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.60
-----------------------------------------------------------------------------
◎概要
@@ -343,6 +343,7 @@ cybozulibは単体テストでのみ利用されていて、xbyak/ディレク� -----------------------------------------------------------------------------
◎履歴
+2018/01/05 ver 5.60 Ice lake系命令対応(319433-030.pdf)
2017/08/22 ver 5.53 mpxエンコーディングバグ修正, bnd()プレフィクス追加
2017/08/18 ver 5.52 align修正(thanks to MerryMage)
2017/08/17 ver 5.51 multi-byte nop追加 align()はそれを使用する(thanks to inolen)
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index 047e6b6..d5d0d7a 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -105,7 +105,7 @@ namespace Xbyak { enum { DEFAULT_MAX_CODE_SIZE = 4096, - VERSION = 0x5530 /* 0xABCD = A.BC(D) */ + VERSION = 0x5600 /* 0xABCD = A.BC(D) */ }; #ifndef MIE_INTEGER_TYPE_DEFINED diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index d7954af..fab1ad2 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h @@ -1,4 +1,4 @@ -const char *getVersionString() const { return "5.53"; } +const char *getVersionString() const { return "5.60"; } void adc(const Operand& op, uint32 imm) { opRM_I(op, imm, 0x10, 2); } void adc(const Operand& op1, const Operand& op2) { opRM_RM(op1, op2, 0x10); } void adcx(const Reg32e& reg, const Operand& op) { opGen(reg, op, 0xF6, 0x66, isREG32_REG32orMEM, NONE, 0x38); } |