Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 1 | //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- 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 X86 specific subclass of TargetMachine. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef X86TARGETMACHINE_H |
| 15 | #define X86TARGETMACHINE_H |
| 16 | |
| 17 | #include "llvm/Target/TargetMachine.h" |
| 18 | #include "llvm/Target/TargetData.h" |
| 19 | #include "llvm/Target/TargetFrameInfo.h" |
| 20 | #include "X86.h" |
| 21 | #include "X86ELFWriterInfo.h" |
| 22 | #include "X86InstrInfo.h" |
| 23 | #include "X86JITInfo.h" |
| 24 | #include "X86Subtarget.h" |
| 25 | #include "X86ISelLowering.h" |
| 26 | |
| 27 | namespace llvm { |
Owen Anderson | 847b99b | 2008-08-21 00:14:44 +0000 | [diff] [blame] | 28 | |
David Greene | 302008d | 2009-07-14 20:18:05 +0000 | [diff] [blame^] | 29 | class formatted_raw_ostream; |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 30 | |
| 31 | class X86TargetMachine : public LLVMTargetMachine { |
| 32 | X86Subtarget Subtarget; |
| 33 | const TargetData DataLayout; // Calculates type size & alignment |
| 34 | TargetFrameInfo FrameInfo; |
| 35 | X86InstrInfo InstrInfo; |
| 36 | X86JITInfo JITInfo; |
| 37 | X86TargetLowering TLInfo; |
| 38 | X86ELFWriterInfo ELFWriterInfo; |
Evan Cheng | 8ee6bab | 2007-12-22 09:40:20 +0000 | [diff] [blame] | 39 | Reloc::Model DefRelocModel; // Reloc model before it's overridden. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 40 | |
| 41 | protected: |
| 42 | virtual const TargetAsmInfo *createTargetAsmInfo() const; |
Anton Korobeynikov | 9ff5bee | 2008-08-17 13:53:59 +0000 | [diff] [blame] | 43 | |
| 44 | // To avoid having target depend on the asmprinter stuff libraries, asmprinter |
| 45 | // set this functions to ctor pointer at startup time if they are linked in. |
David Greene | 302008d | 2009-07-14 20:18:05 +0000 | [diff] [blame^] | 46 | typedef FunctionPass *(*AsmPrinterCtorFn)(formatted_raw_ostream &o, |
Bill Wendling | 4f40531 | 2009-02-24 08:30:20 +0000 | [diff] [blame] | 47 | X86TargetMachine &tm, |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 48 | bool verbose); |
Anton Korobeynikov | 9ff5bee | 2008-08-17 13:53:59 +0000 | [diff] [blame] | 49 | static AsmPrinterCtorFn AsmPrinterCtor; |
| 50 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 51 | public: |
| 52 | X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit); |
| 53 | |
| 54 | virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 55 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 56 | virtual X86JITInfo *getJITInfo() { return &JITInfo; } |
| 57 | virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 58 | virtual X86TargetLowering *getTargetLowering() const { |
| 59 | return const_cast<X86TargetLowering*>(&TLInfo); |
| 60 | } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 61 | virtual const X86RegisterInfo *getRegisterInfo() const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 62 | return &InstrInfo.getRegisterInfo(); |
| 63 | } |
| 64 | virtual const TargetData *getTargetData() const { return &DataLayout; } |
| 65 | virtual const X86ELFWriterInfo *getELFWriterInfo() const { |
| 66 | return Subtarget.isTargetELF() ? &ELFWriterInfo : 0; |
| 67 | } |
| 68 | |
| 69 | static unsigned getModuleMatchQuality(const Module &M); |
| 70 | static unsigned getJITMatchQuality(); |
Anton Korobeynikov | 9ff5bee | 2008-08-17 13:53:59 +0000 | [diff] [blame] | 71 | |
| 72 | static void registerAsmPrinter(AsmPrinterCtorFn F) { |
| 73 | AsmPrinterCtor = F; |
| 74 | } |
| 75 | |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 76 | // Set up the pass pipeline. |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 77 | virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
| 78 | virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
| 79 | virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel); |
| 80 | virtual bool addAssemblyEmitter(PassManagerBase &PM, |
| 81 | CodeGenOpt::Level OptLevel, |
David Greene | 302008d | 2009-07-14 20:18:05 +0000 | [diff] [blame^] | 82 | bool Verbose, formatted_raw_ostream &Out); |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 83 | virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 84 | bool DumpAsm, MachineCodeEmitter &MCE); |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 85 | virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel, |
| 86 | bool DumpAsm, JITCodeEmitter &JCE); |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 87 | virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel, |
| 88 | bool DumpAsm, ObjectCodeEmitter &OCE); |
Bill Wendling | 5ed22ac | 2009-04-29 23:29:43 +0000 | [diff] [blame] | 89 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, |
| 90 | CodeGenOpt::Level OptLevel, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 91 | bool DumpAsm, MachineCodeEmitter &MCE); |
Bruno Cardoso Lopes | 1ea31ff | 2009-05-30 20:51:52 +0000 | [diff] [blame] | 92 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, |
| 93 | CodeGenOpt::Level OptLevel, |
| 94 | bool DumpAsm, JITCodeEmitter &JCE); |
Bruno Cardoso Lopes | aabb9a5 | 2009-07-06 05:09:34 +0000 | [diff] [blame] | 95 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, |
| 96 | CodeGenOpt::Level OptLevel, |
| 97 | bool DumpAsm, ObjectCodeEmitter &OCE); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 98 | }; |
| 99 | |
| 100 | /// X86_32TargetMachine - X86 32-bit target machine. |
| 101 | /// |
| 102 | class X86_32TargetMachine : public X86TargetMachine { |
| 103 | public: |
| 104 | X86_32TargetMachine(const Module &M, const std::string &FS); |
| 105 | |
| 106 | static unsigned getJITMatchQuality(); |
| 107 | static unsigned getModuleMatchQuality(const Module &M); |
| 108 | }; |
| 109 | |
| 110 | /// X86_64TargetMachine - X86 64-bit target machine. |
| 111 | /// |
| 112 | class X86_64TargetMachine : public X86TargetMachine { |
| 113 | public: |
| 114 | X86_64TargetMachine(const Module &M, const std::string &FS); |
| 115 | |
| 116 | static unsigned getJITMatchQuality(); |
| 117 | static unsigned getModuleMatchQuality(const Module &M); |
| 118 | }; |
| 119 | |
| 120 | } // End llvm namespace |
| 121 | |
| 122 | #endif |