Displaying 2 results from an estimated 2 matches for "optprogram".
Did you mean:
oldprogram
2011 Jun 19
2
[LLVMdev] Phase Interactions
...xperiements.
1. I picked the list of machine independent optimizations acting on
llvm IR (those that are enabled at O3).
2. for each optimzation in the optimization-list
a) Compiled the program using 'clang -c O0 -flto program.c'
b) opt -optimization program.o -o optprogram.o
c) llc optprogram.o
d) gcc optprogram.o.s
e) Measure the performance of the generated executable.
3. for each optimization pair [opt1, opt2] from the optimization list
a) Compiled the program using 'clang -c O0 -flto program.c'...
2011 Jun 19
0
[LLVMdev] Phase Interactions
...picked the list of machine independent optimizations acting on
> llvm IR (those that are enabled at O3).
> 2. for each optimzation in the optimization-list
> a) Compiled the program using 'clang -c O0 -flto program.c'
> b) opt -optimization program.o -o optprogram.o
> c) llc optprogram.o
> d) gcc optprogram.o.s
> e) Measure the performance of the generated executable.
> 3. for each optimization pair [opt1, opt2] from the optimization list
> a) Compiled the program using 'clang -c O0 -flto pro...