[all-commits] [llvm/llvm-project] bbb755: [libc][NFC] Move generic math implementations to t...

Siva Chandra via All-commits all-commits at lists.llvm.org
Wed Feb 3 10:46:56 PST 2021


  Branch: refs/heads/main
  Home:   https://github.com/llvm/llvm-project
  Commit: bbb7555403855f5c2a61d62ae59f1e970ea37ec1
      https://github.com/llvm/llvm-project/commit/bbb7555403855f5c2a61d62ae59f1e970ea37ec1
  Author: Siva Chandra <sivachandra at google.com>
  Date:   2021-02-03 (Wed, 03 Feb 2021)

  Changed paths:
    M libc/src/math/CMakeLists.txt
    R libc/src/math/copysign.cpp
    R libc/src/math/copysignf.cpp
    R libc/src/math/copysignl.cpp
    R libc/src/math/cosf.cpp
    R libc/src/math/exp2f.cpp
    R libc/src/math/exp_utils.cpp
    R libc/src/math/exp_utils.h
    R libc/src/math/expf.cpp
    R libc/src/math/fabs.cpp
    R libc/src/math/fabsf.cpp
    R libc/src/math/fabsl.cpp
    R libc/src/math/fdim.cpp
    R libc/src/math/fdimf.cpp
    R libc/src/math/fdiml.cpp
    R libc/src/math/floor.cpp
    R libc/src/math/floorf.cpp
    R libc/src/math/floorl.cpp
    R libc/src/math/fmaf.cpp
    R libc/src/math/fmax.cpp
    R libc/src/math/fmaxf.cpp
    R libc/src/math/fmaxl.cpp
    R libc/src/math/fmin.cpp
    R libc/src/math/fminf.cpp
    R libc/src/math/fminl.cpp
    R libc/src/math/frexp.cpp
    R libc/src/math/frexpf.cpp
    R libc/src/math/frexpl.cpp
    M libc/src/math/generic/CMakeLists.txt
    A libc/src/math/generic/copysign.cpp
    A libc/src/math/generic/copysignf.cpp
    A libc/src/math/generic/copysignl.cpp
    A libc/src/math/generic/cosf.cpp
    A libc/src/math/generic/exp2f.cpp
    A libc/src/math/generic/exp_utils.cpp
    A libc/src/math/generic/exp_utils.h
    A libc/src/math/generic/expf.cpp
    A libc/src/math/generic/fabs.cpp
    A libc/src/math/generic/fabsf.cpp
    A libc/src/math/generic/fabsl.cpp
    A libc/src/math/generic/fdim.cpp
    A libc/src/math/generic/fdimf.cpp
    A libc/src/math/generic/fdiml.cpp
    A libc/src/math/generic/floor.cpp
    A libc/src/math/generic/floorf.cpp
    A libc/src/math/generic/floorl.cpp
    A libc/src/math/generic/fmaf.cpp
    A libc/src/math/generic/fmax.cpp
    A libc/src/math/generic/fmaxf.cpp
    A libc/src/math/generic/fmaxl.cpp
    A libc/src/math/generic/fmin.cpp
    A libc/src/math/generic/fminf.cpp
    A libc/src/math/generic/fminl.cpp
    A libc/src/math/generic/frexp.cpp
    A libc/src/math/generic/frexpf.cpp
    A libc/src/math/generic/frexpl.cpp
    A libc/src/math/generic/hypot.cpp
    A libc/src/math/generic/hypotf.cpp
    A libc/src/math/generic/ilogb.cpp
    A libc/src/math/generic/ilogbf.cpp
    A libc/src/math/generic/ilogbl.cpp
    A libc/src/math/generic/ldexp.cpp
    A libc/src/math/generic/ldexpf.cpp
    A libc/src/math/generic/ldexpl.cpp
    A libc/src/math/generic/llrint.cpp
    A libc/src/math/generic/llrintf.cpp
    A libc/src/math/generic/llrintl.cpp
    A libc/src/math/generic/llround.cpp
    A libc/src/math/generic/llroundf.cpp
    A libc/src/math/generic/llroundl.cpp
    A libc/src/math/generic/logb.cpp
    A libc/src/math/generic/logbf.cpp
    A libc/src/math/generic/logbl.cpp
    A libc/src/math/generic/lrint.cpp
    A libc/src/math/generic/lrintf.cpp
    A libc/src/math/generic/lrintl.cpp
    A libc/src/math/generic/lround.cpp
    A libc/src/math/generic/lroundf.cpp
    A libc/src/math/generic/lroundl.cpp
    A libc/src/math/generic/math_utils.cpp
    A libc/src/math/generic/math_utils.h
    A libc/src/math/generic/modf.cpp
    A libc/src/math/generic/modff.cpp
    A libc/src/math/generic/modfl.cpp
    A libc/src/math/generic/nearbyint.cpp
    A libc/src/math/generic/nearbyintf.cpp
    A libc/src/math/generic/nearbyintl.cpp
    A libc/src/math/generic/nextafter.cpp
    A libc/src/math/generic/nextafterf.cpp
    A libc/src/math/generic/nextafterl.cpp
    A libc/src/math/generic/remainder.cpp
    A libc/src/math/generic/remainderf.cpp
    A libc/src/math/generic/remainderl.cpp
    A libc/src/math/generic/remquo.cpp
    A libc/src/math/generic/remquof.cpp
    A libc/src/math/generic/remquol.cpp
    A libc/src/math/generic/rint.cpp
    A libc/src/math/generic/rintf.cpp
    A libc/src/math/generic/rintl.cpp
    A libc/src/math/generic/round.cpp
    A libc/src/math/generic/roundf.cpp
    A libc/src/math/generic/roundl.cpp
    A libc/src/math/generic/sincosf.cpp
    A libc/src/math/generic/sincosf_data.cpp
    A libc/src/math/generic/sincosf_utils.h
    A libc/src/math/generic/sinf.cpp
    A libc/src/math/generic/sqrt.cpp
    A libc/src/math/generic/sqrtf.cpp
    A libc/src/math/generic/sqrtl.cpp
    A libc/src/math/generic/trunc.cpp
    A libc/src/math/generic/truncf.cpp
    A libc/src/math/generic/truncl.cpp
    R libc/src/math/hypot.cpp
    R libc/src/math/hypotf.cpp
    R libc/src/math/ilogb.cpp
    R libc/src/math/ilogbf.cpp
    R libc/src/math/ilogbl.cpp
    R libc/src/math/ldexp.cpp
    R libc/src/math/ldexpf.cpp
    R libc/src/math/ldexpl.cpp
    R libc/src/math/llrint.cpp
    R libc/src/math/llrintf.cpp
    R libc/src/math/llrintl.cpp
    R libc/src/math/llround.cpp
    R libc/src/math/llroundf.cpp
    R libc/src/math/llroundl.cpp
    R libc/src/math/logb.cpp
    R libc/src/math/logbf.cpp
    R libc/src/math/logbl.cpp
    R libc/src/math/lrint.cpp
    R libc/src/math/lrintf.cpp
    R libc/src/math/lrintl.cpp
    R libc/src/math/lround.cpp
    R libc/src/math/lroundf.cpp
    R libc/src/math/lroundl.cpp
    R libc/src/math/math_utils.cpp
    R libc/src/math/math_utils.h
    R libc/src/math/modf.cpp
    R libc/src/math/modff.cpp
    R libc/src/math/modfl.cpp
    R libc/src/math/nearbyint.cpp
    R libc/src/math/nearbyintf.cpp
    R libc/src/math/nearbyintl.cpp
    R libc/src/math/nextafter.cpp
    R libc/src/math/nextafterf.cpp
    R libc/src/math/nextafterl.cpp
    R libc/src/math/remainder.cpp
    R libc/src/math/remainderf.cpp
    R libc/src/math/remainderl.cpp
    R libc/src/math/remquo.cpp
    R libc/src/math/remquof.cpp
    R libc/src/math/remquol.cpp
    R libc/src/math/rint.cpp
    R libc/src/math/rintf.cpp
    R libc/src/math/rintl.cpp
    R libc/src/math/round.cpp
    R libc/src/math/roundf.cpp
    R libc/src/math/roundl.cpp
    R libc/src/math/sincosf.cpp
    R libc/src/math/sincosf_data.cpp
    R libc/src/math/sincosf_utils.h
    R libc/src/math/sinf.cpp
    R libc/src/math/sqrt.cpp
    R libc/src/math/sqrtf.cpp
    R libc/src/math/sqrtl.cpp
    R libc/src/math/trunc.cpp
    R libc/src/math/truncf.cpp
    R libc/src/math/truncl.cpp

  Log Message:
  -----------
  [libc][NFC] Move generic math implementations to the generic directory.

This expands the pattern suggest in https://reviews.llvm.org/D95850 to all
math functions.




More information about the All-commits mailing list