v7.40
diff --git a/CMakeLists.txt b/CMakeLists.txt index 754d03b..fc56e90 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt
@@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.10) -project(xbyak LANGUAGES CXX VERSION 7.39.1) +project(xbyak LANGUAGES CXX VERSION 7.40) file(GLOB headers xbyak/*.h)
diff --git a/doc/changelog.md b/doc/changelog.md index 94a5f23..6190b0e 100644 --- a/doc/changelog.md +++ b/doc/changelog.md
@@ -1,5 +1,6 @@ # History -* 2026/Aug/14 ver 7.39.1 fixed EGPR encoding of vmovq/opCvt3/vpextrw. tmmultf32ps is removed. +* 2026/Aug/15 ver 7.40 support ACE 1.15 +* 2026/Aug/14 ver 7.39.1 fixed EGPR encoding of vmovq/opCvt3/vpextrw. tmmultf32ps is removed. * 2026/Aug/12 ver 7.39 CodeArray: fix reset() to restore write protection. fix a null-pointer write in db() when allocation fails with XBYAK_NO_EXCEPTION.Registers in CodeGenerator (rax, eax, etc.) are now static constexpr members (C++17 or later). StackFrame supports UseSSE(n) / UseAVX(n) / NoVzeroupper * 2026/Aug/03 ver 7.38.0 support pushp/popp. StackFrame supports PUSH2/PPX/APX * 2026/Jul/29 ver 7.37.6 Allocator::alloc rounds up size to a multiple of the page size. improve T_z validation for memory operands
diff --git a/meson.build b/meson.build index 9c4432d..29522f4 100644 --- a/meson.build +++ b/meson.build
@@ -5,7 +5,7 @@ project( 'xbyak', 'cpp', - version: '7.39.1', + version: '7.40', license: 'BSD-3-Clause', default_options: 'b_ndebug=if-release' )
diff --git a/readme.md b/readme.md index 83b1539..54fcf56 100644 --- a/readme.md +++ b/readme.md
@@ -1,5 +1,5 @@ -# Xbyak 7.39.1 [![Badge Build]][Build Status] +# Xbyak 7.40 [![Badge Build]][Build Status] *A JIT assembler for x86/x64 architectures supporting advanced instruction sets up to AVX10.2* @@ -32,6 +32,7 @@ ### News +- Support ACE 1.15 - Support AVX10.2 - Support xresldtrk/xsusldtrk - Support RAO-INT for APX
diff --git a/readme.txt b/readme.txt index 7124824..1c15321 100644 --- a/readme.txt +++ b/readme.txt
@@ -1,5 +1,5 @@ - C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 7.39.1 + C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 7.40 ----------------------------------------------------------------------------- ◎概要 @@ -404,6 +404,7 @@ ----------------------------------------------------------------------------- ◎履歴 +2026/08/15 ver 7.40 ACE 1.15対応 2026/08/14 ver 7.39.1 vmovq/opCvt3/vpextrwのEGPRエンコード修正. tmmultf32psの削除 2026/08/12 ver 7.39 CodeArrayのreset()時に保護モードを復元. 例外なしモードでnew失敗時にdb()が落ちるバグの修正. CodeGeneratorのレジスタをstatic constexprに変更. StackFrameのUseSSE/UseAVX/NoVzeroupper対応 2026/08/03 ver 7.38.0 pushp/poppサポート StackFrameのPPX/PUSH2/APX対応
diff --git a/xbyak/xbyak.h b/xbyak/xbyak.h index 99bf2dc..2443c5d 100644 --- a/xbyak/xbyak.h +++ b/xbyak/xbyak.h
@@ -688,7 +688,7 @@ enum { DEFAULT_MAX_CODE_SIZE = 4096, - VERSION = 0x7391 /* 0xABCD = A.BC(.D) */ + VERSION = 0x7400 /* 0xABCD = A.BC(.D) */ }; #ifndef MIE_INTEGER_TYPE_DEFINED
diff --git a/xbyak/xbyak_mnemonic.h b/xbyak/xbyak_mnemonic.h index b9f1a9c..f50a7a3 100644 --- a/xbyak/xbyak_mnemonic.h +++ b/xbyak/xbyak_mnemonic.h
@@ -1,4 +1,4 @@ -const char *getVersionString() const { return "7.39.1"; } +const char *getVersionString() const { return "7.40"; } void aadd(const Address& addr, const Reg32e ®) { opMR(addr, reg, T_0F38, 0x0FC, T_APX); } void aand(const Address& addr, const Reg32e ®) { opMR(addr, reg, T_0F38|T_66, 0x0FC, T_APX|T_66); } void adc(const Operand& op, uint32_t imm) { opOI(op, imm, 0x10, 2); }