From: Andrew Cooper <andrew.cooper3@citrix.com>
To: Xen-devel <xen-devel@lists.xen.org>
Cc: Andrew Cooper <andrew.cooper3@citrix.com>,
Jan Beulich <JBeulich@suse.com>
Subject: [PATCH v2] x86/emul: Simplfy L{ES, DS, SS, FS, GS} handling
Date: Thu, 15 Dec 2016 17:10:36 +0000 [thread overview]
Message-ID: <1481821836-3288-1-git-send-email-andrew.cooper3@citrix.com> (raw)
%ss, %fs and %gs can be calculated by directly masking the opcode. %es and
%ds cant, but the calculation isn't hard.
Use seg rather than dst.val for storing the calculated segment, which is
appropriately typed. Drop the sel local variable entirely and use dst.val
instead. The mode_64bit() check can be repositioned and simplified to drop
the ext check. Replace opencoding of X86EMUL_OKAY.
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
---
CC: Jan Beulich <JBeulich@suse.com>
v2:
* Drop the sel local variable entirely.
* Move the lss/fs/gs cases back to their original location.
---
xen/arch/x86/x86_emulate/x86_emulate.c | 32 +++++++++++---------------------
1 file changed, 11 insertions(+), 21 deletions(-)
diff --git a/xen/arch/x86/x86_emulate/x86_emulate.c b/xen/arch/x86/x86_emulate/x86_emulate.c
index dfdcd6c..4753d0a 100644
--- a/xen/arch/x86/x86_emulate/x86_emulate.c
+++ b/xen/arch/x86/x86_emulate/x86_emulate.c
@@ -3397,24 +3397,20 @@ x86_emulate(
_regs.eip = dst.val;
break;
- case 0xc4: /* les */ {
- unsigned long sel;
- dst.val = x86_seg_es;
- les: /* dst.val identifies the segment */
- generate_exception_if(mode_64bit() && !ext, EXC_UD);
+ case 0xc4: /* les */
+ case 0xc5: /* lds */
+ generate_exception_if(mode_64bit(), EXC_UD);
+ seg = (b & 1) * 3; /* es = 0, ds = 3 */
+ les:
generate_exception_if(src.type != OP_MEM, EXC_UD);
if ( (rc = read_ulong(src.mem.seg, src.mem.off + src.bytes,
- &sel, 2, ctxt, ops)) != 0 )
+ &dst.val, 2, ctxt, ops)) != X86EMUL_OKAY )
goto done;
- if ( (rc = load_seg(dst.val, sel, 0, NULL, ctxt, ops)) != 0 )
+ ASSERT(is_x86_user_segment(seg));
+ if ( (rc = load_seg(seg, dst.val, 0, NULL, ctxt, ops)) != X86EMUL_OKAY )
goto done;
dst.val = src.val;
break;
- }
-
- case 0xc5: /* lds */
- dst.val = x86_seg_ds;
- goto les;
case 0xc8: /* enter imm16,imm8 */ {
uint8_t depth = imm2 & 31;
@@ -5233,21 +5229,15 @@ x86_emulate(
break;
case X86EMUL_OPC(0x0f, 0xb2): /* lss */
- dst.val = x86_seg_ss;
+ case X86EMUL_OPC(0x0f, 0xb4): /* lfs */
+ case X86EMUL_OPC(0x0f, 0xb5): /* lgs */
+ seg = b & 7;
goto les;
case X86EMUL_OPC(0x0f, 0xb3): btr: /* btr */
emulate_2op_SrcV_nobyte("btr", src, dst, _regs.eflags);
break;
- case X86EMUL_OPC(0x0f, 0xb4): /* lfs */
- dst.val = x86_seg_fs;
- goto les;
-
- case X86EMUL_OPC(0x0f, 0xb5): /* lgs */
- dst.val = x86_seg_gs;
- goto les;
-
case X86EMUL_OPC(0x0f, 0xb6): /* movzx rm8,r{16,32,64} */
/* Recompute DstReg as we may have decoded AH/BH/CH/DH. */
dst.reg = decode_register(modrm_reg, &_regs, 0);
--
2.1.4
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xen.org
https://lists.xen.org/xen-devel
next reply other threads:[~2016-12-15 17:10 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-12-15 17:10 Andrew Cooper [this message]
2016-12-16 7:17 ` [PATCH v2] x86/emul: Simplfy L{ES, DS, SS, FS, GS} handling Jan Beulich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1481821836-3288-1-git-send-email-andrew.cooper3@citrix.com \
--to=andrew.cooper3@citrix.com \
--cc=JBeulich@suse.com \
--cc=xen-devel@lists.xen.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).