[mlir] Fix typo in test vector transform pass descriptions (#118194)
[llvm-project.git] / llvm / lib / Target / ARC / ARCRegisterInfo.td
blob4b686e4bda64d76a404e8d5225dc93d0439a4922
1 //===- ARCRegisterInfo.td - ARC Register defs --------------*- tablegen -*-===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
9 //===----------------------------------------------------------------------===//
10 //  Declarations that describe the ARC register file
11 //===----------------------------------------------------------------------===//
13 class ARCReg<string n, list<string> altNames> : Register<n, altNames> {
14   field bits<6> HwEncoding;
15   let Namespace = "ARC";
18 // Registers are identified with 6-bit ID numbers.
19 // Core - 32-bit core registers
20 class Core<int num, string n, list<string>altNames=[]> : ARCReg<n, altNames> {
21   let HWEncoding = num;
24 // Auxilary register
25 class Aux<int num, string n, list<string> altNames=[]> : ARCReg<n, altNames> {
26   let HWEncoding = num;
29 // Integer registers
30 foreach i = 0 - 3 in
31   def R#i : Core<i, "%r"#i>, DwarfRegNum<[i]>;
33 let CostPerUse=[1] in {
34   foreach i = 4 - 11 in
35     def R#i : Core<i, "%r"#i>, DwarfRegNum<[i]>;
38 foreach i = 12 - 15 in
39   def R#i : Core<i, "%r"#i>, DwarfRegNum<[i]>;
41 let CostPerUse=[1] in {
43   foreach i = 16 - 25 in
44     def R#i : Core<i, "%r"#i>, DwarfRegNum<[i]>;
46   def GP : Core<26, "%gp",["%r26"]>, DwarfRegNum<[26]>;
47   def FP : Core<27, "%fp", ["%r27"]>, DwarfRegNum<[27]>;
48   def SP : Core<28, "%sp", ["%r28"]>, DwarfRegNum<[28]>;
49   def ILINK : Core<29, "%ilink">, DwarfRegNum<[29]>;
50   def R30 : Core<30, "%r30">, DwarfRegNum<[30]>;
51   def BLINK : Core<31, "%blink">, DwarfRegNum<[31]>;
53   // Define extended core registers R32..R63
54   foreach i = 32 - 63 in
55     def R#i : Core<i, "%r"#i>, DwarfRegNum<[i]>;
58 // Auxilary registers
59 let CostPerUse=[1] in {
60   def STATUS32 : Aux<10, "status32">; // No DwarfRegNum defined in the ARC ABI
63 def GPR32: RegisterClass<"ARC", [i32], 32,
64   (add (sequence "R%u", 0, 25), GP, FP, SP, ILINK, R30, BLINK, (sequence "R%u", 32, 63))> {
65   let AltOrders=[(add (sequence "R%u", 0, 25), GP, FP, SP, ILINK, R30, BLINK)];
66   let AltOrderSelect = [{
67       // When referenced in a C++ code block like this
68       // 0 is all Core32 regs
69       // 1 is AltOrders[0]
70       // 2 is AltOrders[1] and so on
71       return 1;
72     }];
75 def SREG : RegisterClass<"ARC", [i32], 1, (add STATUS32)>;
77 def GPR_S : RegisterClass<"ARC", [i32], 8,
78   (add R0, R1, R2, R3, R12, R13, R14, R15)>;