Add support for the 'alignstack' attribute to the x86 backend. Fixes PR5254.
[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 *createX86_32MCCodeEmitter(const Target &, TargetMachine &TM,
54                                          MCContext &Ctx);
55 MCCodeEmitter *createX86_64MCCodeEmitter(const Target &, TargetMachine &TM,
56                                          MCContext &Ctx);
57
58 /// createX86EmitCodeToMemory - Returns a pass that converts a register
59 /// allocated function into raw machine code in a dynamically
60 /// allocated chunk of memory.
61 ///
62 FunctionPass *createEmitX86CodeToMemory();
63
64 extern Target TheX86_32Target, TheX86_64Target;
65
66 } // End llvm namespace
67
68 // Defines symbolic names for X86 registers.  This defines a mapping from
69 // register name to register number.
70 //
71 #include "X86GenRegisterNames.inc"
72
73 // Defines symbolic names for the X86 instructions.
74 //
75 #include "X86GenInstrNames.inc"
76
77 #endif