File: CSKYInstrFormats.td

package info (click to toggle)
llvm-toolchain-14 1%3A14.0.6-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,496,180 kB
  • sloc: cpp: 5,593,972; ansic: 986,872; asm: 585,869; python: 184,223; objc: 72,530; lisp: 31,119; f90: 27,793; javascript: 9,780; pascal: 9,762; sh: 9,482; perl: 7,468; ml: 5,432; awk: 3,523; makefile: 2,538; xml: 953; cs: 573; fortran: 567
file content (679 lines) | stat: -rw-r--r-- 22,030 bytes parent folder | download | duplicates (3)
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
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
//===-- CSKYInstrFormats.td - CSKY Instruction 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
//
//===----------------------------------------------------------------------===//

class AddrMode<bits<5> val> {
  bits<5> Value = val;
}

def AddrModeNone : AddrMode<0>;
def AddrMode32B : AddrMode<1>;   // ld32.b, ld32.bs, st32.b, st32.bs, +4kb
def AddrMode32H : AddrMode<2>;   // ld32.h, ld32.hs, st32.h, st32.hs, +8kb
def AddrMode32WD : AddrMode<3>;  // ld32.w, st32.w, ld32.d, st32.d, +16kb
def AddrMode16B : AddrMode<4>;   // ld16.b, +32b
def AddrMode16H : AddrMode<5>;   // ld16.h, +64b
def AddrMode16W : AddrMode<6>;   // ld16.w, +128b or +1kb
def AddrMode32SDF : AddrMode<7>; // flds, fldd, +1kb

class CSKYInst<AddrMode am, int sz, dag outs, dag ins, string asmstr,
               list<dag> pattern> : Instruction {
  let Namespace = "CSKY";
  int Size = sz;
  AddrMode AM = am;
  field bits<32> SoftFail = 0;
  let OutOperandList = outs;
  let InOperandList = ins;
  let AsmString = asmstr;
  let Pattern = pattern;
  let Itinerary = NoItinerary;
  let TSFlags{4 - 0} = AM.Value;
}

class CSKYPseudo<dag outs, dag ins, string asmstr, list<dag> pattern>
    : CSKYInst<AddrModeNone, 0, outs, ins, asmstr, pattern> {
  let isCodeGenOnly = 1;
  let isPseudo = 1;
}

class CSKY32Inst<AddrMode am, bits<6> opcode, dag outs, dag ins, string asmstr,
                 list<dag> pattern>
    : CSKYInst<am, 4, outs, ins, asmstr, pattern> {
  field bits<32> Inst;
  let Inst{31 - 26} = opcode;
}

class CSKY16Inst<AddrMode am, dag outs, dag ins, string asmstr, list<dag> pattern>
  : CSKYInst<am, 2, outs, ins, asmstr, pattern> {
  field bits<16> Inst;
}

// CSKY 32-bit instruction
// Format< OP[6] | Offset[26] >
// Instruction(1): bsr32
class J<bits<6> opcode, dag outs, dag ins, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, opcode, outs, ins, !strconcat(op, "\t$offset"),
                 pattern> {
  bits<26> offset;
  let Inst{25 - 0} = offset;
  let isCall = 1;
  let Defs = [ R15 ];
}

// Format< OP[6] | RZ[5] | SOP[3] | OFFSET[18] >
// Instructions(7): grs, lrs32.b, lrs32.h, lrs32.w, srs32.b, srs32.h, srs32.w
class I_18_Z_L<bits<3> sop, string asm, dag outs, dag ins, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x33, outs, ins, asm, pattern> {
  bits<5> rz;
  bits<18> offset;
  let Inst{25 - 21} = rz;
  let Inst{20 - 18} = sop;
  let Inst{17 - 0} = offset;
}

// Format< OP[6] | RZ[5] | RX[5] | IMM[16] >
// Instructions(1): ori32
class I_16_ZX<string op, ImmLeaf ImmType, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x3b,
                 (outs GPR:$rz), (ins GPR:$rx,ImmType:$imm16),
                 !strconcat(op, "\t$rz, $rx, $imm16"), pattern> {
  bits<5> rz;
  bits<5> rx;
  bits<16> imm16;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 0} = imm16;
}

