2003-12-28 07:59:53 +00:00
|
|
|
//===-- Passes.cpp - Target independent code generation passes ------------===//
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
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.
|
2005-04-21 22:36:52 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
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"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/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 {
|
2004-07-21 08:24:35 +00:00
|
|
|
enum RegAllocName { simple, local, linearscan, iterativescan };
|
2003-10-02 16:57:49 +00:00
|
|
|
|
2004-07-22 15:30:33 +00:00
|
|
|
cl::opt<RegAllocName>
|
|
|
|
RegAlloc(
|
2004-07-22 14:29:31 +00:00
|
|
|
"regalloc",
|
2004-07-22 21:46:02 +00:00
|
|
|
cl::desc("Register allocator to use: (default = linearscan)"),
|
2004-07-22 14:29:31 +00:00
|
|
|
cl::Prefix,
|
|
|
|
cl::values(
|
|
|
|
clEnumVal(simple, " simple register allocator"),
|
|
|
|
clEnumVal(local, " local register allocator"),
|
|
|
|
clEnumVal(linearscan, " linear scan register allocator"),
|
|
|
|
clEnumVal(iterativescan, " iterative scan register allocator"),
|
|
|
|
clEnumValEnd),
|
2004-07-22 18:42:00 +00:00
|
|
|
cl::init(linearscan));
|
2003-10-02 16:57:49 +00:00
|
|
|
}
|
|
|
|
|
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();
|
2004-07-21 08:24:35 +00:00
|
|
|
case iterativescan:
|
|
|
|
return createIterativeScanRegisterAllocator();
|
2003-10-02 16:57:49 +00:00
|
|
|
}
|
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|