]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/Mips/MipsMTInstrFormats.td
Import CK as of commit b19ed4c6a56ec93215ab567ba18ba61bf1cfbac8
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / Mips / MipsMTInstrFormats.td
1 //===-- MipsMTInstrFormats.td - Mips Instruction Formats ---*- tablegen -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 //===----------------------------------------------------------------------===//
11 //  Describe the MIPS MT instructions format
12 //
13 //  opcode - operation code.
14 //  rt     - destination register
15 //
16 //===----------------------------------------------------------------------===//
17
18 class MipsMTInst : MipsInst<(outs), (ins), "", [], NoItinerary, FrmOther>,
19                    PredicateControl {
20   let DecoderNamespace = "Mips";
21   let EncodingPredicates = [HasStdEnc];
22 }
23
24 class OPCODE1<bits<1> Val> {
25   bits<1> Value = Val;
26 }
27
28 def OPCODE_SC_D : OPCODE1<0b0>;
29 def OPCODE_SC_E : OPCODE1<0b1>;
30
31 class FIELD5<bits<5> Val> {
32   bits<5> Value = Val;
33 }
34
35 def FIELD5_1_DMT_EMT  : FIELD5<0b00001>;
36 def FIELD5_2_DMT_EMT  : FIELD5<0b01111>;
37 def FIELD5_1_2_DVPE_EVPE : FIELD5<0b00000>;
38 def FIELD5_MFTR : FIELD5<0b01000>;
39 def FIELD5_MTTR : FIELD5<0b01100>;
40
41 class COP0_MFMC0_MT<FIELD5 Op1, FIELD5 Op2, OPCODE1 sc> : MipsMTInst {
42   bits<32> Inst;
43
44   bits<5> rt;
45   let Inst{31-26} = 0b010000; // COP0
46   let Inst{25-21} = 0b01011;  // MFMC0
47   let Inst{20-16} = rt;
48   let Inst{15-11} = Op1.Value;
49   let Inst{10-6}  = Op2.Value;
50   let Inst{5}     = sc.Value;
51   let Inst{4-3}   = 0b00;
52   let Inst{2-0}   = 0b001;
53 }
54
55 class COP0_MFTTR_MT<FIELD5 Op> : MipsMTInst {
56   bits<32> Inst;
57
58   bits<5> rt;
59   bits<5> rd;
60   bits<1> u;
61   bits<1> h;
62   bits<3> sel;
63   let Inst{31-26} = 0b010000; // COP0
64   let Inst{25-21} = Op.Value; // MFMC0
65   let Inst{20-16} = rt;
66   let Inst{15-11} = rd;
67   let Inst{10-6}  = 0b00000;  // rx - currently unsupported.
68   let Inst{5}     = u;
69   let Inst{4}     = h;
70   let Inst{3}     = 0b0;
71   let Inst{2-0}   = sel;
72 }
73
74 class SPECIAL3_MT_FORK : MipsMTInst {
75   bits<32> Inst;
76
77   bits<5> rs;
78   bits<5> rt;
79   bits<5> rd;
80   let Inst{31-26} = 0b011111; // SPECIAL3
81   let Inst{25-21} = rs;
82   let Inst{20-16} = rt;
83   let Inst{15-11} = rd;
84   let Inst{10-6}  = 0b00000;
85   let Inst{5-0}   = 0b001000; // FORK
86 }
87
88 class SPECIAL3_MT_YIELD : MipsMTInst {
89   bits<32> Inst;
90
91   bits<5> rs;
92   bits<5> rd;
93   let Inst{31-26} = 0b011111; // SPECIAL3
94   let Inst{25-21} = rs;
95   let Inst{20-16} = 0b00000;
96   let Inst{15-11} = rd;
97   let Inst{10-6}  = 0b00000;
98   let Inst{5-0}   = 0b001001; // FORK
99 }