From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, Richard Henderson <rth@twiddle.net>
Subject: [Qemu-devel] [PULL 06/14] disas/i386: Add disassembly of rorx
Date: Wed, 6 Sep 2017 07:49:32 -0700 [thread overview]
Message-ID: <20170906144940.30880-7-richard.henderson@linaro.org> (raw)
In-Reply-To: <20170906144940.30880-1-richard.henderson@linaro.org>
From: Richard Henderson <rth@twiddle.net>
Signed-off-by: Richard Henderson <rth@twiddle.net>
---
disas/i386.c | 13 +++++++++++--
1 file changed, 11 insertions(+), 2 deletions(-)
diff --git a/disas/i386.c b/disas/i386.c
index 7eaa378a10..a557e678ec 100644
--- a/disas/i386.c
+++ b/disas/i386.c
@@ -684,6 +684,7 @@ fetch_data(struct disassemble_info *info, bfd_byte *addr)
#define PREGRP106 NULL, { { NULL, USE_PREFIX_USER_TABLE }, { NULL, 106 } }
#define PREGRP107 NULL, { { NULL, USE_PREFIX_USER_TABLE }, { NULL, 107 } }
#define PREGRP108 NULL, { { NULL, USE_PREFIX_USER_TABLE }, { NULL, 108 } }
+#define PREGRP109 NULL, { { NULL, USE_PREFIX_USER_TABLE }, { NULL, 109 } }
#define X86_64_0 NULL, { { NULL, X86_64_SPECIAL }, { NULL, 0 } }
#define X86_64_1 NULL, { { NULL, X86_64_SPECIAL }, { NULL, 1 } }
@@ -1557,7 +1558,7 @@ static const unsigned char threebyte_0x3a_uses_REPNZ_prefix[256] = {
/* c0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* cf */
/* d0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* df */
/* e0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ef */
- /* f0 */ 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ff */
+ /* f0 */ 1,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0, /* ff */
/* ------------------------------- */
/* 0 1 2 3 4 5 6 7 8 9 a b c d e f */
};
@@ -2817,6 +2818,14 @@ static const struct dis386 prefix_user_table[][4] = {
{ "(bad)", { XX } },
{ "pdep", { Gv, Bv, Ev } },
},
+
+ /* PREGRP109 */
+ {
+ { "(bad)", { XX } },
+ { "(bad)", { XX } },
+ { "(bad)", { XX } },
+ { "rorx", { Gv, Ev, Ib } },
+ },
};
static const struct dis386 x86_64_table[][2] = {
@@ -3403,7 +3412,7 @@ static const struct dis386 three_byte_table[][256] = {
{ "(bad)", { XX } },
{ "(bad)", { XX } },
/* f0 */
- { "(bad)", { XX } },
+ { PREGRP109 },
{ "(bad)", { XX } },
{ "(bad)", { XX } },
{ "(bad)", { XX } },
--
2.13.5
next prev parent reply other threads:[~2017-09-06 14:49 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-06 14:49 [Qemu-devel] [PULL 00/14] TCG misc queued patches Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 01/14] tcg: Remove support for ia64 as host Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 02/14] tcg: Add tcg target default memory ordering Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 03/14] tcg: Implement implicit ordering semantics Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 04/14] disas/i386: Fix disassembly of two-byte vex prefixes Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 05/14] disas/i386: Add disassembly of vex.0f38.f5 Richard Henderson
2017-09-06 14:49 ` Richard Henderson [this message]
2017-09-06 14:49 ` [Qemu-devel] [PULL 07/14] tcg/s390: Fully convert tcg_target_op_def Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 08/14] tcg/s390: Merge cmpi facilities check to tcg_target_op_def Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 09/14] tcg/s390: Merge muli " Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 10/14] tcg/s390: Merge add2i " Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 11/14] tcg/s390: Merge ori+xori " Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 12/14] tcg/s390: Use distinct-operands facility Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 13/14] tcg/s390: Use load-on-condition-2 facility Richard Henderson
2017-09-06 14:49 ` [Qemu-devel] [PULL 14/14] tcg/s390: Use slbgr for setcond le and leu Richard Henderson
2017-09-07 13:28 ` [Qemu-devel] [PULL 00/14] TCG misc queued patches Peter Maydell
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=20170906144940.30880-7-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=peter.maydell@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=rth@twiddle.net \
/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).