ruby: Replaced gems_common debug statements
authorBrad Beckmann <Brad.Beckmann@amd.com>
Sat, 30 Jan 2010 04:29:34 +0000 (20:29 -0800)
committerBrad Beckmann <Brad.Beckmann@amd.com>
Sat, 30 Jan 2010 04:29:34 +0000 (20:29 -0800)
Replaced Ruby debug statements with M5 statements.

src/mem/gems_common/Allocator.hh
src/mem/gems_common/SConscript

index 58bdabee25b353beaee250b194d95c1bdaba4b67..59c5a4c98e91c068e6d0fc537716da8cb5e3fa0b 100644 (file)
@@ -60,7 +60,7 @@ inline
 TYPE* Allocator<TYPE>::allocate(const TYPE& obj)
 {
   m_counter++;
-  DEBUG_EXPR(ALLOCATOR_COMP, LowPrio, m_counter);
+  DPRINTF(GemsCommon, "couter %d", m_counter);
   TYPE* new_obj_ptr;
 
   // See if we need to allocate any new objects
index 69e7f88a3c6d15cbdd1348c7b59e2da24a43e235..1f3032646fe9d74a38fda6c3a1bc955f7e4aee79 100644 (file)
@@ -43,3 +43,5 @@ benv.CXXFile('ioutil/attrparse.yy')
 Source('ioutil/attrlex.cc', Werror=False)
 Source('ioutil/attrparse.cc', Werror=False)
 Source('util.cc')
+
+TraceFlag('GemsCommon')