From: Gabe Black Date: Wed, 2 Jun 2010 17:58:11 +0000 (-0500) Subject: ARM: Implement the VMRS instruction. X-Git-Tag: stable_2012_02_02~1169 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=aade63a8fec1bf3e302ccce630c718a79d7b3907;p=gem5.git ARM: Implement the VMRS instruction. --- diff --git a/src/arch/arm/isa/insts/fp.isa b/src/arch/arm/isa/insts/fp.isa index 7d0fbed85..0beb167dd 100644 --- a/src/arch/arm/isa/insts/fp.isa +++ b/src/arch/arm/isa/insts/fp.isa @@ -49,4 +49,11 @@ let {{ header_output += RegRegOpDeclare.subst(vmsrIop); decoder_output += RegRegOpConstructor.subst(vmsrIop); exec_output += PredOpExecute.subst(vmsrIop); + + vmrsIop = InstObjParams("vmrs", "Vmrs", "RegRegOp", + { "code": "Dest = MiscOp1;", + "predicate_test": predicateTest }, []) + header_output += RegRegOpDeclare.subst(vmrsIop); + decoder_output += RegRegOpConstructor.subst(vmrsIop); + exec_output += PredOpExecute.subst(vmrsIop); }};