Change llc command line for register allocators
[oota-llvm.git] / include / llvm / CodeGen / Passes.h
1 //===-- Passes.h - Target independent code generation passes ----*- C++ -*-===//
2 //
3 // This file defines interfaces to access the target independent code generation
4 // passes provided by the LLVM backend.
5 //
6 //===----------------------------------------------------------------------===//
7
8 #ifndef LLVM_CODEGEN_PASSES_H
9 #define LLVM_CODEGEN_PASSES_H
10
11 class FunctionPass;
12 class PassInfo;
13 class TargetMachine;
14
15 // PHIElimination pass - This pass eliminates machine instruction PHI nodes by
16 // inserting copy instructions.  This destroys SSA information, but is the
17 // desired input for some register allocators.  This pass is "required" by these
18 // register allocator like this:  AU.addRequiredID(PHIEliminationID);
19 //
20 extern const PassInfo *PHIEliminationID;
21
22 enum RegAllocName { simple, local };
23
24 /// SimpleRegisterAllocation Pass - This pass converts the input machine code
25 /// from SSA form to use explicit registers by spilling every register.  Wow,
26 /// great policy huh?
27 ///
28 FunctionPass *createSimpleRegisterAllocator();
29
30 /// LocalRegisterAllocation Pass - This pass register allocates the input code a
31 /// basic block at a time, yielding code better than the simple register
32 /// allocator, but not as good as a global allocator.
33 /// 
34 FunctionPass *createLocalRegisterAllocator();
35
36 /// PrologEpilogCodeInserter Pass - This pass inserts prolog and epilog code,
37 /// and eliminates abstract frame references.
38 ///
39 FunctionPass *createPrologEpilogCodeInserter();
40
41
42 /// getRegisterAllocator - This creates an instance of the register allocator
43 /// for the Sparc.
44 FunctionPass *getRegisterAllocator(TargetMachine &T);
45
46 #endif