Commit b3b3d25a authored by Avi Kivity's avatar Avi Kivity

KVM: x86 emulator: pass destination type to ____emulate_2op()

We'll need it later so we can use a register for the destination.
Signed-off-by: default avatarAvi Kivity <avi@redhat.com>
parent f2f31845
...@@ -194,13 +194,13 @@ struct group_dual { ...@@ -194,13 +194,13 @@ struct group_dual {
#define ON64(x) #define ON64(x)
#endif #endif
#define ____emulate_2op(_op, _src, _dst, _eflags, _x, _y, _suffix) \ #define ____emulate_2op(_op, _src, _dst, _eflags, _x, _y, _suffix, _dsttype) \
do { \ do { \
__asm__ __volatile__ ( \ __asm__ __volatile__ ( \
_PRE_EFLAGS("0", "4", "2") \ _PRE_EFLAGS("0", "4", "2") \
_op _suffix " %"_x"3,%1; " \ _op _suffix " %"_x"3,%1; " \
_POST_EFLAGS("0", "4", "2") \ _POST_EFLAGS("0", "4", "2") \
: "=m" (_eflags), "=m" ((_dst).val), \ : "=m" (_eflags), "=m" (*(_dsttype*)&(_dst).val),\
"=&r" (_tmp) \ "=&r" (_tmp) \
: _y ((_src).val), "i" (EFLAGS_MASK)); \ : _y ((_src).val), "i" (EFLAGS_MASK)); \
} while (0) } while (0)
...@@ -213,13 +213,13 @@ struct group_dual { ...@@ -213,13 +213,13 @@ struct group_dual {
\ \
switch ((_dst).bytes) { \ switch ((_dst).bytes) { \
case 2: \ case 2: \
____emulate_2op(_op,_src,_dst,_eflags,_wx,_wy,"w"); \ ____emulate_2op(_op,_src,_dst,_eflags,_wx,_wy,"w",u16);\
break; \ break; \
case 4: \ case 4: \
____emulate_2op(_op,_src,_dst,_eflags,_lx,_ly,"l"); \ ____emulate_2op(_op,_src,_dst,_eflags,_lx,_ly,"l",u32);\
break; \ break; \
case 8: \ case 8: \
ON64(____emulate_2op(_op,_src,_dst,_eflags,_qx,_qy,"q")); \ ON64(____emulate_2op(_op,_src,_dst,_eflags,_qx,_qy,"q",u64)); \
break; \ break; \
} \ } \
} while (0) } while (0)
...@@ -229,7 +229,7 @@ struct group_dual { ...@@ -229,7 +229,7 @@ struct group_dual {
unsigned long _tmp; \ unsigned long _tmp; \
switch ((_dst).bytes) { \ switch ((_dst).bytes) { \
case 1: \ case 1: \
____emulate_2op(_op,_src,_dst,_eflags,_bx,_by,"b"); \ ____emulate_2op(_op,_src,_dst,_eflags,_bx,_by,"b",u8); \
break; \ break; \
default: \ default: \
__emulate_2op_nobyte(_op, _src, _dst, _eflags, \ __emulate_2op_nobyte(_op, _src, _dst, _eflags, \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment