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