This patch changes the ownership of TLOF from TargetLoweringBase to TargetMachine...
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.h
1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- 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 X86 specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
15 #define LLVM_LIB_TARGET_X86_X86TARGETMACHINE_H
16 #include "X86InstrInfo.h"
17 #include "X86Subtarget.h"
18 #include "llvm/IR/DataLayout.h"
19 #include "llvm/Target/TargetMachine.h"
20
21 namespace llvm {
22
23 class StringRef;
24
25 class X86TargetMachine final : public LLVMTargetMachine {
26   virtual void anchor();
27   std::unique_ptr<TargetLoweringObjectFile> TLOF;
28   X86Subtarget       Subtarget;
29
30   mutable StringMap<std::unique_ptr<X86Subtarget>> SubtargetMap;
31
32 public:
33   X86TargetMachine(const Target &T, StringRef TT,
34                    StringRef CPU, StringRef FS, const TargetOptions &Options,
35                    Reloc::Model RM, CodeModel::Model CM,
36                    CodeGenOpt::Level OL);
37   const X86Subtarget *getSubtargetImpl() const override { return &Subtarget; }
38   const X86Subtarget *getSubtargetImpl(const Function &F) const override;
39
40   /// \brief Register X86 analysis passes with a pass manager.
41   void addAnalysisPasses(PassManagerBase &PM) override;
42
43   // Set up the pass pipeline.
44   TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
45   TargetLoweringObjectFile *getObjFileLowering() const override {
46     return TLOF.get();
47   }
48 };
49
50 } // End llvm namespace
51
52 #endif