Merge ARM into the head. ARM will compile but may not actually work.
[gem5.git] / src / cpu / inorder / pipeline_traits.hh
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 #ifndef __CPU_INORDER_PIPELINE_IMPL_HH__
33 #define __CPU_INORDER_PIPELINE_IMPL_HH__
34
35 #include <list>
36 #include <queue>
37 #include <vector>
38
39 #include "arch/isa_traits.hh"
40 #include "cpu/base.hh"
41
42 #include "params/InOrderCPU.hh"
43
44 class InOrderDynInst;
45
46 /* This Namespace contains constants, typedefs, functions and
47 * objects specific to the Pipeline Implementation.
48 */
49 namespace ThePipeline {
50 // Pipeline Constants
51 const unsigned NumStages = 5;
52 const unsigned MaxThreads = 8;
53 const unsigned StageWidth = 1;
54 const unsigned BackEndStartStage = 2;
55
56 // Enumerated List of Resources The Pipeline Uses
57 enum ResourceList {
58 FetchSeq = 0,
59 ITLB,
60 ICache,
61 Decode,
62 BPred,
63 FetchBuff,
64 RegManager,
65 AGEN,
66 ExecUnit,
67 MDU,
68 DTLB,
69 DCache,
70 Grad,
71 FetchBuff2
72 };
73
74 // Expand this as necessary for your inter stage buffer sizes
75 static const unsigned interStageBuffSize[] = {
76 StageWidth, /* Stage 0 - 1 */
77 StageWidth, /* Stage 1 - 2 */
78 StageWidth, /* Stage 2 - 3 */
79 StageWidth, /* Stage 3 - 4 */
80 StageWidth, /* Stage 4 - 5 */
81 StageWidth, /* Stage 5 - 6 */
82 StageWidth, /* Stage 6 - 7 */
83 StageWidth, /* Stage 7 - 8 */
84 StageWidth /* Stage 8 - 9 */
85 };
86
87 typedef InOrderCPUParams Params;
88 typedef RefCountingPtr<InOrderDynInst> DynInstPtr;
89
90 //////////////////////////
91 // RESOURCE SCHEDULING
92 //////////////////////////
93 struct ScheduleEntry {
94 ScheduleEntry(int stage_num, int _priority, int res_num, int _cmd = 0,
95 int _idx = 0) :
96 stageNum(stage_num), resNum(res_num), cmd(_cmd),
97 idx(_idx), priority(_priority)
98 { }
99 virtual ~ScheduleEntry(){}
100
101 // Stage number to perform this service.
102 int stageNum;
103
104 // Resource ID to access
105 int resNum;
106
107 // See specific resource for meaning
108 unsigned cmd;
109
110 // See specific resource for meaning
111 unsigned idx;
112
113 // Some Resources May Need Priority?
114 int priority;
115 };
116
117 struct entryCompare {
118 bool operator()(const ScheduleEntry* lhs, const ScheduleEntry* rhs) const
119 {
120 // Prioritize first by stage number that the resource is needed
121 if (lhs->stageNum > rhs->stageNum) {
122 return true;
123 } else if (lhs->stageNum == rhs->stageNum) {
124 if (lhs->priority > rhs->priority) {
125 return true;
126 } else {
127 return false;
128 }
129 } else {
130 return false;
131 }
132 }
133 };
134
135
136 typedef std::priority_queue<ScheduleEntry*, std::vector<ScheduleEntry*>,
137 entryCompare> ResSchedule;
138
139 void createFrontEndSchedule(DynInstPtr &inst);
140 bool createBackEndSchedule(DynInstPtr &inst);
141 int getNextPriority(DynInstPtr &inst, int stage_num);
142
143 class InstStage {
144 private:
145 int nextTaskPriority;
146 int stageNum;
147 ResSchedule *instSched;
148
149 public:
150 InstStage(DynInstPtr inst, int stage_num);
151
152 void needs(int unit, int request) {
153 instSched->push( new ScheduleEntry(
154 stageNum, nextTaskPriority++, unit, request
155 ));
156 }
157
158 void needs(int unit, int request, int param) {
159 instSched->push( new ScheduleEntry(
160 stageNum, nextTaskPriority++, unit, request, param
161 ));
162 }
163
164 };
165 };
166
167
168
169
170 #endif