[X86] Combine (cmov (and/or (setcc) (setcc))) into (cmov (cmov)).
[oota-llvm.git] / lib / Target / NVPTX / NVPTXTargetMachine.h
1 //===-- NVPTXTargetMachine.h - Define TargetMachine for NVPTX ---*- 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 NVPTX specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef LLVM_LIB_TARGET_NVPTX_NVPTXTARGETMACHINE_H
15 #define LLVM_LIB_TARGET_NVPTX_NVPTXTARGETMACHINE_H
16
17 #include "ManagedStringPool.h"
18 #include "NVPTXSubtarget.h"
19 #include "llvm/Target/TargetFrameLowering.h"
20 #include "llvm/Target/TargetMachine.h"
21 #include "llvm/Target/TargetSelectionDAGInfo.h"
22
23 namespace llvm {
24
25 /// NVPTXTargetMachine
26 ///
27 class NVPTXTargetMachine : public LLVMTargetMachine {
28   bool is64bit;
29   std::unique_ptr<TargetLoweringObjectFile> TLOF;
30   const DataLayout DL; // Calculates type size & alignment
31   NVPTX::DrvInterface drvInterface;
32   NVPTXSubtarget Subtarget;
33
34   // Hold Strings that can be free'd all together with NVPTXTargetMachine
35   ManagedStringPool ManagedStrPool;
36
37 public:
38   NVPTXTargetMachine(const Target &T, StringRef TT, StringRef CPU, StringRef FS,
39                      const TargetOptions &Options, Reloc::Model RM,
40                      CodeModel::Model CM, CodeGenOpt::Level OP, bool is64bit);
41
42   ~NVPTXTargetMachine() override;
43   const DataLayout *getDataLayout() const override { return &DL; }
44   const NVPTXSubtarget *getSubtargetImpl() const override { return &Subtarget; }
45   bool is64Bit() const { return is64bit; }
46   NVPTX::DrvInterface getDrvInterface() const { return drvInterface; }
47   ManagedStringPool *getManagedStrPool() const {
48     return const_cast<ManagedStringPool *>(&ManagedStrPool);
49   }
50
51   TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
52
53   // Emission of machine code through MCJIT is not supported.
54   bool addPassesToEmitMC(PassManagerBase &, MCContext *&, raw_ostream &,
55                          bool = true) override {
56     return true;
57   }
58   TargetLoweringObjectFile *getObjFileLowering() const override {
59     return TLOF.get();
60   }
61
62   TargetIRAnalysis getTargetIRAnalysis() override;
63
64 }; // NVPTXTargetMachine.
65
66 class NVPTXTargetMachine32 : public NVPTXTargetMachine {
67   virtual void anchor();
68 public:
69   NVPTXTargetMachine32(const Target &T, StringRef TT, StringRef CPU,
70                        StringRef FS, const TargetOptions &Options,
71                        Reloc::Model RM, CodeModel::Model CM,
72                        CodeGenOpt::Level OL);
73 };
74
75 class NVPTXTargetMachine64 : public NVPTXTargetMachine {
76   virtual void anchor();
77 public:
78   NVPTXTargetMachine64(const Target &T, StringRef TT, StringRef CPU,
79                        StringRef FS, const TargetOptions &Options,
80                        Reloc::Model RM, CodeModel::Model CM,
81                        CodeGenOpt::Level OL);
82 };
83
84 } // end namespace llvm
85
86 #endif