iew.hh (4632:be5b8f67b8fb) iew.hh (5215:68f719ce5496)
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;

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

397 * IEW knows if there will be activity on the next cycle.
398 */
399 bool updateLSQNextCycle;
400
401 private:
402 /** Records if there is a fetch redirect on this cycle for each thread. */
403 bool fetchRedirect[Impl::MaxThreads];
404
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;

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

397 * IEW knows if there will be activity on the next cycle.
398 */
399 bool updateLSQNextCycle;
400
401 private:
402 /** Records if there is a fetch redirect on this cycle for each thread. */
403 bool fetchRedirect[Impl::MaxThreads];
404
405 /** Used to track if all instructions have been dispatched this cycle.
406 * If they have not, then blocking must have occurred, and the instructions
407 * would already be added to the skid buffer.
408 * @todo: Fix this hack.
409 */
410 bool dispatchedAllInsts;
411
412 /** Records if the queues have been changed (inserted or issued insts),
413 * so that IEW knows to broadcast the updated amount of free entries.
414 */
415 bool updatedQueues;
416
417 /** Commit to IEW delay, in ticks. */
418 unsigned commitToIEWDelay;
419

--- 124 unchanged lines hidden ---
405 /** Records if the queues have been changed (inserted or issued insts),
406 * so that IEW knows to broadcast the updated amount of free entries.
407 */
408 bool updatedQueues;
409
410 /** Commit to IEW delay, in ticks. */
411 unsigned commitToIEWDelay;
412

--- 124 unchanged lines hidden ---