aboutsummaryrefslogtreecommitdiff
path: root/gcc/fortran/libgfortran.h
diff options
context:
space:
mode:
authorJonathan Wakely <jwakely@redhat.com>2020-09-03 12:38:50 +0100
committerJonathan Wakely <jwakely@redhat.com>2020-09-03 12:46:13 +0100
commit3c219134152f645103f2fcd50735b177ccd76cde (patch)
treeddd487657c9d90fa34983735e3664ca056febc7f /gcc/fortran/libgfortran.h
parent3536ff2de8317c430546fd97574d44c5146cef2b (diff)
downloadgcc-3c219134152f645103f2fcd50735b177ccd76cde.zip
gcc-3c219134152f645103f2fcd50735b177ccd76cde.tar.gz
gcc-3c219134152f645103f2fcd50735b177ccd76cde.tar.bz2
libstdc++: Optimise GCD algorithms
The current std::gcd and std::chrono::duration::_S_gcd algorithms are both recursive. This is potentially expensive to evaluate in constant expressions, because each level of recursion makes a new copy of the function to evaluate. The maximum number of steps is bounded (proportional to the number of decimal digits in the smaller value) and so unlikely to exceed the limit for constexpr nesting, but the memory usage is still suboptimal. By using an iterative algorithm we avoid that compile-time cost. Because looping in constexpr functions is not allowed until C++14, we need to keep the recursive implementation in duration::_S_gcd for C++11 mode. For std::gcd we can also optimise runtime performance by using the binary GCD algorithm. libstdc++-v3/ChangeLog: * include/std/chrono (duration::_S_gcd): Use iterative algorithm for C++14 and later. * include/std/numeric (__detail::__gcd): Replace recursive Euclidean algorithm with iterative version of binary GCD algorithm. * testsuite/26_numerics/gcd/1.cc: Test additional inputs. * testsuite/26_numerics/gcd/gcd_neg.cc: Adjust dg-error lines. * testsuite/26_numerics/lcm/lcm_neg.cc: Likewise. * testsuite/experimental/numeric/gcd.cc: Test additional inputs. * testsuite/26_numerics/gcd/2.cc: New test.
Diffstat (limited to 'gcc/fortran/libgfortran.h')
0 files changed, 0 insertions, 0 deletions