Add AArch64 big endian Target (aarch64_be)
[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 TargetSubtargetInfo.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_TARGET_AARCH64_SUBTARGET_H
15 #define LLVM_TARGET_AARCH64_SUBTARGET_H
16
17 #include "llvm/ADT/Triple.h"
18 #include "llvm/Target/TargetSubtargetInfo.h"
19
20 #define GET_SUBTARGETINFO_HEADER
21 #include "AArch64GenSubtargetInfo.inc"
22
23 #include <string>
24
25 namespace llvm {
26 class StringRef;
27 class GlobalValue;
28
29 class AArch64Subtarget : public AArch64GenSubtargetInfo {
30   virtual void anchor();
31 protected:
32   bool HasFPARMv8;
33   bool HasNEON;
34   bool HasCrypto;
35
36   /// TargetTriple - What processor and OS we're targeting.
37   Triple TargetTriple;
38
39   /// CPUString - String name of used CPU.
40   std::string CPUString;
41
42   /// IsLittleEndian - The target is Little Endian
43   bool IsLittleEndian;
44
45 private:
46   void initializeSubtargetFeatures(StringRef CPU, StringRef FS);
47
48 public:
49   /// This constructor initializes the data members to match that
50   /// of the specified triple.
51   ///
52   AArch64Subtarget(StringRef TT, StringRef CPU, StringRef FS,
53                    bool LittleEndian);
54
55   virtual bool enableMachineScheduler() const {
56     return true;
57   }
58
59   /// ParseSubtargetFeatures - Parses features string setting specified
60   /// subtarget options.  Definition of function is auto generated by tblgen.
61   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
62
63   bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
64
65   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
66   bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
67
68   bool hasFPARMv8() const { return HasFPARMv8; }
69   bool hasNEON() const { return HasNEON; }
70   bool hasCrypto() const { return HasCrypto; }
71
72   bool isLittle() const { return IsLittleEndian; }
73
74   const std::string & getCPUString() const { return CPUString; }
75 };
76 } // End llvm namespace
77
78 #endif  // LLVM_TARGET_AARCH64_SUBTARGET_H