summaryrefslogtreecommitdiff
path: root/src/arch/power/faults.hh
diff options
context:
space:
mode:
authorTimothy M. Jones <tjones1@inf.ed.ac.uk>2010-02-12 19:53:19 +0000
committerTimothy M. Jones <tjones1@inf.ed.ac.uk>2010-02-12 19:53:19 +0000
commitdd60902152321a698682e4f53e29e4043ff321e5 (patch)
tree1a3944f6979e79f19de3aedcea36c2817ae507e8 /src/arch/power/faults.hh
parent64999b43435cfee76823e36c23017efc5584b986 (diff)
downloadgem5-dd60902152321a698682e4f53e29e4043ff321e5.tar.xz
Power ISA: Add an alignment fault to Power ISA and check alignment in TLB.
Diffstat (limited to 'src/arch/power/faults.hh')
-rw-r--r--src/arch/power/faults.hh16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/arch/power/faults.hh b/src/arch/power/faults.hh
index eadcb7900..0f49cc85d 100644
--- a/src/arch/power/faults.hh
+++ b/src/arch/power/faults.hh
@@ -76,6 +76,22 @@ class MachineCheckFault : public PowerFault
};
+class AlignmentFault : public PowerFault
+{
+ public:
+ AlignmentFault()
+ : PowerFault("Alignment")
+ {
+ }
+
+ bool
+ isAlignmentFault() const
+ {
+ return true;
+ }
+};
+
+
static inline Fault
genMachineCheckFault()
{