Displaying 4 results from an estimated 4 matches for "createsimpleregisterallocator".
2009 Jun 16
1
[LLVMdev] undefined references in llvm
...in/llvm-config line 71.
/tmp/cc0b5iTo.o: In function `ForceCodegenLinking':
llvm2/include/llvm/CodeGen/LinkAllCodegenComponents.h:32: undefined
reference to `llvm::createDeadMachineInstructionElimPass()'
llvm2/include/llvm/CodeGen/LinkAllCodegenComponents.h:34: undefined
reference to `llvm::createSimpleRegisterAllocator()'
llvm2/include/llvm/CodeGen/LinkAllCodegenComponents.h:35: undefined
reference to `llvm::createLocalRegisterAllocator()'
llvm2/include/llvm/CodeGen/LinkAllCodegenComponents.h:36: undefined
reference to `llvm::createBigBlockRegisterAllocator()'
llvm2/include/llvm/CodeGen/LinkAllCodegen...
2008 Sep 02
2
[LLVMdev] LLVM build failures
...ing lli.cpp for Debug build
llvm-config: unknown component name: alphacodegen
llvm[2]: Linking Debug executable lli
.../llvm/build/llvm/tools/lli/Debug/lli.o: In function `ForceCodegenLinking':
.../llvm/build/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h:32: undefined reference to `llvm::createSimpleRegisterAllocator()'
.../llvm/build/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h:33: undefined reference to `llvm::createLocalRegisterAllocator()'
.../llvm/build/llvm/include/llvm/CodeGen/LinkAllCodegenComponents.h:34: undefined reference to `llvm::createBigBlockRegisterAllocator()'
.../llvm/buil...
2007 Jul 13
0
[LLVMdev] [PATCH] Re: Pluggable Register Coalescers
...m/CodeGen/RegisterAllocator.h"
#include "llvm/Target/TargetInstrInfo.h"
#include "llvm/Target/TargetMachine.h"
#include "llvm/Support/Debug.h"
@@ -37,7 +38,8 @@
simpleRegAlloc("simple", " simple register allocator",
createSimpleRegisterAllocator);
- class VISIBILITY_HIDDEN RegAllocSimple : public MachineFunctionPass {
+ class VISIBILITY_HIDDEN RegAllocSimple : public MachineFunctionPass,
+ public RegisterAllocator {
public:
static char ID;
RegAllocSimple() : MachineFunctionPass((in...
2007 Jul 11
3
[LLVMdev] Pluggable Register Coalescers
On Jul 11, 2007, at 11:39 AM, David Greene wrote:
> On Wednesday 11 July 2007 12:41, Tanya M. Lattner wrote:
>
>> I think the coalescer should be flexible enough to be run
>> independent of
>> the register allocator. For example, you may want to expose the
>> copies
>> induced by transforming out of SSA to the scheduler. If the
>> scheduler is