commit.hh (10023:91faf6649de0) commit.hh (10193:d717abc806aa)
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;
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 /** Committed instructions by instruction type (OpClass) */
536 Stats::Vector2d statCommittedInstType;
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__
537
538 /** Number of cycles where the commit bandwidth limit is reached. */
539 Stats::Scalar commitEligibleSamples;
540 /** Number of instructions not committed due to bandwidth limits. */
541 Stats::Vector commitEligible;
542};
543
544#endif // __CPU_O3_COMMIT_HH__