Event descriptions should not end in "event"
authorSteve Reinhardt <stever@eecs.umich.edu>
Sun, 1 Jul 2007 00:45:58 +0000 (17:45 -0700)
committerSteve Reinhardt <stever@eecs.umich.edu>
Sun, 1 Jul 2007 00:45:58 +0000 (17:45 -0700)
(they function as adjectives not nouns)

--HG--
extra : convert_revision : 6506474ff3356ae8c80ed276c3608d8a4680bfdb

21 files changed:
src/arch/mips/regfile/misc_regfile.cc
src/cpu/base.cc
src/cpu/o3/commit_impl.hh
src/cpu/o3/cpu.cc
src/cpu/o3/inst_queue_impl.hh
src/cpu/o3/lsq_unit_impl.hh
src/cpu/ozone/back_end_impl.hh
src/cpu/ozone/cpu_impl.hh
src/cpu/ozone/inorder_back_end_impl.hh
src/cpu/ozone/inst_queue_impl.hh
src/cpu/ozone/lsq_unit_impl.hh
src/cpu/ozone/lw_back_end_impl.hh
src/cpu/ozone/lw_lsq_impl.hh
src/cpu/quiesce_event.cc
src/cpu/simple/atomic.cc
src/cpu/simple/timing.hh
src/cpu/trace/opt_cpu.cc
src/cpu/trace/trace_cpu.cc
src/dev/ethertap.hh
src/dev/uart8250.cc
src/mem/bridge.hh

index c97d93cf92ca69f8b7719b6d067443109d99787c..71be3adf9657c9f42bf5973bc45fe4274e3cee86 100755 (executable)
@@ -357,7 +357,7 @@ MiscRegFile::CP0Event::process()
 const char *
 MiscRegFile::CP0Event::description()
 {
-    return "Coprocessor-0 event";
+    return "Coprocessor-0";
 }
 
 void
index f86313da063bcf5b38314722d1c6cd2317ea0700..cf007a06b21f4d1d5f062f3fea3f80e4687b0f23 100644 (file)
@@ -91,7 +91,7 @@ CPUProgressEvent::process()
 const char *
 CPUProgressEvent::description()
 {
-    return "CPU Progress event";
+    return "CPU Progress";
 }
 
 #if FULL_SYSTEM
index 9411c6c620c0876c7ebff6baf1a984bb1d7a3eb6..f263383aef0ec13998d086c34ba8b9ab80bff263 100644 (file)
@@ -67,7 +67,7 @@ template <class Impl>
 const char *
 DefaultCommit<Impl>::TrapEvent::description()
 {
-    return "Trap event";
+    return "Trap";
 }
 
 template <class Impl>
index 6a3eb9c439c8a831ecc8be4b92a0f75a10c492d0..2bf8f983241b7efd9b91294d9d6711076fbb7021 100644 (file)
@@ -83,7 +83,7 @@ template <class Impl>
 const char *
 FullO3CPU<Impl>::TickEvent::description()
 {
-    return "FullO3CPU tick event";
+    return "FullO3CPU tick";
 }
 
 template <class Impl>
@@ -112,7 +112,7 @@ template <class Impl>
 const char *
 FullO3CPU<Impl>::ActivateThreadEvent::description()
 {
-    return "FullO3CPU \"Activate Thread\" event";
+    return "FullO3CPU \"Activate Thread\"";
 }
 
 template <class Impl>
@@ -144,7 +144,7 @@ template <class Impl>
 const char *
 FullO3CPU<Impl>::DeallocateContextEvent::description()
 {
-    return "FullO3CPU \"Deallocate Context\" event";
+    return "FullO3CPU \"Deallocate Context\"";
 }
 
 template <class Impl>
index bdf5f07aa7eeb1bbcc7f626409859fbea54219f9..99bffe1a6f85b74cfe8237ad89614ab47b4fd63b 100644 (file)
@@ -60,7 +60,7 @@ template <class Impl>
 const char *
 InstructionQueue<Impl>::FUCompletion::description()
 {
-    return "Functional unit completion event";
+    return "Functional unit completion";
 }
 
 template <class Impl>
