1. Remove condition on delete.
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.h
1 //===-- X86TargetMachine.h - Define TargetMachine for the X86 ---*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 //
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 "X86InstrInfo.h"
22 #include "X86JITInfo.h"
23 #include "X86Subtarget.h"
24 #include "X86ISelLowering.h"
25
26 namespace llvm {
27
28 class X86TargetMachine : public LLVMTargetMachine {
29   X86Subtarget      Subtarget;
30   const TargetData DataLayout;       // Calculates type size & alignment
31   TargetFrameInfo   FrameInfo;
32   X86InstrInfo      InstrInfo;
33   X86JITInfo        JITInfo;
34   X86TargetLowering TLInfo;
35
36 protected:
37   virtual const TargetAsmInfo *createTargetAsmInfo() const;
38   
39 public:
40   X86TargetMachine(const Module &M, const std::string &FS);
41
42   virtual const X86InstrInfo     *getInstrInfo() const { return &InstrInfo; }
43   virtual const TargetFrameInfo  *getFrameInfo() const { return &FrameInfo; }
44   virtual       TargetJITInfo    *getJITInfo()         { return &JITInfo; }
45   virtual const TargetSubtarget  *getSubtargetImpl() const{ return &Subtarget; }
46   virtual       X86TargetLowering *getTargetLowering() const { 
47     return const_cast<X86TargetLowering*>(&TLInfo); 
48   }
49   virtual const MRegisterInfo    *getRegisterInfo() const {
50     return &InstrInfo.getRegisterInfo();
51   }
52   virtual const TargetData       *getTargetData() const { return &DataLayout; }
53
54   static unsigned getModuleMatchQuality(const Module &M);
55   static unsigned getJITMatchQuality();
56   
57   // Set up the pass pipeline.
58   virtual bool addInstSelector(FunctionPassManager &PM, bool Fast);  
59   virtual bool addPostRegAlloc(FunctionPassManager &PM, bool Fast);
60   virtual bool addAssemblyEmitter(FunctionPassManager &PM, bool Fast, 
61                                   std::ostream &Out);
62   virtual bool addObjectWriter(FunctionPassManager &PM, bool Fast,
63                                std::ostream &Out);
64   virtual bool addCodeEmitter(FunctionPassManager &PM, bool Fast,
65                               MachineCodeEmitter &MCE);
66 };
67 } // End llvm namespace
68
69 #endif