blob: ead4ce1f3f8b9e7f7e3d6934089a51ea991bfe48 [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
Bill Wendling5ed22ac2009-04-29 23:29:43 +000018#include "llvm/Target/TargetMachine.h"
19
Dan Gohmanf17a25c2007-07-18 16:29:46 +000020namespace llvm {
21
22class X86TargetMachine;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000023class FunctionPass;
24class MachineCodeEmitter;
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000025class JITCodeEmitter;
David Greene302008d2009-07-14 20:18:05 +000026class formatted_raw_ostream;
Dan Gohmanf17a25c2007-07-18 16:29:46 +000027
28/// createX86ISelDag - This pass converts a legalized DAG into a
29/// X86-specific DAG, ready for instruction scheduling.
30///
Bruno Cardoso Lopes8e2537b2009-06-01 19:57:37 +000031FunctionPass *createX86ISelDag(X86TargetMachine &TM,
32 CodeGenOpt::Level OptLevel);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000033
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.
37///
38FunctionPass *createX86FloatingPointStackifierPass();
39
Dan Gohmanfd6722c2008-11-12 22:55:05 +000040/// createX87FPRegKillInserterPass - This function returns a pass which
41/// inserts FP_REG_KILL instructions where needed.
42///
43FunctionPass *createX87FPRegKillInserterPass();
44
Dan Gohmanf17a25c2007-07-18 16:29:46 +000045/// 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.
48///
David Greene302008d2009-07-14 20:18:05 +000049FunctionPass *createX86CodePrinterPass(formatted_raw_ostream &o,
50 X86TargetMachine &tm,
Bill Wendling5ed22ac2009-04-29 23:29:43 +000051 bool Verbose);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000052
53/// createX86CodeEmitterPass - Return a pass that emits the collected X86 code
54/// to the specified MCE object.
Bruno Cardoso Lopes1ea31ff2009-05-30 20:51:52 +000055
Bruno Cardoso Lopes8e2537b2009-06-01 19:57:37 +000056FunctionPass *createX86CodeEmitterPass(X86TargetMachine &TM,
57 MachineCodeEmitter &MCE);
58FunctionPass *createX86JITCodeEmitterPass(X86TargetMachine &TM,
59 JITCodeEmitter &JCE);
Bruno Cardoso Lopesaabb9a52009-07-06 05:09:34 +000060FunctionPass *createX86ObjectCodeEmitterPass(X86TargetMachine &TM,
61 ObjectCodeEmitter &OCE);
Dan Gohmanf17a25c2007-07-18 16:29:46 +000062
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///
67FunctionPass *createEmitX86CodeToMemory();
68
Bruno Cardoso Lopes8e2537b2009-06-01 19:57:37 +000069/// createX86MaxStackAlignmentCalculatorPass - This function returns a pass
70/// which calculates maximal stack alignment required for function
Anton Korobeynikov194ae6c2008-04-23 18:23:05 +000071///
72FunctionPass *createX86MaxStackAlignmentCalculatorPass();
73
Dan Gohmanf17a25c2007-07-18 16:29:46 +000074} // End llvm namespace
75
76// Defines symbolic names for X86 registers. This defines a mapping from
77// register name to register number.
78//
79#include "X86GenRegisterNames.inc"
80
81// Defines symbolic names for the X86 instructions.
82//
83#include "X86GenInstrNames.inc"
84
85#endif