summaryrefslogtreecommitdiffstats
path: root/llvm/lib/CodeGen/Passes.cpp
blob: 86f354eb32f43d066b82aaccec380b5900458f1e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
//===-- Passes.cpp - Target independent code generation passes -*- C++ -*-===//
//
// This file defines interfaces to access the target independent code
// generation passes provided by the LLVM backend.
//
//===---------------------------------------------------------------------===//

#include "llvm/CodeGen/Passes.h"
#include "Support/CommandLine.h"

namespace {
  enum RegAllocName { simple, local };

  cl::opt<RegAllocName>
  RegAlloc("regalloc",
           cl::desc("Register allocator to use: (default = simple)"),
           cl::Prefix,
           cl::values(clEnumVal(simple, "  simple register allocator"),
                      clEnumVal(local,  "  local register allocator"),
                      0),
           cl::init(local));
}

FunctionPass *createRegisterAllocator()
{
  switch (RegAlloc) {
  case simple:
    return createSimpleRegisterAllocator();
  case local:
    return createLocalRegisterAllocator();
  default:
    assert(0 && "no register allocator selected");
    return 0; // not reached
  }
}
OpenPOWER on IntegriCloud