Displaying 5 results from an estimated 5 matches for "reckognize".
2006 Aug 20
0
[LLVMdev] Adding register allocator to LLVM
Hi!
I've did what Jim Laskey wrote but llc didn't reckognize my regalloc option.
So I moved my allocator implementation into seperate folder within CodeGen
and wrote separate makefile for it (like in "Writing an LLVM pass"
tutorial). But when I run "make" from LLVMOBJDIR it doesn't enter the
RegAlloc directory and when linking llc an...
2006 Aug 20
2
[LLVMdev] Adding register allocator to LLVM
...RegisterRegAlloc> >
RegAlloc("regalloc",
cl::init(&createChordalRegisterAllocator),
cl::desc("Register allocator to use: (default = chordal)"));
}
All the best,
Fernando
> Hi!
>
> I've did what Jim Laskey wrote but llc didn't reckognize my regalloc option.
>
> So I moved my allocator implementation into seperate folder within CodeGen
> and wrote separate makefile for it (like in "Writing an LLVM pass"
> tutorial). But when I run "make" from LLVMOBJDIR it doesn't enter the
> RegAlloc directory...
2006 Aug 03
3
[LLVMdev] Adding register allocator to LLVM
On Thu, 3 Aug 2006, Jim Laskey wrote:
> To force the load/linking of your register allocator into the llc/lli tools,
> add your create function's global declaration to "Passes.h" and add a
> "pseudo" call line to "llvm/Codegen/LinkAllCodegenComponents.h" .
Another note: with this new functionality you should be able to
dynamically load register
2010 May 14
0
Error when pre-xfer script is doing a rsync.
...fer script to finish.
Now the idea is simple, but I get an error.
When I let the post-xfer script of the queue share do the work in
stead of the pre-xfer script of the
backup share, everything works.
It looks as it isn't possible to run a seperate rsync command in the
pre-xfer phase.
Someone reckognizes this?
I'm thinking that the rsync command to backup the backup (copying the
deleted and changed items)
to a seperate "history" tree, is confused by the established
connection from the rsync server with
the remote host.
Stef Bon
2006 Aug 22
0
[LLVMdev] Adding register allocator to LLVM
...c",
> cl::init(&createChordalRegisterAllocator),
> cl::desc("Register allocator to use: (default = chordal)"));
> }
>
> All the best,
>
> Fernando
>
> > Hi!
> >
> > I've did what Jim Laskey wrote but llc didn't reckognize my regalloc
> option.
> >
> > So I moved my allocator implementation into seperate folder within
> CodeGen
> > and wrote separate makefile for it (like in "Writing an LLVM pass"
> > tutorial). But when I run "make" from LLVMOBJDIR it doesn't ent...