diff options
| author | ptitSeb <sebastien.chev@gmail.com> | 2024-06-01 09:49:35 +0200 |
|---|---|---|
| committer | ptitSeb <sebastien.chev@gmail.com> | 2024-06-01 09:49:35 +0200 |
| commit | fe0425eb80a37bf96aadc5afbf7de636fff0641c (patch) | |
| tree | ba12aff21cc2598e9959c9d2702201cff6b91db7 /src/dynarec/dynarec_native_functions.h | |
| parent | 453003da23af2abfd6f6f42e5909675ac7c28cb8 (diff) | |
| download | box64-fe0425eb80a37bf96aadc5afbf7de636fff0641c.tar.gz box64-fe0425eb80a37bf96aadc5afbf7de636fff0641c.zip | |
[ARM64_DYNAREC] Added a couple of AVX.66.0F3A opcodes, and fixed some sse/avx function helpers
Diffstat (limited to 'src/dynarec/dynarec_native_functions.h')
| -rw-r--r-- | src/dynarec/dynarec_native_functions.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/dynarec/dynarec_native_functions.h b/src/dynarec/dynarec_native_functions.h index 3e81081b..5085e9e1 100644 --- a/src/dynarec/dynarec_native_functions.h +++ b/src/dynarec/dynarec_native_functions.h @@ -42,6 +42,8 @@ void native_aeselast(x64emu_t* emu, int xmm); void native_aesimc(x64emu_t* emu, int xmm); void native_aeskeygenassist(x64emu_t* emu, int gx, int ex, void* p, uint32_t u8); void native_pclmul(x64emu_t* emu, int gx, int ex, void* p, uint32_t u8); +void native_pclmul_x(x64emu_t* emu, int gx, int vx, void* p, uint32_t u8); +void native_pclmul_y(x64emu_t* emu, int gy, int vy, void* p, uint32_t u8); void native_clflush(x64emu_t* emu, void* p); |