cpu.hh (8229:78bf55f23338) cpu.hh (8460:3893d9d2c6c2)
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

647#if USE_CHECKER
648 /** Pointer to the checker, which can dynamically verify
649 * instruction results at run time. This can be set to NULL if it
650 * is not being used.
651 */
652 Checker<DynInstPtr> *checker;
653#endif
654
1/*
2 * Copyright (c) 2004-2005 The Regents of The University of Michigan
3 * Copyright (c) 2011 Regents of the University of California
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met: redistributions of source code must retain the above copyright

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

647#if USE_CHECKER
648 /** Pointer to the checker, which can dynamically verify
649 * instruction results at run time. This can be set to NULL if it
650 * is not being used.
651 */
652 Checker<DynInstPtr> *checker;
653#endif
654
655#if FULL_SYSTEM
656 /** Pointer to the system. */
657 System *system;
655 /** Pointer to the system. */
656 System *system;
658#endif
659
660 /** Event to call process() on once draining has completed. */
661 Event *drainEvent;
662
663 /** Counter of how many stages have completed draining. */
664 int drainCount;
665
666 /** Pointers to all of the threads in the CPU. */

--- 76 unchanged lines hidden ---
657
658 /** Event to call process() on once draining has completed. */
659 Event *drainEvent;
660
661 /** Counter of how many stages have completed draining. */
662 int drainCount;
663
664 /** Pointers to all of the threads in the CPU. */

--- 76 unchanged lines hidden ---