From: Gabe Black Date: Wed, 2 Jun 2010 17:58:09 +0000 (-0500) Subject: ARM: Decode the enterx and leavex instructions. X-Git-Tag: stable_2012_02_02~1209 X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=89133b15dae1f13cbc937077ce5b5856ed130b5f;p=gem5.git ARM: Decode the enterx and leavex instructions. --- diff --git a/src/arch/arm/isa/formats/branch.isa b/src/arch/arm/isa/formats/branch.isa index 458a9d3fd..1936a07bb 100644 --- a/src/arch/arm/isa/formats/branch.isa +++ b/src/arch/arm/isa/formats/branch.isa @@ -187,9 +187,9 @@ def format Thumb32BranchesAndMiscCtrl() {{ const uint32_t op = bits(machInst, 7, 4); switch (op) { case 0x0: - return new WarnUnimplemented("leavex", machInst); + return new Leavex(machInst); case 0x1: - return new WarnUnimplemented("enterx", machInst); + return new Enterx(machInst); case 0x2: return new WarnUnimplemented("clrex", machInst); case 0x4: