search for: is_sorted_opt_parms

Displaying 2 results from an estimated 2 matches for "is_sorted_opt_parms".

2019 Oct 19
3
Replicate Individual O3 optimizations
On Thu, Oct 17, 2019 at 11:22 AM David Greene via llvm-dev < llvm-dev at lists.llvm.org> wrote: > hameeza ahmed via llvm-dev <llvm-dev at lists.llvm.org> writes: > > > Hello, > > I want to study the individual O3 optimizations. For this I am using > > following commands, but unable to replicate O3 behavior. > > > > 1.
2019 Oct 24
2
Replicate Individual O3 optimizations
...; Many differences between is_sorted_O1.ll and is_sorted_.ll. > > opt -O3 -S is_sorted_.ll -o is_sorted_optO3.ll > > clang is_sorted.cpp -mllvm -debug-pass=Arguments -O3 -S -emit-llvm -o is_sorted_O3arg.ll > opt <optimization sequence obtained in prior step> -S is_sorted_.ll -o is_sorted_opt_parms.ll > > No difference between is_sorted_optO3.ll and is_sorted_opt_parms.ll, the last two opt runs. > Many differences between is_sorted_O3arg.ll and is_sorted_opt_parms.ll, the last two runs, > clang and opt. > > Conclusions: > > Given my current understanding, the ll files...