Don't generate carry bit when loading immediate values on the Microblaze.
[oota-llvm.git] / lib / Target / MBlaze / MBlazeTargetMachine.h
1 //===-- MBlazeTargetMachine.h - Define TargetMachine for MBlaze --- 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 MBlaze specific subclass of TargetMachine.
11 //
12 //===----------------------------------------------------------------------===//
13
14 #ifndef MBLAZE_TARGETMACHINE_H
15 #define MBLAZE_TARGETMACHINE_H
16
17 #include "MBlazeSubtarget.h"
18 #include "MBlazeInstrInfo.h"
19 #include "MBlazeISelLowering.h"
20 #include "MBlazeSelectionDAGInfo.h"
21 #include "MBlazeIntrinsicInfo.h"
22 #include "MBlazeFrameInfo.h"
23 #include "MBlazeELFWriterInfo.h"
24 #include "llvm/MC/MCStreamer.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include "llvm/Target/TargetData.h"
27 #include "llvm/Target/TargetFrameInfo.h"
28
29 namespace llvm {
30   class formatted_raw_ostream;
31
32   class MBlazeTargetMachine : public LLVMTargetMachine {
33     MBlazeSubtarget       Subtarget;
34     const TargetData    DataLayout; // Calculates type size & alignment
35     MBlazeInstrInfo       InstrInfo;
36     MBlazeFrameInfo     FrameInfo;
37     MBlazeTargetLowering  TLInfo;
38     MBlazeSelectionDAGInfo TSInfo;
39     MBlazeIntrinsicInfo IntrinsicInfo;
40     MBlazeELFWriterInfo    ELFWriterInfo;
41   public:
42     MBlazeTargetMachine(const Target &T, const std::string &TT,
43                       const std::string &FS);
44
45     virtual const MBlazeInstrInfo *getInstrInfo() const
46     { return &InstrInfo; }
47
48     virtual const TargetFrameInfo *getFrameInfo() const
49     { return &FrameInfo; }
50
51     virtual const MBlazeSubtarget *getSubtargetImpl() const
52     { return &Subtarget; }
53
54     virtual const TargetData *getTargetData() const
55     { return &DataLayout;}
56
57     virtual const MBlazeRegisterInfo *getRegisterInfo() const
58     { return &InstrInfo.getRegisterInfo(); }
59
60     virtual const MBlazeTargetLowering *getTargetLowering() const
61     { return &TLInfo; }
62
63     virtual const MBlazeSelectionDAGInfo* getSelectionDAGInfo() const
64     { return &TSInfo; }
65
66     const TargetIntrinsicInfo *getIntrinsicInfo() const
67     { return &IntrinsicInfo; }
68
69     virtual const MBlazeELFWriterInfo *getELFWriterInfo() const {
70       return &ELFWriterInfo;
71     }
72
73     // Pass Pipeline Configuration
74     virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level Opt);
75     virtual bool addPreEmitPass(PassManagerBase &PM,CodeGenOpt::Level Opt);
76   };
77 } // End llvm namespace
78
79 #endif