[mips][mips64r6] Add d?div, d?mod, d?divu, d?modu
[oota-llvm.git] / lib / Target / Mips / Mips32r6InstrInfo.td
1 //=- Mips32r6InstrInfo.td - Mips32r6 Instruction Information -*- 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 // This file describes Mips32r6 instructions.
11 //
12 //===----------------------------------------------------------------------===//
13
14 include "Mips32r6InstrFormats.td"
15
16 // Notes about removals/changes from MIPS32r6:
17 // Unclear: ssnop
18 // Reencoded: cache, pref
19 // Reencoded: clo, clz
20 // Reencoded: jr -> jalr
21 // Reencoded: jr.hb -> jalr.hb
22 // Reencoded: ldc2
23 // Reencoded: ll, sc
24 // Reencoded: lwc2
25 // Reencoded: sdbbp
26 // Reencoded: sdc2
27 // Reencoded: swc2
28 // Removed: /.ps$/, cvt.ps.s, cvt.ps.pw
29 // Removed: addi
30 // Removed: bc1any2, bc1any4
31 // Removed: bc2[ft]
32 // Removed: bc2f, bc2t
33 // Removed: bc[12][ft]l, bgezl, bgtzl, bgtzl, blezl, bltzall, bltzl, bnel, bgezall,
34 // Removed: beql
35 // Removed: bgezal
36 // Removed: bltzal
37 // Removed: c.cond.fmt, bc1[ft]
38 // Removed: div, divu
39 // Removed: jalx
40 // Removed: ldxc1
41 // Removed: luxc1
42 // Removed: lwl, lwr, lwle, lwre, swl, swr, swle, swre
43 // Removed: lwxc1
44 // Removed: madd.[ds], nmadd.[ds], nmsub.[ds], sub.[ds]
45 // Removed: mfhi, mflo, mthi, mtlo, madd, maddu, msub, msubu, mul
46 // Removed: movf, movt
47 // Removed: movf.fmt, movt.fmt, movn.fmt, movz.fmt
48 // Removed: movn, movz
49 // Removed: mult, multu
50 // Removed: prefx
51 // Removed: sdxc1
52 // Removed: suxc1
53 // Removed: swxc1
54 // Removed: teqi, tgei, tgeiu, tlti, tltiu, tnei
55 // Rencoded: [ls][wd]c2
56
57 //===----------------------------------------------------------------------===//
58 //
59 // Instruction Encodings
60 //
61 //===----------------------------------------------------------------------===//
62
63 class DIV_ENC    : SPECIAL_3R_FM<0b00010, 0b011010>;
64 class DIVU_ENC   : SPECIAL_3R_FM<0b00010, 0b011011>;
65 class MOD_ENC    : SPECIAL_3R_FM<0b00011, 0b011010>;
66 class MODU_ENC   : SPECIAL_3R_FM<0b00011, 0b011011>;
67 class MUH_ENC    : SPECIAL_3R_FM<0b00011, 0b011000>;
68 class MUHU_ENC   : SPECIAL_3R_FM<0b00011, 0b011001>;
69 class MUL_R6_ENC : SPECIAL_3R_FM<0b00010, 0b011000>;
70 class MULU_ENC   : SPECIAL_3R_FM<0b00010, 0b011001>;
71
72 //===----------------------------------------------------------------------===//
73 //
74 // Instruction Descriptions
75 //
76 //===----------------------------------------------------------------------===//
77
78 class DIVMOD_DESC_BASE<string instr_asm, RegisterOperand GPROpnd> {
79   dag OutOperandList = (outs GPROpnd:$rd);
80   dag InOperandList = (ins GPROpnd:$rs, GPROpnd:$rt);
81   string AsmString = !strconcat(instr_asm, "\t$rd, $rs, $rt");
82   list<dag> Pattern = [];
83 }
84
85 class DIV_DESC  : DIVMOD_DESC_BASE<"div", GPR32Opnd>;
86 class DIVU_DESC : DIVMOD_DESC_BASE<"divu", GPR32Opnd>;
87 class MOD_DESC  : DIVMOD_DESC_BASE<"mod", GPR32Opnd>;
88 class MODU_DESC : DIVMOD_DESC_BASE<"modu", GPR32Opnd>;
89
90 class MUL_R6_DESC_BASE<string instr_asm, RegisterOperand GPROpnd> {
91   dag OutOperandList = (outs GPROpnd:$rd);
92   dag InOperandList = (ins GPROpnd:$rs, GPROpnd:$rt);
93   string AsmString = !strconcat(instr_asm, "\t$rd, $rs, $rt");
94   list<dag> Pattern = [];
95 }
96
97 class MUH_DESC    : MUL_R6_DESC_BASE<"muh", GPR32Opnd>;
98 class MUHU_DESC   : MUL_R6_DESC_BASE<"muhu", GPR32Opnd>;
99 class MUL_R6_DESC : MUL_R6_DESC_BASE<"mul", GPR32Opnd>;
100 class MULU_DESC   : MUL_R6_DESC_BASE<"mulu", GPR32Opnd>;
101
102 //===----------------------------------------------------------------------===//
103 //
104 // Instruction Definitions
105 //
106 //===----------------------------------------------------------------------===//
107
108 def ADDIUPC;
109 def ALIGN; // Known as as BALIGN in DSP ASE
110 def ALUIPC;
111 def AUI;
112 def AUIPC;
113 def BALC;
114 def BC1EQZ;
115 def BC1NEZ;
116 def BC2EQZ;
117 def BC2NEZ;
118 def BC;
119 def BEQC;
120 def BEQZALC;
121 def BEQZC;
122 def BGEC;  // Also aliased to blec with operands swapped
123 def BGEUC; // Also aliased to bleuc with operands swapped
124 def BGEZALC;
125 def BGEZC;
126 def BGTZALC;
127 def BGTZC;
128 def BITSWAP; // Known as BITREV in DSP ASE
129 def BLEZALC;
130 def BLEZC;
131 def BLTC; // Also aliased to bgtc with operands swapped
132 def BLTUC; // Also aliased to bgtuc with operands swapped
133 def BLTZALC;
134 def BLTZC;
135 def BNEC;
136 def BNEZALC;
137 def BNEZC;
138 def BNVC;
139 def BOVC;
140 def CLASS_D;
141 def CLASS_S;
142 def CMP_CC_D;
143 def CMP_CC_S;
144 def DIV : DIV_ENC, DIV_DESC, ISA_MIPS32R6;
145 def DIVU : DIVU_ENC, DIVU_DESC, ISA_MIPS32R6;
146 def JIALC;
147 def JIC;
148 // def LSA; // See MSA
149 def LWPC;
150 def LWUPC;
151 def MADDF;
152 def MAXA_D;
153 def MAXA_S;
154 def MAX_D;
155 def MAX_S;
156 def MINA_D;
157 def MINA_S;
158 def MIN_D;
159 def MOD : MOD_ENC, MOD_DESC, ISA_MIPS32R6;
160 def MODU : MODU_ENC, MODU_DESC, ISA_MIPS32R6;
161 def MSUBF;
162 def MUH    : MUH_ENC, MUH_DESC, ISA_MIPS32R6;
163 def MUHU   : MUHU_ENC, MUHU_DESC, ISA_MIPS32R6;
164 def MUL_R6 : MUL_R6_ENC, MUL_R6_DESC, ISA_MIPS32R6;
165 def MULU   : MULU_ENC, MULU_DESC, ISA_MIPS32R6;
166 def NAL; // BAL with rd=0
167 def RINT_D;
168 def RINT_S;
169 def SELEQZ;
170 def SELEQZ_D;
171 def SELEQZ_S;
172 def SELNEZ;
173 def SELNEZ_D;
174 def SELNEZ_S;
175 def SEL_D;
176 def SEL_S;