blob: 85abe0c377cc888852007895c87aec31d002146f [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
David Greene302008d2009-07-14 20:18:05 +000029class formatted_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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000044public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000045 X86TargetMachine(const Target &T, const Module &M, const std::string &FS,
46 bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000047
48 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
49 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000050 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
51 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052 virtual X86TargetLowering *getTargetLowering() const {
53 return const_cast<X86TargetLowering*>(&TLInfo);
54 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000055 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000056 return &InstrInfo.getRegisterInfo();
57 }
58 virtual const TargetData *getTargetData() const { return &DataLayout; }
59 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
60 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
61 }
62
Dan Gohmanf17a25c2007-07-18 16:29:46 +000063 // Set up the pass pipeline.
Bill Wendling5ed22ac2009-04-29 23:29:43 +000064 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
65 virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
66 virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
67 virtual bool addAssemblyEmitter(PassManagerBase &PM,
68 CodeGenOpt::Level OptLevel,
David Greene302008d2009-07-14 20:18:05 +000069 bool Verbose, formatted_raw_ostream &Out);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000070 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000071 MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000072 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000073 JITCodeEmitter &JCE);
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000074 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000075 ObjectCodeEmitter &OCE);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000076 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
77 CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000078 MachineCodeEmitter &MCE);
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000079 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
80 CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000081 JITCodeEmitter &JCE);
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000082 virtual bool addSimpleCodeEmitter(PassManagerBase &PM,
83 CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000084 ObjectCodeEmitter &OCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000085};
86
87/// X86_32TargetMachine - X86 32-bit target machine.
88///
89class X86_32TargetMachine : public X86TargetMachine {
90public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +000091 X86_32TargetMachine(const Target &T, const Module &M, const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000092
93 static unsigned getJITMatchQuality();
94 static unsigned getModuleMatchQuality(const Module &M);
95};
96
97/// X86_64TargetMachine - X86 64-bit target machine.
98///
99class X86_64TargetMachine : public X86TargetMachine {
100public:
Daniel Dunbarfe5939f2009-07-15 20:24:03 +0000101 X86_64TargetMachine(const Target &T, const Module &M, const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +0000102
103 static unsigned getJITMatchQuality();
104 static unsigned getModuleMatchQuality(const Module &M);
105};
106
107} // End llvm namespace
108
109#endif