aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2019-09-23 12:10:04 +0900
committerMITSUNARI Shigeo <[email protected]>2019-09-23 12:10:04 +0900
commita1e9adf22831d8070c43e83be05384be0c9a1c7e (patch)
tree2ae75973a71305a118dc3a55de574dfe654c0df1
parent08b8b1baf06212c0aa0058b3e6fd555dbde0cd86 (diff)
downloadxbyak-a1e9adf22831d8070c43e83be05384be0c9a1c7e.tar.gz
xbyak-a1e9adf22831d8070c43e83be05384be0c9a1c7e.zip
v5.82v5.82
-rw-r--r--readme.md3
-rw-r--r--readme.txt3
-rw-r--r--test/make_nm.cpp4
-rw-r--r--xbyak/xbyak.h2
-rw-r--r--xbyak/xbyak_mnemonic.h2
5 files changed, 10 insertions, 4 deletions
diff --git a/readme.md b/readme.md
index f3c3781..2265135 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,5 @@
-# Xbyak 5.81 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
+# Xbyak 5.82 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
## Abstract
@@ -392,6 +392,7 @@ modified new BSD License
http://opensource.org/licenses/BSD-3-Clause
## History
+* 2019/Sep/23 ver 5.82 support monitorx, mwaitx, clzero (thanks to @MagurosanTeam)
* 2019/Sep/14 ver 5.81 support some generic mnemonics.
* 2019/Aug/01 ver 5.802 fix detection of AVX512_BF16 (thanks to vpirogov)
* 2019/May/27 support vp2intersectd, vp2intersectq (not tested)
diff --git a/readme.txt b/readme.txt
index 54caee5..0fc1e6e 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,5 +1,5 @@
- C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.81
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.82
-----------------------------------------------------------------------------
◎概要
@@ -373,6 +373,7 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から
-----------------------------------------------------------------------------
◎履歴
+2019/09/23 ver 5.82 monitorx, mwaitx, clzero対応 (thanks to MagurosanTeam)
2019/09/14 ver 5.81 いくつかの一般命令をサポート
2019/08/01 ver 5.802 AVX512_BF16判定修正 (thanks to vpirogov)
2019/05/27 support vp2intersectd, vp2intersectq (not tested)
diff --git a/test/make_nm.cpp b/test/make_nm.cpp
index 69b6bab..54a8014 100644
--- a/test/make_nm.cpp
+++ b/test/make_nm.cpp
@@ -598,6 +598,10 @@ class Test {
"fxtract",
"fyl2x",
"fyl2xp1",
+
+ "monitorx",
+ "mwaitx",
+ "clzero",
};
for (size_t i = 0; i < NUM_OF_ARRAY(tbl); i++) {
put(tbl[i]);
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h
index fa5b405..9f654f2 100644
--- a/xbyak/xbyak.h
+++ b/xbyak/xbyak.h
@@ -113,7 +113,7 @@ namespace Xbyak {
enum {
DEFAULT_MAX_CODE_SIZE = 4096,
- VERSION = 0x5810 /* 0xABCD = A.BC(D) */
+ VERSION = 0x5820 /* 0xABCD = A.BC(D) */
};
#ifndef MIE_INTEGER_TYPE_DEFINED
diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h
index 92a5927..1d45f58 100644
--- a/xbyak/xbyak_mnemonic.h
+++ b/xbyak/xbyak_mnemonic.h
@@ -1,4 +1,4 @@
-const char *getVersionString() const { return "5.81"; }
+const char *getVersionString() const { return "5.82"; }
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); }