blob: a77542d5fe9d291c047808dd8573532eb161ca06 [file] [log] [blame]
Dan Gohmanf17a25c2007-07-18 16:29:46 +00001//===-- X86.h - Top-level interface for X86 representation ------*- C++ -*-===//
2//
3// The LLVM Compiler Infrastructure
4//
Chris Lattner081ce942007-12-29 20:36:04 +00005// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
Dan Gohmanf17a25c2007-07-18 16:29:46 +00007//
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 <iosfwd>
19
20namespace llvm {
21
22class X86TargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023class FunctionPass;
24class MachineCodeEmitter;
Owen Anderson847b99b2008-08-21 00:14:44 +000025class raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000026
27/// createX86ISelDag - This pass converts a legalized DAG into a
28/// X86-specific DAG, ready for instruction scheduling.
29///
30FunctionPass *createX86ISelDag(X86TargetMachine &TM, bool Fast);
31
32/// createX86FloatingPointStackifierPass - This function returns a pass which
33/// converts floating point register references and pseudo instructions into
34/// floating point stack references and physical instructions.
35///
36FunctionPass *createX86FloatingPointStackifierPass();
37
38/// createX86CodePrinterPass - Returns a pass that prints the X86
39/// assembly code for a MachineFunction to the given output stream,
40/// using the given target machine description.
41///
Owen Anderson847b99b2008-08-21 00:14:44 +000042FunctionPass *createX86CodePrinterPass(raw_ostream &o, X86TargetMachine &tm);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000043
44/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
45/// to the specified MCE object.
46FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
47 MachineCodeEmitter &MCE);
48
49/// createX86EmitCodeToMemory - Returns a pass that converts a register
50/// allocated function into raw machine code in a dynamically
51/// allocated chunk of memory.
52///
53FunctionPass *createEmitX86CodeToMemory();
54
Anton Korobeynikov194ae6c2008-04-23 18:23:05 +000055/// createX86MaxStackAlignmentCalculatorPass - This function returns a pass which
56/// calculates maximal stack alignment required for function
57///
58FunctionPass *createX86MaxStackAlignmentCalculatorPass();
59
Dan Gohmanf17a25c2007-07-18 16:29:46 +000060} // End llvm namespace
61
62// Defines symbolic names for X86 registers. This defines a mapping from
63// register name to register number.
64//
65#include "X86GenRegisterNames.inc"
66
67// Defines symbolic names for the X86 instructions.
68//
69#include "X86GenInstrNames.inc"
70
71#endif