Revert " [LoongArch][ISel] Check the number of sign bits in `PatGprGpr_32` (#107432)"
[llvm-project.git] / llvm / lib / Target / SPIRV / SPIRVRegisterInfo.h
blob4b2c621f278102f50de02dc2050057baa968da5c
1 //===-- SPIRVRegisterInfo.h - SPIR-V Register Information -------*- C++ -*-===//
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 // This file contains the SPIR-V implementation of the TargetRegisterInfo class.
11 //===----------------------------------------------------------------------===//
13 #ifndef LLVM_LIB_TARGET_SPIRV_SPIRVREGISTERINFO_H
14 #define LLVM_LIB_TARGET_SPIRV_SPIRVREGISTERINFO_H
16 #include "llvm/CodeGen/TargetRegisterInfo.h"
18 #define GET_REGINFO_HEADER
19 #include "SPIRVGenRegisterInfo.inc"
21 namespace llvm {
23 struct SPIRVRegisterInfo : public SPIRVGenRegisterInfo {
24 SPIRVRegisterInfo();
25 const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF) const override;
26 BitVector getReservedRegs(const MachineFunction &MF) const override;
27 bool eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj,
28 unsigned FIOperandNum,
29 RegScavenger *RS = nullptr) const override {
30 return false;
32 Register getFrameRegister(const MachineFunction &MF) const override {
33 return 0;
36 } // namespace llvm
38 #endif // LLVM_LIB_TARGET_SPIRV_SPIRVREGISTERINFO_H