c9939992115395e846f6c3ea3cc8b7850741614b
[oota-llvm.git] / lib / Target / AArch64 / AArch64TargetMachine.h
1 //==-- AArch64TargetMachine.h - Define TargetMachine for 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 TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_AARCH64_AARCH64TARGETMACHINE_H
15 #define LLVM_LIB_TARGET_AARCH64_AARCH64TARGETMACHINE_H
16
17 #include "AArch64InstrInfo.h"
18 #include "AArch64Subtarget.h"
19 #include "llvm/IR/DataLayout.h"
20 #include "llvm/Target/TargetMachine.h"
21
22 namespace llvm {
23
24 class AArch64TargetMachine : public LLVMTargetMachine {
25 protected:
26   std::unique_ptr<TargetLoweringObjectFile> TLOF;
27   AArch64Subtarget Subtarget;
28   mutable StringMap<std::unique_ptr<AArch64Subtarget>> SubtargetMap;
29
30 public:
31   AArch64TargetMachine(const Target &T, StringRef TT, StringRef CPU,
32                        StringRef FS, const TargetOptions &Options,
33                        Reloc::Model RM, CodeModel::Model CM,
34                        CodeGenOpt::Level OL, bool IsLittleEndian);
35
36   const AArch64Subtarget *getSubtargetImpl() const override {
37     return &Subtarget;
38   }
39   const AArch64Subtarget *getSubtargetImpl(const Function &F) const override;
40
41   // Pass Pipeline Configuration
42   TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
43
44   /// \brief Register AArch64 analysis passes with a pass manager.
45   void addAnalysisPasses(PassManagerBase &PM) override;
46
47   TargetLoweringObjectFile* getObjFileLowering() const override {
48     return TLOF.get();
49   }
50
51 private:
52   bool isLittle;
53 };
54
55 // AArch64leTargetMachine - AArch64 little endian target machine.
56 //
57 class AArch64leTargetMachine : public AArch64TargetMachine {
58   virtual void anchor();
59 public:
60   AArch64leTargetMachine(const Target &T, StringRef TT, StringRef CPU,
61                          StringRef FS, const TargetOptions &Options,
62                          Reloc::Model RM, CodeModel::Model CM,
63                          CodeGenOpt::Level OL);
64 };
65
66 // AArch64beTargetMachine - AArch64 big endian target machine.
67 //
68 class AArch64beTargetMachine : public AArch64TargetMachine {
69   virtual void anchor();
70 public:
71   AArch64beTargetMachine(const Target &T, StringRef TT, StringRef CPU,
72                          StringRef FS, const TargetOptions &Options,
73                          Reloc::Model RM, CodeModel::Model CM,
74                          CodeGenOpt::Level OL);
75 };
76
77 } // end namespace llvm
78
79 #endif