// Format< OP[6] | SOP[5] | RZ[5] | IMM[16] >
// Instructions(3): movi32, movih32, (bgeni32)
class I_16_MOV<bits<5> sop, string op, ImmLeaf ImmType>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs GPR:$rz), (ins ImmType:$imm16),
                 !strconcat(op, "\t$rz, $imm16"),
                 [(set GPR:$rz, ImmType:$imm16)]> {
  bits<5> rz;
  bits<16> imm16;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rz;
  let Inst{15 - 0} = imm16;
  let isReMaterializable = 1;
  let isAsCheapAsAMove = 1;
  let isMoveImm = 1;
}

// Format< OP[6] | SOP[5] | RZ[5] | OFFSET[16] >
// Instructions(1): lrw32
class I_16_Z_L<bits<5> sop, string op, dag ins, list<dag> pattern>
  : CSKY32Inst<AddrModeNone, 0x3a, (outs GPR:$rz), ins,
  !strconcat(op, "\t$rz, $imm16"), pattern> {
  bits<5> rz;
  bits<16> imm16;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rz;
  let Inst{15 - 0} = imm16;
}

// Format< OP[6] | SOP[5] | 00000[5] | OFFSET[16] >
// Instructions(5): bt32, bf32, br32, jmpi32, jsri32
class I_16_L<bits<5> sop, dag outs, dag ins, string asm, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x3a, outs, ins, asm, pattern> {
  bits<16> imm16;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = 0;
  let Inst{15 - 0} = imm16;
}

// Format< OP[6] | SOP[5] | RX[5] | 0000000000000000[16] >
// Instructions(2): jmp32, jsr32
class I_16_JX<bits<5> sop, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs), (ins GPR:$rx),
                 !strconcat(op, "\t$rx"), pattern> {
  bits<5> rx;
  bits<16> imm16;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rx;
  let Inst{15 - 0} = 0;
}

// Format< OP[6] | SOP[5] | RX[5] | 00000000000000[14] | IMM[2] >
// Instructions(1): jmpix32
class I_16_J_XI<bits<5> sop, string op, Operand operand, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs),
                 (ins GPR:$rx, operand:$imm2),
                 !strconcat(op, "\t$rx, $imm2"), pattern> {
  bits<5> rx;
  bits<2> imm2;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rx;
  let Inst{15 - 2} = 0;
  let Inst{1 - 0} = imm2;
}

// Format< OP[6] | SOP[5] | PCODE[5] | 0000000000000000[16] >
// Instructions(1): rts32
class I_16_RET<bits<5> sop, bits<5> pcode, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs), (ins), op, pattern> {
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = pcode;
  let Inst{15 - 0} = 0;
  let isTerminator = 1;
  let isReturn = 1;
  let isBarrier = 1;
  let Uses = [ R15 ];
}

// Format< OP[6] | SOP[5] | RX[5] | IMM16[16] >
// Instructions(3): cmpnei32, cmphsi32, cmplti32
class I_16_X<bits<5> sop, string op, Operand operand>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs CARRY:$ca),
    (ins GPR:$rx, operand:$imm16), !strconcat(op, "\t$rx, $imm16"), []> {
  bits<16> imm16;
  bits<5> rx;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rx;
  let Inst{15 - 0} = imm16;
  let isCompare = 1;
}

// Format< OP[6] | SOP[5] | RX[5] | OFFSET[16] >
// Instructions(7): bez32, bnez32, bnezad32, bhz32, blsz32, blz32, bhsz32
class I_16_X_L<bits<5> sop, string op, Operand operand>
    : CSKY32Inst<AddrModeNone, 0x3a, (outs), (ins GPR:$rx, operand:$imm16),
                 !strconcat(op, "\t$rx, $imm16"), []> {
  bits<5> rx;
  bits<16> imm16;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = rx;
  let Inst{15 - 0} = imm16;
  let isBranch = 1;
  let isTerminator = 1;
}

// Format< OP[6] | RZ[5] | RX[5] | SOP[4] | IMM[12] >
// Instructions(5): addi32, subi32, andi32, andni32, xori32
class I_12<bits<4> sop, string op, SDNode node, ImmLeaf ImmType>
    : CSKY32Inst<AddrModeNone, 0x39, (outs GPR:$rz),
    (ins GPR:$rx, ImmType:$imm12), !strconcat(op, "\t$rz, $rx, $imm12"),
    [(set GPR:$rz, (node GPR:$rx, ImmType:$imm12))]> {
  bits<5> rz;
  bits<5> rx;
  bits<12> imm12;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 12} = sop;
  let Inst{11 - 0} = imm12;
}

