The 'q' option is for modes of decoding that are quicker because they
skip or omit decoding some aspects of trace data.

If supported, the 'q' option may be repeated to increase the effect.

Signed-off-by: Adrian Hunter <[email protected]>
---
 tools/perf/Documentation/itrace.txt | 3 +++
 tools/perf/util/auxtrace.c          | 3 +++
 tools/perf/util/auxtrace.h          | 2 ++
 3 files changed, 8 insertions(+)

diff --git a/tools/perf/Documentation/itrace.txt 
b/tools/perf/Documentation/itrace.txt
index 3dd8fddb8b1b..d4ffa11b9d50 100644
--- a/tools/perf/Documentation/itrace.txt
+++ b/tools/perf/Documentation/itrace.txt
@@ -18,6 +18,7 @@
                l       synthesize last branch entries (use with i or x)
                L       synthesize last branch entries on existing event records
                s       skip initial number of events
+               q       quicker (less detailed) decoding
 
        The default is all events i.e. the same as --itrace=ibxwpe,
        except for perf script where it is --itrace=ce
@@ -53,3 +54,5 @@
 
        If supported, The 'd' option may be followed by an architecture-specific
        number which flags what kind of debug messages will or will not be 
logged.
+
+       If supported, the 'q' option may be repeated to increase the effect.
diff --git a/tools/perf/util/auxtrace.c b/tools/perf/util/auxtrace.c
index 3f806c2881c9..81726c014237 100644
--- a/tools/perf/util/auxtrace.c
+++ b/tools/perf/util/auxtrace.c
@@ -1511,6 +1511,9 @@ int itrace_parse_synth_opts(const struct option *opt, 
const char *str,
                case 'a':
                        synth_opts->remote_access = true;
                        break;
+               case 'q':
+                       synth_opts->quick += 1;
+                       break;
                case ' ':
                case ',':
                        break;
diff --git a/tools/perf/util/auxtrace.h b/tools/perf/util/auxtrace.h
index f41dbdc98175..d3b5520fa992 100644
--- a/tools/perf/util/auxtrace.h
+++ b/tools/perf/util/auxtrace.h
@@ -93,6 +93,7 @@ enum itrace_period_type {
  * @range_num: number of time intervals to trace
  * @error_flags: arch-specific flags to affect what errors are reported
  * @log_flags: arch-specific flags to affect what is logged
+ * @quick: quicker (less detailed) decoding
  */
 struct itrace_synth_opts {
        bool                    set;
@@ -128,6 +129,7 @@ struct itrace_synth_opts {
        int                     range_num;
        unsigned int            error_flags;
        unsigned int            log_flags;
+       unsigned int            quick;
 };
 
 /**
-- 
2.25.1

Reply via email to