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
commit41012d2418fd355f15488131cc95ee8e4a6302f8 (patch)
treee95845667028480540cf16b60d45a1a56072cd19 /src/arch/arm/isa/insts/fp.isa
parenta430f749cefb75f58d1d1c9692e2b53f1f5252bf (diff)
downloadgem5-41012d2418fd355f15488131cc95ee8e4a6302f8.tar.xz
ARM: Implement VCVT between double and single width FP.
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 35d0405e9..9969e6711 100644
--- a/src/arch/arm/isa/insts/fp.isa
+++ b/src/arch/arm/isa/insts/fp.isa
@@ -678,4 +678,29 @@ let {{
header_output += RegRegOpDeclare.subst(vcvtFpSIntDIop);
decoder_output += RegRegOpConstructor.subst(vcvtFpSIntDIop);
exec_output += PredOpExecute.subst(vcvtFpSIntDIop);
+
+ vcvtFpSFpDCode = '''
+ IntDoubleUnion cDest;
+ cDest.fp = FpOp1;
+ FpDestP0.uw = cDest.bits;
+ FpDestP1.uw = cDest.bits >> 32;
+ '''
+ vcvtFpSFpDIop = InstObjParams("vcvt", "VcvtFpSFpD", "RegRegOp",
+ { "code": vcvtFpSFpDCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegOpDeclare.subst(vcvtFpSFpDIop);
+ decoder_output += RegRegOpConstructor.subst(vcvtFpSFpDIop);
+ exec_output += PredOpExecute.subst(vcvtFpSFpDIop);
+
+ vcvtFpDFpSCode = '''
+ IntDoubleUnion cOp1;
+ cOp1.bits = ((uint64_t)FpOp1P0.uw | ((uint64_t)FpOp1P1.uw << 32));
+ FpDest = cOp1.fp;
+ '''
+ vcvtFpDFpSIop = InstObjParams("vcvt", "VcvtFpDFpS", "RegRegOp",
+ { "code": vcvtFpDFpSCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegOpDeclare.subst(vcvtFpDFpSIop);
+ decoder_output += RegRegOpConstructor.subst(vcvtFpDFpSIop);
+ exec_output += PredOpExecute.subst(vcvtFpDFpSIop);
}};