faults.hh revision 7678
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 *          Kevin Lim
30 */
31
32#ifndef __SPARC_FAULTS_HH__
33#define __SPARC_FAULTS_HH__
34
35#include "config/full_system.hh"
36#include "cpu/static_inst.hh"
37#include "sim/faults.hh"
38
39// The design of the "name" and "vect" functions is in sim/faults.hh
40
41namespace SparcISA
42{
43
44typedef uint32_t TrapType;
45typedef uint32_t FaultPriority;
46
47class ITB;
48
49class SparcFaultBase : public FaultBase
50{
51  public:
52    enum PrivilegeLevel
53    {
54        U, User = U,
55        P, Privileged = P,
56        H, Hyperprivileged = H,
57        NumLevels,
58        SH = -1,
59        ShouldntHappen = SH
60    };
61    struct FaultVals
62    {
63        const FaultName name;
64        const TrapType trapType;
65        const FaultPriority priority;
66        const PrivilegeLevel nextPrivilegeLevel[NumLevels];
67        FaultStat count;
68    };
69#if FULL_SYSTEM
70    void invoke(ThreadContext * tc,
71            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
72#endif
73    virtual TrapType trapType() = 0;
74    virtual FaultPriority priority() = 0;
75    virtual FaultStat & countStat() = 0;
76    virtual PrivilegeLevel getNextLevel(PrivilegeLevel current) = 0;
77};
78
79template<typename T>
80class SparcFault : public SparcFaultBase
81{
82  protected:
83    static FaultVals vals;
84  public:
85    FaultName name() const {return vals.name;}
86    TrapType trapType() {return vals.trapType;}
87    FaultPriority priority() {return vals.priority;}
88    FaultStat & countStat() {return vals.count;}
89    PrivilegeLevel getNextLevel(PrivilegeLevel current)
90    {
91        return vals.nextPrivilegeLevel[current];
92    }
93};
94
95class PowerOnReset : public SparcFault<PowerOnReset>
96{
97#if FULL_SYSTEM
98    void invoke(ThreadContext * tc,
99            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
100#endif
101};
102
103class WatchDogReset : public SparcFault<WatchDogReset> {};
104
105class ExternallyInitiatedReset : public SparcFault<ExternallyInitiatedReset> {};
106
107class SoftwareInitiatedReset : public SparcFault<SoftwareInitiatedReset> {};
108
109class REDStateException : public SparcFault<REDStateException> {};
110
111class StoreError : public SparcFault<StoreError> {};
112
113class InstructionAccessException : public SparcFault<InstructionAccessException> {};
114
115//class InstructionAccessMMUMiss : public SparcFault<InstructionAccessMMUMiss> {};
116
117class InstructionAccessError : public SparcFault<InstructionAccessError> {};
118
119class IllegalInstruction : public SparcFault<IllegalInstruction> {};
120
121class PrivilegedOpcode : public SparcFault<PrivilegedOpcode> {};
122
123//class UnimplementedLDD : public SparcFault<UnimplementedLDD> {};
124
125//class UnimplementedSTD : public SparcFault<UnimplementedSTD> {};
126
127class FpDisabled : public SparcFault<FpDisabled> {};
128
129class FpExceptionIEEE754 : public SparcFault<FpExceptionIEEE754> {};
130
131class FpExceptionOther : public SparcFault<FpExceptionOther> {};
132
133class TagOverflow : public SparcFault<TagOverflow> {};
134
135class CleanWindow : public SparcFault<CleanWindow> {};
136
137class DivisionByZero : public SparcFault<DivisionByZero> {};
138
139class InternalProcessorError :
140    public SparcFault<InternalProcessorError>
141{
142  public:
143    bool isMachineCheckFault() const {return true;}
144};
145
146class InstructionInvalidTSBEntry : public SparcFault<InstructionInvalidTSBEntry> {};
147
148class DataInvalidTSBEntry : public SparcFault<DataInvalidTSBEntry> {};
149
150class DataAccessException : public SparcFault<DataAccessException> {};
151
152//class DataAccessMMUMiss : public SparcFault<DataAccessMMUMiss> {};
153
154class DataAccessError : public SparcFault<DataAccessError> {};
155
156class DataAccessProtection : public SparcFault<DataAccessProtection> {};
157
158class MemAddressNotAligned :
159    public SparcFault<MemAddressNotAligned>
160{
161  public:
162    bool isAlignmentFault() const {return true;}
163};
164
165class LDDFMemAddressNotAligned : public SparcFault<LDDFMemAddressNotAligned> {};
166
167class STDFMemAddressNotAligned : public SparcFault<STDFMemAddressNotAligned> {};
168
169class PrivilegedAction : public SparcFault<PrivilegedAction> {};
170
171class LDQFMemAddressNotAligned : public SparcFault<LDQFMemAddressNotAligned> {};
172
173class STQFMemAddressNotAligned : public SparcFault<STQFMemAddressNotAligned> {};
174
175class InstructionRealTranslationMiss :
176    public SparcFault<InstructionRealTranslationMiss> {};
177
178class DataRealTranslationMiss : public SparcFault<DataRealTranslationMiss> {};
179
180//class AsyncDataError : public SparcFault<AsyncDataError> {};
181
182template <class T>
183class EnumeratedFault : public SparcFault<T>
184{
185  protected:
186    uint32_t _n;
187  public:
188    EnumeratedFault(uint32_t n) : SparcFault<T>(), _n(n) {}
189    TrapType trapType() {return SparcFault<T>::trapType() + _n;}
190};
191
192class InterruptLevelN : public EnumeratedFault<InterruptLevelN>
193{
194  public:
195    InterruptLevelN(uint32_t n) : EnumeratedFault<InterruptLevelN>(n) {;}
196    FaultPriority priority() {return 3200 - _n*100;}
197};
198
199class HstickMatch : public SparcFault<HstickMatch> {};
200
201class TrapLevelZero : public SparcFault<TrapLevelZero> {};
202
203class InterruptVector : public SparcFault<InterruptVector> {};
204
205class PAWatchpoint : public SparcFault<PAWatchpoint> {};
206
207class VAWatchpoint : public SparcFault<VAWatchpoint> {};
208
209class FastInstructionAccessMMUMiss :
210    public SparcFault<FastInstructionAccessMMUMiss>
211{
212#if !FULL_SYSTEM
213  protected:
214    Addr vaddr;
215  public:
216    FastInstructionAccessMMUMiss(Addr addr) : vaddr(addr)
217    {}
218    void invoke(ThreadContext * tc,
219            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
220#endif
221};
222
223class FastDataAccessMMUMiss : public SparcFault<FastDataAccessMMUMiss>
224{
225#if !FULL_SYSTEM
226  protected:
227    Addr vaddr;
228  public:
229    FastDataAccessMMUMiss(Addr addr) : vaddr(addr)
230    {}
231    void invoke(ThreadContext * tc,
232            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
233#endif
234};
235
236class FastDataAccessProtection : public SparcFault<FastDataAccessProtection> {};
237
238class InstructionBreakpoint : public SparcFault<InstructionBreakpoint> {};
239
240class CpuMondo : public SparcFault<CpuMondo> {};
241
242class DevMondo : public SparcFault<DevMondo> {};
243
244class ResumableError : public SparcFault<ResumableError> {};
245
246class SpillNNormal : public EnumeratedFault<SpillNNormal>
247{
248  public:
249    SpillNNormal(uint32_t n) : EnumeratedFault<SpillNNormal>(n) {;}
250    //These need to be handled specially to enable spill traps in SE
251#if !FULL_SYSTEM
252    void invoke(ThreadContext * tc,
253            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
254#endif
255};
256
257class SpillNOther : public EnumeratedFault<SpillNOther>
258{
259  public:
260    SpillNOther(uint32_t n) : EnumeratedFault<SpillNOther>(n) {;}
261};
262
263class FillNNormal : public EnumeratedFault<FillNNormal>
264{
265  public:
266    FillNNormal(uint32_t n) : EnumeratedFault<FillNNormal>(n) {;}
267    //These need to be handled specially to enable fill traps in SE
268#if !FULL_SYSTEM
269    void invoke(ThreadContext * tc,
270            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
271#endif
272};
273
274class FillNOther : public EnumeratedFault<FillNOther>
275{
276  public:
277    FillNOther(uint32_t n) : EnumeratedFault<FillNOther>(n) {;}
278};
279
280class TrapInstruction : public EnumeratedFault<TrapInstruction>
281{
282  public:
283    TrapInstruction(uint32_t n) : EnumeratedFault<TrapInstruction>(n) {;}
284    //In SE, trap instructions are requesting services from the OS.
285#if !FULL_SYSTEM
286    void invoke(ThreadContext * tc,
287            StaticInstPtr inst = StaticInst::nullStaticInstPtr);
288#endif
289};
290
291static inline Fault genMachineCheckFault()
292{
293    return new InternalProcessorError;
294}
295
296
297} // SparcISA namespace
298
299#endif // __SPARC_FAULTS_HH__
300