[WebAssembly] Factor out a TypeToString function, since we need it in multiple places.
[oota-llvm.git] / lib / Target / X86 / X86.h
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
15 #ifndef LLVM_LIB_TARGET_X86_X86_H
16 #define LLVM_LIB_TARGET_X86_X86_H
17
18 #include "llvm/Support/CodeGen.h"
19
20 namespace llvm {
21
22 class FunctionPass;
23 class ImmutablePass;
24 class X86TargetMachine;
25
26 /// createX86ISelDag - This pass converts a legalized DAG into a
27 /// X86-specific DAG, ready for instruction scheduling.
28 ///
29 FunctionPass *createX86ISelDag(X86TargetMachine &TM,
30                                CodeGenOpt::Level OptLevel);
31
32 /// createX86GlobalBaseRegPass - This pass initializes a global base
33 /// register for PIC on x86-32.
34 FunctionPass* createX86GlobalBaseRegPass();
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.
39 FunctionPass *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 ///
45 FunctionPass *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.
50 FunctionPass *createX86IssueVZeroUpperPass();
51
52 /// createX86PadShortFunctions - Return a pass that pads short functions
53 /// with NOOPs. This will prevent a stall when returning on the Atom.
54 FunctionPass *createX86PadShortFunctions();
55 /// createX86FixupLEAs - Return a a pass that selectively replaces
56 /// certain instructions (like add, sub, inc, dec, some shifts,
57 /// and some multiplies) by equivalent LEA instructions, in order
58 /// to eliminate execution delays in some Atom processors.
59 FunctionPass *createX86FixupLEAs();
60
61 /// createX86OptimizeLEAs() - Return a pass that removes redundant
62 /// address recalculations.
63 FunctionPass *createX86OptimizeLEAs();
64
65 /// createX86CallFrameOptimization - Return a pass that optimizes
66 /// the code-size of x86 call sequences. This is done by replacing
67 /// esp-relative movs with pushes.
68 FunctionPass *createX86CallFrameOptimization();
69
70 /// createX86WinEHStatePass - Return an IR pass that inserts EH registration
71 /// stack objects and explicit EH state updates. This pass must run after EH
72 /// preparation, which does Windows-specific but architecture-neutral
73 /// preparation.
74 FunctionPass *createX86WinEHStatePass();
75
76 /// Return a Machine IR pass that expands X86-specific pseudo
77 /// instructions into a sequence of actual instructions. This pass
78 /// must run after prologue/epilogue insertion and before lowering
79 /// the MachineInstr to MC.
80 FunctionPass *createX86ExpandPseudoPass();
81 } // End llvm namespace
82
83 #endif