faults.hh (8569:498d3aacd292) faults.hh (8591:8f23aeaf6a91)
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;

--- 70 unchanged lines hidden (view full) ---

79
80 public:
81 FaultName name() const {return _name;}
82 FaultVect vect() {return _vect;}
83 FaultStat & countStat() {return _count;}
84 bool isAlignmentFault() const {return true;}
85};
86
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;

--- 70 unchanged lines hidden (view full) ---

79
80 public:
81 FaultName name() const {return _name;}
82 FaultVect vect() {return _vect;}
83 FaultStat & countStat() {return _count;}
84 bool isAlignmentFault() const {return true;}
85};
86
87static inline Fault genMachineCheckFault()
88{
89 return new MachineCheckFault;
90}
91
92class ResetFault : public AlphaFault
93{
94 private:
95 static FaultName _name;
96 static FaultVect _vect;
97 static FaultStat _count;
98
99 public:

--- 251 unchanged lines hidden ---
87class ResetFault : public AlphaFault
88{
89 private:
90 static FaultName _name;
91 static FaultVect _vect;
92 static FaultStat _count;
93
94 public:

--- 251 unchanged lines hidden ---