From 857f84e576b8c460d7b15730497d3eb52e11021b Mon Sep 17 00:00:00 2001 From: Sandipan Das Date: Sat, 6 Feb 2021 17:17:38 +0530 Subject: [PATCH] arch-power: Add fields for DX form instructions This introduces the extended opcode field for DS form instructions and the fields d0, d1 and d2 which are concatenated for specifying a signed integer immediate operand. Change-Id: Id60e85d79f9157d680f813bf90ab6e1e064253a9 Signed-off-by: Sandipan Das --- src/arch/power/isa/bitfields.isa | 1 + src/arch/power/types.hh | 3 +++ 2 files changed, 4 insertions(+) diff --git a/src/arch/power/isa/bitfields.isa b/src/arch/power/isa/bitfields.isa index 771a82258..84a3a2cfe 100644 --- a/src/arch/power/isa/bitfields.isa +++ b/src/arch/power/isa/bitfields.isa @@ -37,6 +37,7 @@ def bitfield PO <31:26>; def bitfield A_XO <5:1>; def bitfield DS_XO <1:0>; +def bitfield DX_XO <5:1>; def bitfield X_XO <10:1>; def bitfield XFL_XO <10:1>; def bitfield XFX_XO <10:1>; diff --git a/src/arch/power/types.hh b/src/arch/power/types.hh index 910c5f52f..ef9b35fd8 100644 --- a/src/arch/power/types.hh +++ b/src/arch/power/types.hh @@ -53,6 +53,9 @@ BitUnion32(ExtMachInst) Bitfield<15, 0> si; Bitfield<15, 0> d; Bitfield<15, 2> ds; + Bitfield<15, 6> d0; + Bitfield<20, 16> d1; + Bitfield< 1, 0> d2; // Special purpose register identifier Bitfield<20, 11> spr; -- 2.30.2