update to v5.95

This commit is contained in:
MITSUNARI Shigeo 2020-08-28 14:42:37 +09:00
parent 605e4224c4
commit c306b8e578
4 changed files with 6 additions and 4 deletions

View File

@ -1,6 +1,6 @@
[![Build Status](https://travis-ci.org/herumi/xbyak.png)](https://travis-ci.org/herumi/xbyak)
# Xbyak 5.95 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
# Xbyak 5.96 ; JIT assembler for x86(IA32), x64(AMD64, x86-64) by C++
## Abstract
@ -438,6 +438,7 @@ modified new BSD License
http://opensource.org/licenses/BSD-3-Clause
## History
* 2020/Aug/28 ver 5.95 some constructors of register classes support constexpr if C++14 or later
* 2020/Aug/04 ver 5.941 `CodeGenerator::reset()` calls `ClearError()`.
* 2020/Jul/28 ver 5.94 remove #include <winsock2.h> (only windows)
* 2020/Jul/21 ver 5.93 support exception-less mode

View File

@ -1,5 +1,5 @@
C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.95
C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 5.96
-----------------------------------------------------------------------------
◎概要
@ -379,6 +379,7 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から
-----------------------------------------------------------------------------
◎履歴
2020/08/28 ver 5.95 レジスタクラスのコンストラクタがconstexprに対応(C++14以降)
2020/08/04 ver 5.941 `CodeGenerator::reset()`が`ClearError()`を呼ぶように変更
2020/07/28 ver 5.94 #include <winsock2.h>の削除 (only windows)
2020/07/21 ver 5.93 例外なしモード追加

View File

@ -135,7 +135,7 @@ namespace Xbyak {
enum {
DEFAULT_MAX_CODE_SIZE = 4096,
VERSION = 0x5950 /* 0xABCD = A.BC(D) */
VERSION = 0x5960 /* 0xABCD = A.BC(D) */
};
#ifndef MIE_INTEGER_TYPE_DEFINED

View File

@ -1,4 +1,4 @@
const char *getVersionString() const { return "5.95"; }
const char *getVersionString() const { return "5.96"; }
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); }