Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 1 | //==- SystemZTargetMachine.h - Define TargetMachine for SystemZ ---*- 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 SystemZ specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | |
| 15 | #ifndef LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H |
| 16 | #define LLVM_TARGET_SYSTEMZ_TARGETMACHINE_H |
| 17 | |
| 18 | #include "SystemZInstrInfo.h" |
| 19 | #include "SystemZISelLowering.h" |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame^] | 20 | #include "SystemZFrameLowering.h" |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 21 | #include "SystemZSelectionDAGInfo.h" |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 22 | #include "SystemZRegisterInfo.h" |
| 23 | #include "SystemZSubtarget.h" |
| 24 | #include "llvm/Target/TargetData.h" |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame^] | 25 | #include "llvm/Target/TargetFrameLowering.h" |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 26 | #include "llvm/Target/TargetMachine.h" |
| 27 | |
| 28 | namespace llvm { |
| 29 | |
| 30 | /// SystemZTargetMachine |
| 31 | /// |
| 32 | class SystemZTargetMachine : public LLVMTargetMachine { |
| 33 | SystemZSubtarget Subtarget; |
| 34 | const TargetData DataLayout; // Calculates type size & alignment |
| 35 | SystemZInstrInfo InstrInfo; |
| 36 | SystemZTargetLowering TLInfo; |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 37 | SystemZSelectionDAGInfo TSInfo; |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame^] | 38 | SystemZFrameLowering FrameLowering; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 39 | public: |
Daniel Dunbar | e28039c | 2009-08-02 23:37:13 +0000 | [diff] [blame] | 40 | SystemZTargetMachine(const Target &T, const std::string &TT, |
| 41 | const std::string &FS); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 42 | |
Anton Korobeynikov | 16c29b5 | 2011-01-10 12:39:04 +0000 | [diff] [blame^] | 43 | virtual const TargetFrameLowering *getFrameLowering() const { |
| 44 | return &FrameLowering; |
| 45 | } |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 46 | virtual const SystemZInstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 47 | virtual const TargetData *getTargetData() const { return &DataLayout;} |
| 48 | virtual const SystemZSubtarget *getSubtargetImpl() const { return &Subtarget; } |
| 49 | |
Anton Korobeynikov | 656ac6f | 2009-07-16 13:51:53 +0000 | [diff] [blame] | 50 | virtual const SystemZRegisterInfo *getRegisterInfo() const { |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 51 | return &InstrInfo.getRegisterInfo(); |
| 52 | } |
| 53 | |
Dan Gohman | d858e90 | 2010-04-17 15:26:15 +0000 | [diff] [blame] | 54 | virtual const SystemZTargetLowering *getTargetLowering() const { |
| 55 | return &TLInfo; |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 56 | } |
| 57 | |
Dan Gohman | ff7a562 | 2010-05-11 17:31:57 +0000 | [diff] [blame] | 58 | virtual const SystemZSelectionDAGInfo* getSelectionDAGInfo() const { |
| 59 | return &TSInfo; |
| 60 | } |
| 61 | |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 62 | virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 63 | }; // SystemZTargetMachine. |
| 64 | |
| 65 | } // end namespace llvm |
| 66 | |
| 67 | #endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H |