blob: fdc00fa1ef953679f4b25079db9bf30a426203c8 [file] [log] [blame]
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001//===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00002//
John Criswell856ba762003-10-21 15:17:13 +00003// The LLVM Compiler Infrastructure
4//
Chris Lattner4ee451d2007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Misha Brukman0e0a7a452005-04-21 23:38:14 +00007//
John Criswell856ba762003-10-21 15:17:13 +00008//===----------------------------------------------------------------------===//
Misha Brukman0e0a7a452005-04-21 23:38:14 +00009//
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000010// 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 Anderson07000c62006-05-12 06:33:49 +000018#include "llvm/Target/TargetData.h"
Chris Lattner8bd66e62002-12-28 21:00:25 +000019#include "llvm/Target/TargetFrameInfo.h"
Evan Chengc4c62572006-03-13 23:20:37 +000020#include "X86.h"
Bill Wendlingfcdea7b2007-01-27 02:56:16 +000021#include "X86ELFWriterInfo.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000022#include "X86InstrInfo.h"
Chris Lattner1e60a912003-12-20 01:22:19 +000023#include "X86JITInfo.h"
Nate Begemanfb5792f2005-07-12 01:41:54 +000024#include "X86Subtarget.h"
Evan Chengc4c62572006-03-13 23:20:37 +000025#include "X86ISelLowering.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000026
Brian Gaeked0fde302003-11-11 22:41:34 +000027namespace llvm {
Owen Andersoncb371882008-08-21 00:14:44 +000028
29class raw_ostream;
Brian Gaeked0fde302003-11-11 22:41:34 +000030
Chris Lattner1911fd42006-09-04 04:14:57 +000031class X86TargetMachine : public LLVMTargetMachine {
Evan Chengc4c62572006-03-13 23:20:37 +000032 X86Subtarget Subtarget;
Bill Wendlingfcdea7b2007-01-27 02:56:16 +000033 const TargetData DataLayout; // Calculates type size & alignment
Evan Chengc4c62572006-03-13 23:20:37 +000034 TargetFrameInfo FrameInfo;
Evan Chengaa3c1412006-05-30 21:45:53 +000035 X86InstrInfo InstrInfo;
Evan Chengc4c62572006-03-13 23:20:37 +000036 X86JITInfo JITInfo;
37 X86TargetLowering TLInfo;
Bill Wendlingfcdea7b2007-01-27 02:56:16 +000038 X86ELFWriterInfo ELFWriterInfo;
Evan Chengaabe38b2007-12-22 09:40:20 +000039 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
Jim Laskeyfde1b3b2006-09-07 23:39:26 +000040
41protected:
42 virtual const TargetAsmInfo *createTargetAsmInfo() const;
Anton Korobeynikov3c3bc482008-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 Andersoncb371882008-08-21 00:14:44 +000046 typedef FunctionPass *(*AsmPrinterCtorFn)(raw_ostream &o,
Bill Wendling57f0db82009-02-24 08:30:20 +000047 X86TargetMachine &tm,
Evan Cheng42bf74b2009-03-25 01:47:28 +000048 bool fast, bool verbose);
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +000049 static AsmPrinterCtorFn AsmPrinterCtor;
50
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000051public:
Evan Cheng25ab6902006-09-08 06:48:29 +000052 X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit);
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000053
Chris Lattnerd029cd22004-06-02 05:55:25 +000054 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
55 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000056 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
57 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Chris Lattner98d0d7d2006-05-12 21:14:20 +000058 virtual X86TargetLowering *getTargetLowering() const {
59 return const_cast<X86TargetLowering*>(&TLInfo);
60 }
Dan Gohmanc9f5f3f2008-05-14 01:58:56 +000061 virtual const X86RegisterInfo *getRegisterInfo() const {
Chris Lattnerfde4b512002-12-28 20:33:52 +000062 return &InstrInfo.getRegisterInfo();
63 }
Owen Andersona69571c2006-05-03 01:29:57 +000064 virtual const TargetData *getTargetData() const { return &DataLayout; }
Bill Wendlingfcdea7b2007-01-27 02:56:16 +000065 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
Bill Wendlingeb1ac332007-02-08 01:39:44 +000066 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
Bill Wendlingfcdea7b2007-01-27 02:56:16 +000067 }
Chris Lattnerfde4b512002-12-28 20:33:52 +000068
Chris Lattnerd36c9702004-07-11 02:48:49 +000069 static unsigned getModuleMatchQuality(const Module &M);
70 static unsigned getJITMatchQuality();
Anton Korobeynikov3c3bc482008-08-17 13:53:59 +000071
72 static void registerAsmPrinter(AsmPrinterCtorFn F) {
73 AsmPrinterCtor = F;
74 }
75
Chris Lattner1911fd42006-09-04 04:14:57 +000076 // Set up the pass pipeline.
Anton Korobeynikov856914f2008-04-23 18:23:05 +000077 virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
78 virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast);
Dan Gohmanbfae8312008-03-11 22:29:46 +000079 virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast);
80 virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng42bf74b2009-03-25 01:47:28 +000081 bool Verbose, raw_ostream &Out);
Dan Gohmanbfae8312008-03-11 22:29:46 +000082 virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng8bd60352007-07-20 21:56:13 +000083 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohmanbfae8312008-03-11 22:29:46 +000084 virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng8bd60352007-07-20 21:56:13 +000085 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohman97135e12008-09-26 19:15:30 +000086
Dan Gohman333014e2009-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 Gohman97135e12008-09-26 19:15:30 +000091 bool symbolicAddressesAreRIPRel() const;
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000092};
Evan Cheng25ab6902006-09-08 06:48:29 +000093
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
Brian Gaeked0fde302003-11-11 22:41:34 +0000114} // End llvm namespace
115
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000116#endif