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" |
| 20 | #include "SystemZRegisterInfo.h" |
| 21 | #include "SystemZSubtarget.h" |
| 22 | #include "llvm/Target/TargetData.h" |
| 23 | #include "llvm/Target/TargetFrameInfo.h" |
| 24 | #include "llvm/Target/TargetMachine.h" |
| 25 | |
| 26 | namespace llvm { |
| 27 | |
| 28 | /// SystemZTargetMachine |
| 29 | /// |
| 30 | class SystemZTargetMachine : public LLVMTargetMachine { |
| 31 | SystemZSubtarget Subtarget; |
| 32 | const TargetData DataLayout; // Calculates type size & alignment |
| 33 | SystemZInstrInfo InstrInfo; |
| 34 | SystemZTargetLowering TLInfo; |
| 35 | |
| 36 | // SystemZ does not have any call stack frame, therefore not having |
| 37 | // any SystemZ specific FrameInfo class. |
| 38 | TargetFrameInfo FrameInfo; |
| 39 | |
| 40 | protected: |
| 41 | virtual const TargetAsmInfo *createTargetAsmInfo() const; |
| 42 | |
| 43 | public: |
Anton Korobeynikov | 7df8462 | 2009-07-16 14:36:52 +0000 | [diff] [blame] | 44 | SystemZTargetMachine(const Target &T, const Module &M, const std::string &FS); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 45 | |
| 46 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
| 47 | virtual const SystemZInstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 48 | virtual const TargetData *getTargetData() const { return &DataLayout;} |
| 49 | virtual const SystemZSubtarget *getSubtargetImpl() const { return &Subtarget; } |
| 50 | |
Anton Korobeynikov | 656ac6f | 2009-07-16 13:51:53 +0000 | [diff] [blame] | 51 | virtual const SystemZRegisterInfo *getRegisterInfo() const { |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 52 | return &InstrInfo.getRegisterInfo(); |
| 53 | } |
| 54 | |
| 55 | virtual SystemZTargetLowering *getTargetLowering() const { |
| 56 | return const_cast<SystemZTargetLowering*>(&TLInfo); |
| 57 | } |
| 58 | |
| 59 | virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
Anton Korobeynikov | 4403b93 | 2009-07-16 13:27:25 +0000 | [diff] [blame] | 60 | static unsigned getModuleMatchQuality(const Module &M); |
| 61 | }; // SystemZTargetMachine. |
| 62 | |
| 63 | } // end namespace llvm |
| 64 | |
| 65 | #endif // LLVM_TARGET_SystemZ_TARGETMACHINE_H |