diff options
author | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:14 -0500 |
---|---|---|
committer | Gabe Black <gblack@eecs.umich.edu> | 2010-06-02 12:58:14 -0500 |
commit | 65f5204325f22ae8cc2b42da5ef046c55acf2a9d (patch) | |
tree | ae905af99b3b391771e5142f641061746f9e4d2a /src/arch/arm/insts | |
parent | 19e05d7e8d4a5e9a6f3bb60d3530e2de6a61fee0 (diff) | |
download | gem5-65f5204325f22ae8cc2b42da5ef046c55acf2a9d.tar.xz |
ARM: Implement the VFP version of vmul.
Diffstat (limited to 'src/arch/arm/insts')
-rw-r--r-- | src/arch/arm/insts/static_inst.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/arch/arm/insts/static_inst.hh b/src/arch/arm/insts/static_inst.hh index 33453bec6..3af9ef3b0 100644 --- a/src/arch/arm/insts/static_inst.hh +++ b/src/arch/arm/insts/static_inst.hh @@ -50,6 +50,11 @@ namespace ArmISA class ArmStaticInst : public StaticInst { protected: + union IntDoubleUnion { + uint64_t bits; + double fp; + }; + int32_t shift_rm_imm(uint32_t base, uint32_t shamt, uint32_t type, uint32_t cfval) const; int32_t shift_rm_rs(uint32_t base, uint32_t shamt, |