From: Gabe Black Date: Tue, 7 Nov 2006 10:40:48 +0000 (-0500) Subject: The normal spill and fill faults only need to behave specially in SE. X-Git-Tag: m5_2.0_beta2~53^2~33 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=0c9bcf209a2d169dbd37f576c2f3c6f74deda192;p=gem5.git The normal spill and fill faults only need to behave specially in SE. --HG-- extra : convert_revision : 4d4b866699e3450b88418822fc198411ee3d831a --- diff --git a/src/arch/sparc/faults.hh b/src/arch/sparc/faults.hh index 0c7106707..b25b7706e 100644 --- a/src/arch/sparc/faults.hh +++ b/src/arch/sparc/faults.hh @@ -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