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