Deleted Added
sdiff udiff text old ( 10529:05b5a6cf3521 ) new ( 10537:47fe87b0cf97 )
full compact
1/*
2 * Copyright (c) 2011-2012 ARM Limited
3 * Copyright (c) 2013 Advanced Micro Devices, Inc.
4 * All rights reserved
5 *
6 * The license below extends only to copyright in the software and shall
7 * not be construed as granting a license to any other intellectual
8 * property including but not limited to intellectual property relating

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

257 // number of idle cycles
258 Stats::Average notIdleFraction;
259 Stats::Formula idleFraction;
260
261 // number of cycles stalled for I-cache responses
262 Stats::Scalar icacheStallCycles;
263 Counter lastIcacheStall;
264
265 // number of cycles stalled for D-cache responses
266 Stats::Scalar dcacheStallCycles;
267 Counter lastDcacheStall;
268
269 /// @{
270 /// Total number of branches fetched
271 Stats::Scalar numBranches;
272 /// Number of branches predicted as taken
273 Stats::Scalar numPredictedBranches;
274 /// Number of misprediced branches
275 Stats::Scalar numBranchMispred;
276 /// @}

--- 191 unchanged lines hidden ---