]> git.ipfire.org Git - thirdparty/gcc.git/commit
Replace exact_log2(x & -x) in favor of more direct computation.
authorRichard Henderson <rth@redhat.com>
Thu, 5 Aug 2010 19:41:31 +0000 (12:41 -0700)
committerRichard Henderson <rth@gcc.gnu.org>
Thu, 5 Aug 2010 19:41:31 +0000 (12:41 -0700)
commitbd95721f862876dac7d1560806b18015bb5bbeb6
treeebb0bcbba694540435097fb9c41ec0f70c57ab41
parent55b324a67cf91568372f4e93c7dae01a572de9f4
Replace exact_log2(x & -x) in favor of more direct computation.

* toplev.h (ctz_hwi, clz_hwi, ffs_hwi): New.
(floor_log2): Use clz_hwi.
(exact_log2): Use ctz_hwi.
* toplev.c (ctz_hwi, clz_hwi, ffs_hwi): New.
* builtins.c (fold_builtin_bitop): Use them.
* simplify-rtx.c (simplify_const_unary_operation): Likewise.
* combine.c (get_pos_from_mask): Use ctz_hwi.
* double-int.c (double_int_ctz): Likewise.
* explow.c (force_reg): Likewise.
* tree.h (SET_DECL_OFFSET_ALIGN): Use ffs_hwi.

From-SVN: r162920
gcc/ChangeLog
gcc/builtins.c
gcc/combine.c
gcc/double-int.c
gcc/explow.c
gcc/simplify-rtx.c
gcc/toplev.c
gcc/toplev.h
gcc/tree.h