aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/check.cc
diff options
context:
space:
mode:
authorAldy Hernandez <aldyh@redhat.com>2023-05-15 15:10:11 +0200
committerAldy Hernandez <aldyh@redhat.com>2023-05-15 19:03:19 +0200
commit82e706cbf3891ced62ffb5ec2db2e9cfa04425f8 (patch)
treeaab166f72271b60f12a508114b676e89446c2d0f /gcc/fortran/check.cc
parent32b81d897629b6c3bd9e2780831a1c45b38b5ac3 (diff)
downloadgcc-82e706cbf3891ced62ffb5ec2db2e9cfa04425f8.zip
gcc-82e706cbf3891ced62ffb5ec2db2e9cfa04425f8.tar.gz
gcc-82e706cbf3891ced62ffb5ec2db2e9cfa04425f8.tar.bz2
Only return changed=true in union_nonzero when appropriate.
irange::union_ was being overly pessimistic in its return value. It was returning false when the nonzero mask was possibly the same. The reason for this is because the nonzero mask is not entirely kept up to date. We avoid setting it up when a new range is set (from a set, intersect, union, etc), because calculating a mask from a range is measurably expensive. However, irange::get_nonzero_bits() will always return the correct mask because it will calculate the nonzero mask inherit in the mask on the fly and bitwise or it with the saved mask. This was an optimization because last release it was a big penalty to keep the mask up to date. This may not necessarily be the case with the conversion to wide_int's. We should investigate. Just to be clear, the result from get_nonzero_bits() is always correct as seen by the user, but the wide_int in the irange does not contain all the information, since part of the nonzero bits can be determined by the range itself, on the fly. The fix here is to make sure that the result the user sees (callers of get_nonzero_bits()) changed when unioning bits. This allows ipcp_vr_lattice::meet_with_1 to avoid unnecessary copies when determining if a range changed. This patch yields an 6.89% improvement to the ipa_cp pass. I'm including the IPA changes in this patch, as it's a testcase of sorts for the change. gcc/ChangeLog: * ipa-cp.cc (ipcp_vr_lattice::meet_with_1): Avoid unnecessary range copying * value-range.cc (irange::union_nonzero_bits): Return TRUE only when range changed.
Diffstat (limited to 'gcc/fortran/check.cc')
0 files changed, 0 insertions, 0 deletions