dyn_inst_impl.hh (5596:cdc8893c649e) dyn_inst_impl.hh (5639:67cc7f0427e7)
1/*
2 * Copyright (c) 2004-2006 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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/dyn_inst.hh"
32
33template <class Impl>
34BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr staticInst,
35 Addr PC, Addr NPC, Addr microPC,
36 Addr Pred_PC, Addr Pred_NPC,
37 Addr Pred_MicroPC,
38 InstSeqNum seq_num, O3CPU *cpu)
39 : BaseDynInst<Impl>(staticInst, PC, NPC, microPC,
40 Pred_PC, Pred_NPC, Pred_MicroPC, seq_num, cpu)
41{
42 initVars();
43}
44
45template <class Impl>
46BaseO3DynInst<Impl>::BaseO3DynInst(ExtMachInst inst,
47 Addr PC, Addr NPC, Addr microPC,
48 Addr Pred_PC, Addr Pred_NPC,
49 Addr Pred_MicroPC,
50 InstSeqNum seq_num, O3CPU *cpu)
51 : BaseDynInst<Impl>(inst, PC, NPC, microPC,
52 Pred_PC, Pred_NPC, Pred_MicroPC, seq_num, cpu)
53{
54 initVars();
55}
56
57template <class Impl>
58BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr &_staticInst)
59 : BaseDynInst<Impl>(_staticInst)
60{
61 initVars();
62}
63
64template <class Impl>
65void
66BaseO3DynInst<Impl>::initVars()
67{
68 // Make sure to have the renamed register entries set to the same
69 // as the normal register entries. It will allow the IQ to work
70 // without any modifications.
71 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
72 this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
73 }
74
75 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
76 this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
77 this->_readySrcRegIdx[i] = 0;
78 }
79}
80
81template <class Impl>
82Fault
83BaseO3DynInst<Impl>::execute()
84{
85 // @todo: Pretty convoluted way to avoid squashing from happening
86 // when using the TC during an instruction's execution
87 // (specifically for instructions that have side-effects that use
88 // the TC). Fix this.
89 bool in_syscall = this->thread->inSyscall;
90 this->thread->inSyscall = true;
91
92 this->fault = this->staticInst->execute(this, this->traceData);
93
94 this->thread->inSyscall = in_syscall;
95
96 return this->fault;
97}
98
99template <class Impl>
100Fault
101BaseO3DynInst<Impl>::initiateAcc()
102{
103 // @todo: Pretty convoluted way to avoid squashing from happening
104 // when using the TC during an instruction's execution
105 // (specifically for instructions that have side-effects that use
106 // the TC). Fix this.
107 bool in_syscall = this->thread->inSyscall;
108 this->thread->inSyscall = true;
109
110 this->fault = this->staticInst->initiateAcc(this, this->traceData);
111
112 this->thread->inSyscall = in_syscall;
113
114 return this->fault;
115}
116
117template <class Impl>
118Fault
119BaseO3DynInst<Impl>::completeAcc(PacketPtr pkt)
120{
121 this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
122
123 return this->fault;
124}
125
126#if FULL_SYSTEM
127template <class Impl>
1/*
2 * Copyright (c) 2004-2006 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;
9 * redistributions in binary form must reproduce the above copyright
10 * notice, this list of conditions and the following disclaimer in the
11 * documentation and/or other materials provided with the distribution;
12 * neither the name of the copyright holders nor the names of its
13 * contributors may be used to endorse or promote products derived from
14 * this software without specific prior written permission.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
17 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
18 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
19 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
20 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
26 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 *
28 * Authors: Kevin Lim
29 */
30
31#include "cpu/o3/dyn_inst.hh"
32
33template <class Impl>
34BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr staticInst,
35 Addr PC, Addr NPC, Addr microPC,
36 Addr Pred_PC, Addr Pred_NPC,
37 Addr Pred_MicroPC,
38 InstSeqNum seq_num, O3CPU *cpu)
39 : BaseDynInst<Impl>(staticInst, PC, NPC, microPC,
40 Pred_PC, Pred_NPC, Pred_MicroPC, seq_num, cpu)
41{
42 initVars();
43}
44
45template <class Impl>
46BaseO3DynInst<Impl>::BaseO3DynInst(ExtMachInst inst,
47 Addr PC, Addr NPC, Addr microPC,
48 Addr Pred_PC, Addr Pred_NPC,
49 Addr Pred_MicroPC,
50 InstSeqNum seq_num, O3CPU *cpu)
51 : BaseDynInst<Impl>(inst, PC, NPC, microPC,
52 Pred_PC, Pred_NPC, Pred_MicroPC, seq_num, cpu)
53{
54 initVars();
55}
56
57template <class Impl>
58BaseO3DynInst<Impl>::BaseO3DynInst(StaticInstPtr &_staticInst)
59 : BaseDynInst<Impl>(_staticInst)
60{
61 initVars();
62}
63
64template <class Impl>
65void
66BaseO3DynInst<Impl>::initVars()
67{
68 // Make sure to have the renamed register entries set to the same
69 // as the normal register entries. It will allow the IQ to work
70 // without any modifications.
71 for (int i = 0; i < this->staticInst->numDestRegs(); i++) {
72 this->_destRegIdx[i] = this->staticInst->destRegIdx(i);
73 }
74
75 for (int i = 0; i < this->staticInst->numSrcRegs(); i++) {
76 this->_srcRegIdx[i] = this->staticInst->srcRegIdx(i);
77 this->_readySrcRegIdx[i] = 0;
78 }
79}
80
81template <class Impl>
82Fault
83BaseO3DynInst<Impl>::execute()
84{
85 // @todo: Pretty convoluted way to avoid squashing from happening
86 // when using the TC during an instruction's execution
87 // (specifically for instructions that have side-effects that use
88 // the TC). Fix this.
89 bool in_syscall = this->thread->inSyscall;
90 this->thread->inSyscall = true;
91
92 this->fault = this->staticInst->execute(this, this->traceData);
93
94 this->thread->inSyscall = in_syscall;
95
96 return this->fault;
97}
98
99template <class Impl>
100Fault
101BaseO3DynInst<Impl>::initiateAcc()
102{
103 // @todo: Pretty convoluted way to avoid squashing from happening
104 // when using the TC during an instruction's execution
105 // (specifically for instructions that have side-effects that use
106 // the TC). Fix this.
107 bool in_syscall = this->thread->inSyscall;
108 this->thread->inSyscall = true;
109
110 this->fault = this->staticInst->initiateAcc(this, this->traceData);
111
112 this->thread->inSyscall = in_syscall;
113
114 return this->fault;
115}
116
117template <class Impl>
118Fault
119BaseO3DynInst<Impl>::completeAcc(PacketPtr pkt)
120{
121 this->fault = this->staticInst->completeAcc(pkt, this, this->traceData);
122
123 return this->fault;
124}
125
126#if FULL_SYSTEM
127template <class Impl>
128Fault
129BaseO3DynInst<Impl>::hwrei()
130{
131#if THE_ISA == ALPHA_ISA
132 // Can only do a hwrei when in pal mode.
133 if (!(this->readPC() & 0x3))
134 return new AlphaISA::UnimplementedOpcodeFault;
135
136 // Set the next PC based on the value of the EXC_ADDR IPR.
137 this->setNextPC(this->cpu->readMiscRegNoEffect(AlphaISA::IPR_EXC_ADDR,
138 this->threadNumber));
139
140 // Tell CPU to clear any state it needs to if a hwrei is taken.
141 this->cpu->hwrei(this->threadNumber);
142#else
143
144#endif
145 // FIXME: XXX check for interrupts? XXX
146 return NoFault;
147}
148
149template <class Impl>
150void
151BaseO3DynInst<Impl>::trap(Fault fault)
152{
153 this->cpu->trap(fault, this->threadNumber);
154}
155
156template <class Impl>
157bool
158BaseO3DynInst<Impl>::simPalCheck(int palFunc)
159{
160#if THE_ISA != ALPHA_ISA
161 panic("simPalCheck called, but PAL only exists in Alpha!\n");
162#endif
163 return this->cpu->simPalCheck(palFunc, this->threadNumber);
164}
165#else
166template <class Impl>
167void
168BaseO3DynInst<Impl>::syscall(int64_t callnum)
169{
170 // HACK: check CPU's nextPC before and after syscall. If it
171 // changes, update this instruction's nextPC because the syscall
172 // must have changed the nextPC.
173 Addr cpu_next_pc = this->cpu->readNextPC(this->threadNumber);
174 this->cpu->syscall(callnum, this->threadNumber);
175 Addr new_next_pc = this->cpu->readNextPC(this->threadNumber);
176 if (cpu_next_pc != new_next_pc) {
177 this->setNextPC(new_next_pc);
178 }
179}
180#endif
181
128void
129BaseO3DynInst<Impl>::trap(Fault fault)
130{
131 this->cpu->trap(fault, this->threadNumber);
132}
133
134template <class Impl>
135bool
136BaseO3DynInst<Impl>::simPalCheck(int palFunc)
137{
138#if THE_ISA != ALPHA_ISA
139 panic("simPalCheck called, but PAL only exists in Alpha!\n");
140#endif
141 return this->cpu->simPalCheck(palFunc, this->threadNumber);
142}
143#else
144template <class Impl>
145void
146BaseO3DynInst<Impl>::syscall(int64_t callnum)
147{
148 // HACK: check CPU's nextPC before and after syscall. If it
149 // changes, update this instruction's nextPC because the syscall
150 // must have changed the nextPC.
151 Addr cpu_next_pc = this->cpu->readNextPC(this->threadNumber);
152 this->cpu->syscall(callnum, this->threadNumber);
153 Addr new_next_pc = this->cpu->readNextPC(this->threadNumber);
154 if (cpu_next_pc != new_next_pc) {
155 this->setNextPC(new_next_pc);
156 }
157}
158#endif
159