From: Richard Henderson <richard.henderson@linaro.org>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, philmd@redhat.com,
"Philippe Mathieu-Daudé" <f4bug@amsat.org>
Subject: [PATCH v2 3/8] decodetree: Split out MultiPattern from IncMultiPattern
Date: Tue, 2 Jun 2020 16:58:29 -0700 [thread overview]
Message-ID: <20200602235834.470345-4-richard.henderson@linaro.org> (raw)
In-Reply-To: <20200602235834.470345-1-richard.henderson@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
scripts/decodetree.py | 37 ++++++++++++++++++++++++++-----------
1 file changed, 26 insertions(+), 11 deletions(-)
diff --git a/scripts/decodetree.py b/scripts/decodetree.py
index 7af6b3056d..ea313bcdea 100755
--- a/scripts/decodetree.py
+++ b/scripts/decodetree.py
@@ -371,7 +371,32 @@ class Pattern(General):
# end Pattern
-class IncMultiPattern(General):
+class MultiPattern(General):
+ """Class representing a set of instruction patterns"""
+
+ def __init__(self, lineno, pats):
+ self.file = input_file
+ self.lineno = lineno
+ self.pats = pats
+ self.base = None
+ self.fixedbits = 0
+ self.fixedmask = 0
+ self.undefmask = 0
+ self.width = None
+
+ def __str__(self):
+ r = 'group'
+ if self.fixedbits is not None:
+ r += ' ' + str_match_bits(self.fixedbits, self.fixedmask)
+ return r
+
+ def output_decl(self):
+ for p in self.pats:
+ p.output_decl()
+# end MultiPattern
+
+
+class IncMultiPattern(MultiPattern):
"""Class representing an overlapping set of instruction patterns"""
def __init__(self, lineno, pats, fixb, fixm, udfm, w):
@@ -384,16 +409,6 @@ class IncMultiPattern(General):
self.undefmask = udfm
self.width = w
- def __str__(self):
- r = "{"
- for p in self.pats:
- r = r + ' ' + str(p)
- return r + "}"
-
- def output_decl(self):
- for p in self.pats:
- p.output_decl()
-
def output_code(self, i, extracted, outerbits, outermask):
global translate_prefix
ind = str_indent(i)
--
2.25.1
next prev parent reply other threads:[~2020-06-03 0:01 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-06-02 23:58 [PATCH v2 0/8] decodetree: Add non-overlapping groups Richard Henderson
2020-06-02 23:58 ` [PATCH v2 1/8] decodetree: Tidy error_with_file Richard Henderson
2020-06-02 23:58 ` [PATCH v2 2/8] decodetree: Rename MultiPattern to IncMultiPattern Richard Henderson
2020-06-02 23:58 ` Richard Henderson [this message]
2020-06-02 23:58 ` [PATCH v2 4/8] decodetree: Allow group covering the entire insn space Richard Henderson
2020-06-02 23:58 ` [PATCH v2 5/8] decodetree: Move semantic propagation into classes Richard Henderson
2020-06-02 23:58 ` [PATCH v2 6/8] decodetree: Implement non-overlapping groups Richard Henderson
2020-06-08 10:17 ` Peter Maydell
2020-06-02 23:58 ` [PATCH v2 7/8] tests/decode: Test " Richard Henderson
2020-06-08 10:17 ` Peter Maydell
2020-06-02 23:58 ` [PATCH v2 8/8] target/arm: Use a non-overlapping group for misc control Richard Henderson
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=20200602235834.470345-4-richard.henderson@linaro.org \
--to=richard.henderson@linaro.org \
--cc=f4bug@amsat.org \
--cc=peter.maydell@linaro.org \
--cc=philmd@redhat.com \
--cc=qemu-devel@nongnu.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).