rename_impl.hh (8240:38befb82b2c9) rename_impl.hh (8471:18e560ba1539)
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

687 }
688
689 renameSrcRegs(inst, inst->threadNumber);
690
691 renameDestRegs(inst, inst->threadNumber);
692
693 ++renamed_insts;
694
1/*
2 * Copyright (c) 2010 ARM Limited
3 * All rights reserved.
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

687 }
688
689 renameSrcRegs(inst, inst->threadNumber);
690
691 renameDestRegs(inst, inst->threadNumber);
692
693 ++renamed_insts;
694
695#if TRACING_ON
696 inst->renameTick = curTick();
697#endif
698
695 // Put instruction in rename queue.
696 toIEW->insts[toIEWIndex] = inst;
697 ++(toIEW->size);
698
699 // Increment which instruction we're on.
700 ++toIEWIndex;
701
702 // Decrement how many instructions are available.

--- 702 unchanged lines hidden ---
699 // Put instruction in rename queue.
700 toIEW->insts[toIEWIndex] = inst;
701 ++(toIEW->size);
702
703 // Increment which instruction we're on.
704 ++toIEWIndex;
705
706 // Decrement how many instructions are available.

--- 702 unchanged lines hidden ---