sim: trace: document alu/fpu/vpu trace options better
authorMike Frysinger <vapier@gentoo.org>
Wed, 24 Jun 2015 13:21:38 +0000 (19:06 +0545)
committerMike Frysinger <vapier@gentoo.org>
Wed, 24 Jun 2015 14:16:45 +0000 (10:16 -0400)
Make the acronyms clear for people.

sim/common/ChangeLog
sim/common/sim-trace.c
sim/common/sim-trace.h

index c436b91a20b7838e39dcefa123525a81cbf81ffb..21a3fe31f45d4633a6a0b9c1ca1b78cfd4a4309a 100644 (file)
@@ -1,3 +1,10 @@
+2015-06-24  Mike Frysinger  <vapier@gentoo.org>
+
+       * sim-trace.c (trace_options): Update help text for trace-alu,
+       trace-fpu, trace-vpu, and trace-semantics.
+       * sim-trace.h (TRACE_ALU_IDX): Update comment text.
+       (TRACE_FPU_IDX, TRACE_VPU_IDX): Likewise.
+
 2015-06-24  Mike Frysinger  <vapier@gentoo.org>
 
        * sim-assert.h (SIM_FILTER_PATH): Delete.
index f5ee67842b16bd0f6f0c977d465b533fe376689d..1693a6e5f078044c3c2b22715416fec7f8e56700 100644 (file)
@@ -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",
index c5a04c1510d71b5b980e5a1a456141d88d61dc8d..0fa44fff2a367e886f0fae056c1ab55e48465972 100644 (file)
@@ -50,7 +50,7 @@ enum {
   /* Include model performance data in tracing output.  */
   TRACE_MODEL_IDX,
 
-  /* Trace ALU operations.  */
+  /* Trace ALU (Arithmetic Logic Unit) operations.  */
   TRACE_ALU_IDX,
 
   /* Trace memory core operations.  */
@@ -59,10 +59,10 @@ enum {
   /* Trace events.  */
   TRACE_EVENTS_IDX,
 
-  /* Trace fpu operations.  */
+  /* Trace FPU (Floating Point Unit) operations.  */
   TRACE_FPU_IDX,
 
-  /* Trace vpu operations.  */
+  /* Trace VPU (Vector Processing Unit) operations.  */
   TRACE_VPU_IDX,
 
   /* Trace branching.  */
This page took 0.031587 seconds and 4 git commands to generate.