10b57cec5SDimitry Andric//===-- RISCVRegisterInfo.td - RISC-V Register defs --------*- tablegen -*-===// 20b57cec5SDimitry Andric// 30b57cec5SDimitry Andric// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 40b57cec5SDimitry Andric// See https://llvm.org/LICENSE.txt for license information. 50b57cec5SDimitry Andric// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 60b57cec5SDimitry Andric// 70b57cec5SDimitry Andric//===----------------------------------------------------------------------===// 80b57cec5SDimitry Andric 90b57cec5SDimitry Andric//===----------------------------------------------------------------------===// 100b57cec5SDimitry Andric// Declarations that describe the RISC-V register files 110b57cec5SDimitry Andric//===----------------------------------------------------------------------===// 120b57cec5SDimitry Andric 130b57cec5SDimitry Andriclet Namespace = "RISCV" in { 140b57cec5SDimitry Andricclass RISCVReg<bits<5> Enc, string n, list<string> alt = []> : Register<n> { 150b57cec5SDimitry Andric let HWEncoding{4-0} = Enc; 160b57cec5SDimitry Andric let AltNames = alt; 170b57cec5SDimitry Andric} 180b57cec5SDimitry Andric 190b57cec5SDimitry Andricclass RISCVReg32<bits<5> Enc, string n, list<string> alt = []> : Register<n> { 200b57cec5SDimitry Andric let HWEncoding{4-0} = Enc; 210b57cec5SDimitry Andric let AltNames = alt; 220b57cec5SDimitry Andric} 230b57cec5SDimitry Andric 240b57cec5SDimitry Andric// Because RISCVReg64 register have AsmName and AltNames that alias with their 250b57cec5SDimitry Andric// 32-bit sub-register, RISCVAsmParser will need to coerce a register number 260b57cec5SDimitry Andric// from a RISCVReg32 to the equivalent RISCVReg64 when appropriate. 270b57cec5SDimitry Andricdef sub_32 : SubRegIndex<32>; 280b57cec5SDimitry Andricclass RISCVReg64<RISCVReg32 subreg> : Register<""> { 290b57cec5SDimitry Andric let HWEncoding{4-0} = subreg.HWEncoding{4-0}; 300b57cec5SDimitry Andric let SubRegs = [subreg]; 310b57cec5SDimitry Andric let SubRegIndices = [sub_32]; 320b57cec5SDimitry Andric let AsmName = subreg.AsmName; 330b57cec5SDimitry Andric let AltNames = subreg.AltNames; 340b57cec5SDimitry Andric} 350b57cec5SDimitry Andric 360b57cec5SDimitry Andricdef ABIRegAltName : RegAltNameIndex; 370b57cec5SDimitry Andric} // Namespace = "RISCV" 380b57cec5SDimitry Andric 390b57cec5SDimitry Andric// Integer registers 400b57cec5SDimitry Andric// CostPerUse is set higher for registers that may not be compressible as they 410b57cec5SDimitry Andric// are not part of GPRC, the most restrictive register class used by the 420b57cec5SDimitry Andric// compressed instruction set. This will influence the greedy register 430b57cec5SDimitry Andric// allocator to reduce the use of registers that can't be encoded in 16 bit 440b57cec5SDimitry Andric// instructions. This affects register allocation even when compressed 450b57cec5SDimitry Andric// instruction isn't targeted, we see no major negative codegen impact. 460b57cec5SDimitry Andric 470b57cec5SDimitry Andriclet RegAltNameIndices = [ABIRegAltName] in { 480b57cec5SDimitry Andric def X0 : RISCVReg<0, "x0", ["zero"]>, DwarfRegNum<[0]>; 490b57cec5SDimitry Andric let CostPerUse = 1 in { 500b57cec5SDimitry Andric def X1 : RISCVReg<1, "x1", ["ra"]>, DwarfRegNum<[1]>; 510b57cec5SDimitry Andric def X2 : RISCVReg<2, "x2", ["sp"]>, DwarfRegNum<[2]>; 520b57cec5SDimitry Andric def X3 : RISCVReg<3, "x3", ["gp"]>, DwarfRegNum<[3]>; 530b57cec5SDimitry Andric def X4 : RISCVReg<4, "x4", ["tp"]>, DwarfRegNum<[4]>; 540b57cec5SDimitry Andric def X5 : RISCVReg<5, "x5", ["t0"]>, DwarfRegNum<[5]>; 550b57cec5SDimitry Andric def X6 : RISCVReg<6, "x6", ["t1"]>, DwarfRegNum<[6]>; 560b57cec5SDimitry Andric def X7 : RISCVReg<7, "x7", ["t2"]>, DwarfRegNum<[7]>; 570b57cec5SDimitry Andric } 580b57cec5SDimitry Andric def X8 : RISCVReg<8, "x8", ["s0", "fp"]>, DwarfRegNum<[8]>; 590b57cec5SDimitry Andric def X9 : RISCVReg<9, "x9", ["s1"]>, DwarfRegNum<[9]>; 600b57cec5SDimitry Andric def X10 : RISCVReg<10,"x10", ["a0"]>, DwarfRegNum<[10]>; 610b57cec5SDimitry Andric def X11 : RISCVReg<11,"x11", ["a1"]>, DwarfRegNum<[11]>; 620b57cec5SDimitry Andric def X12 : RISCVReg<12,"x12", ["a2"]>, DwarfRegNum<[12]>; 630b57cec5SDimitry Andric def X13 : RISCVReg<13,"x13", ["a3"]>, DwarfRegNum<[13]>; 640b57cec5SDimitry Andric def X14 : RISCVReg<14,"x14", ["a4"]>, DwarfRegNum<[14]>; 650b57cec5SDimitry Andric def X15 : RISCVReg<15,"x15", ["a5"]>, DwarfRegNum<[15]>; 660b57cec5SDimitry Andric let CostPerUse = 1 in { 670b57cec5SDimitry Andric def X16 : RISCVReg<16,"x16", ["a6"]>, DwarfRegNum<[16]>; 680b57cec5SDimitry Andric def X17 : RISCVReg<17,"x17", ["a7"]>, DwarfRegNum<[17]>; 690b57cec5SDimitry Andric def X18 : RISCVReg<18,"x18", ["s2"]>, DwarfRegNum<[18]>; 700b57cec5SDimitry Andric def X19 : RISCVReg<19,"x19", ["s3"]>, DwarfRegNum<[19]>; 710b57cec5SDimitry Andric def X20 : RISCVReg<20,"x20", ["s4"]>, DwarfRegNum<[20]>; 720b57cec5SDimitry Andric def X21 : RISCVReg<21,"x21", ["s5"]>, DwarfRegNum<[21]>; 730b57cec5SDimitry Andric def X22 : RISCVReg<22,"x22", ["s6"]>, DwarfRegNum<[22]>; 740b57cec5SDimitry Andric def X23 : RISCVReg<23,"x23", ["s7"]>, DwarfRegNum<[23]>; 750b57cec5SDimitry Andric def X24 : RISCVReg<24,"x24", ["s8"]>, DwarfRegNum<[24]>; 760b57cec5SDimitry Andric def X25 : RISCVReg<25,"x25", ["s9"]>, DwarfRegNum<[25]>; 770b57cec5SDimitry Andric def X26 : RISCVReg<26,"x26", ["s10"]>, DwarfRegNum<[26]>; 780b57cec5SDimitry Andric def X27 : RISCVReg<27,"x27", ["s11"]>, DwarfRegNum<[27]>; 790b57cec5SDimitry Andric def X28 : RISCVReg<28,"x28", ["t3"]>, DwarfRegNum<[28]>; 800b57cec5SDimitry Andric def X29 : RISCVReg<29,"x29", ["t4"]>, DwarfRegNum<[29]>; 810b57cec5SDimitry Andric def X30 : RISCVReg<30,"x30", ["t5"]>, DwarfRegNum<[30]>; 820b57cec5SDimitry Andric def X31 : RISCVReg<31,"x31", ["t6"]>, DwarfRegNum<[31]>; 830b57cec5SDimitry Andric } 840b57cec5SDimitry Andric} 850b57cec5SDimitry Andric 860b57cec5SDimitry Andricdef XLenVT : ValueTypeByHwMode<[RV32, RV64, DefaultMode], 870b57cec5SDimitry Andric [i32, i64, i32]>; 880b57cec5SDimitry Andric 890b57cec5SDimitry Andric// The order of registers represents the preferred allocation sequence. 900b57cec5SDimitry Andric// Registers are listed in the order caller-save, callee-save, specials. 910b57cec5SDimitry Andricdef GPR : RegisterClass<"RISCV", [XLenVT], 32, (add 920b57cec5SDimitry Andric (sequence "X%u", 10, 17), 930b57cec5SDimitry Andric (sequence "X%u", 5, 7), 940b57cec5SDimitry Andric (sequence "X%u", 28, 31), 950b57cec5SDimitry Andric (sequence "X%u", 8, 9), 960b57cec5SDimitry Andric (sequence "X%u", 18, 27), 970b57cec5SDimitry Andric (sequence "X%u", 0, 4) 980b57cec5SDimitry Andric )> { 990b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1000b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1010b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1020b57cec5SDimitry Andric} 1030b57cec5SDimitry Andric 104*8bcb0991SDimitry Andricdef GPRX0 : RegisterClass<"RISCV", [XLenVT], 32, (add X0)> { 105*8bcb0991SDimitry Andric let RegInfos = RegInfoByHwMode< 106*8bcb0991SDimitry Andric [RV32, RV64, DefaultMode], 107*8bcb0991SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 108*8bcb0991SDimitry Andric} 109*8bcb0991SDimitry Andric 1100b57cec5SDimitry Andric// The order of registers represents the preferred allocation sequence. 1110b57cec5SDimitry Andric// Registers are listed in the order caller-save, callee-save, specials. 1120b57cec5SDimitry Andricdef GPRNoX0 : RegisterClass<"RISCV", [XLenVT], 32, (add 1130b57cec5SDimitry Andric (sequence "X%u", 10, 17), 1140b57cec5SDimitry Andric (sequence "X%u", 5, 7), 1150b57cec5SDimitry Andric (sequence "X%u", 28, 31), 1160b57cec5SDimitry Andric (sequence "X%u", 8, 9), 1170b57cec5SDimitry Andric (sequence "X%u", 18, 27), 1180b57cec5SDimitry Andric (sequence "X%u", 1, 4) 1190b57cec5SDimitry Andric )> { 1200b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1210b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1220b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1230b57cec5SDimitry Andric} 1240b57cec5SDimitry Andric 1250b57cec5SDimitry Andricdef GPRNoX0X2 : RegisterClass<"RISCV", [XLenVT], 32, (add 1260b57cec5SDimitry Andric (sequence "X%u", 10, 17), 1270b57cec5SDimitry Andric (sequence "X%u", 5, 7), 1280b57cec5SDimitry Andric (sequence "X%u", 28, 31), 1290b57cec5SDimitry Andric (sequence "X%u", 8, 9), 1300b57cec5SDimitry Andric (sequence "X%u", 18, 27), 1310b57cec5SDimitry Andric X1, X3, X4 1320b57cec5SDimitry Andric )> { 1330b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1340b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1350b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1360b57cec5SDimitry Andric} 1370b57cec5SDimitry Andric 1380b57cec5SDimitry Andricdef GPRC : RegisterClass<"RISCV", [XLenVT], 32, (add 1390b57cec5SDimitry Andric (sequence "X%u", 10, 15), 1400b57cec5SDimitry Andric (sequence "X%u", 8, 9) 1410b57cec5SDimitry Andric )> { 1420b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1430b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1440b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1450b57cec5SDimitry Andric} 1460b57cec5SDimitry Andric 1470b57cec5SDimitry Andric// For indirect tail calls, we can't use callee-saved registers, as they are 1480b57cec5SDimitry Andric// restored to the saved value before the tail call, which would clobber a call 1490b57cec5SDimitry Andric// address. 1500b57cec5SDimitry Andricdef GPRTC : RegisterClass<"RISCV", [XLenVT], 32, (add 1510b57cec5SDimitry Andric (sequence "X%u", 5, 7), 1520b57cec5SDimitry Andric (sequence "X%u", 10, 17), 1530b57cec5SDimitry Andric (sequence "X%u", 28, 31) 1540b57cec5SDimitry Andric )> { 1550b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1560b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1570b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1580b57cec5SDimitry Andric} 1590b57cec5SDimitry Andric 1600b57cec5SDimitry Andricdef SP : RegisterClass<"RISCV", [XLenVT], 32, (add X2)> { 1610b57cec5SDimitry Andric let RegInfos = RegInfoByHwMode< 1620b57cec5SDimitry Andric [RV32, RV64, DefaultMode], 1630b57cec5SDimitry Andric [RegInfo<32,32,32>, RegInfo<64,64,64>, RegInfo<32,32,32>]>; 1640b57cec5SDimitry Andric} 1650b57cec5SDimitry Andric 1660b57cec5SDimitry Andric// Floating point registers 1670b57cec5SDimitry Andriclet RegAltNameIndices = [ABIRegAltName] in { 168*8bcb0991SDimitry Andric def F0_F : RISCVReg32<0, "f0", ["ft0"]>, DwarfRegNum<[32]>; 169*8bcb0991SDimitry Andric def F1_F : RISCVReg32<1, "f1", ["ft1"]>, DwarfRegNum<[33]>; 170*8bcb0991SDimitry Andric def F2_F : RISCVReg32<2, "f2", ["ft2"]>, DwarfRegNum<[34]>; 171*8bcb0991SDimitry Andric def F3_F : RISCVReg32<3, "f3", ["ft3"]>, DwarfRegNum<[35]>; 172*8bcb0991SDimitry Andric def F4_F : RISCVReg32<4, "f4", ["ft4"]>, DwarfRegNum<[36]>; 173*8bcb0991SDimitry Andric def F5_F : RISCVReg32<5, "f5", ["ft5"]>, DwarfRegNum<[37]>; 174*8bcb0991SDimitry Andric def F6_F : RISCVReg32<6, "f6", ["ft6"]>, DwarfRegNum<[38]>; 175*8bcb0991SDimitry Andric def F7_F : RISCVReg32<7, "f7", ["ft7"]>, DwarfRegNum<[39]>; 176*8bcb0991SDimitry Andric def F8_F : RISCVReg32<8, "f8", ["fs0"]>, DwarfRegNum<[40]>; 177*8bcb0991SDimitry Andric def F9_F : RISCVReg32<9, "f9", ["fs1"]>, DwarfRegNum<[41]>; 178*8bcb0991SDimitry Andric def F10_F : RISCVReg32<10,"f10", ["fa0"]>, DwarfRegNum<[42]>; 179*8bcb0991SDimitry Andric def F11_F : RISCVReg32<11,"f11", ["fa1"]>, DwarfRegNum<[43]>; 180*8bcb0991SDimitry Andric def F12_F : RISCVReg32<12,"f12", ["fa2"]>, DwarfRegNum<[44]>; 181*8bcb0991SDimitry Andric def F13_F : RISCVReg32<13,"f13", ["fa3"]>, DwarfRegNum<[45]>; 182*8bcb0991SDimitry Andric def F14_F : RISCVReg32<14,"f14", ["fa4"]>, DwarfRegNum<[46]>; 183*8bcb0991SDimitry Andric def F15_F : RISCVReg32<15,"f15", ["fa5"]>, DwarfRegNum<[47]>; 184*8bcb0991SDimitry Andric def F16_F : RISCVReg32<16,"f16", ["fa6"]>, DwarfRegNum<[48]>; 185*8bcb0991SDimitry Andric def F17_F : RISCVReg32<17,"f17", ["fa7"]>, DwarfRegNum<[49]>; 186*8bcb0991SDimitry Andric def F18_F : RISCVReg32<18,"f18", ["fs2"]>, DwarfRegNum<[50]>; 187*8bcb0991SDimitry Andric def F19_F : RISCVReg32<19,"f19", ["fs3"]>, DwarfRegNum<[51]>; 188*8bcb0991SDimitry Andric def F20_F : RISCVReg32<20,"f20", ["fs4"]>, DwarfRegNum<[52]>; 189*8bcb0991SDimitry Andric def F21_F : RISCVReg32<21,"f21", ["fs5"]>, DwarfRegNum<[53]>; 190*8bcb0991SDimitry Andric def F22_F : RISCVReg32<22,"f22", ["fs6"]>, DwarfRegNum<[54]>; 191*8bcb0991SDimitry Andric def F23_F : RISCVReg32<23,"f23", ["fs7"]>, DwarfRegNum<[55]>; 192*8bcb0991SDimitry Andric def F24_F : RISCVReg32<24,"f24", ["fs8"]>, DwarfRegNum<[56]>; 193*8bcb0991SDimitry Andric def F25_F : RISCVReg32<25,"f25", ["fs9"]>, DwarfRegNum<[57]>; 194*8bcb0991SDimitry Andric def F26_F : RISCVReg32<26,"f26", ["fs10"]>, DwarfRegNum<[58]>; 195*8bcb0991SDimitry Andric def F27_F : RISCVReg32<27,"f27", ["fs11"]>, DwarfRegNum<[59]>; 196*8bcb0991SDimitry Andric def F28_F : RISCVReg32<28,"f28", ["ft8"]>, DwarfRegNum<[60]>; 197*8bcb0991SDimitry Andric def F29_F : RISCVReg32<29,"f29", ["ft9"]>, DwarfRegNum<[61]>; 198*8bcb0991SDimitry Andric def F30_F : RISCVReg32<30,"f30", ["ft10"]>, DwarfRegNum<[62]>; 199*8bcb0991SDimitry Andric def F31_F : RISCVReg32<31,"f31", ["ft11"]>, DwarfRegNum<[63]>; 2000b57cec5SDimitry Andric 2010b57cec5SDimitry Andric foreach Index = 0-31 in { 202*8bcb0991SDimitry Andric def F#Index#_D : RISCVReg64<!cast<RISCVReg32>("F"#Index#"_F")>, 2030b57cec5SDimitry Andric DwarfRegNum<[!add(Index, 32)]>; 2040b57cec5SDimitry Andric } 2050b57cec5SDimitry Andric} 2060b57cec5SDimitry Andric 2070b57cec5SDimitry Andric// The order of registers represents the preferred allocation sequence, 2080b57cec5SDimitry Andric// meaning caller-save regs are listed before callee-save. 2090b57cec5SDimitry Andricdef FPR32 : RegisterClass<"RISCV", [f32], 32, (add 210*8bcb0991SDimitry Andric (sequence "F%u_F", 0, 7), 211*8bcb0991SDimitry Andric (sequence "F%u_F", 10, 17), 212*8bcb0991SDimitry Andric (sequence "F%u_F", 28, 31), 213*8bcb0991SDimitry Andric (sequence "F%u_F", 8, 9), 214*8bcb0991SDimitry Andric (sequence "F%u_F", 18, 27) 2150b57cec5SDimitry Andric)>; 2160b57cec5SDimitry Andric 2170b57cec5SDimitry Andricdef FPR32C : RegisterClass<"RISCV", [f32], 32, (add 218*8bcb0991SDimitry Andric (sequence "F%u_F", 10, 15), 219*8bcb0991SDimitry Andric (sequence "F%u_F", 8, 9) 2200b57cec5SDimitry Andric)>; 2210b57cec5SDimitry Andric 2220b57cec5SDimitry Andric// The order of registers represents the preferred allocation sequence, 2230b57cec5SDimitry Andric// meaning caller-save regs are listed before callee-save. 2240b57cec5SDimitry Andricdef FPR64 : RegisterClass<"RISCV", [f64], 64, (add 225*8bcb0991SDimitry Andric (sequence "F%u_D", 0, 7), 226*8bcb0991SDimitry Andric (sequence "F%u_D", 10, 17), 227*8bcb0991SDimitry Andric (sequence "F%u_D", 28, 31), 228*8bcb0991SDimitry Andric (sequence "F%u_D", 8, 9), 229*8bcb0991SDimitry Andric (sequence "F%u_D", 18, 27) 2300b57cec5SDimitry Andric)>; 2310b57cec5SDimitry Andric 2320b57cec5SDimitry Andricdef FPR64C : RegisterClass<"RISCV", [f64], 64, (add 233*8bcb0991SDimitry Andric (sequence "F%u_D", 10, 15), 234*8bcb0991SDimitry Andric (sequence "F%u_D", 8, 9) 2350b57cec5SDimitry Andric)>; 236