Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- PPCTargetMachine.h - Define TargetMachine for PowerPC -----*- C++ -*-=// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 081ce94 | 2007-12-29 20:36:04 +0000 | [diff] [blame] | 5 | // This file is distributed under the University of Illinois Open Source |
| 6 | // License. See LICENSE.TXT for details. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // This file declares the PowerPC specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef PPC_TARGETMACHINE_H |
| 15 | #define PPC_TARGETMACHINE_H |
| 16 | |
| 17 | #include "PPCFrameInfo.h" |
| 18 | #include "PPCSubtarget.h" |
| 19 | #include "PPCJITInfo.h" |
| 20 | #include "PPCInstrInfo.h" |
| 21 | #include "PPCISelLowering.h" |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 22 | #include "llvm/Target/TargetMachine.h" |
| 23 | #include "llvm/Target/TargetData.h" |
| 24 | |
| 25 | namespace llvm { |
| 26 | class PassManager; |
| 27 | class GlobalValue; |
| 28 | |
| 29 | /// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets. |
| 30 | /// |
| 31 | class PPCTargetMachine : public LLVMTargetMachine { |
| 32 | PPCSubtarget Subtarget; |
| 33 | const TargetData DataLayout; // Calculates type size & alignment |
| 34 | PPCInstrInfo InstrInfo; |
| 35 | PPCFrameInfo FrameInfo; |
| 36 | PPCJITInfo JITInfo; |
| 37 | PPCTargetLowering TLInfo; |
| 38 | InstrItineraryData InstrItins; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 39 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 40 | public: |
Daniel Dunbar | f5c2b85 | 2009-08-02 23:37:13 +0000 | [diff] [blame] | 41 | PPCTargetMachine(const Target &T, const std::string &TT, |
| 42 | const std::string &FS, bool is64Bit); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 43 | |
| 44 | virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 45 | virtual const PPCFrameInfo *getFrameInfo() const { return &FrameInfo; } |
| 46 | virtual PPCJITInfo *getJITInfo() { return &JITInfo; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 47 | virtual PPCTargetLowering *getTargetLowering() const { |
| 48 | return const_cast<PPCTargetLowering*>(&TLInfo); |
| 49 | } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 50 | virtual const PPCRegisterInfo *getRegisterInfo() const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | return &InstrInfo.getRegisterInfo(); |
| 52 | } |
| 53 | |
| 54 | virtual const TargetData *getTargetData() const { return &DataLayout; } |
| 55 | virtual const PPCSubtarget *getSubtargetImpl() const { return &Subtarget; } |
| 56 | virtual const InstrItineraryData getInstrItineraryData() const { |
| 57 | return InstrItins; |
| 58 | } |
Anton Korobeynikov | 01c0e9f | 2008-08-17 13:54:28 +0000 | [diff] [blame] | 59 | |
Bill Wendling | 6310474 | 2010-01-18 22:36:35 +0000 | [diff] [blame] | 60 | /// getLSDAEncoding - Returns the LSDA pointer encoding. The choices are |
| 61 | /// 4-byte, 8-byte, and target default. The CIE is hard-coded to indicate that |
| 62 | /// the LSDA pointer in the FDE section is an "sdata4", and should be encoded |
| 63 | /// as a 4-byte pointer by default. However, some systems may require a |
| 64 | /// different size due to bugs or other conditions. We will default to a |
| 65 | /// 4-byte encoding unless the system tells us otherwise. |
| 66 | /// |
| 67 | /// FIXME: This call-back isn't good! We should be using the correct encoding |
| 68 | /// regardless of the system. However, there are some systems which have bugs |
| 69 | /// that prevent this from occuring. |
| 70 | virtual DwarfLSDAEncoding::Encoding getLSDAEncoding() const; |
| 71 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 72 | // Pass Pipeline Configuration |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 73 | virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
| 74 | virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 75 | virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel, |
Daniel Dunbar | 3e0ad8b | 2009-07-15 22:33:19 +0000 | [diff] [blame] | 76 | JITCodeEmitter &JCE); |
Dan Gohman | 62ea18a | 2007-11-19 20:46:23 +0000 | [diff] [blame] | 77 | virtual bool getEnableTailMergeDefault() const; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 78 | }; |
| 79 | |
| 80 | /// PPC32TargetMachine - PowerPC 32-bit target machine. |
| 81 | /// |
| 82 | class PPC32TargetMachine : public PPCTargetMachine { |
| 83 | public: |
Daniel Dunbar | f5c2b85 | 2009-08-02 23:37:13 +0000 | [diff] [blame] | 84 | PPC32TargetMachine(const Target &T, const std::string &TT, |
| 85 | const std::string &FS); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 86 | }; |
| 87 | |
| 88 | /// PPC64TargetMachine - PowerPC 64-bit target machine. |
| 89 | /// |
| 90 | class PPC64TargetMachine : public PPCTargetMachine { |
| 91 | public: |
Daniel Dunbar | f5c2b85 | 2009-08-02 23:37:13 +0000 | [diff] [blame] | 92 | PPC64TargetMachine(const Target &T, const std::string &TT, |
| 93 | const std::string &FS); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 94 | }; |
| 95 | |
| 96 | } // end namespace llvm |
| 97 | |
| 98 | #endif |