2003-12-28 08:59:53 +01:00
|
|
|
//===-- Passes.cpp - Target independent code generation passes ------------===//
|
2005-04-22 00:36:52 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
2007-12-29 21:36:04 +01:00
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
2005-04-22 00:36:52 +02:00
|
|
|
//
|
2003-10-20 21:43:21 +02:00
|
|
|
//===----------------------------------------------------------------------===//
|
2003-10-02 18:57:49 +02:00
|
|
|
//
|
|
|
|
// This file defines interfaces to access the target independent code
|
|
|
|
// generation passes provided by the LLVM backend.
|
|
|
|
//
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
|
2006-08-02 14:30:23 +02:00
|
|
|
#include "llvm/CodeGen/RegAllocRegistry.h"
|
2003-10-02 18:57:49 +02:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2006-08-01 16:21:23 +02:00
|
|
|
|
2003-12-28 08:59:53 +01:00
|
|
|
using namespace llvm;
|
2003-11-11 23:41:34 +01:00
|
|
|
|
2006-08-02 14:30:23 +02:00
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// RegisterRegAlloc class - Track the registration of register allocators.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
MachinePassRegistry RegisterRegAlloc::Registry;
|
|
|
|
|
2010-05-28 01:57:25 +02:00
|
|
|
static FunctionPass *createDefaultRegisterAllocator() { return 0; }
|
|
|
|
static RegisterRegAlloc
|
|
|
|
defaultRegAlloc("default",
|
|
|
|
"pick register allocator based on -O option",
|
|
|
|
createDefaultRegisterAllocator);
|
2006-08-02 14:30:23 +02:00
|
|
|
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// RegAlloc command line options.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
2008-05-13 02:00:25 +02:00
|
|
|
static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
|
|
|
|
RegisterPassParser<RegisterRegAlloc> >
|
|
|
|
RegAlloc("regalloc",
|
2010-05-28 01:57:25 +02:00
|
|
|
cl::init(&createDefaultRegisterAllocator),
|
|
|
|
cl::desc("Register allocator to use"));
|
2006-07-27 22:05:00 +02:00
|
|
|
|
2006-08-02 14:30:23 +02:00
|
|
|
|
|
|
|
//===---------------------------------------------------------------------===//
|
|
|
|
///
|
|
|
|
/// createRegisterAllocator - choose the appropriate register allocator.
|
|
|
|
///
|
|
|
|
//===---------------------------------------------------------------------===//
|
2010-05-28 01:57:25 +02:00
|
|
|
FunctionPass *llvm::createRegisterAllocator(CodeGenOpt::Level OptLevel) {
|
2006-08-01 20:29:48 +02:00
|
|
|
RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
|
2010-05-28 01:57:25 +02:00
|
|
|
|
2006-08-01 16:21:23 +02:00
|
|
|
if (!Ctor) {
|
2006-08-02 14:30:23 +02:00
|
|
|
Ctor = RegAlloc;
|
|
|
|
RegisterRegAlloc::setDefault(RegAlloc);
|
2006-08-01 16:21:23 +02:00
|
|
|
}
|
2010-05-28 01:57:25 +02:00
|
|
|
|
2011-04-30 05:13:08 +02:00
|
|
|
// This forces linking of the linear scan register allocator,
|
|
|
|
// so -regalloc=linearscan still works in clang.
|
2011-04-30 03:37:54 +02:00
|
|
|
if (Ctor == createLinearScanRegisterAllocator)
|
|
|
|
return createLinearScanRegisterAllocator();
|
2011-04-19 19:17:58 +02:00
|
|
|
|
2010-05-28 01:57:25 +02:00
|
|
|
if (Ctor != createDefaultRegisterAllocator)
|
|
|
|
return Ctor();
|
|
|
|
|
|
|
|
// When the 'default' allocator is requested, pick one based on OptLevel.
|
|
|
|
switch (OptLevel) {
|
|
|
|
case CodeGenOpt::None:
|
2010-06-03 02:39:06 +02:00
|
|
|
return createFastRegisterAllocator();
|
2010-05-28 01:57:25 +02:00
|
|
|
default:
|
2011-04-30 03:37:54 +02:00
|
|
|
return createGreedyRegisterAllocator();
|
2010-05-28 01:57:25 +02:00
|
|
|
}
|
2006-07-27 22:05:00 +02:00
|
|
|
}
|