1/*
2 * Copyright (c) 2004-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

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

246 }
247 }
248#endif
249
250 bool canIssue() { return ableToIssue; }
251
252 bool ableToIssue;
253
254 /** Check misprediction */
255 void checkMisprediction(DynInstPtr &inst);
256
257 private:
258 /** Sends commit proper information for a squash due to a branch
259 * mispredict.
260 */
261 void squashDueToBranch(DynInstPtr &inst, ThreadID tid);
262
263 /** Sends commit proper information for a squash due to a memory order
264 * violation.

--- 277 unchanged lines hidden ---