cpu: o3: slight correction to identation in rename_impl.hh
[gem5.git] / src / unittest / rangemaptest.cc
index 6fd99c927bf5d76ebc3762d4b72c00ba570de191..6975f66efa799dd35df6c97ca0cbbd6936205bee 100644 (file)
@@ -1,4 +1,16 @@
 /*
+ * Copyright (c) 2012 ARM Limited
+ * All rights reserved
+ *
+ * The license below extends only to copyright in the software and shall
+ * not be construed as granting a license to any other intellectual
+ * property including but not limited to intellectual property relating
+ * to a hardware implementation of the functionality of the software
+ * licensed hereunder.  You may use the software subject to the license
+ * terms below provided that you ensure that this notice is replicated
+ * unmodified and in its entirety in all distributions of the software,
+ * modified or unmodified, in source code or in binary form.
+ *
  * Copyright (c) 2006 The Regents of The University of Michigan
  * All rights reserved.
  *
  * Authors: Ali Saidi
  */
 
-#include <iostream>
 #include <cassert>
-#include "sim/host.hh"
-#include "base/range_map.hh"
+#include <iostream>
+
+#include "base/addr_range_map.hh"
 
 using namespace std;
 
-int main()
+int
+main()
 {
-    range_map<Addr,int> r;
+    AddrRangeMap<int> r;
 
-    range_map<Addr,int>::iterator i;
+    AddrRangeMap<int>::const_iterator i;
 
-    i = r.insert(RangeIn<Addr>(0,40),5);
+    i = r.insert(RangeIn(10, 40), 5);
     assert(i != r.end());
-    i = r.insert(RangeIn<Addr>(60,90),3);
+    i = r.insert(RangeIn(60, 90), 3);
     assert(i != r.end());
 
-    i = r.find(RangeIn(20,30));
+    i = r.find(RangeIn(20, 30));
     assert(i != r.end());
-    cout << i->first << " " << i->second << endl;
+    cout << i->first.to_string() << " " << i->second << endl;
 
-    i = r.find(RangeIn(55,55));
+    i = r.find(RangeIn(55, 55));
     assert(i == r.end());
-}
-
-
-
-
 
+    i = r.insert(RangeIn(0, 12), 1);
+    assert(i == r.end());
 
+    i = r.insert(RangeIn(0, 9), 1);
+    assert(i != r.end());
 
+    i = r.find(RangeIn(20, 30));
+    assert(i != r.end());
+    cout << i->first.to_string() << " " << i->second << endl;
 
+    return 0;
+}