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
commit90d70a22cb15e6461fc7397a0f55322dc163f701 (patch)
treeabcc1433d2f4cb258baa1ad12f51dee3402fb1a1 /src/arch/arm/isa/insts/fp.isa
parentcc665240a4187de29edc792436a1c42a1361572a (diff)
downloadgem5-90d70a22cb15e6461fc7397a0f55322dc163f701.tar.xz
ARM: Implement the VFP version of vdiv and vsqrt.
Diffstat (limited to 'src/arch/arm/isa/insts/fp.isa')
-rw-r--r--src/arch/arm/isa/insts/fp.isa55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/arch/arm/isa/insts/fp.isa b/src/arch/arm/isa/insts/fp.isa
index dd3f6598c..99efcec32 100644
--- a/src/arch/arm/isa/insts/fp.isa
+++ b/src/arch/arm/isa/insts/fp.isa
@@ -356,4 +356,59 @@ let {{
header_output += RegRegRegOpDeclare.subst(vsubDIop);
decoder_output += RegRegRegOpConstructor.subst(vsubDIop);
exec_output += PredOpExecute.subst(vsubDIop);
+
+ vdivSCode = '''
+ FpDest = FpOp1 / FpOp2;
+ '''
+ vdivSIop = InstObjParams("vdivs", "VdivS", "RegRegRegOp",
+ { "code": vdivSCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vdivSIop);
+ decoder_output += RegRegRegOpConstructor.subst(vdivSIop);
+ exec_output += PredOpExecute.subst(vdivSIop);
+
+ vdivDCode = '''
+ 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;
+ '''
+ vdivDIop = InstObjParams("vdivd", "VdivD", "RegRegRegOp",
+ { "code": vdivDCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vdivDIop);
+ decoder_output += RegRegRegOpConstructor.subst(vdivDIop);
+ exec_output += PredOpExecute.subst(vdivDIop);
+
+ vsqrtSCode = '''
+ FpDest = sqrtf(FpOp1);
+ if (FpOp1 < 0) {
+ FpDest = NAN;
+ }
+ '''
+ vsqrtSIop = InstObjParams("vsqrts", "VsqrtS", "RegRegOp",
+ { "code": vsqrtSCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegOpDeclare.subst(vsqrtSIop);
+ decoder_output += RegRegOpConstructor.subst(vsqrtSIop);
+ exec_output += PredOpExecute.subst(vsqrtSIop);
+
+ vsqrtDCode = '''
+ IntDoubleUnion cOp1, cDest;
+ cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32));
+ cDest.fp = sqrt(cOp1.fp);
+ if (cOp1.fp < 0) {
+ cDest.fp = NAN;
+ }
+ FpDestP0.uw = cDest.bits;
+ FpDestP1.uw = cDest.bits >> 32;
+ '''
+ vsqrtDIop = InstObjParams("vsqrtd", "VsqrtD", "RegRegOp",
+ { "code": vsqrtDCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegOpDeclare.subst(vsqrtDIop);
+ decoder_output += RegRegOpConstructor.subst(vsqrtDIop);
+ exec_output += PredOpExecute.subst(vsqrtDIop);
}};