qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PULL 08/12] decodetree: Add --static-decode option


From: Richard Henderson
Subject: [Qemu-devel] [PULL 08/12] decodetree: Add --static-decode option
Date: Tue, 12 Mar 2019 10:03:30 -0700

Like --decode, but do not drop 'static' qualifier.

Signed-off-by: Richard Henderson <address@hidden>
---
 scripts/decodetree.py | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/scripts/decodetree.py b/scripts/decodetree.py
index 2711c6ca9e..6067e940ab 100755
--- a/scripts/decodetree.py
+++ b/scripts/decodetree.py
@@ -979,7 +979,8 @@ def main():
 
     decode_scope = 'static '
 
-    long_opts = ['decode=', 'translate=', 'output=', 'insnwidth=']
+    long_opts = ['decode=', 'translate=', 'output=', 'insnwidth=',
+                 'static-decode=']
     try:
         (opts, args) = getopt.getopt(sys.argv[1:], 'o:w:', long_opts)
     except getopt.GetoptError as err:
@@ -990,6 +991,8 @@ def main():
         elif o == '--decode':
             decode_function = a
             decode_scope = ''
+        elif o == '--static-decode':
+            decode_function = a
         elif o == '--translate':
             translate_prefix = a
             translate_scope = ''
-- 
2.17.2




reply via email to

[Prev in Thread] Current Thread [Next in Thread]