[C++11] Add 'override' keywords and remove 'virtual'. Additionally add 'final' and...
[oota-llvm.git] / 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 MCRegisterInfo class.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_AARCH64REGISTERINFO_H
15 #define LLVM_TARGET_AARCH64REGISTERINFO_H
16
17 #include "llvm/Target/TargetRegisterInfo.h"
18
19 #define GET_REGINFO_HEADER
20 #include "AArch64GenRegisterInfo.inc"
21
22 namespace llvm {
23
24 class AArch64InstrInfo;
25 class AArch64Subtarget;
26
27 struct AArch64RegisterInfo : public AArch64GenRegisterInfo {
28   AArch64RegisterInfo();
29
30   const MCPhysReg *
31   getCalleeSavedRegs(const MachineFunction *MF =nullptr) const override;
32   const uint32_t *getCallPreservedMask(CallingConv::ID) const override;
33
34   unsigned getCSRFirstUseCost() const override {
35     // The cost will be compared against BlockFrequency where entry has the
36     // value of 1 << 14. A value of 5 will choose to spill or split really
37     // cold path instead of using a callee-saved register.
38     return 5;
39   }
40
41   const uint32_t *getTLSDescCallPreservedMask() const;
42
43   BitVector getReservedRegs(const MachineFunction &MF) const override;
44   unsigned getFrameRegister(const MachineFunction &MF) const override;
45
46   void eliminateFrameIndex(MachineBasicBlock::iterator II, int SPAdj,
47                            unsigned FIOperandNum,
48                            RegScavenger *Rs = nullptr) const override;
49
50   /// getCrossCopyRegClass - Returns a legal register class to copy a register
51   /// in the specified class to or from. Returns original class if it is
52   /// possible to copy between a two registers of the specified class.
53   const TargetRegisterClass *
54   getCrossCopyRegClass(const TargetRegisterClass *RC) const override;
55
56   /// getLargestLegalSuperClass - Returns the largest super class of RC that is
57   /// legal to use in the current sub-target and has the same spill size.
58   const TargetRegisterClass*
59   getLargestLegalSuperClass(const TargetRegisterClass *RC) const override {
60     if (RC == &AArch64::tcGPR64RegClass)
61       return &AArch64::GPR64RegClass;
62
63     return RC;
64   }
65
66   bool requiresRegisterScavenging(const MachineFunction &MF) const override {
67     return true;
68   }
69
70   bool requiresFrameIndexScavenging(const MachineFunction &MF) const override {
71     return true;
72   }
73
74   bool useFPForScavengingIndex(const MachineFunction &MF) const override;
75 };
76
77 } // end namespace llvm
78
79 #endif // LLVM_TARGET_AARCH64REGISTERINFO_H