blob: 94b756671c43cceffc527f8a9736701f40a5ac95 [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 {
28
29class 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 Cheng8ee6bab2007-12-22 09:40:20 +000037 Reloc::Model DefRelocModel; // Reloc model before it's overridden.
Dan Gohmanf17a25c2007-07-18 16:29:46 +000038
39protected:
40 virtual const TargetAsmInfo *createTargetAsmInfo() const;
Anton Korobeynikov9ff5bee2008-08-17 13:53:59 +000041
42 // To avoid having target depend on the asmprinter stuff libraries, asmprinter
43 // set this functions to ctor pointer at startup time if they are linked in.
44 typedef FunctionPass *(*AsmPrinterCtorFn)(std::ostream &o,
45 X86TargetMachine &tm);
46 static AsmPrinterCtorFn AsmPrinterCtor;
47
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048public:
49 X86TargetMachine(const Module &M, const std::string &FS, bool is64Bit);
50
51 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
52 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000053 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
54 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000055 virtual X86TargetLowering *getTargetLowering() const {
56 return const_cast<X86TargetLowering*>(&TLInfo);
57 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000058 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000059 return &InstrInfo.getRegisterInfo();
60 }
61 virtual const TargetData *getTargetData() const { return &DataLayout; }
62 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
63 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
64 }
65
66 static unsigned getModuleMatchQuality(const Module &M);
67 static unsigned getJITMatchQuality();
Anton Korobeynikov9ff5bee2008-08-17 13:53:59 +000068
69 static void registerAsmPrinter(AsmPrinterCtorFn F) {
70 AsmPrinterCtor = F;
71 }
72
Dan Gohmanf17a25c2007-07-18 16:29:46 +000073 // Set up the pass pipeline.
Anton Korobeynikov194ae6c2008-04-23 18:23:05 +000074 virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
75 virtual bool addPreRegAlloc(PassManagerBase &PM, bool Fast);
Dan Gohmane34aa772008-03-11 22:29:46 +000076 virtual bool addPostRegAlloc(PassManagerBase &PM, bool Fast);
77 virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
Dan Gohmanf17a25c2007-07-18 16:29:46 +000078 std::ostream &Out);
Dan Gohmane34aa772008-03-11 22:29:46 +000079 virtual bool addCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng77547212007-07-20 21:56:13 +000080 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohmane34aa772008-03-11 22:29:46 +000081 virtual bool addSimpleCodeEmitter(PassManagerBase &PM, bool Fast,
Evan Cheng77547212007-07-20 21:56:13 +000082 bool DumpAsm, MachineCodeEmitter &MCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083};
84
85/// X86_32TargetMachine - X86 32-bit target machine.
86///
87class X86_32TargetMachine : public X86TargetMachine {
88public:
89 X86_32TargetMachine(const Module &M, const std::string &FS);
90
91 static unsigned getJITMatchQuality();
92 static unsigned getModuleMatchQuality(const Module &M);
93};
94
95/// X86_64TargetMachine - X86 64-bit target machine.
96///
97class X86_64TargetMachine : public X86TargetMachine {
98public:
99 X86_64TargetMachine(const Module &M, const std::string &FS);
100
101 static unsigned getJITMatchQuality();
102 static unsigned getModuleMatchQuality(const Module &M);
103};
104
105} // End llvm namespace
106
107#endif