1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
|
//===- LoongArchInstrFormats.td - LoongArch Instr. Formats -*- tablegen -*-===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//
//===----------------------------------------------------------------------===//
// Describe LoongArch instructions format
//
// opcode - operation code.
// rd - destination register operand.
// r{j/k} - source register operand.
// immN - immediate data operand.
//
//===----------------------------------------------------------------------===//
class LAInst<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: Instruction {
field bits<32> Inst;
// SoftFail is a field the disassembler can use to provide a way for
// instructions to not match without killing the whole decode process. It is
// mainly used for ARM, but Tablegen expects this field to exist or it fails
// to build the decode table.
field bits<32> SoftFail = 0;
let Namespace = "LoongArch";
let Size = 4;
let OutOperandList = outs;
let InOperandList = ins;
let AsmString = opcstr # "\t" # opnstr;
let Pattern = pattern;
}
// Pseudo instructions
class Pseudo<dag outs, dag ins, list<dag> pattern = [], string opcstr = "",
string opnstr = "">
: LAInst<outs, ins, opcstr, opnstr, pattern> {
let isPseudo = 1;
let isCodeGenOnly = 1;
}
// 2R-type
// <opcode | rj | rd>
class Fmt2R<bits<22> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> rj;
bits<5> rd;
let Inst{31-10} = op;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 3R-type
// <opcode | rk | rj | rd>
class Fmt3R<bits<17> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> rk;
bits<5> rj;
bits<5> rd;
let Inst{31-15} = op;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 3RI2-type
// <opcode | I2 | rk | rj | rd>
class Fmt3RI2<bits<15> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<2> imm2;
bits<5> rk;
bits<5> rj;
bits<5> rd;
let Inst{31-17} = op;
let Inst{16-15} = imm2;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 3RI3-type
// <opcode | I3 | rk | rj | rd>
class Fmt3RI3<bits<14> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<3> imm3;
bits<5> rk;
bits<5> rj;
bits<5> rd;
let Inst{31-18} = op;
let Inst{17-15} = imm3;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI5-type
// <opcode | I5 | rj | rd>
class Fmt2RI5<bits<17> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> imm5;
bits<5> rj;
bits<5> rd;
let Inst{31-15} = op;
let Inst{14-10} = imm5;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI6-type
// <opcode | I6 | rj | rd>
class Fmt2RI6<bits<16> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<6> imm6;
bits<5> rj;
bits<5> rd;
let Inst{31-16} = op;
let Inst{15-10} = imm6;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI8-type
// <opcode | I8 | rj | rd>
class Fmt2RI8<bits<14> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<8> imm8;
bits<5> rj;
bits<5> rd;
let Inst{31-18} = op;
let Inst{17-10} = imm8;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI12-type
// <opcode | I12 | rj | rd>
class Fmt2RI12<bits<10> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<12> imm12;
bits<5> rj;
bits<5> rd;
let Inst{31-22} = op;
let Inst{21-10} = imm12;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI14-type
// <opcode | I14 | rj | rd>
class Fmt2RI14<bits<8> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<14> imm14;
bits<5> rj;
bits<5> rd;
let Inst{31-24} = op;
let Inst{23-10} = imm14;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 2RI16-type
// <opcode | I16 | rj | rd>
class Fmt2RI16<bits<6> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<16> imm16;
bits<5> rj;
bits<5> rd;
let Inst{31-26} = op;
let Inst{25-10} = imm16;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// 1RI20-type
// <opcode | I20 | rd>
class Fmt1RI20<bits<7> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<20> imm20;
bits<5> rd;
let Inst{31-25} = op;
let Inst{24-5} = imm20;
let Inst{4-0} = rd;
}
// 1RI21-type
// <opcode | I21[15:0] | rj | I21[20:16]>
class Fmt1RI21<bits<6> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<21> imm21;
bits<5> rj;
let Inst{31-26} = op;
let Inst{25-10} = imm21{15-0};
let Inst{9-5} = rj;
let Inst{4-0} = imm21{20-16};
}
// I15-type
// <opcode | I15>
class FmtI15<bits<17> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<15> imm15;
let Inst{31-15} = op;
let Inst{14-0} = imm15;
}
// I26-type
// <opcode | I26[15:0] | I26[25:16]>
class FmtI26<bits<6> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<26> imm26;
let Inst{31-26} = op;
let Inst{25-10} = imm26{15-0};
let Inst{9-0} = imm26{25-16};
}
// FmtBSTR_W
// <opcode[11:1] | msbw | opcode[0] | lsbw | rj | rd>
class FmtBSTR_W<bits<12> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> msbw;
bits<5> lsbw;
bits<5> rj;
bits<5> rd;
let Inst{31-21} = op{11-1};
let Inst{20-16} = msbw;
let Inst{15} = op{0};
let Inst{14-10} = lsbw;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// FmtBSTR_D
// <opcode | msbd | lsbd | rj | rd>
class FmtBSTR_D<bits<10> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<6> msbd;
bits<6> lsbd;
bits<5> rj;
bits<5> rd;
let Inst{31-22} = op;
let Inst{21-16} = msbd;
let Inst{15-10} = lsbd;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// FmtASRT
// <opcode | rk | rj | 0x0>
class FmtASRT<bits<17> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> rk;
bits<5> rj;
let Inst{31-15} = op;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = 0x0;
}
// FmtPRELD
// < 0b0010101011 | I12 | rj | I5>
class FmtPRELD<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<12> imm12;
bits<5> rj;
bits<5> imm5;
let Inst{31-22} = 0b0010101011;
let Inst{21-10} = imm12;
let Inst{9-5} = rj;
let Inst{4-0} = imm5;
}
// FmtPRELDX
// < 0b00111000001011000 | rk | rj | I5>
class FmtPRELDX<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> rk;
bits<5> rj;
bits<5> imm5;
let Inst{31-15} = 0b00111000001011000;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = imm5;
}
// FmtCSR
// <opcode[12:5] | csr_num | opcode[4:0] | rd>
class FmtCSR<bits<13> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<14> csr_num;
bits<5> rd;
let Inst{31-24} = op{12-5};
let Inst{23-10} = csr_num;
let Inst{9-5} = op{4-0};
let Inst{4-0} = rd;
}
// FmtCSRXCHG
// <opcode | csr_num | rj | rd>
class FmtCSRXCHG<bits<8> op, dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<14> csr_num;
bits<5> rj;
bits<5> rd;
let Inst{31-24} = op;
let Inst{23-10} = csr_num;
let Inst{9-5} = rj;
let Inst{4-0} = rd;
}
// FmtCACOP
// <0b0000011000 | I12 | rj | I5>
class FmtCACOP<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<12> imm12;
bits<5> rj;
bits<5> op;
let Inst{31-22} = 0b0000011000;
let Inst{21-10} = imm12;
let Inst{9-5} = rj;
let Inst{4-0} = op;
}
// FmtIMM32
// <I32>
class FmtI32<bits<32> op, string opstr, list<dag> pattern = []>
: LAInst<(outs), (ins), opstr, "", pattern> {
let Inst{31-0} = op;
}
// FmtINVTLB
// <0b00000110010010011 | rk | rj | I5>
class FmtINVTLB<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<5> rk;
bits<5> rj;
bits<5> op;
let Inst{31-15} = 0b00000110010010011;
let Inst{14-10} = rk;
let Inst{9-5} = rj;
let Inst{4-0} = op;
}
// FmtLDPTE
// <0b00000110010001 | seq | rj | 00000>
class FmtLDPTE<dag outs, dag ins, string opcstr, string opnstr,
list<dag> pattern = []>
: LAInst<outs, ins, opcstr, opnstr, pattern> {
bits<8> seq;
bits<5> rj;
let Inst{31-18} = 0b00000110010001;
let Inst{17-10} = seq;
let Inst{9-5} = rj;
let Inst{4-0} = 0b00000;
}
|