From: Gabe Black Date: Wed, 2 Jun 2010 17:58:18 +0000 (-0500) Subject: ARM: Add comments to the classes in macromem.hh. X-Git-Tag: stable_2012_02_02~1062 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=fcee2b3f31c76ea4c79153d50703bedee626076d;p=gem5.git ARM: Add comments to the classes in macromem.hh. --- diff --git a/src/arch/arm/insts/macromem.hh b/src/arch/arm/insts/macromem.hh index 25d0ab734..f2d4f9276 100644 --- 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: