2003-12-28 07:59:53 +00:00
|
|
|
//===-- Passes.cpp - Target independent code generation passes ------------===//
|
2003-10-20 19:43:21 +00:00
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-02 16:57:49 +00:00
|
|
|
//
|
|
|
|
// 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"
|
2003-12-28 07:59:53 +00:00
|
|
|
#include <iostream>
|
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2003-10-02 16:57:49 +00:00
|
|
|
namespace {
|
2003-11-20 03:32:25 +00:00
|
|
|
enum RegAllocName { simple, local, linearscan };
|
2003-10-02 16:57:49 +00:00
|
|
|
|
|
|
|
cl::opt<RegAllocName>
|
|
|
|
RegAlloc("regalloc",
|
|
|
|
cl::desc("Register allocator to use: (default = simple)"),
|
|
|
|
cl::Prefix,
|
2003-11-20 03:32:25 +00:00
|
|
|
cl::values(clEnumVal(simple, " simple register allocator"),
|
|
|
|
clEnumVal(local, " local register allocator"),
|
2004-03-01 23:18:15 +00:00
|
|
|
clEnumVal(linearscan, " linear scan register allocator (experimental)"),
|
2003-10-02 16:57:49 +00:00
|
|
|
0),
|
|
|
|
cl::init(local));
|
|
|
|
}
|
|
|
|
|
2003-12-28 07:59:53 +00:00
|
|
|
FunctionPass *llvm::createRegisterAllocator() {
|
2003-10-02 16:57:49 +00:00
|
|
|
switch (RegAlloc) {
|
2003-12-28 07:59:53 +00:00
|
|
|
default:
|
|
|
|
std::cerr << "no register allocator selected";
|
|
|
|
abort();
|
2003-10-02 16:57:49 +00:00
|
|
|
case simple:
|
|
|
|
return createSimpleRegisterAllocator();
|
|
|
|
case local:
|
|
|
|
return createLocalRegisterAllocator();
|
2003-11-20 03:32:25 +00:00
|
|
|
case linearscan:
|
|
|
|
return createLinearScanRegisterAllocator();
|
2003-10-02 16:57:49 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|