Make Sparc traceflag even more chatty
[gem5.git] / src / arch / sparc / floatregfile.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/floatregfile.hh"
33 #include "base/trace.hh"
34 #include "sim/byteswap.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::getFloatRegName(RegIndex index)
45 {
46 static std::string floatRegName[NumFloatRegs] =
47 {"f0", "f1", "f2", "f3", "f4", "f5", "f6", "f7",
48 "f8", "f9", "f10", "f11", "f12", "f13", "f14", "f15",
49 "f16", "f17", "f18", "f19", "f20", "f21", "f22", "f23",
50 "f24", "f25", "f26", "f27", "f28", "f29", "f30", "f31",
51 "f32", "f33", "f34", "f35", "f36", "f37", "f38", "f39",
52 "f40", "f41", "f42", "f43", "f44", "f45", "f46", "f47",
53 "f48", "f49", "f50", "f51", "f52", "f53", "f54", "f55",
54 "f56", "f57", "f58", "f59", "f60", "f61", "f62", "f63"};
55 return floatRegName[index];
56 }
57
58 void FloatRegFile::clear()
59 {
60 memset(regSpace, 0, sizeof(regSpace));
61 }
62
63 FloatReg FloatRegFile::readReg(int floatReg, int width)
64 {
65 //In each of these cases, we have to copy the value into a temporary
66 //variable. This is because we may otherwise try to access an
67 //unaligned portion of memory.
68 FloatReg result;
69 switch(width)
70 {
71 case SingleWidth:
72 float32_t result32;
73 memcpy(&result32, regSpace + 4 * floatReg, sizeof(result32));
74 result = htog(result32);
75 DPRINTF(Sparc, "Read FP32 register %d = 0x%x\n", floatReg, result);
76 break;
77 case DoubleWidth:
78 float64_t result64;
79 memcpy(&result64, regSpace + 4 * floatReg, sizeof(result64));
80 result = htog(result64);
81 DPRINTF(Sparc, "Read FP64 register %d = 0x%x\n", floatReg, result);
82 break;
83 case QuadWidth:
84 float128_t result128;
85 memcpy(&result128, regSpace + 4 * floatReg, sizeof(result128));
86 result = htog(result128);
87 DPRINTF(Sparc, "Read FP128 register %d = 0x%x\n", floatReg, result);
88 break;
89 default:
90 panic("Attempted to read a %d bit floating point register!", width);
91 }
92 return result;
93 }
94
95 FloatRegBits FloatRegFile::readRegBits(int floatReg, int width)
96 {
97 //In each of these cases, we have to copy the value into a temporary
98 //variable. This is because we may otherwise try to access an
99 //unaligned portion of memory.
100 FloatRegBits result;
101 switch(width)
102 {
103 case SingleWidth:
104 uint32_t result32;
105 memcpy(&result32, regSpace + 4 * floatReg, sizeof(result32));
106 result = htog(result32);
107 DPRINTF(Sparc, "Read FP32 bits register %d = 0x%x\n", floatReg, result);
108 break;
109 case DoubleWidth:
110 uint64_t result64;
111 memcpy(&result64, regSpace + 4 * floatReg, sizeof(result64));
112 result = htog(result64);
113 DPRINTF(Sparc, "Read FP64 bits register %d = 0x%x\n", floatReg, result);
114 break;
115 case QuadWidth:
116 uint64_t result128;
117 memcpy(&result128, regSpace + 4 * floatReg, sizeof(result128));
118 result = htog(result128);
119 DPRINTF(Sparc, "Read FP128 bits register %d = 0x%x\n", floatReg, result);
120 break;
121 default:
122 panic("Attempted to read a %d bit floating point register!", width);
123 }
124 return result;
125 }
126
127 Fault FloatRegFile::setReg(int floatReg, const FloatReg &val, int width)
128 {
129 //In each of these cases, we have to copy the value into a temporary
130 //variable. This is because we may otherwise try to access an
131 //unaligned portion of memory.
132
133 uint32_t result32;
134 uint64_t result64;
135 switch(width)
136 {
137 case SingleWidth:
138 result32 = gtoh((uint32_t)val);
139 memcpy(regSpace + 4 * floatReg, &result32, sizeof(result32));
140 break;
141 case DoubleWidth:
142 result64 = gtoh((uint64_t)val);
143 memcpy(regSpace + 4 * floatReg, &result64, sizeof(result64));
144 break;
145 case QuadWidth:
146 panic("Quad width FP not implemented.");
147 break;
148 default:
149 panic("Attempted to read a %d bit floating point register!", width);
150 }
151 return NoFault;
152 }
153
154 Fault FloatRegFile::setRegBits(int floatReg, const FloatRegBits &val, int width)
155 {
156 //In each of these cases, we have to copy the value into a temporary
157 //variable. This is because we may otherwise try to access an
158 //unaligned portion of memory.
159 uint32_t result32;
160 uint64_t result64;
161 switch(width)
162 {
163 case SingleWidth:
164 result32 = gtoh((uint32_t)val);
165 memcpy(regSpace + 4 * floatReg, &result32, sizeof(result32));
166 break;
167 case DoubleWidth:
168 result64 = gtoh((uint64_t)val);
169 memcpy(regSpace + 4 * floatReg, &result64, sizeof(result64));
170 break;
171 case QuadWidth:
172 panic("Quad width FP not implemented.");
173 break;
174 default:
175 panic("Attempted to read a %d bit floating point register!", width);
176 }
177 return NoFault;
178 }
179
180 void FloatRegFile::serialize(std::ostream &os)
181 {
182 SERIALIZE_ARRAY((unsigned char *)regSpace,
183 SingleWidth / 8 * NumFloatRegs);
184 }
185
186 void FloatRegFile::unserialize(Checkpoint *cp, const std::string &section)
187 {
188 UNSERIALIZE_ARRAY((unsigned char *)regSpace,
189 SingleWidth / 8 * NumFloatRegs);
190 }
191