Nuke the old JIT.
[oota-llvm.git] / lib / Target / Sparc / SparcTargetMachine.h
1 //===-- SparcTargetMachine.h - Define TargetMachine for Sparc ---*- 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 Sparc specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SPARCTARGETMACHINE_H
15 #define SPARCTARGETMACHINE_H
16
17 #include "SparcInstrInfo.h"
18 #include "SparcSubtarget.h"
19 #include "llvm/Target/TargetMachine.h"
20
21 namespace llvm {
22
23 class SparcTargetMachine : public LLVMTargetMachine {
24   SparcSubtarget Subtarget;
25 public:
26   SparcTargetMachine(const Target &T, StringRef TT,
27                      StringRef CPU, StringRef FS, const TargetOptions &Options,
28                      Reloc::Model RM, CodeModel::Model CM,
29                      CodeGenOpt::Level OL, bool is64bit);
30
31   const SparcSubtarget *getSubtargetImpl() const override { return &Subtarget; }
32
33   // Pass Pipeline Configuration
34   TargetPassConfig *createPassConfig(PassManagerBase &PM) override;
35 };
36
37 /// SparcV8TargetMachine - Sparc 32-bit target machine
38 ///
39 class SparcV8TargetMachine : public SparcTargetMachine {
40   virtual void anchor();
41 public:
42   SparcV8TargetMachine(const Target &T, StringRef TT,
43                        StringRef CPU, StringRef FS,
44                        const TargetOptions &Options,
45                        Reloc::Model RM, CodeModel::Model CM,
46                        CodeGenOpt::Level OL);
47 };
48
49 /// SparcV9TargetMachine - Sparc 64-bit target machine
50 ///
51 class SparcV9TargetMachine : public SparcTargetMachine {
52   virtual void anchor();
53 public:
54   SparcV9TargetMachine(const Target &T, StringRef TT,
55                        StringRef CPU, StringRef FS,
56                        const TargetOptions &Options,
57                        Reloc::Model RM, CodeModel::Model CM,
58                        CodeGenOpt::Level OL);
59 };
60
61 } // end namespace llvm
62
63 #endif