aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMITSUNARI Shigeo <[email protected]>2019-12-06 19:46:02 +0900
committerMITSUNARI Shigeo <[email protected]>2019-12-07 15:21:04 +0900
commit7dac9f61ccb258c58be888513fc36fe9603d75c3 (patch)
treeabec57596ca407a406fbd91ac53d86b67a0076ff
parentfe639332c7d5a8d0162f76cac2963ec3e0ddb3ad (diff)
downloadxbyak-5.85.tar.gz
xbyak-5.85.zip
update to v5.85v5.85
_
-rw-r--r--readme.md3
-rw-r--r--readme.txt5
-rw-r--r--xbyak/xbyak.h2
-rw-r--r--xbyak/xbyak_mnemonic.h2
4 files changed, 7 insertions, 5 deletions
diff --git a/readme.md b/readme.md
index d82bddb..89e3144 100644
--- a/readme.md
+++ b/readme.md
@@ -1,5 +1,5 @@
-# Xbyak 5.84 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
+# Xbyak 5.85 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
## Abstract
@@ -397,6 +397,7 @@ modified new BSD License
http://opensource.org/licenses/BSD-3-Clause
## History
+* 2019/Dec/07 ver 5.85 append MAP_JIT flag to mmap for macOS mojave or later
* 2019/Nov/29 ver 5.84 [changed] XBYAK_NO_OP_NAMES is defined unless XBYAK_USE_OP_NAMES is defined
* 2019/Oct/12 ver 5.83 exit(1) was removed
* 2019/Sep/23 ver 5.82 support monitorx, mwaitx, clzero (thanks to @MagurosanTeam)
diff --git a/readme.txt b/readme.txt
index 17deb44..48d1206 100644
--- a/readme.txt
+++ b/readme.txt
@@ -1,5 +1,5 @@
- C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.84
+ C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.85
-----------------------------------------------------------------------------
◎概要
@@ -373,7 +373,8 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から
-----------------------------------------------------------------------------
◎履歴
-2019/12/29 ver 5.84 [変更] XBYAK_USE_OP_NAMESが定義されていない限りXBYAK_NO_OP_NAMESが定義されるように変更
+2019/12/07 ver 5.85 mmapにMAP_JITフラグを追加(macOS mojave以上)
+2019/11/29 ver 5.84 [変更] XBYAK_USE_OP_NAMESが定義されていない限りXBYAK_NO_OP_NAMESが定義されるように変更
2019/10/12 ver 5.83 exit(1)の除去
2019/09/23 ver 5.82 monitorx, mwaitx, clzero対応 (thanks to MagurosanTeam)
2019/09/14 ver 5.81 いくつかの一般命令をサポート
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h
index b34df20..939ffee 100644
--- a/xbyak/xbyak.h
+++ b/xbyak/xbyak.h
@@ -120,7 +120,7 @@ namespace Xbyak {
enum {
DEFAULT_MAX_CODE_SIZE = 4096,
- VERSION = 0x5840 /* 0xABCD = A.BC(D) */
+ VERSION = 0x5850 /* 0xABCD = A.BC(D) */
};
#ifndef MIE_INTEGER_TYPE_DEFINED
diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h
index 3ebb141..457a641 100644
--- a/xbyak/xbyak_mnemonic.h
+++ b/xbyak/xbyak_mnemonic.h
@@ -1,4 +1,4 @@
-const char *getVersionString() const { return "5.84"; }
+const char *getVersionString() const { return "5.85"; }
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); }