cpu.hh (5712:199d31b47f7b) cpu.hh (5737:f43dbc09fad3)
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;

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

571
572 /** Cleans up all instructions on the remove list. */
573 void cleanUpRemovedInsts();
574
575 /** Debug function to print all instructions on the list. */
576 void dumpInsts();
577
578 public:
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;

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

571
572 /** Cleans up all instructions on the remove list. */
573 void cleanUpRemovedInsts();
574
575 /** Debug function to print all instructions on the list. */
576 void dumpInsts();
577
578 public:
579#ifndef NDEBUG
580 /** Count of total number of dynamic instructions in flight. */
581 int instcount;
582#endif
583
579 /** List of all the instructions in flight. */
580 std::list<DynInstPtr> instList;
581
582 /** List of all the instructions that will be removed at the end of this
583 * cycle.
584 */
585 std::queue<ListIt> removeList;
586

--- 212 unchanged lines hidden ---
584 /** List of all the instructions in flight. */
585 std::list<DynInstPtr> instList;
586
587 /** List of all the instructions that will be removed at the end of this
588 * cycle.
589 */
590 std::queue<ListIt> removeList;
591

--- 212 unchanged lines hidden ---