]> git.proxmox.com Git - rustc.git/blame - src/llvm/lib/Target/X86/X86.h
Imported Upstream version 1.0.0+dfsg1
[rustc.git] / src / llvm / lib / Target / X86 / X86.h
CommitLineData
223e47cc
LB
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
1a4d82fc
JJ
15#ifndef LLVM_LIB_TARGET_X86_X86_H
16#define LLVM_LIB_TARGET_X86_X86_H
223e47cc 17
1a4d82fc 18#include "llvm/Support/CodeGen.h"
223e47cc
LB
19
20namespace llvm {
21
22class FunctionPass;
1a4d82fc 23class ImmutablePass;
223e47cc
LB
24class X86TargetMachine;
25
26/// createX86ISelDag - This pass converts a legalized DAG into a
27/// X86-specific DAG, ready for instruction scheduling.
28///
29FunctionPass *createX86ISelDag(X86TargetMachine &TM,
30 CodeGenOpt::Level OptLevel);
31
1a4d82fc 32/// createX86GlobalBaseRegPass - This pass initializes a global base
223e47cc 33/// register for PIC on x86-32.
1a4d82fc 34FunctionPass* createX86GlobalBaseRegPass();
223e47cc
LB
35
36/// createCleanupLocalDynamicTLSPass() - This pass combines multiple accesses
37/// to local-dynamic TLS variables so that the TLS base address for the module
38/// is only fetched once per execution path through the function.
39FunctionPass *createCleanupLocalDynamicTLSPass();
40
41/// createX86FloatingPointStackifierPass - This function returns a pass which
42/// converts floating point register references and pseudo instructions into
43/// floating point stack references and physical instructions.
44///
45FunctionPass *createX86FloatingPointStackifierPass();
46
47/// createX86IssueVZeroUpperPass - This pass inserts AVX vzeroupper instructions
48/// before each call to avoid transition penalty between functions encoded with
49/// AVX and SSE.
50FunctionPass *createX86IssueVZeroUpperPass();
51
223e47cc
LB
52/// createX86EmitCodeToMemory - Returns a pass that converts a register
53/// allocated function into raw machine code in a dynamically
54/// allocated chunk of memory.
55///
56FunctionPass *createEmitX86CodeToMemory();
57
970d7e83
LB
58/// \brief Creates an X86-specific Target Transformation Info pass.
59ImmutablePass *createX86TargetTransformInfoPass(const X86TargetMachine *TM);
60
61/// createX86PadShortFunctions - Return a pass that pads short functions
62/// with NOOPs. This will prevent a stall when returning on the Atom.
63FunctionPass *createX86PadShortFunctions();
1a4d82fc
JJ
64/// createX86FixupLEAs - Return a a pass that selectively replaces
65/// certain instructions (like add, sub, inc, dec, some shifts,
66/// and some multiplies) by equivalent LEA instructions, in order
67/// to eliminate execution delays in some Atom processors.
68FunctionPass *createX86FixupLEAs();
223e47cc
LB
69
70} // End llvm namespace
71
72#endif