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
commit44759669aa3633d96cbfd722c1f135f2c69d62f0 (patch)
tree6ec1bfd3849f357c2549d8d848d0e79b4e3acaf3 /src/arch/arm/isa/insts/fp.isa
parent9e32ff3491b3af115896798af3fd8c3606aac50f (diff)
downloadgem5-44759669aa3633d96cbfd722c1f135f2c69d62f0.tar.xz
ARM: Implement the VFP version of vadd.
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 56edb23f2..80be3d3c3 100644
--- a/src/arch/arm/isa/insts/fp.isa
+++ b/src/arch/arm/isa/insts/fp.isa
@@ -306,4 +306,29 @@ let {{
header_output += RegRegOpDeclare.subst(vabsDIop);
decoder_output += RegRegOpConstructor.subst(vabsDIop);
exec_output += PredOpExecute.subst(vabsDIop);
+
+ vaddSCode = '''
+ FpDest = FpOp1 + FpOp2;
+ '''
+ vaddSIop = InstObjParams("vadds", "VaddS", "RegRegRegOp",
+ { "code": vaddSCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vaddSIop);
+ decoder_output += RegRegRegOpConstructor.subst(vaddSIop);
+ exec_output += PredOpExecute.subst(vaddSIop);
+
+ vaddDCode = '''
+ 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;
+ '''
+ vaddDIop = InstObjParams("vaddd", "VaddD", "RegRegRegOp",
+ { "code": vaddDCode,
+ "predicate_test": predicateTest }, [])
+ header_output += RegRegRegOpDeclare.subst(vaddDIop);
+ decoder_output += RegRegRegOpConstructor.subst(vaddDIop);
+ exec_output += PredOpExecute.subst(vaddDIop);
}};