pipeline.hh (10913:38dbdeea7f1f) pipeline.hh (11168:f98eb2da15a4)
1/*
2 * Copyright (c) 2013-2014 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

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

121
122 /** Test to see if the CPU is drained */
123 bool isDrained();
124
125 /** A custom evaluate allows report in the right place (between
126 * stages and pipeline advance) */
127 void evaluate();
128
1/*
2 * Copyright (c) 2013-2014 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

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

121
122 /** Test to see if the CPU is drained */
123 bool isDrained();
124
125 /** A custom evaluate allows report in the right place (between
126 * stages and pipeline advance) */
127 void evaluate();
128
129 void countCycles(Cycles delta) M5_ATTR_OVERRIDE
129 void countCycles(Cycles delta) override
130 {
131 cpu.ppCycles->notify(delta);
132 }
133
134 void minorTrace() const;
135
136 /** Functions below here are BaseCPU operations passed on to pipeline
137 * stages */

--- 13 unchanged lines hidden ---
130 {
131 cpu.ppCycles->notify(delta);
132 }
133
134 void minorTrace() const;
135
136 /** Functions below here are BaseCPU operations passed on to pipeline
137 * stages */

--- 13 unchanged lines hidden ---