]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/AArch64/AArch64RegisterInfo.h
Merge llvm trunk r321017 to contrib/llvm.
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / AArch64 / AArch64RegisterInfo.h
1 //==- AArch64RegisterInfo.h - AArch64 Register Information Impl --*- C++ -*-==//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the AArch64 implementation of the MRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64REGISTERINFO_H
15 #define LLVM_LIB_TARGET_AARCH64_AARCH64REGISTERINFO_H
16
17 #define GET_REGINFO_HEADER
18 #include "AArch64GenRegisterInfo.inc"
19
20 namespace llvm {
21
22 class MachineFunction;
23 class RegScavenger;
24 class TargetRegisterClass;
25 class Triple;
26
27 class AArch64RegisterInfo final : public AArch64GenRegisterInfo {
28   const Triple &TT;
29
30 public:
31   AArch64RegisterInfo(const Triple &TT);
32
33   bool isReservedReg(const MachineFunction &MF, unsigned Reg) const;
34
35   /// Code Generation virtual methods...
36   const MCPhysReg *getCalleeSavedRegs(const MachineFunction *MF) const override;
37   const MCPhysReg *
38   getCalleeSavedRegsViaCopy(const MachineFunction *MF) const;
39   const uint32_t *getCallPreservedMask(const MachineFunction &MF,
40                                        CallingConv::ID) const override;
41
42   unsigned getCSRFirstUseCost() const override {
43     // The cost will be compared against BlockFrequency where entry has the
44     // value of 1 << 14. A value of 5 will choose to spill or split really
45     // cold path instead of using a callee-saved register.
46     return 5;
47   }
48
49   // Calls involved in thread-local variable lookup save more registers than
50   // normal calls, so they need a different mask to represent this.
51   const uint32_t *getTLSCallPreservedMask() const;
52
53   /// getThisReturnPreservedMask - Returns a call preserved mask specific to the
54   /// case that 'returned' is on an i64 first argument if the calling convention
55   /// is one that can (partially) model this attribute with a preserved mask
56   /// (i.e. it is a calling convention that uses the same register for the first
57   /// i64 argument and an i64 return value)
58   ///
59   /// Should return NULL in the case that the calling convention does not have
60   /// this property
61   const uint32_t *getThisReturnPreservedMask(const MachineFunction &MF,
62                                              CallingConv::ID) const;
63
64   BitVector getReservedRegs(const MachineFunction &MF) const override;
65   bool isConstantPhysReg(unsigned PhysReg) const override;
66   const TargetRegisterClass *
67   getPointerRegClass(const MachineFunction &MF,
68                      unsigned Kind = 0) const override;
69   const TargetRegisterClass *
70   getCrossCopyRegClass(const TargetRegisterClass *RC) const override;
71
72   bool requiresRegisterScavenging(const MachineFunction &MF) const override;
73   bool useFPForScavengingIndex(const MachineFunction &MF) const override;
74   bool requiresFrameIndexScavenging(const MachineFunction &MF) const override;
75
76   bool needsFrameBaseReg(MachineInstr *MI, int64_t Offset) const override;
77   bool isFrameOffsetLegal(const MachineInstr *MI, unsigned BaseReg,
78                           int64_t Offset) const override;
79   void materializeFrameBaseRegister(MachineBasicBlock *MBB, unsigned BaseReg,
80                                     int FrameIdx,
81                                     int64_t Offset) const override;
82   void resolveFrameIndex(MachineInstr &MI, unsigned BaseReg,
83                          int64_t Offset) const override;
84   void eliminateFrameIndex(MachineBasicBlock::iterator II, int SPAdj,
85                            unsigned FIOperandNum,
86                            RegScavenger *RS = nullptr) const override;
87   bool cannotEliminateFrame(const MachineFunction &MF) const;
88
89   bool requiresVirtualBaseRegisters(const MachineFunction &MF) const override;
90   bool hasBasePointer(const MachineFunction &MF) const;
91   unsigned getBaseRegister() const;
92
93   // Debug information queries.
94   unsigned getFrameRegister(const MachineFunction &MF) const override;
95
96   unsigned getRegPressureLimit(const TargetRegisterClass *RC,
97                                MachineFunction &MF) const override;
98
99   bool trackLivenessAfterRegAlloc(const MachineFunction&) const override {
100     return true;
101   }
102 };
103
104 } // end namespace llvm
105
106 #endif