The normal spill and fill faults only need to behave specially in SE.

--HG--
extra : convert_revision : 4d4b866699e3450b88418822fc198411ee3d831a
This commit is contained in:
Gabe Black 2006-11-07 05:40:48 -05:00
parent bcd5099aac
commit 0c9bcf209a

View file

@ -548,7 +548,10 @@ class SpillNNormal : public EnumeratedFault
FaultName name() {return _name;}
FaultPriority priority() {return _priority;}
FaultStat & countStat() {return _count;}
//These need to be handled specially to enable spill traps in SE
#if !FULL_SYSTEM
void invoke(ThreadContext * tc);
#endif
};
class SpillNOther : public EnumeratedFault
@ -579,7 +582,10 @@ class FillNNormal : public EnumeratedFault
FaultName name() {return _name;}
FaultPriority priority() {return _priority;}
FaultStat & countStat() {return _count;}
//These need to be handled specially to enable fill traps in SE
#if !FULL_SYSTEM
void invoke(ThreadContext * tc);
#endif
};
class FillNOther : public EnumeratedFault