12f5c0e6a22ba17aa36d37a0a7731b7c2590f907
[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/TargetFrameInfo.h"
19 #include "llvm/PassManager.h"
20 #include "X86InstrInfo.h"
21
22 namespace llvm {
23
24 class X86TargetMachine : public TargetMachine {
25   X86InstrInfo InstrInfo;
26   TargetFrameInfo FrameInfo;
27 public:
28   X86TargetMachine(const Module &M);
29
30   virtual const X86InstrInfo     &getInstrInfo() const { return InstrInfo; }
31   virtual const TargetFrameInfo  &getFrameInfo() const { return FrameInfo; }
32   virtual const MRegisterInfo *getRegisterInfo() const {
33     return &InstrInfo.getRegisterInfo();
34   }
35
36   virtual const TargetSchedInfo &getSchedInfo()  const { abort(); }
37   virtual const TargetRegInfo   &getRegInfo()    const { abort(); }
38   virtual const TargetCacheInfo  &getCacheInfo() const { abort(); }
39
40   /// addPassesToJITCompile - Add passes to the specified pass manager to
41   /// implement a fast dynamic compiler for this target.  Return true if this is
42   /// not supported for this target.
43   ///
44   virtual bool addPassesToJITCompile(FunctionPassManager &PM);
45
46   /// addPassesToEmitMachineCode - Add passes to the specified pass manager to
47   /// get machine code emitted.  This uses a MachineCodeEmitter object to handle
48   /// actually outputting the machine code and resolving things like the address
49   /// of functions.  This method should returns true if machine code emission is
50   /// not supported.
51   ///
52   virtual bool addPassesToEmitMachineCode(FunctionPassManager &PM,
53                                           MachineCodeEmitter &MCE);
54   
55   virtual bool addPassesToEmitAssembly(PassManager &PM, std::ostream &Out);
56
57   virtual void replaceMachineCodeForFunction (void *Old, void *New);
58 };
59
60 } // End llvm namespace
61
62 #endif