]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/lib/Target/ARM/ARMTargetMachine.h
Merge llvm, clang, lld, lldb, compiler-rt and libc++ r308421, and update
[FreeBSD/FreeBSD.git] / contrib / llvm / lib / Target / ARM / ARMTargetMachine.h
1 //===-- ARMTargetMachine.h - Define TargetMachine for ARM -------*- 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 ARM specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_ARM_ARMTARGETMACHINE_H
15 #define LLVM_LIB_TARGET_ARM_ARMTARGETMACHINE_H
16
17 #include "ARMSubtarget.h"
18 #include "llvm/ADT/Optional.h"
19 #include "llvm/ADT/StringMap.h"
20 #include "llvm/ADT/StringRef.h"
21 #include "llvm/Analysis/TargetTransformInfo.h"
22 #include "llvm/Support/CodeGen.h"
23 #include "llvm/Target/TargetMachine.h"
24 #include <memory>
25
26 namespace llvm {
27
28 class ARMBaseTargetMachine : public LLVMTargetMachine {
29 public:
30   enum ARMABI {
31     ARM_ABI_UNKNOWN,
32     ARM_ABI_APCS,
33     ARM_ABI_AAPCS, // ARM EABI
34     ARM_ABI_AAPCS16
35   } TargetABI;
36
37 protected:
38   std::unique_ptr<TargetLoweringObjectFile> TLOF;
39   bool isLittle;
40   mutable StringMap<std::unique_ptr<ARMSubtarget>> SubtargetMap;
41
42 public:
43   ARMBaseTargetMachine(const Target &T, const Triple &TT, StringRef CPU,
44                        StringRef FS, const TargetOptions &Options,
45                        Optional<Reloc::Model> RM, CodeModel::Model CM,
46                        CodeGenOpt::Level OL, bool isLittle);
47   ~ARMBaseTargetMachine() override;
48
49   const ARMSubtarget *getSubtargetImpl(const Function &F) const override;
50   // The no argument getSubtargetImpl, while it exists on some targets, is
51   // deprecated and should not be used.
52   const ARMSubtarget *getSubtargetImpl() const = delete;
53   bool isLittleEndian() const { return isLittle; }
54
55   /// \brief Get the TargetIRAnalysis for this target.
56   TargetIRAnalysis getTargetIRAnalysis() override;
57
58   // Pass Pipeline Configuration
59   TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
60
61   TargetLoweringObjectFile *getObjFileLowering() const override {
62     return TLOF.get();
63   }
64
65   bool isMachineVerifierClean() const override {
66     return false;
67   }
68 };
69
70 /// ARM/Thumb little endian target machine.
71 ///
72 class ARMLETargetMachine : public ARMBaseTargetMachine {
73 public:
74   ARMLETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
75                      StringRef FS, const TargetOptions &Options,
76                      Optional<Reloc::Model> RM, CodeModel::Model CM,
77                      CodeGenOpt::Level OL);
78 };
79
80 /// ARM/Thumb big endian target machine.
81 ///
82 class ARMBETargetMachine : public ARMBaseTargetMachine {
83 public:
84   ARMBETargetMachine(const Target &T, const Triple &TT, StringRef CPU,
85                      StringRef FS, const TargetOptions &Options,
86                      Optional<Reloc::Model> RM, CodeModel::Model CM,
87                      CodeGenOpt::Level OL);
88 };
89
90 } // end namespace llvm
91
92 #endif // LLVM_LIB_TARGET_ARM_ARMTARGETMACHINE_H