[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [RFC PATCH v4 19/75] target/i386: introduce generic either-
From: |
Jan Bobek |
Subject: |
[Qemu-devel] [RFC PATCH v4 19/75] target/i386: introduce generic either-or operand |
Date: |
Wed, 21 Aug 2019 13:28:55 -0400 |
The either-or operand attempts to decode one operand, and if it fails,
it falls back to a second operand. It is unifying, meaning that
insnop_arg_t of the second operand must be implicitly castable to
insnop_arg_t of the first operand.
Signed-off-by: Jan Bobek <address@hidden>
---
target/i386/translate.c | 44 +++++++++++++++++++++++++++++++++++++++++
1 file changed, 44 insertions(+)
diff --git a/target/i386/translate.c b/target/i386/translate.c
index a6f23bae4e..68c6b7d16b 100644
--- a/target/i386/translate.c
+++ b/target/i386/translate.c
@@ -4626,6 +4626,50 @@ static bool check_cpuid(CPUX86State *env, DisasContext
*s, CheckCpuidFeat feat)
insnop_finalize(opT2)(ctxt, env, s, modrm, is_write, arg); \
}
+/*
+ * Generic unifying either-or operand
+ */
+#define DEF_INSNOP_EITHER(opT, opT1, opT2) \
+ typedef insnop_arg_t(opT1) insnop_arg_t(opT); \
+ typedef struct { \
+ bool is_ ## opT1; \
+ union { \
+ insnop_ctxt_t(opT1) ctxt_ ## opT1; \
+ insnop_ctxt_t(opT2) ctxt_ ## opT2; \
+ }; \
+ } insnop_ctxt_t(opT); \
+ \
+ INSNOP_INIT(opT) \
+ { \
+ if (insnop_init(opT1)(&ctxt->ctxt_ ## opT1, \
+ env, s, modrm, is_write)) { \
+ ctxt->is_ ## opT1 = true; \
+ return true; \
+ } \
+ if (insnop_init(opT2)(&ctxt->ctxt_ ## opT2, \
+ env, s, modrm, is_write)) { \
+ ctxt->is_ ## opT1 = false; \
+ return true; \
+ } \
+ return false; \
+ } \
+ INSNOP_PREPARE(opT) \
+ { \
+ return (ctxt->is_ ## opT1 \
+ ? insnop_prepare(opT1)(&ctxt->ctxt_ ## opT1, \
+ env, s, modrm, is_write) \
+ : insnop_prepare(opT2)(&ctxt->ctxt_ ## opT2, \
+ env, s, modrm, is_write)); \
+ } \
+ INSNOP_FINALIZE(opT) \
+ { \
+ (ctxt->is_ ## opT1 \
+ ? insnop_finalize(opT1)(&ctxt->ctxt_ ## opT1, \
+ env, s, modrm, is_write, arg) \
+ : insnop_finalize(opT2)(&ctxt->ctxt_ ## opT2, \
+ env, s, modrm, is_write, arg)); \
+ }
+
static void gen_sse_ng(CPUX86State *env, DisasContext *s, int b)
{
enum {
--
2.20.1
- [Qemu-devel] [RFC PATCH v4 09/75] target/i386: make variable is_xmm const, (continued)
- [Qemu-devel] [RFC PATCH v4 09/75] target/i386: make variable is_xmm const, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 12/75] target/i386: introduce CASES_* macros in gen_sse_ng, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 05/75] target/i386: introduce disas_insn_prefix, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 13/75] target/i386: decode the 0F38/0F3A prefix in gen_sse_ng, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 06/75] target/i386: Simplify gen_exception arguments, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 08/75] target/i386: make variable b1 const, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 07/75] target/i386: use pc_start from DisasContext, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 16/75] target/i386: disable AVX/AVX2 cpuid bitchecks, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 14/75] target/i386: introduce aliases for some tcg_gvec operations, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 15/75] target/i386: introduce function check_cpuid, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 19/75] target/i386: introduce generic either-or operand,
Jan Bobek <=
- [Qemu-devel] [RFC PATCH v4 22/75] target/i386: introduce modrm operand, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 24/75] target/i386: introduce operand for direct-only r/m field, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 18/75] target/i386: introduce generic operand alias, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 20/75] target/i386: introduce generic load-store operand, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 21/75] target/i386: introduce tcg register operands, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 17/75] target/i386: introduce instruction operand infrastructure, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 27/75] target/i386: introduce G*, R*, E* (general register) operands, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 23/75] target/i386: introduce operands for decoding modrm fields, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 25/75] target/i386: introduce Ib (immediate) operand, Jan Bobek, 2019/08/21
- [Qemu-devel] [RFC PATCH v4 26/75] target/i386: introduce M* (memptr) operands, Jan Bobek, 2019/08/21