summaryrefslogtreecommitdiff
path: root/src/arch/arm/isa/insts/fp.isa
diff options
context:
space:
mode:
authorGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:14 -0500
committerGabe Black <gblack@eecs.umich.edu>2010-06-02 12:58:14 -0500
commitcc665240a4187de29edc792436a1c42a1361572a (patch)
treea104d45e07e2d93c52d080e4a3afc210343ada66 /src/arch/arm/isa/insts/fp.isa
parent44759669aa3633d96cbfd722c1f135f2c69d62f0 (diff)
downloadgem5-cc665240a4187de29edc792436a1c42a1361572a.tar.xz
ARM: Implement the VFP version of vsub.
Diffstat (limited to 'src/arch/arm/isa/insts/fp.isa')
-rw-r--r--src/arch/arm/isa/insts/fp.isa25
1 files changed, 25 insertions, 0 deletions
diff --git a/src/arch/arm/isa/insts/fp.isa b/src/arch/arm/isa/insts/fp.isa
index 80be3d3c3..dd3f6598c 100644
--- a/src/arch/arm/isa/insts/fp.isa
+++ b/src/arch/arm/isa/insts/fp.isa
@@ -331,4 +331,29 @@ let {{
header_output += RegRegRegOpDeclare.subst(vaddDIop);
decoder_output += RegRegRegOpConstructor.subst(vaddDIop);
exec_output += PredOpExecute.subst(vaddDIop);
+
+ vsubSCode = '''
+ FpDest = FpOp1 - FpOp2;
+ '''
+ vsubSIop = InstObjParams("vsubs", "VsubS", "RegRegRegOp",
+ { "code": vsubSCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vsubSIop);
+ decoder_output += RegRegRegOpConstructor.subst(vsubSIop);
+ exec_output += PredOpExecute.subst(vsubSIop);
+
+ vsubDCode = '''
+ 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;
+ FpDestP0.uw = cDest.bits;
+ FpDestP1.uw = cDest.bits >> 32;
+ '''
+ vsubDIop = InstObjParams("vsubd", "VsubD", "RegRegRegOp",
+ { "code": vsubDCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vsubDIop);
+ decoder_output += RegRegRegOpConstructor.subst(vsubDIop);
+ exec_output += PredOpExecute.subst(vsubDIop);
}};