projects
/
gem5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
362b747
)
ARM: Add comments to the classes in macromem.hh.
author
Gabe Black
<gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:18 +0000
(12:58 -0500)
committer
Gabe Black
<gblack@eecs.umich.edu>
Wed, 2 Jun 2010 17:58:18 +0000
(12:58 -0500)
src/arch/arm/insts/macromem.hh
patch
|
blob
|
history
diff --git
a/src/arch/arm/insts/macromem.hh
b/src/arch/arm/insts/macromem.hh
index 25d0ab7340887eed309b5540f27a2dec33497430..f2d4f9276340fa28c98f342245286b98dab40db5 100644
(file)
--- a/
src/arch/arm/insts/macromem.hh
+++ b/
src/arch/arm/insts/macromem.hh
@@
-60,6
+60,9
@@
number_of_ones(int32_t val)
return ones;
}
+/**
+ * Base class for Memory microops
+ */
class MicroOp : public PredOp
{
protected:
@@
-110,6
+113,9
@@
class MicroMemOp : public MicroIntOp
}
};
+/**
+ * Base class for microcoded integer memory instructions.
+ */
class MacroMemOp : public PredMacroOp
{
protected:
@@
-118,6
+124,9
@@
class MacroMemOp : public PredMacroOp
bool writeback, bool load, uint32_t reglist);
};
+/**
+ * Base class for microcoded floating point memory instructions.
+ */
class MacroVFPMemOp : public PredMacroOp
{
protected: