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.
|
|
|
|
//
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
|
2006-08-02 12:30:23 +00:00
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
2003-10-02 16:57:49 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2006-08-01 14:21:23 +00:00
|
|
|
|
2003-12-28 07:59:53 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2006-08-02 12:30:23 +00:00
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// RegisterRegAlloc class - Track the registration of register allocators.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
MachinePassRegistry RegisterRegAlloc::Registry;
|
|
|
|
|
|
|
|
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// RegAlloc command line options.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
2003-10-02 16:57:49 +00:00
|
|
|
namespace {
|
2006-08-02 12:30:23 +00:00
|
|
|
cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
|
|
|
|
RegisterPassParser<RegisterRegAlloc> >
|
2006-08-01 14:21:23 +00:00
|
|
|
RegAlloc("regalloc",
|
2006-08-03 00:16:56 +00:00
|
|
|
cl::init(&createLinearScanRegisterAllocator),
|
2006-08-01 14:21:23 +00:00
|
|
|
cl::desc("Register allocator to use: (default = linearscan)"));
|
2006-07-27 20:05:00 +00:00
|
|
|
}
|
|
|
|
|
2006-08-02 12:30:23 +00:00
|
|
|
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// createRegisterAllocator - choose the appropriate register allocator.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
2006-07-27 20:05:00 +00:00
|
|
|
FunctionPass *llvm::createRegisterAllocator() {
|
2006-08-01 18:29:48 +00:00
|
|
|
RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
|
2006-08-01 14:21:23 +00:00
|
|
|
|
|
|
|
if (!Ctor) {
|
2006-08-02 12:30:23 +00:00
|
|
|
Ctor = RegAlloc;
|
|
|
|
RegisterRegAlloc::setDefault(RegAlloc);
|
2006-08-01 14:21:23 +00:00
|
|
|
}
|
2006-07-27 20:05:00 +00:00
|
|
|
|
|
|
|
return Ctor();
|
|
|
|
}
|