Reapply bottom-up fast-isel, with several fixes for x86-32:
[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 "llvm/Target/TargetMachine.h"
19
20 namespace llvm {
21
22 class FunctionPass;
23 class JITCodeEmitter;
24 class MCCodeEmitter;
25 class MCContext;
26 class MachineCodeEmitter;
27 class Target;
28 class TargetAsmBackend;
29 class X86TargetMachine;
30 class formatted_raw_ostream;
31
32 /// createX86ISelDag - This pass converts a legalized DAG into a 
33 /// X86-specific DAG, ready for instruction scheduling.
34 ///
35 FunctionPass *createX86ISelDag(X86TargetMachine &TM,
36                                CodeGenOpt::Level OptLevel);
37
38 /// createGlobalBaseRegPass - This pass initializes a global base
39 /// register for PIC on x86-32.
40 FunctionPass* createGlobalBaseRegPass();
41
42 /// createX86FloatingPointStackifierPass - This function returns a pass which
43 /// converts floating point register references and pseudo instructions into
44 /// floating point stack references and physical instructions.
45 ///
46 FunctionPass *createX86FloatingPointStackifierPass();
47
48 /// createSSEDomainFixPass - This pass twiddles SSE opcodes to prevent domain
49 /// crossings.
50 FunctionPass *createSSEDomainFixPass();
51
52 /// createX87FPRegKillInserterPass - This function returns a pass which
53 /// inserts FP_REG_KILL instructions where needed.
54 ///
55 FunctionPass *createX87FPRegKillInserterPass();
56
57 /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
58 /// to the specified MCE object.
59 FunctionPass *createX86JITCodeEmitterPass(X86TargetMachine &TM,
60                                           JITCodeEmitter &JCE);
61
62 MCCodeEmitter *createX86_32MCCodeEmitter(const Target &, TargetMachine &TM,
63                                          MCContext &Ctx);
64 MCCodeEmitter *createX86_64MCCodeEmitter(const Target &, TargetMachine &TM,
65                                          MCContext &Ctx);
66
67 TargetAsmBackend *createX86_32AsmBackend(const Target &, const std::string &);
68 TargetAsmBackend *createX86_64AsmBackend(const Target &, const std::string &);
69
70 /// createX86EmitCodeToMemory - Returns a pass that converts a register
71 /// allocated function into raw machine code in a dynamically
72 /// allocated chunk of memory.
73 ///
74 FunctionPass *createEmitX86CodeToMemory();
75
76 /// createX86MaxStackAlignmentHeuristicPass - This function returns a pass
77 /// which determines whether the frame pointer register should be
78 /// reserved in case dynamic stack alignment is later required.
79 ///
80 FunctionPass *createX86MaxStackAlignmentHeuristicPass();
81
82 extern Target TheX86_32Target, TheX86_64Target;
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