clang-format this file.
[oota-llvm.git] / lib / Target / R600 / AMDGPUTargetMachine.h
1 //===-- AMDGPUTargetMachine.h - AMDGPU TargetMachine Interface --*- 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 /// \file
11 /// \brief The AMDGPU TargetMachine interface definition for hw codgen targets.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef AMDGPU_TARGET_MACHINE_H
16 #define AMDGPU_TARGET_MACHINE_H
17
18 #include "AMDGPUFrameLowering.h"
19 #include "AMDGPUInstrInfo.h"
20 #include "AMDGPUSubtarget.h"
21 #include "AMDILIntrinsicInfo.h"
22 #include "R600ISelLowering.h"
23 #include "llvm/ADT/OwningPtr.h"
24 #include "llvm/IR/DataLayout.h"
25
26 namespace llvm {
27
28 MCAsmInfo *createMCAsmInfo(const Target &T, StringRef TT);
29
30 class AMDGPUTargetMachine : public LLVMTargetMachine {
31
32   AMDGPUSubtarget Subtarget;
33   const DataLayout Layout;
34   AMDGPUFrameLowering FrameLowering;
35   AMDGPUIntrinsicInfo IntrinsicInfo;
36   const AMDGPUInstrInfo *InstrInfo;
37   AMDGPUTargetLowering *TLInfo;
38   const InstrItineraryData *InstrItins;
39
40 public:
41   AMDGPUTargetMachine(const Target &T, StringRef TT, StringRef FS,
42                       StringRef CPU, TargetOptions Options, Reloc::Model RM,
43                       CodeModel::Model CM, CodeGenOpt::Level OL);
44   ~AMDGPUTargetMachine();
45   virtual const AMDGPUFrameLowering *getFrameLowering() const {
46     return &FrameLowering;
47   }
48   virtual const AMDGPUIntrinsicInfo *getIntrinsicInfo() const {
49     return &IntrinsicInfo;
50   }
51   virtual const AMDGPUInstrInfo *getInstrInfo() const { return InstrInfo; }
52   virtual const AMDGPUSubtarget *getSubtargetImpl() const { return &Subtarget; }
53   virtual const AMDGPURegisterInfo *getRegisterInfo() const {
54     return &InstrInfo->getRegisterInfo();
55   }
56   virtual AMDGPUTargetLowering *getTargetLowering() const { return TLInfo; }
57   virtual const InstrItineraryData *getInstrItineraryData() const {
58     return InstrItins;
59   }
60   virtual const DataLayout *getDataLayout() const { return &Layout; }
61   virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
62 };
63
64 } // End namespace llvm
65
66 #endif // AMDGPU_TARGET_MACHINE_H