cpu.hh (2980:eab855f06b79) cpu.hh (3093:b09c33e66bce)
1/*
2 * Copyright (c) 2004-2005 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;

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

593 public:
594 /** Returns a pointer to a thread context. */
595 ThreadContext *tcBase(unsigned tid)
596 {
597 return thread[tid]->getTC();
598 }
599
600 /** The global sequence number counter. */
1/*
2 * Copyright (c) 2004-2005 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;

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

593 public:
594 /** Returns a pointer to a thread context. */
595 ThreadContext *tcBase(unsigned tid)
596 {
597 return thread[tid]->getTC();
598 }
599
600 /** The global sequence number counter. */
601 InstSeqNum globalSeqNum;
601 InstSeqNum globalSeqNum;//[Impl::MaxThreads];
602
603 /** Pointer to the checker, which can dynamically verify
604 * instruction results at run time. This can be set to NULL if it
605 * is not being used.
606 */
607 Checker<DynInstPtr> *checker;
608
609#if FULL_SYSTEM

--- 67 unchanged lines hidden ---
602
603 /** Pointer to the checker, which can dynamically verify
604 * instruction results at run time. This can be set to NULL if it
605 * is not being used.
606 */
607 Checker<DynInstPtr> *checker;
608
609#if FULL_SYSTEM

--- 67 unchanged lines hidden ---