LLVM 22.0.0git
LoongArchRegisterInfo.h
Go to the documentation of this file.
1//= LoongArchRegisterInfo.h - LoongArch Register Information Impl -*- 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 LoongArch implementation of the TargetRegisterInfo
10// class.
11//
12//===----------------------------------------------------------------------===//
13
14#ifndef LLVM_LIB_TARGET_LOONGARCH_LOONGARCHREGISTERINFO_H
15#define LLVM_LIB_TARGET_LOONGARCH_LOONGARCHREGISTERINFO_H
16
18
19#define GET_REGINFO_HEADER
20#include "LoongArchGenRegisterInfo.inc"
21
22namespace llvm {
23
25
26 LoongArchRegisterInfo(unsigned HwMode);
27
28 const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF) const override;
30 CallingConv::ID) const override;
31 const uint32_t *getNoPreservedMask() const override;
32
33 BitVector getReservedRegs(const MachineFunction &MF) const override;
34
36 getPointerRegClass(unsigned Kind = 0) const override {
37 return &LoongArch::GPRRegClass;
38 }
39
41 unsigned FIOperandNum,
42 RegScavenger *RS = nullptr) const override;
43
44 Register getFrameRegister(const MachineFunction &MF) const override;
45
46 bool requiresRegisterScavenging(const MachineFunction &MF) const override {
47 return true;
48 }
49
50 bool requiresFrameIndexScavenging(const MachineFunction &MF) const override {
51 return true;
52 }
53 bool canRealignStack(const MachineFunction &MF) const override;
54};
55} // end namespace llvm
56
57#endif // LLVM_LIB_TARGET_LOONGARCH_LOONGARCHREGISTERINFO_H
IRTranslator LLVM IR MI
MachineInstrBundleIterator< MachineInstr > iterator
Wrapper class representing virtual and physical registers.
Definition Register.h:19
unsigned ID
LLVM IR allows to use arbitrary numbers as calling convention identifiers.
Definition CallingConv.h:24
This is an optimization pass for GlobalISel generic memory operations.
uint16_t MCPhysReg
An unsigned integer type large enough to represent all physical registers, but not necessarily virtua...
Definition MCRegister.h:21
bool eliminateFrameIndex(MachineBasicBlock::iterator MI, int SPAdj, unsigned FIOperandNum, RegScavenger *RS=nullptr) const override
const uint32_t * getCallPreservedMask(const MachineFunction &MF, CallingConv::ID) const override
bool requiresFrameIndexScavenging(const MachineFunction &MF) const override
const MCPhysReg * getCalleeSavedRegs(const MachineFunction *MF) const override
Register getFrameRegister(const MachineFunction &MF) const override
bool requiresRegisterScavenging(const MachineFunction &MF) const override
const uint32_t * getNoPreservedMask() const override
BitVector getReservedRegs(const MachineFunction &MF) const override
const TargetRegisterClass * getPointerRegClass(unsigned Kind=0) const override
bool canRealignStack(const MachineFunction &MF) const override