[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 19/27] decodetree: Fix recursion in prop_format and build_tree
|
From: |
Richard Henderson |
|
Subject: |
[PULL 19/27] decodetree: Fix recursion in prop_format and build_tree |
|
Date: |
Tue, 30 May 2023 11:59:41 -0700 |
Two copy-paste errors walking the parse tree.
Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
---
scripts/decodetree.py | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/scripts/decodetree.py b/scripts/decodetree.py
index 3f9f6876f7..e2640cc79b 100644
--- a/scripts/decodetree.py
+++ b/scripts/decodetree.py
@@ -474,7 +474,7 @@ def build_tree(self):
def prop_format(self):
for p in self.pats:
- p.build_tree()
+ p.prop_format()
def prop_width(self):
width = None
@@ -624,7 +624,7 @@ def __build_tree(pats, outerbits, outermask):
return t
def build_tree(self):
- super().prop_format()
+ super().build_tree()
self.tree = self.__build_tree(self.pats, self.fixedbits,
self.fixedmask)
--
2.34.1
- [PULL 02/27] accel/tcg: Fix check for page writeability in load_atomic16_or_exit, (continued)
- [PULL 02/27] accel/tcg: Fix check for page writeability in load_atomic16_or_exit, Richard Henderson, 2023/05/30
- [PULL 04/27] qemu/atomic128: Add x86_64 atomic128-ldst.h, Richard Henderson, 2023/05/30
- [PULL 14/27] accel/tcg: Add x86_64 load_atom_extract_al16_or_al8, Richard Henderson, 2023/05/30
- [PULL 17/27] tcg: Remove TCG_TARGET_TLB_DISPLACEMENT_BITS, Richard Henderson, 2023/05/30
- [PULL 21/27] decodetree: Do not remove output_file from /dev, Richard Henderson, 2023/05/30
- [PULL 22/27] tests/decode: Convert tests to meson, Richard Henderson, 2023/05/30
- [PULL 24/27] scripts/decodetree: Pass lvalue-formatter function to str_extract(), Richard Henderson, 2023/05/30
- [PULL 13/27] accel/tcg: Extract store_atom_insert_al16 to host header, Richard Henderson, 2023/05/30
- [PULL 18/27] decodetree: Add --test-for-error, Richard Henderson, 2023/05/30
- [PULL 15/27] accel/tcg: Add aarch64 lse2 load_atom_extract_al16_or_al8, Richard Henderson, 2023/05/30
- [PULL 19/27] decodetree: Fix recursion in prop_format and build_tree,
Richard Henderson <=
- [PULL 27/27] tests/decode: Add tests for various named-field cases, Richard Henderson, 2023/05/30
- [PULL 26/27] scripts/decodetree: Implement named field support, Richard Henderson, 2023/05/30
- [PULL 05/27] tcg/i386: Support 128-bit load/store, Richard Henderson, 2023/05/30
- [PULL 09/27] tcg/aarch64: Support 128-bit load/store, Richard Henderson, 2023/05/30
- [PULL 11/27] tcg/s390x: Support 128-bit load/store, Richard Henderson, 2023/05/30
- [PULL 10/27] tcg/ppc: Support 128-bit load/store, Richard Henderson, 2023/05/30
- [PULL 08/27] tcg/aarch64: Simplify constraints on qemu_ld/st, Richard Henderson, 2023/05/30
- [PULL 07/27] tcg/aarch64: Reserve TCG_REG_TMP1, TCG_REG_TMP2, Richard Henderson, 2023/05/30
- [PULL 16/27] accel/tcg: Add aarch64 store_atom_insert_al16, Richard Henderson, 2023/05/30
- [PULL 12/27] accel/tcg: Extract load_atom_extract_al16_or_al8 to host header, Richard Henderson, 2023/05/30