fetch.hh (7944:1daf51f62013) fetch.hh (8064:5b111ae7e7d4)
1/*
2 * Copyright (c) 2010 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

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

517 /** Total number of cycles spent in any other state. */
518 Stats::Scalar fetchMiscStallCycles;
519 /** Stat for total number of fetched cache lines. */
520 Stats::Scalar fetchedCacheLines;
521 /** Total number of outstanding icache accesses that were dropped
522 * due to a squash.
523 */
524 Stats::Scalar fetchIcacheSquashes;
1/*
2 * Copyright (c) 2010 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

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

517 /** Total number of cycles spent in any other state. */
518 Stats::Scalar fetchMiscStallCycles;
519 /** Stat for total number of fetched cache lines. */
520 Stats::Scalar fetchedCacheLines;
521 /** Total number of outstanding icache accesses that were dropped
522 * due to a squash.
523 */
524 Stats::Scalar fetchIcacheSquashes;
525 /** Total number of outstanding tlb accesses that were dropped
526 * due to a squash.
527 */
528 Stats::Scalar fetchTlbSquashes;
525 /** Distribution of number of instructions fetched each cycle. */
526 Stats::Distribution fetchNisnDist;
527 /** Rate of how often fetch was idle. */
528 Stats::Formula idleRate;
529 /** Number of branch fetches per cycle. */
530 Stats::Formula branchRate;
531 /** Number of instruction fetched per cycle. */
532 Stats::Formula fetchRate;
533};
534
535#endif //__CPU_O3_FETCH_HH__
529 /** Distribution of number of instructions fetched each cycle. */
530 Stats::Distribution fetchNisnDist;
531 /** Rate of how often fetch was idle. */
532 Stats::Formula idleRate;
533 /** Number of branch fetches per cycle. */
534 Stats::Formula branchRate;
535 /** Number of instruction fetched per cycle. */
536 Stats::Formula fetchRate;
537};
538
539#endif //__CPU_O3_FETCH_HH__