commit.hh (2757:58e3a66e72f7) commit.hh (2831:0a42b294727c)
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;

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

401 /** The commit PC of each thread. Refers to the instruction that
402 * is currently being processed/committed.
403 */
404 Addr PC[Impl::MaxThreads];
405
406 /** The next PC of each thread. */
407 Addr nextPC[Impl::MaxThreads];
408
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;

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

401 /** The commit PC of each thread. Refers to the instruction that
402 * is currently being processed/committed.
403 */
404 Addr PC[Impl::MaxThreads];
405
406 /** The next PC of each thread. */
407 Addr nextPC[Impl::MaxThreads];
408
409#if THE_ISA != ALPHA_ISA
409 /** The next NPC of each thread. */
410 Addr nextNPC[Impl::MaxThreads];
410 /** The next NPC of each thread. */
411 Addr nextNPC[Impl::MaxThreads];
412#endif
411
412 /** The sequence number of the youngest valid instruction in the ROB. */
413 InstSeqNum youngestSeqNum[Impl::MaxThreads];
414
415 /** Pointer to the list of active threads. */
416 std::list<unsigned> *activeThreads;
417
418 /** Rename map interface. */

--- 43 unchanged lines hidden ---
413
414 /** The sequence number of the youngest valid instruction in the ROB. */
415 InstSeqNum youngestSeqNum[Impl::MaxThreads];
416
417 /** Pointer to the list of active threads. */
418 std::list<unsigned> *activeThreads;
419
420 /** Rename map interface. */

--- 43 unchanged lines hidden ---