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/isa/insts/fp.isa | |
parent | 19e05d7e8d4a5e9a6f3bb60d3530e2de6a61fee0 (diff) | |
download | gem5-65f5204325f22ae8cc2b42da5ef046c55acf2a9d.tar.xz |
ARM: Implement the VFP version of vmul.
Diffstat (limited to 'src/arch/arm/isa/insts/fp.isa')
-rw-r--r-- | src/arch/arm/isa/insts/fp.isa | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/arch/arm/isa/insts/fp.isa b/src/arch/arm/isa/insts/fp.isa index ab37c3e3b..ef79ea420 100644 --- a/src/arch/arm/isa/insts/fp.isa +++ b/src/arch/arm/isa/insts/fp.isa @@ -226,4 +226,36 @@ let {{ header_output += RegRegRegOpDeclare.subst(vmov2Core2RegIop); decoder_output += RegRegRegOpConstructor.subst(vmov2Core2RegIop); exec_output += PredOpExecute.subst(vmov2Core2RegIop); + + vmulSCode = ''' + FpDest = FpOp1 * FpOp2; + if ((isinf(FpOp1) && FpOp2 == 0) || (isinf(FpOp2) && FpOp1 == 0)) { + FpDest = NAN; + } + ''' + vmulSIop = InstObjParams("vmuls", "VmulS", "RegRegRegOp", + { "code": vmulSCode, + "predicate_test": predicateTest }, []) + header_output += RegRegRegOpDeclare.subst(vmulSIop); + decoder_output += RegRegRegOpConstructor.subst(vmulSIop); + exec_output += PredOpExecute.subst(vmulSIop); + + vmulDCode = ''' + IntDoubleUnion cOp1, cOp2, cDest; + cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32)); + cOp2.bits = ((uint64_t)FpOp2P0.uw | ((uint64_t)FpOp2P1.uw << 32)); + cDest.fp = cOp1.fp * cOp2.fp; + if ((isinf(cOp1.fp) && cOp2.fp == 0) || + (isinf(cOp2.fp) && cOp1.fp == 0)) { + cDest.fp = NAN; + } + FpDestP0.uw = cDest.bits; + FpDestP1.uw = cDest.bits >> 32; + ''' + vmulDIop = InstObjParams("vmuld", "VmulD", "RegRegRegOp", + { "code": vmulDCode, + "predicate_test": predicateTest }, []) + header_output += RegRegRegOpDeclare.subst(vmulDIop); + decoder_output += RegRegRegOpConstructor.subst(vmulDIop); + exec_output += PredOpExecute.subst(vmulDIop); }}; |