411d45047cfb2e88a532d5999bca6f7b186eec3a
[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 X86TargetMachine;
23 class FunctionPass;
24 class MachineCodeEmitter;
25 class MCCodeEmitter;
26 class MCContext;
27 class JITCodeEmitter;
28 class Target;
29 class formatted_raw_ostream;
30
31 /// createX86ISelDag - This pass converts a legalized DAG into a 
32 /// X86-specific DAG, ready for instruction scheduling.
33 ///
34 FunctionPass *createX86ISelDag(X86TargetMachine &TM,
35                                CodeGenOpt::Level OptLevel);
36
37 /// createX86FloatingPointStackifierPass - This function returns a pass which
38 /// converts floating point register references and pseudo instructions into
39 /// floating point stack references and physical instructions.
40 ///
41 FunctionPass *createX86FloatingPointStackifierPass();
42
43 /// createX87FPRegKillInserterPass - This function returns a pass which
44 /// inserts FP_REG_KILL instructions where needed.
45 ///
46 FunctionPass *createX87FPRegKillInserterPass();
47
48 /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
49 /// to the specified MCE object.
50 FunctionPass *createX86JITCodeEmitterPass(X86TargetMachine &TM,
51                                           JITCodeEmitter &JCE);
52
53 MCCodeEmitter *createHeinousX86MCCodeEmitter(const Target &, TargetMachine &TM,
54                                              MCContext &Ctx);
55 MCCodeEmitter *createX86_32MCCodeEmitter(const Target &, TargetMachine &TM,
56                                          MCContext &Ctx);
57 MCCodeEmitter *createX86_64MCCodeEmitter(const Target &, TargetMachine &TM,
58                                          MCContext &Ctx);
59
60 /// createX86EmitCodeToMemory - Returns a pass that converts a register
61 /// allocated function into raw machine code in a dynamically
62 /// allocated chunk of memory.
63 ///
64 FunctionPass *createEmitX86CodeToMemory();
65
66 extern Target TheX86_32Target, TheX86_64Target;
67
68 } // End llvm namespace
69
70 // Defines symbolic names for X86 registers.  This defines a mapping from
71 // register name to register number.
72 //
73 #include "X86GenRegisterNames.inc"
74
75 // Defines symbolic names for the X86 instructions.
76 //
77 #include "X86GenInstrNames.inc"
78
79 #endif