index 91e61658922bf7e6b1a58129b04e7ed9fd17e51d..810a6d29f30d8f4f075cfcc32b825f8c8160cf55 100644 (file)
@@ -69,7 +69,7 @@ template<class Impl>
 const char *
 LSQUnit<Impl>::WritebackEvent::description()
 {
-    return "Store writeback event";
+    return "Store writeback";
 }
 
 template<class Impl>
index 4078699fea5ac801a4a2edff602f1e7e1f1f38f6..27146ecf002be93d1dc64006b9eccaeb82ac0c6a 100644 (file)
@@ -583,7 +583,7 @@ template<class Impl>
 const char *
 BackEnd<Impl>::LdWritebackEvent::description()
 {
-    return "Load writeback event";
+    return "Load writeback";
 }
 
 
@@ -603,7 +603,7 @@ template <class Impl>
 const char *
 BackEnd<Impl>::DCacheCompletionEvent::description()
 {
-    return "Cache completion event";
+    return "Cache completion";
 }
 
 template <class Impl>
index d1214223b7a6252b01074ce903b6f3b8cce36e5a..d73e5768a79f6b466f78ec301cdb17595cc7535a 100644 (file)
@@ -84,7 +84,7 @@ template <class Impl>
 const char *
 OzoneCPU<Impl>::TickEvent::description()
 {
-    return "OzoneCPU tick event";
+    return "OzoneCPU tick";
 }
 
 template <class Impl>
index 8d7ebb60ec46fe3ab89f48da616b683f24cd9c41..c57fa0200666833bfdbbb847d41f7210a8eedfbb 100644 (file)
@@ -540,5 +540,5 @@ template <class Impl>
 const char *
 InorderBackEnd<Impl>::DCacheCompletionEvent::description()
 {
-    return "DCache completion event";
+    return "DCache completion";
 }
index ea9d03c0dced2feccb37de74cd560e8a65ec087d..461c7eb0f6751883c7f956f68ee6d70632acec0e 100644 (file)
@@ -64,7 +64,7 @@ template <class Impl>
 const char *
 InstQueue<Impl>::FUCompletion::description()
 {
-    return "Functional unit completion event";
+    return "Functional unit completion";
 }
 #endif
 template <class Impl>
index c46eb90beb8f8f3ebdcb41fca015abbe0f226033..e08e5483545555c2f0cf5cefd4da559de43e4044 100644 (file)
@@ -62,7 +62,7 @@ template <class Impl>
 const char *
 OzoneLSQ<Impl>::StoreCompletionEvent::description()
 {
-    return "LSQ store completion event";
+    return "LSQ store completion";
 }
 
 template <class Impl>
index c0a9cad24a8202365c1c11dc43f191cf953aee45..f84bda3485e0705b9995b421d250531ac77199e9 100644 (file)
@@ -121,7 +121,7 @@ template <class Impl>
 const char *
 LWBackEnd<Impl>::TrapEvent::description()
 {
-    return "Trap event";
+    return "Trap";
 }
 
 template <class Impl>
index eefc0df833e180503863de3b6c208c7faf350093..e3000288c97436e6736deb4cd09278ddb440ef71 100644 (file)
@@ -57,7 +57,7 @@ template<class Impl>
 const char *
 OzoneLWLSQ<Impl>::WritebackEvent::description()
 {
-    return "Store writeback event";
+    return "Store writeback";
 }
 
 template <class Impl>
index fa79e6d1efdc2a4d11e0d422b7c2b8840a903d81..3495a0e523c50c573495124c7db0eb0c59744590 100644 (file)
@@ -47,5 +47,5 @@ EndQuiesceEvent::process()
 const char*
 EndQuiesceEvent::description()
 {
-    return "End Quiesce Event.";
+    return "End Quiesce";
 }
