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" |
| 22 | #include "PPCMachOWriterInfo.h" |
| 23 | #include "llvm/Target/TargetMachine.h" |
| 24 | #include "llvm/Target/TargetData.h" |
| 25 | |
| 26 | namespace llvm { |
| 27 | class PassManager; |
| 28 | class GlobalValue; |
| 29 | |
| 30 | /// PPCTargetMachine - Common code between 32-bit and 64-bit PowerPC targets. |
| 31 | /// |
| 32 | class PPCTargetMachine : public LLVMTargetMachine { |
| 33 | PPCSubtarget Subtarget; |
| 34 | const TargetData DataLayout; // Calculates type size & alignment |
| 35 | PPCInstrInfo InstrInfo; |
| 36 | PPCFrameInfo FrameInfo; |
| 37 | PPCJITInfo JITInfo; |
| 38 | PPCTargetLowering TLInfo; |
| 39 | InstrItineraryData InstrItins; |
| 40 | PPCMachOWriterInfo MachOWriterInfo; |
| 41 | |
| 42 | protected: |
| 43 | virtual const TargetAsmInfo *createTargetAsmInfo() const; |
Anton Korobeynikov | 01c0e9f | 2008-08-17 13:54:28 +0000 | [diff] [blame] | 44 | |
| 45 | // To avoid having target depend on the asmprinter stuff libraries, asmprinter |
| 46 | // set this functions to ctor pointer at startup time if they are linked in. |
Owen Anderson | 847b99b | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 47 | typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o, |
Anton Korobeynikov | 01c0e9f | 2008-08-17 13:54:28 +0000 | [diff] [blame] | 48 | PPCTargetMachine &tm); |
| 49 | static AsmPrinterCtorFn AsmPrinterCtor; |
| 50 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | public: |
| 52 | PPCTargetMachine(const Module &M, const std::string &FS, bool is64Bit); |
| 53 | |
| 54 | virtual const PPCInstrInfo *getInstrInfo() const { return &InstrInfo; } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 55 | virtual const PPCFrameInfo *getFrameInfo() const { return &FrameInfo; } |
| 56 | virtual PPCJITInfo *getJITInfo() { return &JITInfo; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 57 | virtual PPCTargetLowering *getTargetLowering() const { |
| 58 | return const_cast<PPCTargetLowering*>(&TLInfo); |
| 59 | } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 60 | virtual const PPCRegisterInfo *getRegisterInfo() const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 61 | return &InstrInfo.getRegisterInfo(); |
| 62 | } |
| 63 | |
| 64 | virtual const TargetData *getTargetData() const { return &DataLayout; } |
| 65 | virtual const PPCSubtarget *getSubtargetImpl() const { return &Subtarget; } |
| 66 | virtual const InstrItineraryData getInstrItineraryData() const { |
| 67 | return InstrItins; |
| 68 | } |
| 69 | virtual const PPCMachOWriterInfo *getMachOWriterInfo() const { |
| 70 | return &MachOWriterInfo; |
| 71 | } |
Anton Korobeynikov | 01c0e9f | 2008-08-17 13:54:28 +0000 | [diff] [blame] | 72 | |
| 73 | static void registerAsmPrinter(AsmPrinterCtorFn F) { |
| 74 | AsmPrinterCtor = F; |
| 75 | } |
| 76 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 77 | // Pass Pipeline Configuration |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 78 | virtual bool addInstSelector(PassManagerBase &PM, bool Fast); |
| 79 | virtual bool addPreEmitPass(PassManagerBase &PM, bool Fast); |
| 80 | virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast, |
Owen Anderson | 847b99b | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 81 | raw_ostream &Out); |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 82 | virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 83 | bool DumpAsm, MachineCodeEmitter &MCE); |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 84 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 85 | bool DumpAsm, MachineCodeEmitter &MCE); |
Dan Gohman | 62ea18a | 2007-11-19 20:46:23 +0000 | [diff] [blame] | 86 | virtual bool getEnableTailMergeDefault() const; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 87 | }; |
| 88 | |
| 89 | /// PPC32TargetMachine - PowerPC 32-bit target machine. |
| 90 | /// |
| 91 | class PPC32TargetMachine : public PPCTargetMachine { |
| 92 | public: |
| 93 | PPC32TargetMachine(const Module &M, const std::string &FS); |
| 94 | |
| 95 | static unsigned getJITMatchQuality(); |
| 96 | static unsigned getModuleMatchQuality(const Module &M); |
| 97 | }; |
| 98 | |
| 99 | /// PPC64TargetMachine - PowerPC 64-bit target machine. |
| 100 | /// |
| 101 | class PPC64TargetMachine : public PPCTargetMachine { |
| 102 | public: |
| 103 | PPC64TargetMachine(const Module &M, const std::string &FS); |
| 104 | |
| 105 | static unsigned getJITMatchQuality(); |
| 106 | static unsigned getModuleMatchQuality(const Module &M); |
| 107 | }; |
| 108 | |
| 109 | } // end namespace llvm |
| 110 | |
| 111 | #endif |