diff options
author | MITSUNARI Shigeo <[email protected]> | 2020-11-16 08:33:31 +0900 |
---|---|---|
committer | MITSUNARI Shigeo <[email protected]> | 2020-11-16 08:33:31 +0900 |
commit | e626d620946a3fe8e855dd037698e4180c5a4b23 (patch) | |
tree | abc407849390881f35734c892e64aa9cd0bf86d9 | |
parent | a49c4bc11bd86ad05cdb321442bef3421322fd22 (diff) | |
download | xbyak-e626d620946a3fe8e855dd037698e4180c5a4b23.tar.gz xbyak-e626d620946a3fe8e855dd037698e4180c5a4b23.zip |
v5.991v5.991
-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,6 +1,6 @@ [![Build Status](https://travis-ci.org/herumi/xbyak.png)](https://travis-ci.org/herumi/xbyak) -# Xbyak 5.99 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ +# Xbyak 5.991 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++ ## Abstract @@ -443,6 +443,7 @@ modified new BSD License http://opensource.org/licenses/BSD-3-Clause ## History +* 2020/Nov/16 ver 5.991 disable constexpr for gcc-5 with -std=c++-14 * 2020/Oct/19 ver 5.99 support VNNI instructions(Thanks to akharito) * 2020/Oct/17 ver 5.98 support the form of [scale * reg] * 2020/Sep/08 ver 5.97 replace uint32 with uint32_t etc. @@ -1,5 +1,5 @@ - C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.99
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.991
-----------------------------------------------------------------------------
◎概要
@@ -382,6 +382,7 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から -----------------------------------------------------------------------------
◎履歴
+2020/11/16 ver 5.991 g++-5のC++14でconstexpr機能の抑制
2020/10/19 ver 5.99 VNNI命令サポート(Thanks to akharito)
2020/10/17 ver 5.98 [scale * reg]のサポート
2020/09/08 ver 5.97 uint32などをuint32_tに置換
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index 44f7790..bc0d71f 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h @@ -138,7 +138,7 @@ namespace Xbyak { enum { DEFAULT_MAX_CODE_SIZE = 4096, - VERSION = 0x5990 /* 0xABCD = A.BC(D) */ + VERSION = 0x5991 /* 0xABCD = A.BC(D) */ }; #ifndef MIE_INTEGER_TYPE_DEFINED diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index ff13ed0..5c1ecff 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h @@ -1,4 +1,4 @@ -const char *getVersionString() const { return "5.99"; } +const char *getVersionString() const { return "5.991"; } void adc(const Operand& op, uint32_t 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); } |