Use PassManagerBase instead of FunctionPassManager for functions
[oota-llvm.git] / lib / Target / X86 / X86.h
1 //===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9 //
10 // This file contains the entry points for global functions defined in the x86
11 // target library, as used by the LLVM JIT.
12 //
13 //===----------------------------------------------------------------------===//
14
15 #ifndef TARGET_X86_H
16 #define TARGET_X86_H
17
18 #include <iosfwd>
19
20 namespace llvm {
21
22 class X86TargetMachine;
23 class FunctionPass;
24 class MachineCodeEmitter;
25
26 /// createX86ISelDag - This pass converts a legalized DAG into a 
27 /// X86-specific DAG, ready for instruction scheduling.
28 ///
29 FunctionPass *createX86ISelDag(X86TargetMachine &TM, bool Fast);
30
31 /// createX86FloatingPointStackifierPass - This function returns a pass which
32 /// converts floating point register references and pseudo instructions into
33 /// floating point stack references and physical instructions.
34 ///
35 FunctionPass *createX86FloatingPointStackifierPass();
36
37 /// createX86CodePrinterPass - Returns a pass that prints the X86
38 /// assembly code for a MachineFunction to the given output stream,
39 /// using the given target machine description.
40 ///
41 FunctionPass *createX86CodePrinterPass(std::ostream &o, X86TargetMachine &tm);
42
43 /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
44 /// to the specified MCE object.
45 FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
46                                        MachineCodeEmitter &MCE);
47
48 /// createX86EmitCodeToMemory - Returns a pass that converts a register
49 /// allocated function into raw machine code in a dynamically
50 /// allocated chunk of memory.
51 ///
52 FunctionPass *createEmitX86CodeToMemory();
53
54 } // End llvm namespace
55
56 // Defines symbolic names for X86 registers.  This defines a mapping from
57 // register name to register number.
58 //
59 #include "X86GenRegisterNames.inc"
60
61 // Defines symbolic names for the X86 instructions.
62 //
63 #include "X86GenInstrNames.inc"
64
65 #endif