InOrder: Import new inorder CPU model from MIPS.
[gem5.git] / src / cpu / inorder / resources / execution_unit.cc
1 /*
2 * Copyright (c) 2007 MIPS Technologies, Inc.
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: Korey Sewell
29 *
30 */
31
32 #include <vector>
33 #include <list>
34 #include "cpu/inorder/resources/execution_unit.hh"
35 #include "cpu/inorder/resource_pool.hh"
36 #include "cpu/inorder/cpu.hh"
37
38 using namespace std;
39 using namespace ThePipeline;
40
41 ExecutionUnit::ExecutionUnit(string res_name, int res_id, int res_width,
42 int res_latency, InOrderCPU *_cpu, ThePipeline::Params *params)
43 : Resource(res_name, res_id, res_width, res_latency, _cpu)
44 { }
45
46 void
47 ExecutionUnit::regStats()
48 {
49 predictedTakenIncorrect
50 .name(name() + ".predictedTakenIncorrect")
51 .desc("Number of Branches Incorrectly Predicted As Taken.");
52
53 predictedNotTakenIncorrect
54 .name(name() + ".predictedNotTakenIncorrect")
55 .desc("Number of Branches Incorrectly Predicted As Not Taken).");
56
57 Resource::regStats();
58 }
59
60 void
61 ExecutionUnit::execute(int slot_num)
62 {
63 ResourceRequest* exec_req = reqMap[slot_num];
64 DynInstPtr inst = reqMap[slot_num]->inst;
65 Fault fault = reqMap[slot_num]->fault;
66 int tid = inst->readTid();
67 int seq_num = inst->seqNum;
68
69 exec_req->fault = NoFault;
70
71 DPRINTF(Resource, "[tid:%i] Executing [sn:%i] [PC:%#x] .\n",
72 tid, seq_num, inst->readPC());
73
74 switch (exec_req->cmd)
75 {
76 case ExecuteInst:
77 {
78 if (inst->isMemRef()) {
79 fatal("%s not configured to handle memory ops.\n", resName);
80 } else if (inst->isControl()) {
81 // Evaluate Branch
82 fault = inst->execute();
83
84 inst->setExecuted();
85
86 if (fault == NoFault) {
87 // If branch is mispredicted, then signal squash
88 // throughout all stages behind the pipeline stage
89 // that got squashed.
90 if (inst->mispredicted()) {
91 int stage_num = exec_req->getStageNum();
92 int tid = inst->readTid();
93
94 // If it's a branch ...
95 if (inst->isDirectCtrl()) {
96 assert(!inst->isIndirectCtrl());
97
98 if (inst->predTaken() && inst->isCondDelaySlot()) {
99 inst->bdelaySeqNum = seq_num;
100 inst->setPredTarg(inst->nextPC);
101
102 DPRINTF(Resource, "[tid:%i]: Conditional branch inst"
103 "[sn:%i] PC %#x mispredicted as taken.\n", tid,
104 seq_num, inst->PC);
105 } else if (!inst->predTaken() && inst->isCondDelaySlot()) {
106 inst->bdelaySeqNum = seq_num;
107 inst->setPredTarg(inst->nextPC);
108 inst->procDelaySlotOnMispred = true;
109
110 DPRINTF(Resource, "[tid:%i]: Conditional branch inst."
111 "[sn:%i] PC %#x mispredicted as not taken.\n", tid,
112 seq_num, inst->PC);
113 } else {
114 inst->bdelaySeqNum = seq_num + 1;
115
116 DPRINTF(Resource, "[tid:%i]: Misprediction detected at "
117 "[sn:%i] PC %#x,\n\t squashing after delay slot "
118 "instruction [sn:%i].\n",
119 tid, seq_num, inst->PC, inst->bdelaySeqNum);
120 DPRINTF(InOrderStall, "STALL: [tid:%i]: Branch "
121 "misprediction at %#x\n", tid, inst->PC);
122 inst->setPredTarg(inst->nextNPC);
123 }
124
125 DPRINTF(Resource, "[tid:%i] Redirecting fetch to %#x.\n", tid,
126 inst->readPredTarg());
127
128 } else if(inst->isIndirectCtrl()){
129 inst->setPredTarg(inst->nextNPC);
130 inst->bdelaySeqNum = seq_num + 1;
131 DPRINTF(Resource, "[tid:%i] Redirecting fetch to %#x.\n", tid,
132 inst->readPredTarg());
133 } else {
134 panic("Non-control instruction (%s) mispredicting?!!",
135 inst->staticInst->getName());
136 }
137
138 DPRINTF(Resource, "[tid:%i] Squashing will start from stage %i.\n",
139 tid, stage_num);
140
141 cpu->pipelineStage[stage_num]->squashDueToBranch(inst, tid);
142
143 inst->squashingStage = stage_num;
144
145 // Squash throughout other resources
146 cpu->resPool->scheduleEvent((InOrderCPU::CPUEventType)ResourcePool::SquashAll,
147 inst, 0, 0, tid);
148
149 if (inst->predTaken()) {
150 predictedTakenIncorrect++;
151 } else {
152 predictedNotTakenIncorrect++;
153 }
154 }
155 exec_req->done();
156 } else {
157 warn("inst [sn:%i] had a %s fault", seq_num, fault->name());
158 }
159 } else {
160 // Regular ALU instruction
161 fault = inst->execute();
162
163 if (fault == NoFault) {
164 inst->setExecuted();
165 exec_req->done();
166
167 DPRINTF(Resource, "[tid:%i]: The result of execution is 0x%x.\n",
168 inst->readTid(), inst->readIntResult(0));
169 } else {
170 warn("inst [sn:%i] had a %s fault", seq_num, fault->name());
171 cpu->trap(fault, tid);
172 }
173 }
174 }
175 break;
176
177 default:
178 fatal("Unrecognized command to %s", resName);
179 }
180 }
181
182