Merge zizzer:/bk/newmem
[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(Sparc, "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 }
70
71 IntRegFile::IntRegFile()
72 {
73 offset[Globals] = 0;
74 regView[Globals] = regGlobals[0];
75 setCWP(0);
76 clear();
77 }
78
79 IntReg IntRegFile::readReg(int intReg)
80 {
81 IntReg val;
82 if(intReg < NumIntArchRegs)
83 val = regView[intReg >> FrameOffsetBits][intReg & FrameOffsetMask];
84 else if((intReg -= NumIntArchRegs) < NumMicroIntRegs)
85 val = microRegs[intReg];
86 else
87 panic("Tried to read non-existant integer register %d, %d\n",
88 NumIntArchRegs + NumMicroIntRegs + intReg, intReg);
89
90 DPRINTF(Sparc, "Read register %d = 0x%x\n", intReg, val);
91 return val;
92 }
93
94 void IntRegFile::setReg(int intReg, const IntReg &val)
95 {
96 if(intReg)
97 {
98 DPRINTF(Sparc, "Wrote register %d = 0x%x\n", intReg, val);
99 if(intReg < NumIntArchRegs)
100 regView[intReg >> FrameOffsetBits][intReg & FrameOffsetMask] = val;
101 else if((intReg -= NumIntArchRegs) < NumMicroIntRegs)
102 microRegs[intReg] = val;
103 else
104 panic("Tried to set non-existant integer register\n");
105 }
106 }
107
108 //This doesn't effect the actual CWP register.
109 //It's purpose is to adjust the view of the register file
110 //to what it would be if CWP = cwp.
111 void IntRegFile::setCWP(int cwp)
112 {
113 int index = ((NWindows - cwp) % NWindows) * 2;
114 offset[Outputs] = FrameOffset + (index * RegsPerFrame);
115 offset[Locals] = FrameOffset + ((index+1) * RegsPerFrame);
116 offset[Inputs] = FrameOffset +
117 (((index+2) % (NWindows * 2)) * RegsPerFrame);
118 regView[Outputs] = regSegments[index];
119 regView[Locals] = regSegments[index+1];
120 regView[Inputs] = regSegments[(index+2) % (NWindows * 2)];
121
122 DPRINTF(Sparc, "Changed the CWP value to %d\n", cwp);
123 }
124
125 void IntRegFile::setGlobals(int gl)
126 {
127 DPRINTF(Sparc, "Now using %d globals\n", gl);
128
129 regView[Globals] = regGlobals[gl];
130 offset[Globals] = RegGlobalOffset + gl * RegsPerFrame;
131 }
132
133 void IntRegFile::serialize(std::ostream &os)
134 {
135 unsigned int x;
136 for(x = 0; x < MaxGL; x++)
137 SERIALIZE_ARRAY(regGlobals[x], RegsPerFrame);
138 for(x = 0; x < 2 * NWindows; x++)
139 SERIALIZE_ARRAY(regSegments[x], RegsPerFrame);
140 SERIALIZE_ARRAY(microRegs, NumMicroIntRegs);
141 }
142
143 void IntRegFile::unserialize(Checkpoint *cp, const std::string &section)
144 {
145 unsigned int x;
146 for(x = 0; x < MaxGL; x++)
147 UNSERIALIZE_ARRAY(regGlobals[x], RegsPerFrame);
148 for(unsigned int x = 0; x < 2 * NWindows; x++)
149 UNSERIALIZE_ARRAY(regSegments[x], RegsPerFrame);
150 UNSERIALIZE_ARRAY(microRegs, NumMicroIntRegs);
151 }