diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 19:06:38 +0545 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-06-24 10:16:45 -0400 |
commit | 8371bf0cd99635c9eabed28481b34ea8934a948e (patch) | |
tree | 8612d9256ce31365ebb7481a3d42d81f79f91a8e /sim/common/sim-trace.c | |
parent | 201e8dfdc8926c0b15bd9bebc762612ce196fd00 (diff) | |
download | gdb-8371bf0cd99635c9eabed28481b34ea8934a948e.zip gdb-8371bf0cd99635c9eabed28481b34ea8934a948e.tar.gz gdb-8371bf0cd99635c9eabed28481b34ea8934a948e.tar.bz2 |
sim: trace: document alu/fpu/vpu trace options better
Make the acronyms clear for people.
Diffstat (limited to 'sim/common/sim-trace.c')
-rw-r--r-- | sim/common/sim-trace.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sim/common/sim-trace.c b/sim/common/sim-trace.c index f5ee678..1693a6e 100644 --- a/sim/common/sim-trace.c +++ b/sim/common/sim-trace.c @@ -102,19 +102,19 @@ static const OPTION trace_options[] = '\0', "on|off", "Trace memory operations", trace_option_handler, NULL }, { {"trace-alu", optional_argument, NULL, OPTION_TRACE_ALU}, - '\0', "on|off", "Trace ALU operations", + '\0', "on|off", "Trace ALU (Arithmetic Logic Unit) operations", trace_option_handler, NULL }, { {"trace-fpu", optional_argument, NULL, OPTION_TRACE_FPU}, - '\0', "on|off", "Trace FPU operations", + '\0', "on|off", "Trace FPU (Floating Point Unit) operations", trace_option_handler, NULL }, { {"trace-vpu", optional_argument, NULL, OPTION_TRACE_VPU}, - '\0', "on|off", "Trace VPU operations", + '\0', "on|off", "Trace VPU (Vector Processing Unit) operations", trace_option_handler, NULL }, { {"trace-branch", optional_argument, NULL, OPTION_TRACE_BRANCH}, '\0', "on|off", "Trace branching", trace_option_handler, NULL }, { {"trace-semantics", optional_argument, NULL, OPTION_TRACE_SEMANTICS}, - '\0', "on|off", "Perform ALU, FPU, MEMORY, and BRANCH tracing", + '\0', "on|off", "Perform ALU, FPU, VPU, MEMORY, and BRANCH tracing", trace_option_handler, NULL }, { {"trace-model", optional_argument, NULL, OPTION_TRACE_MODEL}, '\0', "on|off", "Include model performance data", |