[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH v3 11/12] decodetree: Prefix extract function names
From: |
Richard Henderson |
Subject: |
[Qemu-devel] [PATCH v3 11/12] decodetree: Prefix extract function names with decode_function |
Date: |
Thu, 7 Mar 2019 10:56:21 -0800 |
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 eef32f695f..f8df89e072 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] [PATCH v3 00/12] decodetree enhacements, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 01/12] MAINTAINERS: Add scripts/decodetree.py to the TCG section, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 02/12] decodetree: Move documentation to docs/devel/decodetree.rst, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 03/12] decodetree: Document the usefulness of argument sets, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 04/12] decodetree: Ensure build_tree does not include values outside insnmask, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 05/12] decodetree: Do not unconditionaly return from Pattern.output_code, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 07/12] test/decode: Add tests for PatternGroups, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 06/12] decodetree: Allow grouping of overlapping patterns, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 08/12] decodetree: Add --static-decode option, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 09/12] decodetree: Produce clean output for an empty input file, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 11/12] decodetree: Prefix extract function names with decode_function,
Richard Henderson <=
- [Qemu-devel] [PATCH v3 10/12] decodetree: Allow +- to begin a number initializing a field, Richard Henderson, 2019/03/07
- [Qemu-devel] [PATCH v3 12/12] decodetree: Properly diagnose fields overflowing an insn, Richard Henderson, 2019/03/07