base.cc (11377:a06a4debe272) base.cc (11436:f351b7f248db)
1/*
2 * Copyright (c) 2012-2013 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

439 .desc("number of fast writes performed")
440 ;
441
442 cacheCopies
443 .name(name() + ".cache_copies")
444 .desc("number of cache copies performed")
445 ;
446
1/*
2 * Copyright (c) 2012-2013 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

439 .desc("number of fast writes performed")
440 ;
441
442 cacheCopies
443 .name(name() + ".cache_copies")
444 .desc("number of cache copies performed")
445 ;
446
447 unusedPrefetches
448 .name(name() + ".unused_prefetches")
449 .desc("number of HardPF blocks evicted w/o reference")
450 .flags(nozero)
451 ;
452
447 writebacks
448 .init(system->maxMasters())
449 .name(name() + ".writebacks")
450 .desc("number of writebacks")
451 .flags(total | nozero | nonan)
452 ;
453 for (int i = 0; i < system->maxMasters(); i++) {
454 writebacks.subname(i, system->getMasterName(i));

--- 330 unchanged lines hidden ---
453 writebacks
454 .init(system->maxMasters())
455 .name(name() + ".writebacks")
456 .desc("number of writebacks")
457 .flags(total | nozero | nonan)
458 ;
459 for (int i = 0; i < system->maxMasters(); i++) {
460 writebacks.subname(i, system->getMasterName(i));

--- 330 unchanged lines hidden ---