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 { |
| 28 | |
| 29 | class X86TargetMachine : public LLVMTargetMachine { |
| 30 | X86Subtarget Subtarget; |
| 31 | const TargetData DataLayout; // Calculates type size & alignment |
| 32 | TargetFrameInfo FrameInfo; |
| 33 | X86InstrInfo InstrInfo; |
| 34 | X86JITInfo JITInfo; |
| 35 | X86TargetLowering TLInfo; |
| 36 | X86ELFWriterInfo ELFWriterInfo; |
Evan Cheng | 8ee6bab | 2007-12-22 09:40:20 +0000 | [diff] [blame] | 37 | Reloc::Model DefRelocModel; // Reloc model before it's overridden. |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 38 | |
| 39 | protected: |
| 40 | virtual const TargetAsmInfo *createTargetAsmInfo() const; |
| 41 | |
| 42 | public: |
| 43 | X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit); |
| 44 | |
| 45 | virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; } |
| 46 | virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame^] | 47 | virtual X86JITInfo *getJITInfo() { return &JITInfo; } |
| 48 | virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; } |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 49 | virtual X86TargetLowering *getTargetLowering() const { |
| 50 | return const_cast<X86TargetLowering*>(&TLInfo); |
| 51 | } |
Dan Gohman | b41dfba | 2008-05-14 01:58:56 +0000 | [diff] [blame^] | 52 | virtual const X86RegisterInfo *getRegisterInfo() const { |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 53 | return &InstrInfo.getRegisterInfo(); |
| 54 | } |
| 55 | virtual const TargetData *getTargetData() const { return &DataLayout; } |
| 56 | virtual const X86ELFWriterInfo *getELFWriterInfo() const { |
| 57 | return Subtarget.isTargetELF() ? &ELFWriterInfo : 0; |
| 58 | } |
| 59 | |
| 60 | static unsigned getModuleMatchQuality(const Module &M); |
| 61 | static unsigned getJITMatchQuality(); |
| 62 | |
| 63 | // Set up the pass pipeline. |
Anton Korobeynikov | 194ae6c | 2008-04-23 18:23:05 +0000 | [diff] [blame] | 64 | virtual bool addInstSelector(PassManagerBase &PM, bool Fast); |
| 65 | virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast); |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 66 | virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast); |
| 67 | virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast, |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 68 | std::ostream &Out); |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 69 | virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 70 | bool DumpAsm, MachineCodeEmitter &MCE); |
Dan Gohman | e34aa77 | 2008-03-11 22:29:46 +0000 | [diff] [blame] | 71 | virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast, |
Evan Cheng | 7754721 | 2007-07-20 21:56:13 +0000 | [diff] [blame] | 72 | bool DumpAsm, MachineCodeEmitter &MCE); |
Dan Gohman | f17a25c | 2007-07-18 16:29:46 +0000 | [diff] [blame] | 73 | }; |
| 74 | |
| 75 | /// X86_32TargetMachine - X86 32-bit target machine. |
| 76 | /// |
| 77 | class X86_32TargetMachine : public X86TargetMachine { |
| 78 | public: |
| 79 | X86_32TargetMachine(const Module &M, const std::string &FS); |
| 80 | |
| 81 | static unsigned getJITMatchQuality(); |
| 82 | static unsigned getModuleMatchQuality(const Module &M); |
| 83 | }; |
| 84 | |
| 85 | /// X86_64TargetMachine - X86 64-bit target machine. |
| 86 | /// |
| 87 | class X86_64TargetMachine : public X86TargetMachine { |
| 88 | public: |
| 89 | X86_64TargetMachine(const Module &M, const std::string &FS); |
| 90 | |
| 91 | static unsigned getJITMatchQuality(); |
| 92 | static unsigned getModuleMatchQuality(const Module &M); |
| 93 | }; |
| 94 | |
| 95 | } // End llvm namespace |
| 96 | |
| 97 | #endif |