tlb.cc (6383:31c067ae3331) tlb.cc (7461:5a07045d0af2)
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

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

276 .desc("DTB hits")
277 ;
278
279 misses
280 .name(name() + ".misses")
281 .desc("DTB misses")
282 ;
283
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

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

276 .desc("DTB hits")
277 ;
278
279 misses
280 .name(name() + ".misses")
281 .desc("DTB misses")
282 ;
283
284 invalids
285 .name(name() + ".invalids")
286 .desc("DTB access violations")
287 ;
288
289 accesses
290 .name(name() + ".accesses")
291 .desc("DTB accesses")
292 ;
293
294 hits = read_hits + write_hits;
295 misses = read_misses + write_misses;
296 accesses = read_accesses + write_accesses;

--- 281 unchanged lines hidden ---
284 accesses
285 .name(name() + ".accesses")
286 .desc("DTB accesses")
287 ;
288
289 hits = read_hits + write_hits;
290 misses = read_misses + write_misses;
291 accesses = read_accesses + write_accesses;

--- 281 unchanged lines hidden ---