1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the X86 specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86TARGETMACHINE_H
15 #define X86TARGETMACHINE_H
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetData.h"
19 #include "llvm/Target/TargetFrameInfo.h"
21 #include "X86ELFWriterInfo.h"
22 #include "X86InstrInfo.h"
23 #include "X86JITInfo.h"
24 #include "X86Subtarget.h"
25 #include "X86ISelLowering.h"
31 class X86TargetMachine : public LLVMTargetMachine {
32 X86Subtarget Subtarget;
33 const TargetData DataLayout; // Calculates type size & alignment
34 TargetFrameInfo FrameInfo;
35 X86InstrInfo InstrInfo;
37 X86TargetLowering TLInfo;
38 X86ELFWriterInfo ELFWriterInfo;
39 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
42 virtual const TargetAsmInfo *createTargetAsmInfo() const;
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.
46 typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o,
48 unsigned OptLevel, bool verbose);
49 static AsmPrinterCtorFn AsmPrinterCtor;
52 X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit);
54 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
55 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
56 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
57 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
58 virtual X86TargetLowering *getTargetLowering() const {
59 return const_cast<X86TargetLowering*>(&TLInfo);
61 virtual const X86RegisterInfo *getRegisterInfo() const {
62 return &InstrInfo.getRegisterInfo();
64 virtual const TargetData *getTargetData() const { return &DataLayout; }
65 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
66 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
69 static unsigned getModuleMatchQuality(const Module &M);
70 static unsigned getJITMatchQuality();
72 static void registerAsmPrinter(AsmPrinterCtorFn F) {
76 // Set up the pass pipeline.
77 virtual bool addInstSelector(PassManagerBase &PM, unsigned OptLevel);
78 virtual bool addPreRegAlloc(PassManagerBase &PM, unsigned OptLevel);
79 virtual bool addPostRegAlloc(PassManagerBase &PM, unsigned OptLevel);
80 virtual bool addAssemblyEmitter(PassManagerBase &PM, unsigned OptLevel,
81 bool Verbose, raw_ostream &Out);
82 virtual bool addCodeEmitter(PassManagerBase &PM, unsigned OptLevel,
83 bool DumpAsm, MachineCodeEmitter &MCE);
84 virtual bool addSimpleCodeEmitter(PassManagerBase &PM, unsigned OptLevel,
85 bool DumpAsm, MachineCodeEmitter &MCE);
87 /// symbolicAddressesAreRIPRel - Return true if symbolic addresses are
88 /// RIP-relative on this machine, taking into consideration the relocation
89 /// model and subtarget. RIP-relative addresses cannot have a separate
90 /// base or index register.
91 bool symbolicAddressesAreRIPRel() const;
94 /// X86_32TargetMachine - X86 32-bit target machine.
96 class X86_32TargetMachine : public X86TargetMachine {
98 X86_32TargetMachine(const Module &M, const std::string &FS);
100 static unsigned getJITMatchQuality();
101 static unsigned getModuleMatchQuality(const Module &M);
104 /// X86_64TargetMachine - X86 64-bit target machine.
106 class X86_64TargetMachine : public X86TargetMachine {
108 X86_64TargetMachine(const Module &M, const std::string &FS);
110 static unsigned getJITMatchQuality();
111 static unsigned getModuleMatchQuality(const Module &M);
114 } // End llvm namespace