1 //===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
3 // The LLVM Compiler Infrastructure
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file contains the entry points for global functions defined in the x86
11 // target library, as used by the LLVM JIT.
13 //===----------------------------------------------------------------------===//
18 #include "llvm/Target/TargetMachine.h"
22 class X86TargetMachine
;
24 class MachineCodeEmitter
;
26 class formatted_raw_ostream
;
28 /// createX86ISelDag - This pass converts a legalized DAG into a
29 /// X86-specific DAG, ready for instruction scheduling.
31 FunctionPass
*createX86ISelDag(X86TargetMachine
&TM
,
32 CodeGenOpt::Level OptLevel
);
34 /// createX86FloatingPointStackifierPass - This function returns a pass which
35 /// converts floating point register references and pseudo instructions into
36 /// floating point stack references and physical instructions.
38 FunctionPass
*createX86FloatingPointStackifierPass();
40 /// createX87FPRegKillInserterPass - This function returns a pass which
41 /// inserts FP_REG_KILL instructions where needed.
43 FunctionPass
*createX87FPRegKillInserterPass();
45 /// createX86CodePrinterPass - Returns a pass that prints the X86
46 /// assembly code for a MachineFunction to the given output stream,
47 /// using the given target machine description.
49 FunctionPass
*createX86CodePrinterPass(formatted_raw_ostream
&o
,
53 /// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
54 /// to the specified MCE object.
56 FunctionPass
*createX86CodeEmitterPass(X86TargetMachine
&TM
,
57 MachineCodeEmitter
&MCE
);
58 FunctionPass
*createX86JITCodeEmitterPass(X86TargetMachine
&TM
,
60 FunctionPass
*createX86ObjectCodeEmitterPass(X86TargetMachine
&TM
,
61 ObjectCodeEmitter
&OCE
);
63 /// createX86EmitCodeToMemory - Returns a pass that converts a register
64 /// allocated function into raw machine code in a dynamically
65 /// allocated chunk of memory.
67 FunctionPass
*createEmitX86CodeToMemory();
69 /// createX86MaxStackAlignmentCalculatorPass - This function returns a pass
70 /// which calculates maximal stack alignment required for function
72 FunctionPass
*createX86MaxStackAlignmentCalculatorPass();
74 } // End llvm namespace
76 // Defines symbolic names for X86 registers. This defines a mapping from
77 // register name to register number.
79 #include "X86GenRegisterNames.inc"
81 // Defines symbolic names for the X86 instructions.
83 #include "X86GenInstrNames.inc"