summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-01-13 00:45:29 +0000
committerChris Lattner <sabre@nondot.org>2003-01-13 00:45:29 +0000
commit31ad5dd67feb7c4324c993ae30590ddb6c9701d2 (patch)
tree85d66715b1738f036484333315145bdbedce7e2d /lib/Target/X86/X86.h
parent70445403c3768a5e8e91d01c85513998f4898aac (diff)
downloadllvm-31ad5dd67feb7c4324c993ae30590ddb6c9701d2.tar.gz
llvm-31ad5dd67feb7c4324c993ae30590ddb6c9701d2.tar.bz2
llvm-31ad5dd67feb7c4324c993ae30590ddb6c9701d2.tar.xz
Move passes out to Passes.h
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@5227 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h17
1 files changed, 7 insertions, 10 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index b2176aa1eb..e798c0c68e 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -3,8 +3,6 @@
// This file contains the entry points for global functions defined in the x86
// target library, as used by the LLVM JIT.
//
-// FIXME: This file will be dramatically changed in the future
-//
//===----------------------------------------------------------------------===//
#ifndef TARGET_X86_H
@@ -20,17 +18,16 @@ class Pass;
///
Pass *createSimpleX86InstructionSelector(TargetMachine &TM);
-/// createSimpleRegisterAllocation - This function returns a pass that converts
-/// the specified machine code function from SSA form to use explicit registers
-/// by spilling every register. Wow, great policy huh?
+/// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
+/// optimizations.
///
-Pass *createSimpleRegisterAllocator();
-Pass *createLocalRegisterAllocator();
+Pass *createX86PeepholeOptimizerPass();
-/// createPrologEpilogCodeInserter - This function returns a pass that inserts
-/// prolog and epilog code, and eliminates abstract frame references.
+/// createX86FloatingPointStackifierPass - This function returns a pass which
+/// converts floating point register references and pseudo instructions into
+/// floating point stack references and physical instructions.
///
-Pass *createPrologEpilogCodeInserter();
+Pass *createX86FloatingPointStackifierPass();
/// createX86CodePrinterPass - Print out the specified machine code function to
/// the specified stream. This function should work regardless of whether or