summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorBrian Gaeke <gaeke@uiuc.edu>2003-08-13 18:15:29 +0000
committerBrian Gaeke <gaeke@uiuc.edu>2003-08-13 18:15:29 +0000
commit9826bdb7d829b2e48669a3ab69b0e6286f524001 (patch)
treefb64d4037acae983a9fb0512dcd548288916f215 /lib/Target/X86/X86.h
parent9d99b43fbcc2e8b7644e06ac26ce941b3719a190 (diff)
downloadllvm-9826bdb7d829b2e48669a3ab69b0e6286f524001.tar.gz
llvm-9826bdb7d829b2e48669a3ab69b0e6286f524001.tar.bz2
llvm-9826bdb7d829b2e48669a3ab69b0e6286f524001.tar.xz
Factory methods for FunctionPasses now return type FunctionPass *.
Correct one of the functions' comments. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7816 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index eec254cff2..14e6c2d98c 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -10,43 +10,43 @@
#include <iosfwd>
class TargetMachine;
-class Pass;
+class FunctionPass;
/// createX86SimpleInstructionSelector - This pass converts an LLVM function
/// into a machine code representation in a very simple peep-hole fashion. The
/// generated code sucks but the implementation is nice and simple.
///
-Pass *createX86SimpleInstructionSelector(TargetMachine &TM);
+FunctionPass *createX86SimpleInstructionSelector(TargetMachine &TM);
/// createX86PatternInstructionSelector - This pass converts an LLVM function
/// into a machine code representation using pattern matching and a machine
/// description file.
///
-Pass *createX86PatternInstructionSelector(TargetMachine &TM);
+FunctionPass *createX86PatternInstructionSelector(TargetMachine &TM);
/// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
/// optimizations.
///
-Pass *createX86PeepholeOptimizerPass();
+FunctionPass *createX86PeepholeOptimizerPass();
/// createX86FloatingPointStackifierPass - This function returns a pass which
/// converts floating point register references and pseudo instructions into
/// floating point stack references and physical instructions.
///
-Pass *createX86FloatingPointStackifierPass();
+FunctionPass *createX86FloatingPointStackifierPass();
/// createX86CodePrinterPass - Returns a pass that prints the X86
/// assembly code for a MachineFunction to the given output stream,
/// using the given target machine description. This should work
/// regardless of whether the function is in SSA form.
///
-Pass *createX86CodePrinterPass(std::ostream &o, TargetMachine &tm);
+FunctionPass *createX86CodePrinterPass(std::ostream &o,TargetMachine &tm);
-/// X86EmitCodeToMemory - This function converts a register allocated function
-/// into raw machine code in a dynamically allocated chunk of memory. A pointer
-/// to the start of the function is returned.
+/// createX86EmitCodeToMemory - Returns a pass that converts a register
+/// allocated function into raw machine code in a dynamically
+/// allocated chunk of memory.
///
-Pass *createEmitX86CodeToMemory();
+FunctionPass *createEmitX86CodeToMemory();
// Defines symbolic names for X86 registers. This defines a mapping from
// register name to register number.