From: kajoljain379 Date: Tue, 19 Mar 2019 08:37:43 +0000 (+0530) Subject: arch-power: Add DARN instruction X-Git-Url: https://git.libre-soc.org/?a=commitdiff_plain;h=2c7c68120daff844c51e0ea0ddde3078d6b1a0bd;p=gem5.git arch-power: Add DARN instruction * Added DARN instruction. * Right now not returning random number, Just Setting value to -1. * Need to FIX that instruction. Change-Id: I9b6fd7557232c16fda144f4a424bfffb62de33cc Signed-off-by: kajoljain379 --- diff --git a/src/arch/power/isa/decoder.isa b/src/arch/power/isa/decoder.isa index 239b4e9c0..a2f12b427 100644 --- a/src/arch/power/isa/decoder.isa +++ b/src/arch/power/isa/decoder.isa @@ -484,6 +484,14 @@ decode PO default Unknown::unknown() { } }}); + //TODO: Right now we doesn't support DARN instruction + // Not returning random number, Just Setting value to -1. + //Need to FIX that instruction + + 755: darn({{ + Rt = -1; + }}); + 777: modsd({{ int64_t src1 = Ra_sd; int64_t src2 = Rb_sd;