search for: your_alloc

Displaying 3 results from an estimated 3 matches for "your_alloc".

2006 Sep 02
0
[LLVMdev] Testing a register allocator
...ts. > > 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 that your test failed. The report will give you your compile time, and the running time of the compiled file. Remember to check the test files from CVS. Best, Fern...
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
...; > 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 that your test failed. The report will give you > your compile time, and the running time of the compiled file. > > Remember to check...