1 //===-- MipsMTInstrFormats.td - Mips Instruction Formats ---*- tablegen -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 //===----------------------------------------------------------------------===//
11 // Describe the MIPS MT instructions format
13 // opcode - operation code.
14 // rt - destination register
16 //===----------------------------------------------------------------------===//
18 class MipsMTInst : MipsInst<(outs), (ins), "", [], NoItinerary, FrmOther> {
19 let DecoderNamespace = "Mips";
20 let EncodingPredicates = [HasStdEnc];
23 class OPCODE1<bits<1> Val> {
27 def OPCODE_SC_D : OPCODE1<0b0>;
28 def OPCODE_SC_E : OPCODE1<0b1>;
30 class FIELD5<bits<5> Val> {
34 def FIELD5_1_DMT_EMT : FIELD5<0b00001>;
35 def FIELD5_2_DMT_EMT : FIELD5<0b01111>;
36 def FIELD5_1_2_DVPE_EVPE : FIELD5<0b00000>;
37 def FIELD5_MFTR : FIELD5<0b01000>;
38 def FIELD5_MTTR : FIELD5<0b01100>;
40 class COP0_MFMC0_MT<FIELD5 Op1, FIELD5 Op2, OPCODE1 sc> : MipsMTInst {
44 let Inst{31-26} = 0b010000; // COP0
45 let Inst{25-21} = 0b01011; // MFMC0
47 let Inst{15-11} = Op1.Value;
48 let Inst{10-6} = Op2.Value;
49 let Inst{5} = sc.Value;
51 let Inst{2-0} = 0b001;
54 class COP0_MFTTR_MT<FIELD5 Op> : MipsMTInst {
62 let Inst{31-26} = 0b010000; // COP0
63 let Inst{25-21} = Op.Value; // MFMC0
66 let Inst{10-6} = 0b00000; // rx - currently unsupported.
73 class SPECIAL3_MT_FORK : MipsMTInst {
79 let Inst{31-26} = 0b011111; // SPECIAL3
83 let Inst{10-6} = 0b00000;
84 let Inst{5-0} = 0b001000; // FORK
87 class SPECIAL3_MT_YIELD : MipsMTInst {
92 let Inst{31-26} = 0b011111; // SPECIAL3
94 let Inst{20-16} = 0b00000;
96 let Inst{10-6} = 0b00000;
97 let Inst{5-0} = 0b001001; // FORK