1 //===-- Passes.cpp - Target independent code generation passes ------------===//
3 // The LLVM Compiler Infrastructure
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
8 //===----------------------------------------------------------------------===//
10 // This file defines interfaces to access the target independent code
11 // generation passes provided by the LLVM backend.
13 //===---------------------------------------------------------------------===//
15 #include "llvm/CodeGen/RegAllocRegistry.h"
16 #include "llvm/CodeGen/Passes.h"
20 //===---------------------------------------------------------------------===//
22 /// RegisterRegAlloc class - Track the registration of register allocators.
24 //===---------------------------------------------------------------------===//
25 MachinePassRegistry
RegisterRegAlloc::Registry
;
28 //===---------------------------------------------------------------------===//
30 /// RegAlloc command line options.
32 //===---------------------------------------------------------------------===//
34 cl::opt
<RegisterRegAlloc::FunctionPassCtor
, false,
35 RegisterPassParser
<RegisterRegAlloc
> >
37 cl::init(&createLinearScanRegisterAllocator
),
38 cl::desc("Register allocator to use: (default = linearscan)"));
42 //===---------------------------------------------------------------------===//
44 /// createRegisterAllocator - choose the appropriate register allocator.
46 //===---------------------------------------------------------------------===//
47 FunctionPass
*llvm::createRegisterAllocator() {
48 RegisterRegAlloc::FunctionPassCtor Ctor
= RegisterRegAlloc::getDefault();
52 RegisterRegAlloc::setDefault(RegAlloc
);