aboutsummaryrefslogtreecommitdiff
path: root/src/dolphin
diff options
context:
space:
mode:
authorRSDuck <rsduck@users.noreply.github.com>2019-06-30 13:35:03 +0200
committerRSDuck <rsduck@users.noreply.github.com>2020-06-16 11:53:07 +0200
commit550e6b86d2dc09960c5a74270bc49d3f0e895699 (patch)
treefdadc714e6bd8dd77512f4ccf64b9d2ba6d75fed /src/dolphin
parentea98a44e1e92b0f7622b28d36a1ba6c8d4679a1f (diff)
JIT: compilation of word load and store
Diffstat (limited to 'src/dolphin')
-rw-r--r--src/dolphin/x64ABI.h3
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