Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 1 | //==-- MSP430TargetMachine.h - Define TargetMachine for MSP430 ---*- 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 MSP430 specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | |
| 15 | #ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H |
| 16 | #define LLVM_TARGET_MSP430_TARGETMACHINE_H |
| 17 | |
| 18 | #include "MSP430InstrInfo.h" |
| 19 | #include "MSP430ISelLowering.h" |
Dan Gohman | cfbb323 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 20 | #include "MSP430SelectionDAGInfo.h" |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 21 | #include "MSP430RegisterInfo.h" |
| 22 | #include "MSP430Subtarget.h" |
| 23 | #include "llvm/Target/TargetData.h" |
| 24 | #include "llvm/Target/TargetFrameInfo.h" |
| 25 | #include "llvm/Target/TargetMachine.h" |
| 26 | |
| 27 | namespace llvm { |
| 28 | |
| 29 | /// MSP430TargetMachine |
| 30 | /// |
| 31 | class MSP430TargetMachine : public LLVMTargetMachine { |
| 32 | MSP430Subtarget Subtarget; |
| 33 | const TargetData DataLayout; // Calculates type size & alignment |
| 34 | MSP430InstrInfo InstrInfo; |
| 35 | MSP430TargetLowering TLInfo; |
Dan Gohman | cfbb323 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 36 | MSP430SelectionDAGInfo TSInfo; |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 37 | |
| 38 | // MSP430 does not have any call stack frame, therefore not having |
| 39 | // any MSP430 specific FrameInfo class. |
| 40 | TargetFrameInfo FrameInfo; |
| 41 | |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 42 | public: |
Daniel Dunbar | f5c2b85 | 2009-08-02 23:37:13 +0000 | [diff] [blame] | 43 | MSP430TargetMachine(const Target &T, const std::string &TT, |
| 44 | const std::string &FS); |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 45 | |
| 46 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
| 47 | virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 48 | virtual const TargetData *getTargetData() const { return &DataLayout;} |
| 49 | virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; } |
| 50 | |
| 51 | virtual const TargetRegisterInfo *getRegisterInfo() const { |
| 52 | return &InstrInfo.getRegisterInfo(); |
| 53 | } |
| 54 | |
Dan Gohman | dbb121b | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 55 | virtual const MSP430TargetLowering *getTargetLowering() const { |
| 56 | return &TLInfo; |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 57 | } |
| 58 | |
Dan Gohman | cfbb323 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 59 | virtual const MSP430SelectionDAGInfo* getSelectionDAGInfo() const { |
| 60 | return &TSInfo; |
| 61 | } |
| 62 | |
Anton Korobeynikov | 0d370dc | 2009-05-03 13:19:42 +0000 | [diff] [blame] | 63 | virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
Anton Korobeynikov | 5ee5e51 | 2010-01-15 21:19:05 +0000 | [diff] [blame] | 64 | virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
Anton Korobeynikov | 3717157 | 2009-05-03 12:57:15 +0000 | [diff] [blame] | 65 | }; // MSP430TargetMachine. |
| 66 | |
| 67 | } // end namespace llvm |
| 68 | |
| 69 | #endif // LLVM_TARGET_MSP430_TARGETMACHINE_H |