Deleted Added
sdiff udiff text old ( 2757:58e3a66e72f7 ) new ( 2831:0a42b294727c )
full compact
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 /** The next NPC of each thread. */
410 Addr nextNPC[Impl::MaxThreads];
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 ---