Deleted Added
sdiff udiff text old ( 8706:b1838faf3bcc ) new ( 8775:1e3ca5d77b53 )
full compact
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#include <cmath>
32
33#include "arch/mips/isa_traits.hh"
34#include "arch/mips/utility.hh"
35#include "base/bitfield.hh"
36#include "base/misc.hh"
37#include "config/full_system.hh"
38#include "cpu/static_inst.hh"
39#include "cpu/thread_context.hh"
40#include "sim/serialize.hh"
41
42#include "arch/mips/registers.hh"
43#include "arch/mips/vtophys.hh"
44#include "mem/vport.hh"
45
46
47using namespace MipsISA;
48using namespace std;
49
50namespace MipsISA {
51
52uint64_t
53getArgument(ThreadContext *tc, int &number, uint16_t size, bool fp)
54{
55 panic("getArgument() not implemented\n");
56 M5_DUMMY_RETURN
57}
58
59uint64_t
60fpConvert(ConvertType cvt_type, double fp_val)
61{
62
63 switch (cvt_type)
64 {
65 case SINGLE_TO_DOUBLE:
66 {
67 double sdouble_val = fp_val;
68 void *sdouble_ptr = &sdouble_val;
69 uint64_t sdp_bits = *(uint64_t *) sdouble_ptr;
70 return sdp_bits;
71 }
72
73 case SINGLE_TO_WORD:
74 {
75 int32_t sword_val = (int32_t) fp_val;
76 void *sword_ptr = &sword_val;
77 uint64_t sword_bits= *(uint32_t *) sword_ptr;
78 return sword_bits;
79 }
80
81 case WORD_TO_SINGLE:
82 {
83 float wfloat_val = fp_val;
84 void *wfloat_ptr = &wfloat_val;
85 uint64_t wfloat_bits = *(uint32_t *) wfloat_ptr;
86 return wfloat_bits;
87 }
88
89 case WORD_TO_DOUBLE:
90 {
91 double wdouble_val = fp_val;
92 void *wdouble_ptr = &wdouble_val;
93 uint64_t wdp_bits = *(uint64_t *) wdouble_ptr;
94 return wdp_bits;
95 }
96
97 default:
98 panic("Invalid Floating Point Conversion Type (%d). See \"types.hh\" for List of Conversions\n",cvt_type);
99 return 0;
100 }
101}
102
103double
104roundFP(double val, int digits)
105{
106 double digit_offset = pow(10.0,digits);
107 val = val * digit_offset;
108 val = val + 0.5;
109 val = floor(val);
110 val = val / digit_offset;
111 return val;
112}
113
114double
115truncFP(double val)
116{
117 int trunc_val = (int) val;
118 return (double) trunc_val;
119}
120
121bool
122getCondCode(uint32_t fcsr, int cc_idx)
123{
124 int shift = (cc_idx == 0) ? 23 : cc_idx + 24;
125 bool cc_val = (fcsr >> shift) & 0x00000001;
126 return cc_val;
127}
128
129uint32_t
130genCCVector(uint32_t fcsr, int cc_num, uint32_t cc_val)
131{
132 int cc_idx = (cc_num == 0) ? 23 : cc_num + 24;
133
134 fcsr = bits(fcsr, 31, cc_idx + 1) << (cc_idx + 1) |
135 cc_val << cc_idx |
136 bits(fcsr, cc_idx - 1, 0);
137
138 return fcsr;
139}
140
141uint32_t
142genInvalidVector(uint32_t fcsr_bits)
143{
144 //Set FCSR invalid in "flag" field
145 int invalid_offset = Invalid + Flag_Field;
146 fcsr_bits = fcsr_bits | (1 << invalid_offset);
147
148 //Set FCSR invalid in "cause" flag
149 int cause_offset = Invalid + Cause_Field;
150 fcsr_bits = fcsr_bits | (1 << cause_offset);
151
152 return fcsr_bits;
153}
154
155bool
156isNan(void *val_ptr, int size)
157{
158 switch (size)
159 {
160 case 32:
161 {
162 uint32_t val_bits = *(uint32_t *) val_ptr;
163 return (bits(val_bits, 30, 23) == 0xFF);
164 }
165
166 case 64:
167 {
168 uint64_t val_bits = *(uint64_t *) val_ptr;
169 return (bits(val_bits, 62, 52) == 0x7FF);
170 }
171
172 default:
173 panic("Type unsupported. Size mismatch\n");
174 }
175}
176
177
178bool
179isQnan(void *val_ptr, int size)
180{
181 switch (size)
182 {
183 case 32:
184 {
185 uint32_t val_bits = *(uint32_t *) val_ptr;
186 return (bits(val_bits, 30, 22) == 0x1FE);
187 }
188
189 case 64:
190 {
191 uint64_t val_bits = *(uint64_t *) val_ptr;
192 return (bits(val_bits, 62, 51) == 0xFFE);
193 }
194
195 default:
196 panic("Type unsupported. Size mismatch\n");
197 }
198}
199
200bool
201isSnan(void *val_ptr, int size)
202{
203 switch (size)
204 {
205 case 32:
206 {
207 uint32_t val_bits = *(uint32_t *) val_ptr;
208 return (bits(val_bits, 30, 22) == 0x1FF);
209 }
210
211 case 64:
212 {
213 uint64_t val_bits = *(uint64_t *) val_ptr;
214 return (bits(val_bits, 62, 51) == 0xFFF);
215 }
216
217 default:
218 panic("Type unsupported. Size mismatch\n");
219 }
220}
221
222template <class CPU>
223void
224zeroRegisters(CPU *cpu)
225{
226 // Insure ISA semantics
227 // (no longer very clean due to the change in setIntReg() in the
228 // cpu model. Consider changing later.)
229 cpu->thread->setIntReg(ZeroReg, 0);
230 cpu->thread->setFloatReg(ZeroReg, 0.0);
231}
232
233void
234startupCPU(ThreadContext *tc, int cpuId)
235{
236 tc->activate(0/*tc->threadId()*/);
237}
238
239void
240initCPU(ThreadContext *tc, int cpuId)
241{}
242
243void
244copyRegs(ThreadContext *src, ThreadContext *dest)
245{
246 panic("Copy Regs Not Implemented Yet\n");
247}
248
249void
250copyMiscRegs(ThreadContext *src, ThreadContext *dest)
251{
252 panic("Copy Misc. Regs Not Implemented Yet\n");
253}
254void
255skipFunction(ThreadContext *tc)
256{
257 TheISA::PCState newPC = tc->pcState();
258 newPC.set(tc->readIntReg(ReturnAddressReg));
259 tc->pcState(newPC);
260}
261
262
263} // namespace MipsISA