faults.hh (11294:a368064a2ab5) faults.hh (12110:c24ee249b8ba)
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;

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

294 static FaultStat _count;
295
296 public:
297 FaultName name() const {return _name;}
298 FaultVect vect() {return _vect;}
299 FaultStat & countStat() {return _count;}
300};
301
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;

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

294 static FaultStat _count;
295
296 public:
297 FaultName name() const {return _name;}
298 FaultVect vect() {return _vect;}
299 FaultStat & countStat() {return _count;}
300};
301
302class VectorEnableFault : public AlphaFault
303{
304 private:
305 static FaultName _name;
306 static FaultVect _vect;
307 static FaultStat _count;
308
309 public:
310 FaultName name() const {return _name;}
311 FaultVect vect() {return _vect;}
312 FaultStat & countStat() {return _count;}
313};
314
302class PalFault : public AlphaFault
303{
304 private:
305 static FaultName _name;
306 static FaultVect _vect;
307 static FaultStat _count;
308
309 protected:

--- 24 unchanged lines hidden ---
315class PalFault : public AlphaFault
316{
317 private:
318 static FaultName _name;
319 static FaultVect _vect;
320 static FaultStat _count;
321
322 protected:

--- 24 unchanged lines hidden ---