diff options
author | RSDuck <rsduck@users.noreply.github.com> | 2019-06-30 13:35:03 +0200 |
---|---|---|
committer | RSDuck <rsduck@users.noreply.github.com> | 2020-04-26 13:02:56 +0200 |
commit | 5f932cdf48681414465512fb47d619ad73414137 (patch) | |
tree | 233af2ee874ba03c51d1b66db600e02ffe019841 /src/dolphin | |
parent | ff901141e77ad6c8d2910d77bef2b7c5674fcc7f (diff) |
JIT: compilation of word load and store
Diffstat (limited to 'src/dolphin')
-rw-r--r-- | src/dolphin/x64ABI.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/dolphin/x64ABI.h b/src/dolphin/x64ABI.h index 997782e..94336d0 100644 --- a/src/dolphin/x64ABI.h +++ b/src/dolphin/x64ABI.h @@ -37,7 +37,8 @@ // xmm0-xmm15 use the upper 16 bits in the functions that push/pop registers. #define ABI_ALL_CALLER_SAVED \ - (BitSet32{RAX, RCX, RDX, R8, R9, R10, R11}) + (BitSet32{RAX, RCX, RDX, R8, R9, R10, R11, XMM0 + 16, XMM1 + 16, XMM2 + 16, XMM3 + 16, \ + XMM4 + 16, XMM5 + 16}) #else // 64-bit Unix / OS X #define ABI_PARAM1 RDI |