changeset 39bff8406c3b in /z/repo/gem5
details: http://repo.gem5.org/gem5?cmd=changeset;node=39bff8406c3b
description:
style: [patch 12/22] fix preliminary style issues for subsequent fault
patch
This changeset add spaces in a few spots and removes an unnecessary
comment.
diffstat:
src/sim/faults.hh | 15 ++++-----------
1 files changed, 4 insertions(+), 11 deletions(-)
diffs (53 lines):
diff -r 8e928c0f98d1 -r 39bff8406c3b src/sim/faults.hh
--- a/src/sim/faults.hh Mon Jul 20 09:15:21 2015 -0500
+++ b/src/sim/faults.hh Mon Jul 20 09:15:21 2015 -0500
@@ -41,13 +41,6 @@
typedef const char * FaultName;
typedef Stats::Scalar FaultStat;
-// Each class has it's name statically define in _name,
-// and has a virtual function to access it's name.
-// The function is necessary because otherwise, all objects
-// which are being accessed cast as a FaultBase * (namely
-// all faults returned using the Fault type) will use the
-// generic FaultBase name.
-
class FaultBase
{
public:
@@ -65,7 +58,7 @@
: panicStr(_str)
{ }
- FaultName name() const {return "Unimplemented simulator feature";}
+ FaultName name() const { return "Unimplemented simulator feature"; }
void invoke(ThreadContext * tc, const StaticInstPtr &inst =
StaticInst::nullStaticInstPtr);
};
@@ -73,7 +66,7 @@
class ReExec : public FaultBase
{
public:
- virtual FaultName name() const { return "Re-execution fault";}
+ virtual FaultName name() const { return "Re-execution fault"; }
ReExec() {}
void invoke(ThreadContext *tc, const StaticInstPtr &inst =
StaticInst::nullStaticInstPtr);
@@ -84,7 +77,7 @@
private:
Addr vaddr;
public:
- FaultName name() const {return "Generic page table fault";}
+ FaultName name() const { return "Generic page table fault"; }
GenericPageTableFault(Addr va) : vaddr(va) {}
void invoke(ThreadContext * tc, const StaticInstPtr &inst =
StaticInst::nullStaticInstPtr);
@@ -95,7 +88,7 @@
private:
Addr vaddr;
public:
- FaultName name() const {return "Generic alignment fault";}
+ FaultName name() const { return "Generic alignment fault"; }
GenericAlignmentFault(Addr va) : vaddr(va) {}
void invoke(ThreadContext * tc, const StaticInstPtr &inst =
StaticInst::nullStaticInstPtr);
_______________________________________________
gem5-dev mailing list
[email protected]
http://m5sim.org/mailman/listinfo/gem5-dev