let Inst{21-30} = 163;
}
+def DCI: I<31, (outs), (ins u4imm:$CT), "dci $CT", IIC_LdStLoad>,
+ Requires<[IsPPC4xx]> {
+ bits<4> CT;
+
+ let Inst{7-10} = CT;
+ let Inst{21-30} = 454;
+}
+
+def ICI: I<31, (outs), (ins u4imm:$CT), "ici $CT", IIC_LdStLoad>,
+ Requires<[IsPPC4xx]> {
+ bits<4> CT;
+
+ let Inst{7-10} = CT;
+ let Inst{21-30} = 966;
+}
+
def MFMSR : XForm_rs<31, 83, (outs gprc:$RT), (ins),
"mfmsr $RT", IIC_SprMFMSR, []>;
# CHECK-BE: mtspr 988, 2 # encoding: [0x7c,0x5c,0xf3,0xa6]
# CHECK-LE: mtspr 988, 2 # encoding: [0xa6,0xf3,0x5c,0x7c]
mttbhi %r2
+
+# CHECK-BE: dci 14 # encoding: [0x7d,0xc0,0x03,0x8c]
+# CHECK-LE: dci 14 # encoding: [0x8c,0x03,0xc0,0x7d]
+ dci 14
+# CHECK-BE: ici 14 # encoding: [0x7d,0xc0,0x07,0x8c]
+# CHECK-LE: ici 14 # encoding: [0x8c,0x07,0xc0,0x7d]
+ ici 14