Skip to content

Commit 8a764a8

Browse files
dvlasenkIngo Molnar
authored andcommitted
x86/asm/decoder: Create artificial 3rd byte for 2-byte VEX
Before this patch, users need to do this to fetch vex.vvvv: if (insn->vex_prefix.nbytes == 2) { vex_vvvv = ((insn->vex_prefix.bytes[1] >> 3) & 0xf) ^ 0xf; } if (insn->vex_prefix.nbytes == 3) { vex_vvvv = ((insn->vex_prefix.bytes[2] >> 3) & 0xf) ^ 0xf; } Make it so that insn->vex_prefix.bytes[2] always contains vex.wvvvvLpp bits. Signed-off-by: Denys Vlasenko <dvlasenk@redhat.com> Acked-by: Masami Hiramatsu <masami.hiramatsu.pt@hitachi.com> Cc: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Cc: Frank Ch. Eigler <fche@redhat.com> Cc: Jim Keniston <jkenisto@linux.vnet.ibm.com> Cc: Oleg Nesterov <oleg@redhat.com> Cc: Srikar Dronamraju <srikar@linux.vnet.ibm.com> Link: http://lkml.kernel.org/r/1423767879-31691-1-git-send-email-dvlasenk@redhat.com Signed-off-by: Ingo Molnar <mingo@kernel.org>
1 parent e07e0d4 commit 8a764a8

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

arch/x86/lib/insn.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -164,6 +164,12 @@ void insn_get_prefixes(struct insn *insn)
164164
/* VEX.W overrides opnd_size */
165165
insn->opnd_bytes = 8;
166166
} else {
167+
/*
168+
* For VEX2, fake VEX3-like byte#2.
169+
* Makes it easier to decode vex.W, vex.vvvv,
170+
* vex.L and vex.pp. Masking with 0x7f sets vex.W == 0.
171+
*/
172+
insn->vex_prefix.bytes[2] = b2 & 0x7f;
167173
insn->vex_prefix.nbytes = 2;
168174
insn->next_byte += 2;
169175
}

0 commit comments

Comments
 (0)