Use const qualifiers with TargetLowering. This eliminates several
[oota-llvm.git] / lib / Target / Mips / MipsTargetMachine.h
1 //===-- MipsTargetMachine.h - Define TargetMachine for Mips -00--*- 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 Mips specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MIPSTARGETMACHINE_H
15 #define MIPSTARGETMACHINE_H
16
17 #include "MipsSubtarget.h"
18 #include "MipsInstrInfo.h"
19 #include "MipsISelLowering.h"
20 #include "llvm/Target/TargetMachine.h"
21 #include "llvm/Target/TargetData.h"
22 #include "llvm/Target/TargetFrameInfo.h"
23
24 namespace llvm {
25   class formatted_raw_ostream;
26   
27   class MipsTargetMachine : public LLVMTargetMachine {
28     MipsSubtarget       Subtarget;
29     const TargetData    DataLayout; // Calculates type size & alignment
30     MipsInstrInfo       InstrInfo;
31     TargetFrameInfo     FrameInfo;
32     MipsTargetLowering  TLInfo;
33   public:
34     MipsTargetMachine(const Target &T, const std::string &TT,
35                       const std::string &FS, bool isLittle);
36     
37     virtual const MipsInstrInfo   *getInstrInfo()     const 
38     { return &InstrInfo; }
39     virtual const TargetFrameInfo *getFrameInfo()     const 
40     { return &FrameInfo; }
41     virtual const MipsSubtarget   *getSubtargetImpl() const 
42     { return &Subtarget; }
43     virtual const TargetData      *getTargetData()    const 
44     { return &DataLayout;}
45
46     virtual const MipsRegisterInfo *getRegisterInfo()  const {
47       return &InstrInfo.getRegisterInfo();
48     }
49
50     virtual const MipsTargetLowering *getTargetLowering() const { 
51       return &TLInfo;
52     }
53
54     // Pass Pipeline Configuration
55     virtual bool addInstSelector(PassManagerBase &PM,
56                                  CodeGenOpt::Level OptLevel);
57     virtual bool addPreEmitPass(PassManagerBase &PM,
58                                 CodeGenOpt::Level OptLevel);
59   };
60
61 /// MipselTargetMachine - Mipsel target machine.
62 ///
63 class MipselTargetMachine : public MipsTargetMachine {
64 public:
65   MipselTargetMachine(const Target &T, const std::string &TT,
66                       const std::string &FS);
67 };
68
69 } // End llvm namespace
70
71 #endif