SPARC: Get rid of the setCWP function.
[gem5.git] / src / arch / sparc / intregfile.cc
1 /*
2 * Copyright (c) 2003-2005 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: Gabe Black
29 * Ali Saidi
30 */
31
32 #include "arch/sparc/intregfile.hh"
33 #include "base/trace.hh"
34 #include "base/misc.hh"
35 #include "sim/serialize.hh"
36
37 #include <string.h>
38
39 using namespace SparcISA;
40 using namespace std;
41
42 class Checkpoint;
43
44 string SparcISA::getIntRegName(RegIndex index)
45 {
46 static std::string intRegName[NumIntArchRegs] =
47 {"g0", "g1", "g2", "g3", "g4", "g5", "g6", "g7",
48 "o0", "o1", "o2", "o3", "o4", "o5", "o6", "o7",
49 "l0", "l1", "l2", "l3", "l4", "l5", "l6", "l7",
50 "i0", "i1", "i2", "i3", "i4", "i5", "i6", "i7"};
51 return intRegName[index];
52 }
53
54 int IntRegFile::flattenIndex(int reg)
55 {
56 int flatIndex = offset[reg >> FrameOffsetBits]
57 | (reg & FrameOffsetMask);
58 DPRINTF(RegisterWindows, "Flattened index %d into %d.\n", reg, flatIndex);
59 return flatIndex;
60 }
61
62 void IntRegFile::clear()
63 {
64 int x;
65 for (x = 0; x < MaxGL; x++)
66 memset(regGlobals[x], 0, sizeof(IntReg) * RegsPerFrame);
67 for(int x = 0; x < 2 * NWindows; x++)
68 memset(regSegments[x], 0, sizeof(IntReg) * RegsPerFrame);
69 memset(regs, 0, sizeof(IntReg) * NumIntRegs);
70 }
71
72 IntRegFile::IntRegFile()
73 {
74 offset[Globals] = 0;
75 regView[Globals] = regGlobals[0];
76 clear();
77 }
78
79 IntReg IntRegFile::readReg(int intReg)
80 {
81 DPRINTF(Sparc, "Read register %d = 0x%x\n", intReg, regs[intReg]);
82 return regs[intReg];
83 /* XXX Currently not used. When used again regView/offset need to be
84 * serialized!
85 IntReg val;
86 if(intReg < NumIntArchRegs)
87 val = regView[intReg >> FrameOffsetBits][intReg & FrameOffsetMask];
88 else if((intReg -= NumIntArchRegs) < NumMicroIntRegs)
89 val = microRegs[intReg];
90 else
91 panic("Tried to read non-existant integer register %d, %d\n",
92 NumIntArchRegs + NumMicroIntRegs + intReg, intReg);
93
94 DPRINTF(Sparc, "Read register %d = 0x%x\n", intReg, val);
95 return val;
96 */
97 }
98
99 void IntRegFile::setReg(int intReg, const IntReg &val)
100 {
101 if(intReg)
102 {
103 DPRINTF(Sparc, "Wrote register %d = 0x%x\n", intReg, val);
104 regs[intReg] = val;
105 }
106 return;
107 /* XXX Currently not used. When used again regView/offset need to be
108 * serialized!
109 if(intReg)
110 {
111 DPRINTF(Sparc, "Wrote register %d = 0x%x\n", intReg, val);
112 if(intReg < NumIntArchRegs)
113 regView[intReg >> FrameOffsetBits][intReg & FrameOffsetMask] = val;
114 else if((intReg -= NumIntArchRegs) < NumMicroIntRegs)
115 microRegs[intReg] = val;
116 else
117 panic("Tried to set non-existant integer register\n");
118 } */
119 }
120
121 void IntRegFile::setGlobals(int gl)
122 {
123 DPRINTF(RegisterWindows, "Now using %d globals\n", gl);
124
125 regView[Globals] = regGlobals[gl];
126 offset[Globals] = RegGlobalOffset + gl * RegsPerFrame;
127
128 if (regView[Globals] == regView[Inputs] ||
129 regView[Globals] == regView[Locals] ||
130 regView[Globals] == regView[Outputs] )
131 panic("Two register arrays set to the same thing!\n");
132 }
133
134 void IntRegFile::serialize(std::ostream &os)
135 {
136 SERIALIZE_ARRAY(regs, NumIntRegs);
137 SERIALIZE_ARRAY(microRegs, NumMicroIntRegs);
138
139 /* the below doesn't seem needed unless gabe makes regview work*/
140 unsigned int x;
141 for(x = 0; x < MaxGL; x++)
142 SERIALIZE_ARRAY(regGlobals[x], RegsPerFrame);
143 for(x = 0; x < 2 * NWindows; x++)
144 SERIALIZE_ARRAY(regSegments[x], RegsPerFrame);
145 }
146
147 void IntRegFile::unserialize(Checkpoint *cp, const std::string &section)
148 {
149 UNSERIALIZE_ARRAY(regs, NumIntRegs);
150 UNSERIALIZE_ARRAY(microRegs, NumMicroIntRegs);
151
152 /* the below doesn't seem needed unless gabe makes regview work*/
153 unsigned int x;
154 for(x = 0; x < MaxGL; x++)
155 UNSERIALIZE_ARRAY(regGlobals[x], RegsPerFrame);
156 for(unsigned int x = 0; x < 2 * NWindows; x++)
157 UNSERIALIZE_ARRAY(regSegments[x], RegsPerFrame);
158 }