commit | 38e5e7b93197de8a73f053cd4bb7acb865e5040b | [log] [tgz] |
---|---|---|
author | Andrea Pappacoda <andrea@pappacoda.it> | Wed Aug 28 16:35:38 2024 +0200 |
committer | MITSUNARI Shigeo <herumi@nifty.com> | Thu Aug 29 09:44:16 2024 +0900 |
tree | 39663e3fe93df38aeded388040d1b13c6ce72866 | |
parent | 9dabf91d285efb25e80894671a5c811b218ccb68 [diff] |
Revert move of .pc and .cmake files to arch-independent dirs This reverts commit 6c593b9a10e450f342efc1cf871dbcf7bb3612fe, 9f535729159baf467c3bd8dc7ec017a40289a12c, and c7c1eac070851068d7adc3a67ad2efd196145687 Closes: #189
A C++ JIT assembler for x86 (IA32), x64 (AMD64, x86-64)
Xbyak is a C++ header library that enables dynamically to assemble x86(IA32), x64(AMD64, x86-64) mnemonic.
The pronunciation of Xbyak is kəi-bja-k
. It is named from a Japanese word 開闢, which means the beginning of the world.
Note: Use and_()
, or_()
, ... instead of and()
, or()
. If you want to use them, then specify -fno-operator-names
option to gcc/clang.
ptr[(void*)0xffffffff]
causes an error.XBYAK_OLD_DISP_CHECK
if you need an old check, but the option will be remoevd.jmp(mem, T_FAR)
, call(mem, T_FAR)
retf()
for far absolute indirect jump.push(byte, imm)
(resp. push(word, imm)
) forces to cast imm
to 8(resp. 16) bit.#include <winsock2.h>
has been removed from xbyak.h, so add it explicitly if you need it.XBYAK_USE_MMAP_ALLOCATOR
will be defined on Linux/macOS unless XBYAK_DONT_USE_MMAP_ALLOCATOR
is defined.Almost C++03 or later compilers for x86/x64 such as Visual Studio, g++, clang++, Intel C++ compiler and g++ on mingw/cygwin.
GitHub | Website (Japanese) | herumi@nifty.com