blob: 49cf163e6ffe675adbba3db5d1cdbb55c0f33257 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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
27namespace llvm {
Owen Anderson847b99b2008-08-21 00:14:44 +000028
29class raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000030
31class 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 Cheng8ee6bab2007-12-22 09:40:20 +000039 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000040
41protected:
42 virtual const TargetAsmInfo *createTargetAsmInfo() const;
Anton Korobeynikov9ff5bee2008-08-17 13:53:59 +000043
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.
Owen Anderson847b99b2008-08-21 00:14:44 +000046 typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o,
Bill Wendling4f405312009-02-24 08:30:20 +000047 X86TargetMachine &tm,
48 bool fast);
Anton Korobeynikov9ff5bee2008-08-17 13:53:59 +000049 static AsmPrinterCtorFn AsmPrinterCtor;
50
Dan Gohmanf17a25c2007-07-18 16:29:46 +000051public:
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 Gohmanb41dfba2008-05-14 01:58:56 +000056 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
57 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 virtual X86TargetLowering *getTargetLowering() const {
59 return const_cast<X86TargetLowering*>(&TLInfo);
60 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000061 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062 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 Korobeynikov9ff5bee2008-08-17 13:53:59 +000071
72 static void registerAsmPrinter(AsmPrinterCtorFn F) {
73 AsmPrinterCtor = F;
74 }
75
Dan Gohmanf17a25c2007-07-18 16:29:46 +000076 // Set up the pass pipeline.
Anton Korobeynikov194ae6c2008-04-23 18:23:05 +000077 virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
78 virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast);
Dan Gohmane34aa772008-03-11 22:29:46 +000079 virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast);
80 virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
Owen Anderson847b99b2008-08-21 00:14:44 +000081 raw_ostream &Out);
Dan Gohmane34aa772008-03-11 22:29:46 +000082 virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng77547212007-07-20 21:56:13 +000083 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohmane34aa772008-03-11 22:29:46 +000084 virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng77547212007-07-20 21:56:13 +000085 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohmanc6413362008-09-26 19:15:30 +000086
Dan Gohmanb0503e12009-02-09 18:12:09 +000087 /// 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.
Dan Gohmanc6413362008-09-26 19:15:30 +000091 bool symbolicAddressesAreRIPRel() const;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092};
93
94/// X86_32TargetMachine - X86 32-bit target machine.
95///
96class X86_32TargetMachine : public X86TargetMachine {
97public:
98 X86_32TargetMachine(const Module &M, const std::string &FS);
99
100 static unsigned getJITMatchQuality();
101 static unsigned getModuleMatchQuality(const Module &M);
102};
103
104/// X86_64TargetMachine - X86 64-bit target machine.
105///
106class X86_64TargetMachine : public X86TargetMachine {
107public:
108 X86_64TargetMachine(const Module &M, const std::string &FS);
109
110 static unsigned getJITMatchQuality();
111 static unsigned getModuleMatchQuality(const Module &M);
112};
113
114} // End llvm namespace
115
116#endif