forked from OSchip/llvm-project
Add a -regalloc=default option that chooses a register allocator based on the -O
optimization level. This only really affects llc for now because both the llvm-gcc and clang front ends override the default register allocator. I intend to remove that code later. llvm-svn: 104904
This commit is contained in:
parent
775ec12b72
commit
b613ae2c89
|
@ -85,9 +85,10 @@ namespace llvm {
|
||||||
///
|
///
|
||||||
FunctionPass *createDeadMachineInstructionElimPass();
|
FunctionPass *createDeadMachineInstructionElimPass();
|
||||||
|
|
||||||
/// Creates a register allocator as the user specified on the command line.
|
/// Creates a register allocator as the user specified on the command line, or
|
||||||
|
/// picks one that matches OptLevel.
|
||||||
///
|
///
|
||||||
FunctionPass *createRegisterAllocator();
|
FunctionPass *createRegisterAllocator(CodeGenOpt::Level OptLevel);
|
||||||
|
|
||||||
/// LocalRegisterAllocation Pass - This pass register allocates the input code
|
/// LocalRegisterAllocation Pass - This pass register allocates the input code
|
||||||
/// a basic block at a time, yielding code better than the simple register
|
/// a basic block at a time, yielding code better than the simple register
|
||||||
|
|
|
@ -358,7 +358,7 @@ bool LLVMTargetMachine::addCommonCodeGenPasses(PassManagerBase &PM,
|
||||||
/* allowDoubleDefs= */ true);
|
/* allowDoubleDefs= */ true);
|
||||||
|
|
||||||
// Perform register allocation.
|
// Perform register allocation.
|
||||||
PM.add(createRegisterAllocator());
|
PM.add(createRegisterAllocator(OptLevel));
|
||||||
printAndVerify(PM, "After Register Allocation");
|
printAndVerify(PM, "After Register Allocation");
|
||||||
|
|
||||||
// Perform stack slot coloring and post-ra machine LICM.
|
// Perform stack slot coloring and post-ra machine LICM.
|
||||||
|
|
|
@ -24,6 +24,11 @@ using namespace llvm;
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
MachinePassRegistry RegisterRegAlloc::Registry;
|
MachinePassRegistry RegisterRegAlloc::Registry;
|
||||||
|
|
||||||
|
static FunctionPass *createDefaultRegisterAllocator() { return 0; }
|
||||||
|
static RegisterRegAlloc
|
||||||
|
defaultRegAlloc("default",
|
||||||
|
"pick register allocator based on -O option",
|
||||||
|
createDefaultRegisterAllocator);
|
||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
///
|
///
|
||||||
|
@ -33,8 +38,8 @@ MachinePassRegistry RegisterRegAlloc::Registry;
|
||||||
static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
|
static cl::opt<RegisterRegAlloc::FunctionPassCtor, false,
|
||||||
RegisterPassParser<RegisterRegAlloc> >
|
RegisterPassParser<RegisterRegAlloc> >
|
||||||
RegAlloc("regalloc",
|
RegAlloc("regalloc",
|
||||||
cl::init(&createLinearScanRegisterAllocator),
|
cl::init(&createDefaultRegisterAllocator),
|
||||||
cl::desc("Register allocator to use (default=linearscan)"));
|
cl::desc("Register allocator to use"));
|
||||||
|
|
||||||
|
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
|
@ -42,7 +47,7 @@ RegAlloc("regalloc",
|
||||||
/// createRegisterAllocator - choose the appropriate register allocator.
|
/// createRegisterAllocator - choose the appropriate register allocator.
|
||||||
///
|
///
|
||||||
//===---------------------------------------------------------------------===//
|
//===---------------------------------------------------------------------===//
|
||||||
FunctionPass *llvm::createRegisterAllocator() {
|
FunctionPass *llvm::createRegisterAllocator(CodeGenOpt::Level OptLevel) {
|
||||||
RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
|
RegisterRegAlloc::FunctionPassCtor Ctor = RegisterRegAlloc::getDefault();
|
||||||
|
|
||||||
if (!Ctor) {
|
if (!Ctor) {
|
||||||
|
@ -50,5 +55,14 @@ FunctionPass *llvm::createRegisterAllocator() {
|
||||||
RegisterRegAlloc::setDefault(RegAlloc);
|
RegisterRegAlloc::setDefault(RegAlloc);
|
||||||
}
|
}
|
||||||
|
|
||||||
return Ctor();
|
if (Ctor != createDefaultRegisterAllocator)
|
||||||
|
return Ctor();
|
||||||
|
|
||||||
|
// When the 'default' allocator is requested, pick one based on OptLevel.
|
||||||
|
switch (OptLevel) {
|
||||||
|
case CodeGenOpt::None:
|
||||||
|
return createLocalRegisterAllocator();
|
||||||
|
default:
|
||||||
|
return createLinearScanRegisterAllocator();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; RUN: llc < %s -march=arm -mattr=+neon -O0
|
; RUN: llc < %s -march=arm -mattr=+neon -O0 -regalloc=linearscan
|
||||||
|
|
||||||
; This test would crash the rewriter when trying to handle a spill after one of
|
; This test would crash the rewriter when trying to handle a spill after one of
|
||||||
; the @llvm.arm.neon.vld3.v8i8 defined three parts of a register.
|
; the @llvm.arm.neon.vld3.v8i8 defined three parts of a register.
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; RUN: llc < %s -march=x86 -O0 -fast-isel=false | grep mov | count 5
|
; RUN: llc < %s -march=x86 -O0 -fast-isel=false -regalloc=linearscan | grep mov | count 5
|
||||||
; PR2343
|
; PR2343
|
||||||
|
|
||||||
%llvm.dbg.anchor.type = type { i32, i32 }
|
%llvm.dbg.anchor.type = type { i32, i32 }
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; RUN: llc < %s -O0 -march=x86-64 -mattr=+mmx | FileCheck %s
|
; RUN: llc < %s -O0 -regalloc=linearscan -march=x86-64 -mattr=+mmx | FileCheck %s
|
||||||
; PR4684
|
; PR4684
|
||||||
|
|
||||||
target datalayout =
|
target datalayout =
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
; RUN: llc < %s -mtriple=i386-apple-darwin9 -O0 | grep {movl %edx, 12(%esp)} | count 2
|
; RUN: llc < %s -mtriple=i386-apple-darwin9 -O0 -regalloc=linearscan | grep {movl %edx, 12(%esp)} | count 2
|
||||||
; rdar://6992609
|
; rdar://6992609
|
||||||
|
|
||||||
target triple = "i386-apple-darwin9.0"
|
target triple = "i386-apple-darwin9.0"
|
||||||
|
|
Loading…
Reference in New Issue