blob: eee29be59e7c96ff751372f5330907ab28276ba8 [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
Eric Christopher7669c972009-12-21 08:15:29 +000041private:
42 // We have specific defaults for X86.
43 virtual void setCodeModelForJIT();
44 virtual void setCodeModelForStatic();
45
Dan Gohmanf17a25c2007-07-18 16:29:46 +000046public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000047 X86TargetMachine(const Target &T, const std::string &TT,
48 const std::string &FS, bool is64Bit);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000049
50 virtual const X86InstrInfo *getInstrInfo() const { return &InstrInfo; }
51 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000052 virtual X86JITInfo *getJITInfo() { return &JITInfo; }
53 virtual const X86Subtarget *getSubtargetImpl() const{ return &Subtarget; }
Dan Gohmanf17a25c2007-07-18 16:29:46 +000054 virtual X86TargetLowering *getTargetLowering() const {
55 return const_cast<X86TargetLowering*>(&TLInfo);
56 }
Dan Gohmanb41dfba2008-05-14 01:58:56 +000057 virtual const X86RegisterInfo *getRegisterInfo() const {
Dan Gohmanf17a25c2007-07-18 16:29:46 +000058 return &InstrInfo.getRegisterInfo();
59 }
60 virtual const TargetData *getTargetData() const { return &DataLayout; }
61 virtual const X86ELFWriterInfo *getELFWriterInfo() const {
62 return Subtarget.isTargetELF() ? &ELFWriterInfo : 0;
63 }
64
Bill Wendling63104742010-01-18 22:36:35 +000065 /// getLSDAEncoding - Returns the LSDA pointer encoding. The choices are
66 /// 4-byte, 8-byte, and target default. The CIE is hard-coded to indicate that
67 /// the LSDA pointer in the FDE section is an "sdata4", and should be encoded
68 /// as a 4-byte pointer by default. However, some systems may require a
69 /// different size due to bugs or other conditions. We will default to a
70 /// 4-byte encoding unless the system tells us otherwise.
71 ///
72 /// FIXME: This call-back isn't good! We should be using the correct encoding
73 /// regardless of the system. However, there are some systems which have bugs
74 /// that prevent this from occuring.
Bill Wendlinge46f64b2010-01-16 01:40:55 +000075 virtual DwarfLSDAEncoding::Encoding getLSDAEncoding() const;
76
Dan Gohmanf17a25c2007-07-18 16:29:46 +000077 // Set up the pass pipeline.
Bill Wendling5ed22ac2009-04-29 23:29:43 +000078 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
79 virtual bool addPreRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
80 virtual bool addPostRegAlloc(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Bill Wendling5ed22ac2009-04-29 23:29:43 +000081 virtual bool addCodeEmitter(PassManagerBase &PM, CodeGenOpt::Level OptLevel,
Daniel Dunbar3e0ad8b2009-07-15 22:33:19 +000082 JITCodeEmitter &JCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000083};
84
85/// X86_32TargetMachine - X86 32-bit target machine.
86///
87class X86_32TargetMachine : public X86TargetMachine {
88public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000089 X86_32TargetMachine(const Target &T, const std::string &M,
90 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000091};
92
93/// X86_64TargetMachine - X86 64-bit target machine.
94///
95class X86_64TargetMachine : public X86TargetMachine {
96public:
Daniel Dunbarf5c2b852009-08-02 23:37:13 +000097 X86_64TargetMachine(const Target &T, const std::string &TT,
98 const std::string &FS);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000099};
100
101} // End llvm namespace
102
103#endif