[llvm-commits] CVS: llvm/lib/Target/X86/X86.h
Brian Gaeke
gaeke at niobe.cs.uiuc.edu
Wed Aug 13 13:16:06 PDT 2003
Changes in directory llvm/lib/Target/X86:
X86.h updated: 1.18 -> 1.19
---
Log message:
Factory methods for FunctionPasses now return type FunctionPass *.
Correct one of the functions' comments.
---
Diffs of the changes:
Index: llvm/lib/Target/X86/X86.h
diff -u llvm/lib/Target/X86/X86.h:1.18 llvm/lib/Target/X86/X86.h:1.19
--- llvm/lib/Target/X86/X86.h:1.18 Mon Aug 11 09:59:22 2003
+++ llvm/lib/Target/X86/X86.h Wed Aug 13 13:15:29 2003
@@ -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.
More information about the llvm-commits
mailing list