faults.hh revision 2090
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
29#ifndef __ALPHA_FAULTS_HH__
30#define __ALPHA_FAULTS_HH__
31
32#include "sim/faults.hh"
33#include "arch/isa_traits.hh" //For the Addr type
34
35class AlphaFault : public Fault
36{
37public:
38        AlphaFault(char * newName, int newId, Addr newVect) : Fault(newName, newId), vect(newVect) {;}
39        TheISA::Addr vect;
40};
41
42extern class ResetFaultType : public AlphaFault
43{
44public:
45        ResetFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
46} * ResetFault;
47
48extern class ArithmeticFaultType : public AlphaFault
49{
50public:
51        ArithmeticFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
52} * ArithmeticFault;
53
54extern class InterruptFaultType : public AlphaFault
55{
56public:
57        InterruptFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
58} * InterruptFault;
59
60extern class NDtbMissFaultType : public AlphaFault
61{
62public:
63        NDtbMissFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
64} * NDtbMissFault;
65
66extern class PDtbMissFaultType : public AlphaFault
67{
68public:
69        PDtbMissFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
70} * PDtbMissFault;
71
72extern class DtbPageFaultType : public AlphaFault
73{
74public:
75        DtbPageFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
76} * DtbPageFault;
77
78extern class DtbAcvFaultType : public AlphaFault
79{
80public:
81        DtbAcvFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
82} * DtbAcvFault;
83
84extern class ItbMissFaultType : public AlphaFault
85{
86public:
87        ItbMissFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
88} * ItbMissFault;
89
90extern class ItbPageFaultType : public AlphaFault
91{
92public:
93        ItbPageFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
94} * ItbPageFault;
95
96extern class ItbAcvFaultType : public AlphaFault
97{
98public:
99        ItbAcvFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
100} * ItbAcvFault;
101
102extern class UnimplementedOpcodeFaultType : public AlphaFault
103{
104public:
105        UnimplementedOpcodeFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
106} * UnimplementedOpcodeFault;
107
108extern class FloatEnableFaultType : public AlphaFault
109{
110public:
111        FloatEnableFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
112} * FloatEnableFault;
113
114extern class PalFaultType : public AlphaFault
115{
116public:
117        PalFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
118} * PalFault;
119
120extern class IntegerOverflowFaultType : public AlphaFault
121{
122public:
123        IntegerOverflowFaultType(char * newName, int newId, Addr newVect) : AlphaFault(newName, newId, newVect) {;}
124} * IntegerOverflowFault;
125
126extern Fault ** ListOfFaults[];
127extern int NumFaults;
128
129#endif // __FAULTS_HH__
130