iew.hh (4329:52057dbec096) iew.hh (4632:be5b8f67b8fb)
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 /** Keeps track of the last valid branch delay slot instss for threads */
406 InstSeqNum bdelayDoneSeqNum[Impl::MaxThreads];
407
408 /** Used to track if all instructions have been dispatched this cycle.
409 * If they have not, then blocking must have occurred, and the instructions
410 * would already be added to the skid buffer.
411 * @todo: Fix this hack.
412 */
413 bool dispatchedAllInsts;
414
415 /** Records if the queues have been changed (inserted or issued insts),

--- 131 unchanged lines hidden ---
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),

--- 131 unchanged lines hidden ---