mirror of
https://github.com/RPCS3/llvm.git
synced 2024-12-15 07:59:57 +00:00
b576c94c15
Header files will be on the way. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9298 91177308-0d34-0410-b5e6-96231b3b80d8
43 lines
1.3 KiB
C++
43 lines
1.3 KiB
C++
//===-- Passes.cpp - Target independent code generation passes -*- C++ -*-===//
|
|
//
|
|
// The LLVM Compiler Infrastructure
|
|
//
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
//
|
|
//===----------------------------------------------------------------------===//
|
|
//
|
|
// 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
|
|
}
|
|
}
|