1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file declares the X86 specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
14 #ifndef X86TARGETMACHINE_H
15 #define X86TARGETMACHINE_H
18 #include "X86ELFWriterInfo.h"
19 #include "X86InstrInfo.h"
20 #include "X86ISelLowering.h"
21 #include "X86FrameLowering.h"
22 #include "X86JITInfo.h"
23 #include "X86SelectionDAGInfo.h"
24 #include "X86Subtarget.h"
25 #include "llvm/Target/TargetMachine.h"
26 #include "llvm/Target/TargetData.h"
27 #include "llvm/Target/TargetFrameLowering.h"
31 class formatted_raw_ostream
;
33 class X86TargetMachine
: public LLVMTargetMachine
{
34 X86Subtarget Subtarget
;
35 X86FrameLowering FrameLowering
;
36 X86ELFWriterInfo ELFWriterInfo
;
37 Reloc::Model DefRelocModel
; // Reloc model before it's overridden.
40 // We have specific defaults for X86.
41 virtual void setCodeModelForJIT();
42 virtual void setCodeModelForStatic();
45 X86TargetMachine(const Target
&T
, const std::string
&TT
,
46 const std::string
&CPU
, const std::string
&FS
,
49 virtual const X86InstrInfo
*getInstrInfo() const {
50 llvm_unreachable("getInstrInfo not implemented");
52 virtual const TargetFrameLowering
*getFrameLowering() const {
53 return &FrameLowering
;
55 virtual X86JITInfo
*getJITInfo() {
56 llvm_unreachable("getJITInfo not implemented");
58 virtual const X86Subtarget
*getSubtargetImpl() const{ return &Subtarget
; }
59 virtual const X86TargetLowering
*getTargetLowering() const {
60 llvm_unreachable("getTargetLowering not implemented");
62 virtual const X86SelectionDAGInfo
*getSelectionDAGInfo() const {
63 llvm_unreachable("getSelectionDAGInfo not implemented");
65 virtual const X86RegisterInfo
*getRegisterInfo() const {
66 return &getInstrInfo()->getRegisterInfo();
68 virtual const X86ELFWriterInfo
*getELFWriterInfo() const {
69 return Subtarget
.isTargetELF() ? &ELFWriterInfo
: 0;
72 // Set up the pass pipeline.
73 virtual bool addInstSelector(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
74 virtual bool addPreRegAlloc(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
75 virtual bool addPostRegAlloc(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
76 virtual bool addPreEmitPass(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
);
77 virtual bool addCodeEmitter(PassManagerBase
&PM
, CodeGenOpt::Level OptLevel
,
81 /// X86_32TargetMachine - X86 32-bit target machine.
83 class X86_32TargetMachine
: public X86TargetMachine
{
84 const TargetData DataLayout
; // Calculates type size & alignment
85 X86InstrInfo InstrInfo
;
86 X86SelectionDAGInfo TSInfo
;
87 X86TargetLowering TLInfo
;
90 X86_32TargetMachine(const Target
&T
, const std::string
&M
,
91 const std::string
&CPU
, const std::string
&FS
);
92 virtual const TargetData
*getTargetData() const { return &DataLayout
; }
93 virtual const X86TargetLowering
*getTargetLowering() const {
96 virtual const X86SelectionDAGInfo
*getSelectionDAGInfo() const {
99 virtual const X86InstrInfo
*getInstrInfo() const {
102 virtual X86JITInfo
*getJITInfo() {
107 /// X86_64TargetMachine - X86 64-bit target machine.
109 class X86_64TargetMachine
: public X86TargetMachine
{
110 const TargetData DataLayout
; // Calculates type size & alignment
111 X86InstrInfo InstrInfo
;
112 X86SelectionDAGInfo TSInfo
;
113 X86TargetLowering TLInfo
;
116 X86_64TargetMachine(const Target
&T
, const std::string
&TT
,
117 const std::string
&CPU
, const std::string
&FS
);
118 virtual const TargetData
*getTargetData() const { return &DataLayout
; }
119 virtual const X86TargetLowering
*getTargetLowering() const {
122 virtual const X86SelectionDAGInfo
*getSelectionDAGInfo() const {
125 virtual const X86InstrInfo
*getInstrInfo() const {
128 virtual X86JITInfo
*getJITInfo() {
133 } // End llvm namespace