pipeline.hh (10464:2a0fe8bca031) pipeline.hh (10913:38dbdeea7f1f)
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

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

110 Pipeline(MinorCPU &cpu_, MinorCPUParams &params);
111
112 public:
113 /** Wake up the Fetch unit. This is needed on thread activation esp.
114 * after quiesce wakeup */
115 void wakeupFetch();
116
117 /** Try to drain the CPU */
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

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

110 Pipeline(MinorCPU &cpu_, MinorCPUParams &params);
111
112 public:
113 /** Wake up the Fetch unit. This is needed on thread activation esp.
114 * after quiesce wakeup */
115 void wakeupFetch();
116
117 /** Try to drain the CPU */
118 unsigned int drain(DrainManager *manager);
118 bool drain();
119
120 void drainResume();
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) */

--- 24 unchanged lines hidden ---
119
120 void drainResume();
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) */

--- 24 unchanged lines hidden ---