Skip to content

Commit 4f808ff

Browse files
committed
v7.29.2
1 parent 23e20ea commit 4f808ff

File tree

7 files changed

+8
-6
lines changed

7 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
cmake_minimum_required(VERSION 3.10)
22

3-
project(xbyak LANGUAGES CXX VERSION 7.29.1)
3+
project(xbyak LANGUAGES CXX VERSION 7.29.2)
44

55
file(GLOB headers xbyak/*.h)
66

doc/changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# History
22

3+
* 2025/Aug/22 ver 7.29.2 add override specifiers to virtual methods
34
* 2025/Aug/16 ver 7.29.1 support ptr[integer value]
45
* 2025/Aug/15 ver 7.29 support addressing with label
56
* 2025/Jul/19 ver 7.28 support movrs, vmovrs{b,w,d,q}

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
project(
66
'xbyak',
77
'cpp',
8-
version: '7.29.1',
8+
version: '7.29.2',
99
license: 'BSD-3-Clause',
1010
default_options: 'b_ndebug=if-release'
1111
)

readme.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
# Xbyak 7.29.1 [![Badge Build]][Build Status]
2+
# Xbyak 7.29.2 [![Badge Build]][Build Status]
33

44
*A JIT assembler for x86/x64 architectures supporting advanced instruction sets up to AVX10.2*
55

readme.txt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11

2-
C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 7.29.1
2+
C++用x86(IA-32), x64(AMD64, x86-64) JITアセンブラ Xbyak 7.29.2
33

44
-----------------------------------------------------------------------------
55
◎概要
@@ -404,6 +404,7 @@ sample/{echo,hello}.bfは http://www.kmonos.net/alang/etc/brainfuck.php から
404404
-----------------------------------------------------------------------------
405405
◎履歴
406406

407+
2025/08/22 ver 7.29.2 override属性追加
407408
2025/08/16 ver 7.29.1 ptr[整数] 形式のサポート
408409
2025/08/15 ver 7.29 アドレッシングでラベルサポート
409410
2025/07/19 ver 7.28 movrs, vmovrs{b,w,d,q}をサポート

xbyak/xbyak.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ namespace Xbyak {
163163

164164
enum {
165165
DEFAULT_MAX_CODE_SIZE = 4096,
166-
VERSION = 0x7291 /* 0xABCD = A.BC(.D) */
166+
VERSION = 0x7292 /* 0xABCD = A.BC(.D) */
167167
};
168168

169169
#ifndef MIE_INTEGER_TYPE_DEFINED

xbyak/xbyak_mnemonic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const char *getVersionString() const { return "7.29.1"; }
1+
const char *getVersionString() const { return "7.29.2"; }
22
void aadd(const Address& addr, const Reg32e &reg) { opMR(addr, reg, T_0F38, 0x0FC, T_APX); }
33
void aand(const Address& addr, const Reg32e &reg) { opMR(addr, reg, T_0F38|T_66, 0x0FC, T_APX|T_66); }
44
void adc(const Operand& op, uint32_t imm) { opOI(op, imm, 0x10, 2); }

0 commit comments

Comments
 (0)