117963903bb7744fb6f8c56e43f26493419d723e
[oota-llvm.git] / lib / Target / AArch64 / AArch64Subtarget.h
1 //===--- AArch64Subtarget.h - Define Subtarget for the AArch64 -*- 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 declares the AArch64 specific subclass of TargetSubtarget.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef AArch64SUBTARGET_H
15 #define AArch64SUBTARGET_H
16
17 #include "AArch64FrameLowering.h"
18 #include "AArch64RegisterInfo.h"
19 #include "llvm/IR/DataLayout.h"
20 #include "llvm/Target/TargetSubtargetInfo.h"
21 #include <string>
22
23 #define GET_SUBTARGETINFO_HEADER
24 #include "AArch64GenSubtargetInfo.inc"
25
26 namespace llvm {
27 class GlobalValue;
28 class StringRef;
29
30 class AArch64Subtarget : public AArch64GenSubtargetInfo {
31 protected:
32   enum ARMProcFamilyEnum {Others, CortexA53, CortexA57, Cyclone};
33
34   /// ARMProcFamily - ARM processor family: Cortex-A53, Cortex-A57, and others.
35   ARMProcFamilyEnum ARMProcFamily;
36
37   bool HasFPARMv8;
38   bool HasNEON;
39   bool HasCrypto;
40   bool HasCRC;
41
42   // HasZeroCycleRegMove - Has zero-cycle register mov instructions.
43   bool HasZeroCycleRegMove;
44
45   // HasZeroCycleZeroing - Has zero-cycle zeroing instructions.
46   bool HasZeroCycleZeroing;
47
48   /// CPUString - String name of used CPU.
49   std::string CPUString;
50
51   /// TargetTriple - What processor and OS we're targeting.
52   Triple TargetTriple;
53
54   /// IsLittleEndian - Is the target little endian?
55   bool IsLittleEndian;
56
57   const DataLayout DL;
58   AArch64FrameLowering FrameLowering;
59
60 public:
61   /// This constructor initializes the data members to match that
62   /// of the specified triple.
63   AArch64Subtarget(const std::string &TT, const std::string &CPU,
64                  const std::string &FS, bool LittleEndian);
65
66   const AArch64FrameLowering *getFrameLowering() const {
67     return &FrameLowering;
68   }
69   const DataLayout *getDataLayout() const { return &DL; }
70   bool enableMachineScheduler() const override { return true; }
71
72   bool hasZeroCycleRegMove() const { return HasZeroCycleRegMove; }
73
74   bool hasZeroCycleZeroing() const { return HasZeroCycleZeroing; }
75
76   bool hasFPARMv8() const { return HasFPARMv8; }
77   bool hasNEON() const { return HasNEON; }
78   bool hasCrypto() const { return HasCrypto; }
79   bool hasCRC() const { return HasCRC; }
80
81   bool isLittleEndian() const { return IsLittleEndian; }
82
83   bool isTargetDarwin() const { return TargetTriple.isOSDarwin(); }
84
85   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
86
87   bool isTargetMachO() const { return TargetTriple.isOSBinFormatMachO(); }
88
89   bool isCyclone() const { return CPUString == "cyclone"; }
90
91   /// getMaxInlineSizeThreshold - Returns the maximum memset / memcpy size
92   /// that still makes it profitable to inline the call.
93   unsigned getMaxInlineSizeThreshold() const { return 64; }
94
95   /// ParseSubtargetFeatures - Parses features string setting specified
96   /// subtarget options.  Definition of function is auto generated by tblgen.
97   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
98
99   /// ClassifyGlobalReference - Find the target operand flags that describe
100   /// how a global value should be referenced for the current subtarget.
101   unsigned char ClassifyGlobalReference(const GlobalValue *GV,
102                                         const TargetMachine &TM) const;
103
104   /// This function returns the name of a function which has an interface
105   /// like the non-standard bzero function, if such a function exists on
106   /// the current subtarget and it is considered prefereable over
107   /// memset with zero passed as the second argument. Otherwise it
108   /// returns null.
109   const char *getBZeroEntry() const;
110
111   void overrideSchedPolicy(MachineSchedPolicy &Policy, MachineInstr *begin,
112                            MachineInstr *end,
113                            unsigned NumRegionInstrs) const override;
114
115   bool enableEarlyIfConversion() const override;
116 };
117 } // End llvm namespace
118
119 #endif // AArch64SUBTARGET_H