Displaying 3 results from an estimated 3 matches for "llc_opts".
Did you mean:
ldb_opts
2006 Sep 02
0
[LLVMdev] Testing a register allocator
...If not,
> then what modifications should I do to the test files?
> It would be great if I could test my algo along with linearscan and compare
> the results.
>
> Thanks.
>
> Tony.
Hey, Anton.
In TEST.llc.Makefile, you can set the type of register allocator that
you want:
LLC_OPTS = -f -o=/dev/null -stats -time-passes -regalloc=linearscan
to compare against your, open "Makefile.program", and set
LLCBETAOPTION := -regalloc=your_allocator -fast
After that, you just have to type make TEST=nightly report.html
on project/llvm-test/
An '*' on the report means...
2006 Sep 01
3
[LLVMdev] Testing a register allocator
Hi!
I developed a register allocator within LLVM and now I need to test its
efficiency. Can I do this using llvm-test package?
Do llvm tests check all available regalloc options automatically? If not,
then what modifications should I do to the test files?
It would be great if I could test my algo along with linearscan and compare
the results.
Thanks.
Tony.
--
"Nae king! Nae quin! Nae
2006 Sep 03
2
[LLVMdev] Testing a register allocator
...files?
> > It would be great if I could test my algo along with linearscan and
> compare
> > the results.
> >
> > Thanks.
> >
> > Tony.
>
> Hey, Anton.
>
> In TEST.llc.Makefile, you can set the type of register allocator that
> you want:
> LLC_OPTS = -f -o=/dev/null -stats -time-passes -regalloc=linearscan
>
> to compare against your, open "Makefile.program", and set
> LLCBETAOPTION := -regalloc=your_allocator -fast
>
> After that, you just have to type make TEST=nightly report.html
> on project/llvm-test/
>
>...