blob: 9dad017dd3edc042badd3e89db7b6eee3d5ca2af [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
Dan Gohmanf17a25c2007-07-18 16:29:46 +000018namespace llvm {
19
20class X86TargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000021class FunctionPass;
22class MachineCodeEmitter;
Owen Anderson847b99b2008-08-21 00:14:44 +000023class raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000024
25/// createX86ISelDag - This pass converts a legalized DAG into a
26/// X86-specific DAG, ready for instruction scheduling.
27///
Bill Wendling58ed5d22009-04-29 00:15:41 +000028FunctionPass *createX86ISelDag(X86TargetMachine &TM, unsigned OptSize);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000029
30/// createX86FloatingPointStackifierPass - This function returns a pass which
31/// converts floating point register references and pseudo instructions into
32/// floating point stack references and physical instructions.
33///
34FunctionPass *createX86FloatingPointStackifierPass();
35
Dan Gohmanfd6722c2008-11-12 22:55:05 +000036/// createX87FPRegKillInserterPass - This function returns a pass which
37/// inserts FP_REG_KILL instructions where needed.
38///
39FunctionPass *createX87FPRegKillInserterPass();
40
Dan Gohmanf17a25c2007-07-18 16:29:46 +000041/// createX86CodePrinterPass - Returns a pass that prints the X86
42/// assembly code for a MachineFunction to the given output stream,
43/// using the given target machine description.
44///
Bill Wendling4f405312009-02-24 08:30:20 +000045FunctionPass *createX86CodePrinterPass(raw_ostream &o,
46 X86TargetMachine &tm,
Bill Wendling58ed5d22009-04-29 00:15:41 +000047 unsigned OptLevel, bool Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000048
49/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
50/// to the specified MCE object.
51FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
52 MachineCodeEmitter &MCE);
53
54/// createX86EmitCodeToMemory - Returns a pass that converts a register
55/// allocated function into raw machine code in a dynamically
56/// allocated chunk of memory.
57///
58FunctionPass *createEmitX86CodeToMemory();
59
Anton Korobeynikov194ae6c2008-04-23 18:23:05 +000060/// createX86MaxStackAlignmentCalculatorPass - This function returns a pass which
61/// calculates maximal stack alignment required for function
62///
63FunctionPass *createX86MaxStackAlignmentCalculatorPass();
64
Dan Gohmanf17a25c2007-07-18 16:29:46 +000065} // End llvm namespace
66
67// Defines symbolic names for X86 registers. This defines a mapping from
68// register name to register number.
69//
70#include "X86GenRegisterNames.inc"
71
72// Defines symbolic names for the X86 instructions.
73//
74#include "X86GenInstrNames.inc"
75
76#endif