dyn_inst_impl.hh (8887:20ea02da9c53) dyn_inst_impl.hh (9046:a1104cc13db2)
1/*
2 * Copyright (c) 2010-2011 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

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

70 // as the normal register entries. It will allow the IQ to work
71 // without any modifications.
72 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
73 this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
74 }
75
76 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
77 this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
1/*
2 * Copyright (c) 2010-2011 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

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

70 // as the normal register entries. It will allow the IQ to work
71 // without any modifications.
72 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
73 this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
74 }
75
76 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
77 this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
78 this->_readySrcRegIdx[i] = 0;
79 }
80
78 }
79
80 this->_readySrcRegIdx.reset();
81
81 _numDestMiscRegs = 0;
82
83#if TRACING_ON
84 fetchTick = 0;
85 decodeTick = 0;
86 renameTick = 0;
87 dispatchTick = 0;
88 issueTick = 0;

--- 127 unchanged lines hidden ---
82 _numDestMiscRegs = 0;
83
84#if TRACING_ON
85 fetchTick = 0;
86 decodeTick = 0;
87 renameTick = 0;
88 dispatchTick = 0;
89 issueTick = 0;

--- 127 unchanged lines hidden ---