Deleted Added
sdiff udiff text old ( 10023:91faf6649de0 ) new ( 10193:d717abc806aa )
full compact
1/*
2 * Copyright (c) 2010-2012 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

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

527 /** Total number of committed branches. */
528 Stats::Vector statComBranches;
529 /** Total number of floating point instructions */
530 Stats::Vector statComFloating;
531 /** Total number of integer instructions */
532 Stats::Vector statComInteger;
533 /** Total number of function calls */
534 Stats::Vector statComFunctionCalls;
535
536 /** Number of cycles where the commit bandwidth limit is reached. */
537 Stats::Scalar commitEligibleSamples;
538 /** Number of instructions not committed due to bandwidth limits. */
539 Stats::Vector commitEligible;
540};
541
542#endif // __CPU_O3_COMMIT_HH__