arch-power: Add fields for DX form instructions
authorSandipan Das <sandipan@linux.vnet.ibm.com>
Thu, 7 Jun 2018 05:44:41 +0000 (11:14 +0530)
committerLuke Kenneth Casson Leighton <lkcl@lkcl.net>
Sun, 24 Jan 2021 03:16:57 +0000 (03:16 +0000)
This introduces the extended opcode field and the fields
d0, d1 and d2 for DX form instructions.

Change-Id: Iac52bca39993e4a5f299f33d356e36037c516130
Signed-off-by: Sandipan Das <sandipan@linux.vnet.ibm.com>
src/arch/power/isa/bitfields.isa
src/arch/power/types.hh

index 3ea6d8c366863e3ec933ea81cb3869a6d2bbf9f4..fc4e867f4eda0051285e79c2aa88c6b4687751b1 100644 (file)
@@ -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>;
index 1221f1246228f89ddd85a05b464e426df81c835a..5fc887e444510bba197b00ebd5bbdfd60fa4cfa6 100644 (file)
@@ -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;