Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 1 | //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===// |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 2 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
Chris Lattner | 4ee451d | 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. |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 7 | // |
John Criswell | 856ba76 | 2003-10-21 15:17:13 +0000 | [diff] [blame] | 8 | //===----------------------------------------------------------------------===// |
Misha Brukman | 0e0a7a45 | 2005-04-21 23:38:14 +0000 | [diff] [blame] | 9 | // |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 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" |
Owen Anderson | 07000c6 | 2006-05-12 06:33:49 +0000 | [diff] [blame] | 18 | #include "llvm/Target/TargetData.h" |
Chris Lattner | 8bd66e6 | 2002-12-28 21:00:25 +0000 | [diff] [blame] | 19 | #include "llvm/Target/TargetFrameInfo.h" |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 20 | #include "X86.h" |
Bill Wendling | fcdea7b | 2007-01-27 02:56:16 +0000 | [diff] [blame] | 21 | #include "X86ELFWriterInfo.h" |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 22 | #include "X86InstrInfo.h" |
Chris Lattner | 1e60a91 | 2003-12-20 01:22:19 +0000 | [diff] [blame] | 23 | #include "X86JITInfo.h" |
Nate Begeman | fb5792f | 2005-07-12 01:41:54 +0000 | [diff] [blame] | 24 | #include "X86Subtarget.h" |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 25 | #include "X86ISelLowering.h" |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 26 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 27 | namespace llvm { |
| 28 | |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 29 | class X86TargetMachine : public LLVMTargetMachine { |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 30 | X86Subtarget Subtarget; |
Bill Wendling | fcdea7b | 2007-01-27 02:56:16 +0000 | [diff] [blame] | 31 | const TargetData DataLayout; // Calculates type size & alignment |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 32 | TargetFrameInfo FrameInfo; |
Evan Cheng | aa3c141 | 2006-05-30 21:45:53 +0000 | [diff] [blame] | 33 | X86InstrInfo InstrInfo; |
Evan Cheng | c4c6257 | 2006-03-13 23:20:37 +0000 | [diff] [blame] | 34 | X86JITInfo JITInfo; |
| 35 | X86TargetLowering TLInfo; |
Bill Wendling | fcdea7b | 2007-01-27 02:56:16 +0000 | [diff] [blame] | 36 | X86ELFWriterInfo ELFWriterInfo; |
Evan Cheng | aabe38b | 2007-12-22 09:40:20 +0000 | [diff] [blame] | 37 | Reloc::Model DefRelocModel; // Reloc model before it's overridden. |
Jim Laskey | fde1b3b | 2006-09-07 23:39:26 +0000 | [diff] [blame] | 38 | |
| 39 | protected: |
| 40 | virtual const TargetAsmInfo *createTargetAsmInfo() const; |
Anton Korobeynikov | 3c3bc48 | 2008-08-17 13:53:59 +0000 | [diff] [blame^] | 41 | |
| 42 | // To avoid having target depend on the asmprinter stuff libraries, asmprinter |
| 43 | // set this functions to ctor pointer at startup time if they are linked in. |
| 44 | typedef FunctionPass *(*AsmPrinterCtorFn)(std::ostream &o, |
| 45 | X86TargetMachine &tm); |
| 46 | static AsmPrinterCtorFn AsmPrinterCtor; |
| 47 | |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 48 | public: |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 49 | X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit); |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 50 | |
Chris Lattner | d029cd2 | 2004-06-02 05:55:25 +0000 | [diff] [blame] | 51 | virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 52 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 53 | virtual X86JITInfo *getJITInfo() { return &JITInfo; } |
| 54 | virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; } |
Chris Lattner | 98d0d7d | 2006-05-12 21:14:20 +0000 | [diff] [blame] | 55 | virtual X86TargetLowering *getTargetLowering() const { |
| 56 | return const_cast<X86TargetLowering*>(&TLInfo); |
| 57 | } |
Dan Gohman | c9f5f3f | 2008-05-14 01:58:56 +0000 | [diff] [blame] | 58 | virtual const X86RegisterInfo *getRegisterInfo() const { |
Chris Lattner | fde4b51 | 2002-12-28 20:33:52 +0000 | [diff] [blame] | 59 | return &InstrInfo.getRegisterInfo(); |
| 60 | } |
Owen Anderson | a69571c | 2006-05-03 01:29:57 +0000 | [diff] [blame] | 61 | virtual const TargetData *getTargetData() const { return &DataLayout; } |
Bill Wendling | fcdea7b | 2007-01-27 02:56:16 +0000 | [diff] [blame] | 62 | virtual const X86ELFWriterInfo *getELFWriterInfo() const { |
Bill Wendling | eb1ac33 | 2007-02-08 01:39:44 +0000 | [diff] [blame] | 63 | return Subtarget.isTargetELF() ? &ELFWriterInfo : 0; |
Bill Wendling | fcdea7b | 2007-01-27 02:56:16 +0000 | [diff] [blame] | 64 | } |
Chris Lattner | fde4b51 | 2002-12-28 20:33:52 +0000 | [diff] [blame] | 65 | |
Chris Lattner | d36c970 | 2004-07-11 02:48:49 +0000 | [diff] [blame] | 66 | static unsigned getModuleMatchQuality(const Module &M); |
| 67 | static unsigned getJITMatchQuality(); |
Anton Korobeynikov | 3c3bc48 | 2008-08-17 13:53:59 +0000 | [diff] [blame^] | 68 | |
| 69 | static void registerAsmPrinter(AsmPrinterCtorFn F) { |
| 70 | AsmPrinterCtor = F; |
| 71 | } |
| 72 | |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 73 | // Set up the pass pipeline. |
Anton Korobeynikov | 856914f | 2008-04-23 18:23:05 +0000 | [diff] [blame] | 74 | virtual bool addInstSelector(PassManagerBase &PM, bool Fast); |
| 75 | virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast); |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 76 | virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast); |
| 77 | virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast, |
Chris Lattner | 1911fd4 | 2006-09-04 04:14:57 +0000 | [diff] [blame] | 78 | std::ostream &Out); |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 79 | virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 8bd6035 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 80 | bool DumpAsm, MachineCodeEmitter &MCE); |
Dan Gohman | bfae831 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 81 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 8bd6035 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 82 | bool DumpAsm, MachineCodeEmitter &MCE); |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 83 | }; |
Evan Cheng | 25ab690 | 2006-09-08 06:48:29 +0000 | [diff] [blame] | 84 | |
| 85 | /// X86_32TargetMachine - X86 32-bit target machine. |
| 86 | /// |
| 87 | class X86_32TargetMachine : public X86TargetMachine { |
| 88 | public: |
| 89 | X86_32TargetMachine(const Module &M, const std::string &FS); |
| 90 | |
| 91 | static unsigned getJITMatchQuality(); |
| 92 | static unsigned getModuleMatchQuality(const Module &M); |
| 93 | }; |
| 94 | |
| 95 | /// X86_64TargetMachine - X86 64-bit target machine. |
| 96 | /// |
| 97 | class X86_64TargetMachine : public X86TargetMachine { |
| 98 | public: |
| 99 | X86_64TargetMachine(const Module &M, const std::string &FS); |
| 100 | |
| 101 | static unsigned getJITMatchQuality(); |
| 102 | static unsigned getModuleMatchQuality(const Module &M); |
| 103 | }; |
| 104 | |
Brian Gaeke | d0fde30 | 2003-11-11 22:41:34 +0000 | [diff] [blame] | 105 | } // End llvm namespace |
| 106 | |
Chris Lattner | b4f68ed | 2002-10-29 22:37:54 +0000 | [diff] [blame] | 107 | #endif |