1/*
2 * Copyright (c) 2001-2005 The Regents of The University of Michigan
3 * Copyright (c) 2007 MIPS Technologies, Inc.
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

--- 212 unchanged lines hidden (view full) ---

221 lookupTable.insert(make_pair(table[i].VPN, i));
222 }
223 }
224}
225
226void
227TLB::regStats()
228{
229 BaseTLB::regStats();
230
231 read_hits
232 .name(name() + ".read_hits")
233 .desc("DTB read hits")
234 ;
235
236 read_misses
237 .name(name() + ".read_misses")
238 .desc("DTB read misses")

--- 121 unchanged lines hidden ---