[AArch64] Make the use of FP instructions optional, but enabled by default.
[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 protected:
31   bool HasFPARMv8;
32   bool HasNEON;
33   bool HasCrypto;
34
35   /// TargetTriple - What processor and OS we're targeting.
36   Triple TargetTriple;
37
38   /// CPUString - String name of used CPU.
39   std::string CPUString;
40
41 private:
42   void initializeSubtargetFeatures(StringRef CPU, StringRef FS);
43
44 public:
45   /// This constructor initializes the data members to match that
46   /// of the specified triple.
47   ///
48   AArch64Subtarget(StringRef TT, StringRef CPU, StringRef FS);
49
50   virtual bool enableMachineScheduler() const {
51     return true;
52   }
53
54   /// ParseSubtargetFeatures - Parses features string setting specified
55   /// subtarget options.  Definition of function is auto generated by tblgen.
56   void ParseSubtargetFeatures(StringRef CPU, StringRef FS);
57
58   bool GVIsIndirectSymbol(const GlobalValue *GV, Reloc::Model RelocM) const;
59
60   bool isTargetELF() const { return TargetTriple.isOSBinFormatELF(); }
61   bool isTargetLinux() const { return TargetTriple.isOSLinux(); }
62
63   bool hasFPARMv8() const { return HasFPARMv8; }
64   bool hasNEON() const { return HasNEON; }
65   bool hasCrypto() const { return HasCrypto; }
66
67   const std::string & getCPUString() const { return CPUString; }
68 };
69 } // End llvm namespace
70
71 #endif  // LLVM_TARGET_AARCH64_SUBTARGET_H