class I_LDST<AddrMode am, bits<6> opcode, bits<4> sop, dag outs, dag ins,
             string op, list<dag> pattern>
    : CSKY32Inst<am, opcode, outs, ins, !strconcat(op, "\t$rz, ($rx, ${imm12})"),
                 pattern> {
  bits<5> rx;
  bits<5> rz;
  bits<12> imm12;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 12} = sop;
  let Inst{11 - 0} = imm12;
}

class I_PLDR<AddrMode am, bits<6> opcode, bits<4> sop, dag outs, dag ins,
             string op, list<dag> pattern>
    : CSKY32Inst<am, opcode, outs, ins, !strconcat(op, "\t($rx, ${imm12})"),
                 pattern> {
  bits<5> rx;
  bits<12> imm12;
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = rx;
  let Inst{15 - 12} = sop;
  let Inst{11 - 0} = imm12;
}


// Format< OP[6] | RZ[5] | RX[5] | SOP[4] | OFFSET[12] >
// Instructions(6): ld32.b, ld32.bs, ld32.h, ld32.hs, ld32.w
class I_LD<AddrMode am, bits<4> sop, string op, Operand operand>
    : I_LDST<am, 0x36, sop,
    (outs GPR:$rz), (ins GPR:$rx, operand:$imm12), op, []>;

// Format< OP[6] | RZ[5] | RX[5] | SOP[4] | OFFSET[12] >
// Instructions(4): st32.b, st32.h, st32.w
class I_ST<AddrMode am, bits<4> sop, string op, Operand operand>
    : I_LDST<am, 0x37, sop, (outs),
    (ins GPR:$rz, GPR:$rx, operand:$imm12), op, []>;

// Format< OP[6] | SOP[5] | PCODE[5] | 0000[4] | 000 | R28 | LIST2[3] | R15 |
// LIST1[4] >
// Instructions(2): push32, pop32
class I_12_PP<bits<5> sop, bits<5> pcode, dag outs, dag ins, string op>
    : CSKY32Inst<AddrModeNone, 0x3a, outs, ins, !strconcat(op, "\t$regs"), []> {
  bits<12> regs;
  let Inst{25 - 21} = sop;
  let Inst{20 - 16} = pcode;
  let Inst{15 - 12} = 0;
  let Inst{11 - 0} = regs;
  let Uses = [R14];
  let Defs = [R14];
}

// Format< OP[6] | RZ[5] | RX[5] | SOP[6] | PCODE[5] | IMM[5]>
// Instructions(4): incf32, inct32, decf32, dect32
class I_5_ZX<bits<6> sop, bits<5> pcode, string op, ImmLeaf ImmType,
             list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz),
    (ins CARRY:$cond, GPR:$false, GPR:$rx, ImmType:$imm5),
    !strconcat(op, "\t$rz, $rx, $imm5"), pattern> {
  bits<5> rz;
  bits<5> rx;
  bits<5> imm5;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = imm5;
  let Constraints = "$rz = $false";
}

