[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PULL 11/12] decodetree: Prefix extract function names with
|
From: |
Richard Henderson |
|
Subject: |
[Qemu-devel] [PULL 11/12] decodetree: Prefix extract function names with decode_function |
|
Date: |
Tue, 12 Mar 2019 10:03:33 -0700 |
This makes it easier to name Formats within multiple decode files.
Signed-off-by: Richard Henderson <address@hidden>
---
scripts/decodetree.py | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/scripts/decodetree.py b/scripts/decodetree.py
index f6f58e2fec..ac158b42d0 100755
--- a/scripts/decodetree.py
+++ b/scripts/decodetree.py
@@ -312,7 +312,8 @@ class Format(General):
"""Class representing an instruction format"""
def extract_name(self):
- return 'extract_' + self.name
+ global decode_function
+ return decode_function + '_extract_' + self.name
def output_extract(self):
output('static void ', self.extract_name(), '(',
--
2.17.2
- [Qemu-devel] [PULL 00/12] decodetree patches, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 11/12] decodetree: Prefix extract function names with decode_function,
Richard Henderson <=
- [Qemu-devel] [PULL 10/12] decodetree: Allow +- to begin a number initializing a field, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 12/12] decodetree: Properly diagnose fields overflowing an insn, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 07/12] test/decode: Add tests for PatternGroups, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 09/12] decodetree: Produce clean output for an empty input file, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 08/12] decodetree: Add --static-decode option, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 04/12] decodetree: Ensure build_tree does not include values outside insnmask, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 05/12] decodetree: Do not unconditionaly return from Pattern.output_code, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 06/12] decodetree: Allow grouping of overlapping patterns, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 03/12] decodetree: Document the usefulness of argument sets, Richard Henderson, 2019/03/12
- [Qemu-devel] [PULL 01/12] MAINTAINERS: Add scripts/decodetree.py to the TCG section, Richard Henderson, 2019/03/12