[RISCV] Fix mgather -> riscv.masked.strided.load combine not extending indices (...
[llvm-project.git] / llvm / lib / Target / RISCV / GISel / RISCVRegisterBanks.td
blobb1ef815fe37352174131b37ceb1d396500367533
1 //=-- RISCVRegisterBank.td - Describe the RISC-V Banks -------*- 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 //===----------------------------------------------------------------------===//
8 //
9 //
10 //===----------------------------------------------------------------------===//
12 /// General Purpose Registers: X.
13 def GPRBRegBank : RegisterBank<"GPRB", [GPR]>;
15 /// Floating Point Registers: F.
16 def FPRBRegBank : RegisterBank<"FPRB", [FPR64]>;
18 /// Vector Registers : V.
19 def VRBRegBank : RegisterBank<"VRB", [VRM8]>;