Separate X86ISelLowering stuff out from the X86ISelPattern.cpp file. Patch
[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 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 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 TargetMachine;
23 class PassManager;
24 class FunctionPass;
25 class IntrinsicLowering;
26 class MachineCodeEmitter;
27
28 enum X86VectorEnum {
29   NoSSE, SSE, SSE2, SSE3
30 };
31
32 extern X86VectorEnum X86Vector;
33 extern bool X86ScalarSSE;
34
35 /// createX86ISelPattern - This pass converts an LLVM function into a 
36 /// machine code representation using pattern matching and a machine
37 /// description file.
38 ///
39 FunctionPass *createX86ISelPattern(TargetMachine &TM);
40
41 /// createX86ISelDag - This pass converts a legalized DAG into a 
42 /// X86-specific DAG, ready for instruction scheduling.
43 ///
44 FunctionPass *createX86ISelDag(TargetMachine &TM);
45
46 /// createX86SSAPeepholeOptimizerPass - Create a pass to perform SSA-based X86
47 /// specific peephole optimizations.
48 ///
49 FunctionPass *createX86SSAPeepholeOptimizerPass();
50
51 /// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
52 /// optimizations.
53 ///
54 FunctionPass *createX86PeepholeOptimizerPass();
55
56 /// createX86FloatingPointStackifierPass - This function returns a pass which
57 /// converts floating point register references and pseudo instructions into
58 /// floating point stack references and physical instructions.
59 ///
60 FunctionPass *createX86FloatingPointStackifierPass();
61
62 /// createX86CodePrinterPass - Returns a pass that prints the X86
63 /// assembly code for a MachineFunction to the given output stream,
64 /// using the given target machine description.
65 ///
66 FunctionPass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm);
67
68 /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
69 /// to the specified MCE object.
70 FunctionPass *createX86CodeEmitterPass(MachineCodeEmitter &MCE);
71
72 /// addX86ELFObjectWriterPass - Add passes to the FPM that output the generated
73 /// code as an ELF object file.
74 ///
75 void addX86ELFObjectWriterPass(PassManager &FPM,
76                                std::ostream &o, TargetMachine &tm);
77
78 /// createX86EmitCodeToMemory - Returns a pass that converts a register
79 /// allocated function into raw machine code in a dynamically
80 /// allocated chunk of memory.
81 ///
82 FunctionPass *createEmitX86CodeToMemory();
83
84 } // End llvm namespace
85
86 // Defines symbolic names for X86 registers.  This defines a mapping from
87 // register name to register number.
88 //
89 #include "X86GenRegisterNames.inc"
90
91 // Defines symbolic names for the X86 instructions.
92 //
93 #include "X86GenInstrNames.inc"
94
95 #endif