Remove JIT support, which doesn't work.
[oota-llvm.git] / lib / Target / Sparc / SparcTargetMachine.h
1 //===-- SparcV8TargetMachine.h - Define TargetMachine for SparcV8 -*- C++ -*-=//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file declares the SparcV8 specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef SPARCV8TARGETMACHINE_H
15 #define SPARCV8TARGETMACHINE_H
16
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetFrameInfo.h"
19 #include "llvm/PassManager.h"
20 #include "SparcV8InstrInfo.h"
21
22 namespace llvm {
23
24 class IntrinsicLowering;
25 class Module;
26
27 class SparcV8TargetMachine : public TargetMachine {
28   SparcV8InstrInfo InstrInfo;
29   TargetFrameInfo FrameInfo;
30 public:
31   SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL,
32                        const std::string &FS);
33
34   virtual const SparcV8InstrInfo *getInstrInfo() const { return &InstrInfo; }
35   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
36   virtual const MRegisterInfo *getRegisterInfo() const {
37     return &InstrInfo.getRegisterInfo();
38   }
39
40   static unsigned getModuleMatchQuality(const Module &M);
41
42   virtual bool addPassesToEmitFile(PassManager &PM, std::ostream &Out,
43                                    CodeGenFileType FileType, bool Fast);
44 };
45
46 } // end namespace llvm
47
48 #endif