//===- PowerPCInstrFormats.td - PowerPC Instruction Formats --*- tablegen -*-=// // // The LLVM Compiler Infrastructure // // This file was developed by the LLVM research group and is distributed under // the University of Illinois Open Source License. See LICENSE.TXT for details. // //===----------------------------------------------------------------------===// // // //===----------------------------------------------------------------------===// //===----------------------------------------------------------------------===// // // PowerPC instruction formats class I opcode, dag OL, string asmstr> : Instruction { field bits<32> Inst; bit PPC64 = 0; // Default value, override with isPPC64 bit VMX = 0; // Default value, override with isVMX let Name = ""; let Namespace = "PPC"; let Inst{0-5} = opcode; let OperandList = OL; let AsmString = asmstr; } // 1.7.1 I-Form class IForm opcode, bit aa, bit lk, dag OL, string asmstr> : I { bits<24> LI; let Inst{6-29} = LI; let Inst{30} = aa; let Inst{31} = lk; } // 1.7.2 B-Form class BForm opcode, bit aa, bit lk, bits<5> bo, bits<2> bicode, dag OL, string asmstr> : I { bits<3> CR; bits<14> BD; let Inst{6-10} = bo; let Inst{11-13} = CR; let Inst{14-15} = bicode; let Inst{16-29} = BD; let Inst{30} = aa; let Inst{31} = lk; } // 1.7.4 D-Form class DForm_base opcode, dag OL, string asmstr, list pattern> : I { let Pattern = pattern; bits<5> A; bits<5> B; bits<16> C; let Inst{6-10} = A; let Inst{11-15} = B; let Inst{16-31} = C; } class DForm_1 opcode, dag OL, string asmstr> : I { bits<5> A; bits<16> C; bits<5> B; let Inst{6-10} = A; let Inst{11-15} = B; let Inst{16-31} = C; } class DForm_2 opcode, dag OL, string asmstr, list pattern> : DForm_base; class DForm_2_r0 opcode, dag OL, string asmstr, list pattern> : I { bits<5> A; bits<16> B; let Pattern = pattern; let Inst{6-10} = A; let Inst{11-15} = 0; let Inst{16-31} = B; } // Currently we make the use/def reg distinction in ISel, not tablegen class DForm_3 opcode, dag OL, string asmstr> : DForm_1; class DForm_4 opcode, dag OL, string asmstr, list pattern> : I { bits<5> B; bits<5> A; bits<16> C; let Pattern = pattern; let Inst{6-10} = A; let Inst{11-15} = B; let Inst{16-31} = C; } class DForm_4_zero opcode, dag OL, string asmstr> : DForm_1 { let A = 0; let B = 0; let C = 0; } class DForm_5 opcode, dag OL, string asmstr> : I { bits<3> BF; bits<1> L; bits<5> RA; bits<16> I; let Inst{6-8} = BF; let Inst{9} = 0; let Inst{10} = L; let Inst{11-15} = RA; let Inst{16-31} = I; } class DForm_5_ext opcode, dag OL, string asmstr> : DForm_5 { let L = PPC64; } class DForm_6 opcode, dag OL, string asmstr> : DForm_5; class DForm_6_ext opcode, dag OL, string asmstr> : DForm_6 { let L = PPC64; } class DForm_8 opcode, dag OL, string asmstr> : DForm_1 { } class DForm_9 opcode, dag OL, string asmstr> : DForm_1 { } // 1.7.5 DS-Form class DSForm_1 opcode, bits<2> xo, dag OL, string asmstr> : I { bits<5> RST; bits<14> DS; bits<5> RA; let Inst{6-10} = RST; let Inst{11-15} = RA; let Inst{16-29} = DS; let Inst{30-31} = xo; } class DSForm_2 opcode, bits<2> xo, dag OL, string asmstr> : DSForm_1; // 1.7.6 X-Form class XForm_base_r3xo opcode, bits<10> xo, dag OL, string asmstr> : I { bits<5> RST; bits<5> A; bits<5> B; bit RC = 0; // set by isDOT let Inst{6-10} = RST; let Inst{11-15} = A; let Inst{16-20} = B; let Inst{21-30} = xo; let Inst{31} = RC; } // This is the same as XForm_base_r3xo, but the first two operands are swapped // when code is emitted. class XForm_base_r3xo_swapped opcode, bits<10> xo, dag OL, string asmstr> : I { bits<5> A; bits<5> RST; bits<5> B; bit RC = 0; // set by isDOT let Inst{6-10} = RST; let Inst{11-15} = A; let Inst{16-20} = B; let Inst{21-30} = xo; let Inst{31} = RC; } class XForm_1 opcode, bits<10> xo, dag OL, string asmstr> : XForm_base_r3xo; class XForm_6 opcode, bits<10> xo, dag OL, string asmstr, list pattern> : XForm_base_r3xo_swapped { let Pattern = pattern; } class XForm_8 opcode, bits<10> xo, dag OL, string asmstr> : XForm_base_r3xo; class XForm_10 opcode, bits<10> xo, dag OL, string asmstr, list pt> : XForm_base_r3xo_swapped { let Pattern = pt; } class XForm_11 opcode, bits<10> xo, dag OL, string asmstr, list pattern> : XForm_base_r3xo_swapped { let B = 0; let Pattern = pattern; } class XForm_16 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<3> BF; bits<1> L; bits<5> RA; bits<5> RB; let Inst{6-8} = BF; let Inst{9} = 0; let Inst{10} = L; let Inst{11-15} = RA; let Inst{16-20} = RB; let Inst{21-30} = xo; let Inst{31} = 0; } class XForm_16_ext opcode, bits<10> xo, dag OL, string asmstr> : XForm_16 { let L = PPC64; } class XForm_17 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<3> BF; bits<5> FRA; bits<5> FRB; let Inst{6-8} = BF; let Inst{9-10} = 0; let Inst{11-15} = FRA; let Inst{16-20} = FRB; let Inst{21-30} = xo; let Inst{31} = 0; } class XForm_25 opcode, bits<10> xo, dag OL, string asmstr> : XForm_base_r3xo { } class XForm_26 opcode, bits<10> xo, dag OL, string asmstr, list pt> : XForm_base_r3xo { let A = 0; let Pattern = pt; } class XForm_28 opcode, bits<10> xo, dag OL, string asmstr> : XForm_base_r3xo { } // 1.7.7 XL-Form class XLForm_1 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<3> CRD; bits<2> CRDb; bits<3> CRA; bits<2> CRAb; bits<3> CRB; bits<2> CRBb; let Inst{6-8} = CRD; let Inst{9-10} = CRDb; let Inst{11-13} = CRA; let Inst{14-15} = CRAb; let Inst{16-18} = CRB; let Inst{19-20} = CRBb; let Inst{21-30} = xo; let Inst{31} = 0; } class XLForm_2 opcode, bits<10> xo, bit lk, dag OL, string asmstr> : I { bits<5> BO; bits<5> BI; bits<2> BH; let Inst{6-10} = BO; let Inst{11-15} = BI; let Inst{16-18} = 0; let Inst{19-20} = BH; let Inst{21-30} = xo; let Inst{31} = lk; } class XLForm_2_ext opcode, bits<10> xo, bits<5> bo, bits<5> bi, bit lk, dag OL, string asmstr> : XLForm_2 { let BO = bo; let BI = bi; let BH = 0; } class XLForm_3 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<3> BF; bits<3> BFA; let Inst{6-8} = BF; let Inst{9-10} = 0; let Inst{11-13} = BFA; let Inst{14-15} = 0; let Inst{16-20} = 0; let Inst{21-30} = xo; let Inst{31} = 0; } // 1.7.8 XFX-Form class XFXForm_1 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<5> RT; bits<10> SPR; let Inst{6-10} = RT; let Inst{11-20} = SPR; let Inst{21-30} = xo; let Inst{31} = 0; } class XFXForm_1_ext opcode, bits<10> xo, bits<10> spr, dag OL, string asmstr> : XFXForm_1 { let SPR = spr; } class XFXForm_3 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<5> RT; let Inst{6-10} = RT; let Inst{11-20} = 0; let Inst{21-30} = xo; let Inst{31} = 0; } class XFXForm_5 opcode, bits<10> xo, dag OL, string asmstr> : I { bits<8> FXM; bits<5> ST; let Inst{6-10} = ST; let Inst{11} = 0; let Inst{12-19} = FXM; let Inst{20} = 0; let Inst{21-30} = xo; let Inst{31} = 0; } class XFXForm_5a opcode, bits<10> xo, dag OL, string asmstr> : I { bits<5> ST; bits<8> FXM; let Inst{6-10} = ST; let Inst{11} = 1; let Inst{12-19} = FXM; let Inst{20} = 0; let Inst{21-30} = xo; let Inst{31} = 0; } class XFXForm_7 opcode, bits<10> xo, dag OL, string asmstr> : XFXForm_1; class XFXForm_7_ext opcode, bits<10> xo, bits<10> spr, dag OL, string asmstr> : XFXForm_7 { let SPR = spr; } // 1.7.10 XS-Form class XSForm_1 opcode, bits<9> xo, dag OL, string asmstr> : I { bits<5> RS; bits<5> A; bits<6> SH; bit RC = 0; // set by isDOT let Inst{6-10} = RS; let Inst{11-15} = A; let Inst{16-20} = SH{1-5}; let Inst{21-29} = xo; let Inst{30} = SH{0}; let Inst{31} = RC; } // 1.7.11 XO-Form class XOForm_1 opcode, bits<9> xo, bit oe, dag OL, string asmstr, list pattern> : I { bits<5> RT; bits<5> RA; bits<5> RB; let Pattern = pattern; bit RC = 0; // set by isDOT let Inst{6-10} = RT; let Inst{11-15} = RA; let Inst{16-20} = RB; let Inst{21} = oe; let Inst{22-30} = xo; let Inst{31} = RC; } class XOForm_3 opcode, bits<9> xo, bit oe, dag OL, string asmstr, list pattern> : XOForm_1 { let RB = 0; } // 1.7.12 A-Form class AForm_1 opcode, bits<5> xo, dag OL, string asmstr, list pattern> : I { bits<5> FRT; bits<5> FRA; bits<5> FRC; bits<5> FRB; let Pattern = pattern; bit RC = 0; // set by isDOT let Inst{6-10} = FRT; let Inst{11-15} = FRA; let Inst{16-20} = FRB; let Inst{21-25} = FRC; let Inst{26-30} = xo; let Inst{31} = RC; } class AForm_2 opcode, bits<5> xo, dag OL, string asmstr, list pat> : AForm_1 { let FRC = 0; } class AForm_3 opcode, bits<5> xo, dag OL, string asmstr, list pat> : AForm_1 { let FRB = 0; } // 1.7.13 M-Form class MForm_1 opcode, dag OL, string asmstr> : I { bits<5> RA; bits<5> RS; bits<5> RB; bits<5> MB; bits<5> ME; bit RC = 0; // set by isDOT let Inst{6-10} = RS; let Inst{11-15} = RA; let Inst{16-20} = RB; let Inst{21-25} = MB; let Inst{26-30} = ME; let Inst{31} = RC; } class MForm_2 opcode, dag OL, string asmstr> : MForm_1 { } // 1.7.14 MD-Form class MDForm_1 opcode, bits<3> xo, dag OL, string asmstr> : I { bits<5> RS; bits<5> RA; bits<6> SH; bits<6> MBE; bit RC = 0; // set by isDOT let Inst{6-10} = RS; let Inst{11-15} = RA; let Inst{16-20} = SH{1-5}; let Inst{21-26} = MBE; let Inst{27-29} = xo; let Inst{30} = SH{0}; let Inst{31} = RC; } //===----------------------------------------------------------------------===// class Pseudo : I<0, OL, asmstr> { let PPC64 = 0; let VMX = 0; let Inst{31-0} = 0; }