mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-24 03:33:20 +01:00
6627a32ff9
llvm-svn: 10103
50 lines
1.5 KiB
C++
50 lines
1.5 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 llvm {
|
|
|
|
namespace {
|
|
enum RegAllocName { simple, local, linearscan };
|
|
|
|
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"),
|
|
clEnumVal(linearscan, " linear-scan global register allocator"),
|
|
0),
|
|
cl::init(local));
|
|
}
|
|
|
|
FunctionPass *createRegisterAllocator()
|
|
{
|
|
switch (RegAlloc) {
|
|
case simple:
|
|
return createSimpleRegisterAllocator();
|
|
case local:
|
|
return createLocalRegisterAllocator();
|
|
case linearscan:
|
|
return createLinearScanRegisterAllocator();
|
|
default:
|
|
assert(0 && "no register allocator selected");
|
|
return 0; // not reached
|
|
}
|
|
}
|
|
|
|
} // End llvm namespace
|