Ruby Set: Move NUMBER_WORDS_PER_SET to Set.hh
authorNilay Vaish <nilay@cs.wisc.edu>
Fri, 6 Jan 2012 11:11:07 +0000 (05:11 -0600)
committerNilay Vaish <nilay@cs.wisc.edu>
Fri, 6 Jan 2012 11:11:07 +0000 (05:11 -0600)
This constant is currently in System.hh, but is only used in Set.hh. It
is being moved to Set.hh to remove this artificial dependence of Set.hh
on System.hh.

--HG--
extra : rebase_source : 683c43a5eeaec4f5f523b3ea32953a07f65cfee7

src/mem/ruby/common/Set.hh
src/mem/ruby/system/System.hh

index ea10b83f1f147d3d4d1fe1d58efb9375c181278b..724c5d9e941b1598be16a989cc85913edd22cb7f 100644 (file)
 #include <iostream>
 #include <limits>
 
-#include "mem/ruby/common/Global.hh"
-#include "mem/ruby/system/System.hh"
+#include "mem/ruby/common/TypeDefines.hh"
+
+/*
+ * This defines the number of longs (32-bits on 32 bit machines,
+ * 64-bit on 64-bit AMD machines) to use to hold the set...
+ * the default is 4, allowing 128 or 256 different members
+ * of the set.
+ *
+ * This should never need to be changed for correctness reasons,
+ * though increasing it will increase performance for larger
+ * set sizes at the cost of a (much) larger memory footprint
+ *
+ */
+const int NUMBER_WORDS_PER_SET = 1;
 
 class Set
 {
index 15abf1c0fd5029fce1fddd9a92c9d4732529797e..704cc3b2727b8279462f9587d45fee051645e315 100644 (file)
@@ -50,19 +50,6 @@ class Network;
 class Profiler;
 class Tracer;
 
-/*
- * This defines the number of longs (32-bits on 32 bit machines,
- * 64-bit on 64-bit AMD machines) to use to hold the set...
- * the default is 4, allowing 128 or 256 different members
- * of the set.
- *
- * This should never need to be changed for correctness reasons,
- * though increasing it will increase performance for larger
- * set sizes at the cost of a (much) larger memory footprint
- *
- */
-const int NUMBER_WORDS_PER_SET = 1;
-
 class RubySystem : public SimObject
 {
   public: