mirror of
https://github.com/herumi/xbyak
synced 2024-11-20 16:06:14 -07:00
update doc
This commit is contained in:
parent
90fc0151c9
commit
84fe3ab9d4
3 changed files with 6 additions and 2 deletions
|
@ -1,5 +1,7 @@
|
|||
# History
|
||||
|
||||
* 2023/Dec/19 ver 7.01 support AESKLE, WIDE_KL, KEYLOCKER, KEYLOCKER_WIDE, detection of APX10/APX
|
||||
* 2023/Dec/01 ver 7.00 support APX
|
||||
* 2023/Aug/07 ver 6.73 add sha512/sm3/sm4/avx-vnni-int16
|
||||
* 2023/Aug/02 ver 6.72 add xbegin/xabort/xend
|
||||
* 2023/Jul/27 ver 6.71 Allocator supports huge page
|
||||
|
|
|
@ -21,8 +21,7 @@ It is named from a Japanese word [開闢](https://translate.google.com/?hl=ja&sl
|
|||
- header file only
|
||||
- Intel/MASM like syntax
|
||||
- fully support AVX-512
|
||||
|
||||
- support APX
|
||||
- support APX/AVX10
|
||||
|
||||
**Note**:
|
||||
Use `and_()`, `or_()`, ... instead of `and()`, `or()`.
|
||||
|
@ -34,6 +33,7 @@ If you want to use them, then specify `-fno-operator-names` option to gcc/clang.
|
|||
|
||||
### News
|
||||
|
||||
- support AVX10 detection, AESKLE, WIDE_KL, KEYLOCKER, KEYLOCKER_WIDE
|
||||
- support APX except for a few instructions
|
||||
- add amx_fp16/avx_vnni_int8/avx_ne_convert/avx-ifma
|
||||
- add movdiri, movdir64b, clwb, cldemote
|
||||
|
|
|
@ -46,6 +46,8 @@ Linuxではmake installで/usr/local/include/xbyakにコピーされます。
|
|||
-----------------------------------------------------------------------------
|
||||
◎新機能
|
||||
|
||||
APX/AVX10対応
|
||||
|
||||
例外なしモード追加
|
||||
XBYAK_NO_EXCEPTIONを定義してコンパイルするとgcc/clangで-fno-exceptionsオプションでコンパイルできます。
|
||||
エラーは例外の代わりに`Xbyak::GetError()`で通達されます。
|
||||
|
|
Loading…
Reference in a new issue