Merge zizzer:/bk/newmem
[gem5.git] / src / arch / sparc / tlb.cc
index 6ed6f59b62731bd5b42631b4d9a52abb31081d7a..bc3c3929494d8efafce9f4142b8c3cf730f39a07 100644 (file)
@@ -176,8 +176,6 @@ insertAllLocked:
         lookupTable.erase(new_entry->range);
 
 
-    DPRINTF(TLB, "Using entry: %#X\n", new_entry);
-
     assert(PTE.valid());
     new_entry->range.va = va;
     new_entry->range.size = PTE.size() - 1;
@@ -287,7 +285,6 @@ TLB::demapPage(Addr va, int partition_id, bool real, int context_id)
             usedEntries--;
         }
         freeList.push_front(i->second);
-        DPRINTF(TLB, "Freeing TLB entry : %#X\n", i->second);
         lookupTable.erase(i);
     }
 }
@@ -304,7 +301,6 @@ TLB::demapContext(int partition_id, int context_id)
             tlb[x].range.partitionId == partition_id) {
             if (tlb[x].valid == true) {
                 freeList.push_front(&tlb[x]);
-                DPRINTF(TLB, "Freeing TLB entry : %#X\n", &tlb[x]);
             }
             tlb[x].valid = false;
             if (tlb[x].used) {
@@ -326,7 +322,6 @@ TLB::demapAll(int partition_id)
         if (!tlb[x].pte.locked() && tlb[x].range.partitionId == partition_id) {
             if (tlb[x].valid == true){
                 freeList.push_front(&tlb[x]);
-                DPRINTF(TLB, "Freeing TLB entry : %#X\n", &tlb[x]);
             }
             tlb[x].valid = false;
             if (tlb[x].used) {