index bcd6662c815d81c66c1f0f6fe2a09021c2ec6608..8e8da2fa2a6d02babea6baf2b5f65414973bcdf5 100644 (file)
@@ -57,7 +57,7 @@ AtomicSimpleCPU::TickEvent::process()
 const char *
 AtomicSimpleCPU::TickEvent::description()
 {
-    return "AtomicSimpleCPU tick event";
+    return "AtomicSimpleCPU tick";
 }
 
 Port *
index 39958bfb68a1a7cfcf0213e040daf4bcec84abe6..ba194b3fa3a15d637a468a08826faa62f3f00530 100644 (file)
@@ -101,7 +101,7 @@ class TimingSimpleCPU : public BaseSimpleCPU
 
             TickEvent(TimingSimpleCPU *_cpu)
                 :Event(&mainEventQueue), cpu(_cpu) {}
-            const char *description() { return "Timing CPU clock event"; }
+            const char *description() { return "Timing CPU tick"; }
             void schedule(PacketPtr _pkt, Tick t);
         };
 
@@ -127,7 +127,7 @@ class TimingSimpleCPU : public BaseSimpleCPU
             ITickEvent(TimingSimpleCPU *_cpu)
                 : TickEvent(_cpu) {}
             void process();
-            const char *description() { return "Timing CPU clock event"; }
+            const char *description() { return "Timing CPU icache tick"; }
         };
 
         ITickEvent tickEvent;
@@ -155,7 +155,7 @@ class TimingSimpleCPU : public BaseSimpleCPU
             DTickEvent(TimingSimpleCPU *_cpu)
                 : TickEvent(_cpu) {}
             void process();
-            const char *description() { return "Timing CPU clock event"; }
+            const char *description() { return "Timing CPU dcache tick"; }
         };
 
         DTickEvent tickEvent;
index 996e89f0137ecda101c9b3d3fb609914747df564..0f2944f072212d5d0a96e7a87504da45c5d4c90e 100644 (file)
@@ -207,7 +207,7 @@ OptCPU::TickEvent::process()
 const char *
 OptCPU::TickEvent::description()
 {
-    return "OptCPU tick event";
+    return "OptCPU tick";
 }
 
 
index 3c9da4849cfdc87b5f353f26ab0badb59660a684..32ed6c7d7bd3ca77d359e1aff1a2fad30a37d3e5 100644 (file)
@@ -148,7 +148,7 @@ TraceCPU::TickEvent::process()
 const char *
 TraceCPU::TickEvent::description()
 {
-    return "TraceCPU tick event";
+    return "TraceCPU tick";
 }
 
 
index f64ed718749c1e56c45899a917097eaa353902f5..3d28388171afefab5e800d88bc121f59c050c5b9 100644 (file)
@@ -89,7 +89,7 @@ class EtherTap : public EtherInt
         TxEvent(EtherTap *_tap)
             : Event(&mainEventQueue), tap(_tap) {}
         void process() { tap->retransmit(); }
-        virtual const char *description() { return "retransmit event"; }
+        virtual const char *description() { return "EtherTap retransmit"; }
     };
 
     friend class TxEvent;
index 0ad80e07700932fa535907455dc796201b20f1c6..358dda0d8265fb0496ca989cb480ba946218d259 100644 (file)
@@ -58,7 +58,7 @@ Uart8250::IntrEvent::IntrEvent(Uart8250 *u, int bit)
 const char *
 Uart8250::IntrEvent::description()
 {
-    return "uart interrupt delay event";
+    return "uart interrupt delay";
 }
 
 void
index 7af764437ffa82eef73cb9d8c3992acb584c05cf..acae2f126791f78e23ddb3c028d248c3a2c3c89e 100644 (file)
@@ -146,7 +146,7 @@ class Bridge : public MemObject
 
             virtual void process() { port->trySend(); }
 
-            virtual const char *description() { return "bridge send event"; }
+            virtual const char *description() { return "bridge send"; }
         };
 
         SendEvent sendEvent;