diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-12 16:47:36 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2008-05-12 16:47:36 +0000 |
commit | 5af451868c5bd93ea24672b0fa1b765cbd563cc6 (patch) | |
tree | 9b3d1a6c9d59353ab231d1f7ab5d957022ba5683 /target-i386/helper.h | |
parent | 77f193daa80a097a892c5c86e6038de9ffe59938 (diff) |
converted SSE/MMX ops to TCG
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4441 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'target-i386/helper.h')
-rw-r--r-- | target-i386/helper.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/target-i386/helper.h b/target-i386/helper.h index 1b247dbf5b..bc06fa3a8b 100644 --- a/target-i386/helper.h +++ b/target-i386/helper.h @@ -2,3 +2,12 @@ void TCG_HELPER_PROTO helper_divl_EAX_T0(target_ulong t0); void TCG_HELPER_PROTO helper_idivl_EAX_T0(target_ulong t0); +void TCG_HELPER_PROTO helper_enter_mmx(void); +void TCG_HELPER_PROTO helper_emms(void); +void TCG_HELPER_PROTO helper_movq(uint64_t *d, uint64_t *s); + +#define SHIFT 0 +#include "ops_sse_header.h" +#define SHIFT 1 +#include "ops_sse_header.h" + |