// Format< OP[6] | IMM[5] | RX[5] | SOP[6] | PCODE[5] | RZ[5]>
// Instructions(13): decgt32, declt32, decne32, lsli32, lslc32, lsri32
//                   lsrc32, asri32, asrc32, rotli32, xsr32, bclri32, bseti32
class I_5_XZ<bits<6> sop, bits<5> pcode, string op, dag outs, dag ins,
             list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, outs, ins,
                 !strconcat(op, "\t$rz, $rx, $imm5"), pattern> {
  bits<5> imm5;
  bits<5> rx;
  bits<5> rz;
  let Inst{25 - 21} = imm5;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

// mtcr32, mfcr32
class I_5_XZ_CR<bits<6> sop, bits<5> pcode, string opStr, dag outs, dag ins,
             list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x30, outs, ins, opStr, pattern> {
  bits<5> sel;
  bits<5> rx;
  bits<5> cr;
  let Inst{25 - 21} = sel;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = cr;
}

// sync
class I_5_XZ_SYNC<bits<6> sop, bits<5> pcode, string opStr, bits<1> S, bits<1> I>
    : CSKY32Inst<AddrModeNone, 0x30, (outs), (ins), opStr, []> {
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
  let Inst{25} = S;
  let Inst{21} = I;

}

// Priviledged Instructions
class I_5_XZ_PRIVI<bits<6> sop, bits<5> pcode, string opStr>
    : CSKY32Inst<AddrModeNone, 0x30, (outs), (ins), opStr, []> {
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
}

class I_CP<bits<4> sop, dag outs, dag ins, string opStr>
    : CSKY32Inst<AddrModeNone, 0x3f, outs, ins, opStr, []> {
  bits<5> cpid;
  bits<12> usdef;
  let Inst{25 - 21} = cpid;
  let Inst{20 - 16} = 0;
  let Inst{15 - 12} = sop;
  let Inst{11 - 0} = usdef;
}

class I_CPOP<dag outs, dag ins, string opStr>
    : CSKY32Inst<AddrModeNone, 0x3f, outs, ins, opStr, []> {
  bits<5> cpid;
  bits<20> usdef;
  let Inst{25 - 21} = cpid;
  let Inst{20 - 16} = usdef{19-15};
  let Inst{15} = 1;
  let Inst{14 - 0} = usdef{14-0};
}

class I_CP_Z<bits<4> sop, dag outs, dag ins, string opStr>
    : CSKY32Inst<AddrModeNone, 0x3f, outs, ins, opStr, []> {
  bits<5> cpid;
  bits<12> usdef;
  bits<5> rz;

  let Inst{25 - 21} = cpid;
  let Inst{20 - 16} = rz;
  let Inst{15 - 12} = sop;
  let Inst{11 - 0} = usdef;
}

class I_5_CACHE<bits<6> sop, bits<5> pcode, string opStr>
    : CSKY32Inst<AddrModeNone, 0x30, (outs), (ins), opStr, []> {
  let Inst{25 - 21} = pcode;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = 0b00001;
  let Inst{4 - 0} = 0;
}

class I_5_X_CACHE<bits<6> sop, bits<5> pcode, string opStr>
    : CSKY32Inst<AddrModeNone, 0x30, (outs), (ins GPR:$rx), opStr #"\t$rx", []> {
  bits<5> rx;

  let Inst{25 - 21} = pcode;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = 0b00001;
  let Inst{4 - 0} = 0;
}

// Format< OP[6] | RY[5] | RX[5] | SOP[6] | PCODE[5] | IMM[5]>
// Instructions(2): ldm32, (ldq32), stm32, (stq32)
class I_5_YX<bits<6> opcode, bits<6> sop, dag outs, dag ins, string opStr, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, opcode, outs, ins, opStr, pattern> {
  bits<10> regs;
  bits<5> rx;

  let Inst{25 - 21} = regs{9 - 5}; // ry
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = 0b00001;
  let Inst{4 - 0} = regs{4 - 0}; // imm5
}

// Format< OP[6] | LSB[5] | RX[5] | SOP[6] | MSB[5] | RZ[5]>
// Instructions(6): zext32, zextb32, zexth32, sext32, sextb32, sexth32
class I_5_XZ_U<bits<6> sop, dag outs, dag ins, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, outs, ins, op #"\t$rz, $rx, $msb, $lsb",
                 pattern> {
  bits<5> rx;
  bits<5> rz;
  bits<5> msb;
  bits<5> lsb;
  let Inst{25 - 21} = lsb; // lsb
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = msb; // msb
  let Inst{4 - 0} = rz;
}

class I_5_XZ_INS<bits<6> sop, dag outs, dag ins, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, outs, ins, op #"\t$rz, $rx, $msb, $lsb",
                 pattern> {
  bits<5> rx;
  bits<5> rz;
  bits<5> msb;
  bits<5> lsb;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = msb;
  let Inst{4 - 0} = lsb;
}

// Format< OP[6] | LSB[5] | RX[5] | SOP[6] | MSB[5] | RZ[5]>
// Instructions(6): zext32, zextb32, zexth32, sext32, sextb32, sexth32
class I_5_XZ_U2<bits<6> sop, bits<5> lsb, bits<5> msb, dag outs, dag ins,
  string op, list<dag> pattern>
  : CSKY32Inst<AddrModeNone, 0x31, outs, ins, !strconcat(op, "\t$rz, $rx"), pattern> {
  bits<5> rx;
  bits<5> rz;
  let Inst{25 - 21} = lsb;     // lsb
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = msb;       // msb
  let Inst{4 - 0} = rz;
}

// Format< OP[6] | RZ[5] | RX[5] | SOP[6] | SIZE[5] | LSB[5]>
// Instructions(1): ins32
class I_5_ZX_U<bits<6> sop, string op, Operand operand, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz), (ins operand:$size_lsb),
                 !strconcat(op, "\t$rz, operand:$size_lsb"), pattern> {
  bits<10> size_lsb;
  bits<5> rz;
  bits<5> rx;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = size_lsb{9 - 5}; // size
  let Inst{4 - 0} = size_lsb{4 - 0}; // lsb
}

// sextb, sexth
class I_5_XZ_US<bits<6> sop, bits<5> lsb, bits<5> msb, string op,
  SDNode opnode, ValueType type>
  : I_5_XZ_U2<sop, lsb, msb, (outs GPR:$rz), (ins GPR:$rx), op,
  [(set GPR:$rz, (opnode GPR:$rx, type))]>;

class I_5_XZ_UZ<bits<6> sop, bits<5> lsb, bits<5> msb, string op, int v>
  : I_5_XZ_U2<sop, lsb, msb, (outs GPR:$rz), (ins GPR:$rx), op,
  [(set GPR:$rz, (and GPR:$rx, (i32 v)))]>;

// Format< OP[6] | IMM[5] | RX[5] | SOP[6] | PCODE[5] | 00000 >
// Instructions(1): btsti32
class I_5_X<bits<6> sop, bits<5> pcode, string op, ImmLeaf ImmType,
            list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31,
    (outs CARRY:$ca), (ins GPR:$rx, ImmType:$imm5),
    !strconcat(op, "\t$rx, $imm5"), pattern> {
  bits<5> imm5;
  bits<5> rx;
  let Inst{25 - 21} = imm5;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
  let isCompare = 1;
}

// Format< OP[6] | IMM[5] | 00000[5] | SOP[6] | PCODE[5] | RZ[5]>
// Instructions(1): bmaski32
class I_5_Z<bits<6> sop, bits<5> pcode, string op, ImmLeaf ImmType,
            list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz), (ins ImmType:$imm5),
                 !strconcat(op, "\t$rz, $imm5"), pattern> {
  bits<5> imm5;
  bits<5> rz;
  let Inst{25 - 21} = imm5;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

class I_5_IMM5<bits<6> opcode, bits<6> sop, bits<5> pcode, string op, ImmLeaf ImmType,
            list<dag> pattern>
    : CSKY32Inst<AddrModeNone, opcode, (outs), (ins ImmType:$imm5),
                 !strconcat(op, "\t$imm5"), pattern> {
  bits<5> imm5;
  let Inst{25 - 21} = imm5;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
}

// Format< OP[6] | RY[5] | RX[5] | SOP[6] | PCODE[5] | RZ[5] >
// Instructions(24): addu32, addc32, subu32, subc32, (rsub32), ixh32, ixw32,
// ixd32, and32, andn32, or32, xor32, nor32, lsl32, lsr32, asr32, rotl32
// mult32, divu32, divs32, mul.(u/s)32, mula.32.l, mula.u32, mulall.s16.s
class R_YXZ<bits<6> opcode, bits<6> sop, bits<5> pcode, dag outs, dag ins,
            string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, opcode, outs, ins,
                 !strconcat(op, "\t$rz, $rx, $ry"), pattern> {
  bits<5> ry;
  bits<5> rx;
  bits<5> rz;
  let Inst{25 - 21} = ry;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

// R_YXZ instructions with simple pattern
// Output: GPR:rz
// Input: GPR:rx, GPR:ry
// Asm string: op rz, rx, ry
// Instructions: addu32, subu32, ixh32, ixw32, ixd32, and32, andn32, or32,
// xor32, nor32, lsl32, lsr32, asr32, mult32, divu32, divs32
class R_YXZ_SP_F1<bits<6> sop, bits<5> pcode, PatFrag opnode, string op,
  bit Commutable = 0> : R_YXZ<0x31, sop, pcode, (outs GPR:$rz),
  (ins GPR:$rx, GPR:$ry), op, [(set GPR:$rz, (opnode GPR:$rx, GPR:$ry))]> {
  let isCommutable = Commutable;
}

// Format< OP[6] | RY[5] | RX[5] | SOP[6] | PCODE[5] | RZ[5] >
// Instructions:(8) ldr32.b, ldr32.h, ldr32.bs, ldr32.hs, ldr32.w,
//                  str32.b, str32.h, str32.w
class R_YXZ_LDST<bits<6> opcode, bits<6> sop, dag outs,
                 dag ins, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, opcode, outs, ins,
                 op # "\t$rz, ($rx, $ry << ${imm})", pattern> {
  bits<5> rx;
  bits<5> ry;
  bits<5> rz;
  bits<5> imm;
  let Inst{25 - 21} = ry; // ry;
  let Inst{20 - 16} = rx; // rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = imm;  // pcode;
  let Inst{4 - 0} = rz;
}

class I_LDR<bits<6> sop, string op> : R_YXZ_LDST<0x34, sop,
  (outs GPR:$rz), (ins GPR:$rx, GPR:$ry, uimm_shift:$imm), op, []>;

class I_STR<bits<6> sop, string op> : R_YXZ_LDST<0x35, sop,
  (outs), (ins GPR:$rz, GPR:$rx, GPR:$ry, uimm_shift:$imm), op, []>;

// Format< OP[6] | RX[5] | RX[5] | SOP[6] | PCODE[5] | RZ[5] >
// Instructions:(1) not32
class R_XXZ<bits<6> sop, bits<5> pcode, dag outs, dag ins, string op,
            list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, outs, ins, !strconcat(op, "\t$rz, $rx"),
                 pattern> {
  bits<5> rx;
  bits<5> rz;
  let Inst{25 - 21} = rx;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

// Format< OP[6] | RY[5] | RX[5] | SOP[6] | PCODE[5] | 00000[5] >
// Instructions:(4) cmpne32, cmphs32, cmplt32, tst32
class R_YX<bits<6> sop, bits<5> pcode, string op>
    : CSKY32Inst<AddrModeNone, 0x31, (outs CARRY:$ca),
                 (ins GPR:$rx, GPR:$ry),
                 !strconcat(op, "\t$rx, $ry"), []> {
  bits<5> ry;
  bits<5> rx;
  let Inst{25 - 21} = ry;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
  let isCompare = 1;
}

// Format< OP[6] | 00000[5] | RX[5] | SOP[6] | PCODE[5] | RZ[5] >
// Instructions:(12)
//   mov32, xtrb0.32, xtrb1.32, xtrb2.32, xtrb3.32, brev32, revb32
//   revh32, abs32, ff0.32, ff1.32, bgenr32
class R_XZ<bits<6> sop, bits<5> pcode, string op>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz), (ins GPR:$rx),
                 !strconcat(op, "\t$rz, $rx"), []> {
  bits<5> rx;
  bits<5> rz;
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

// Format< OP[6] | RZ[5] | RX[5] | SOP[6] | PCODE[5] | 00000[5] >
// Instructions:(2) movf32, movt32
class R_ZX<bits<6> sop, bits<5> pcode, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz),
                 (ins CARRY:$ca, GPR:$rx, GPR:$false),
                 !strconcat(op, "\t$rz, $rx"), pattern> {
  bits<5> rz;
  bits<5> rx;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
  let Constraints = "$rz = $false";
  let isSelect = 1;
}

// Format< OP[6] | 00000[5] | RX[5] | SOP[6] | PCODE[5] | 00000[5] >
// Instructions:(1) tstnbz32
class R_X<bits<6> sop, bits<5> pcode, dag outs, dag ins, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, outs, ins, !strconcat(op, "\t$rx"), pattern> {
  bits<5> rx;
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = rx;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
}

// Format< OP[6] | 00000[5] | 00000[5] | SOP[6] | PCODE[5] | RZ[5] >
// Instructions:(2) mvc32, mvcv32
class R_Z_1<bits<6> sop, bits<5> pcode, string op>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz),
                 (ins CARRY:$ca), !strconcat(op, "\t$rz"), []> {
  bits<5> rz;
  let Inst{25 - 21} = 0;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = rz;
}

// Format< OP[6] | RZ[5] | 00000[5] | SOP[6] | PCODE[5] | 00000[5] >
// Instructions:(2) clrf32, clrt32
class R_Z_2<bits<6> sop, bits<5> pcode, string op, list<dag> pattern>
    : CSKY32Inst<AddrModeNone, 0x31, (outs GPR:$rz),
    (ins CARRY:$ca, GPR:$false), !strconcat(op, "\t$rz"), []> {
  bits<5> rz;
  let Inst{25 - 21} = rz;
  let Inst{20 - 16} = 0;
  let Inst{15 - 10} = sop;
  let Inst{9 - 5} = pcode;
  let Inst{4 - 0} = 0;
  let Constraints = "$rz = $false";
}

class BAR<bits<5> sop, string op, bits<1> signed>
  : CSKY32Inst<AddrModeNone, 0x30, (outs), (ins), op, []> {
  let Inst{25} = signed;
  let Inst{24 - 16} = 0;
  let Inst{15 - 5} = 0x421;
  let Inst{4 - 0} = sop;
  let hasSideEffects = 1;
  let mayLoad = 0;
  let mayStore = 0;
}