[libc-commits] [PATCH] D107600: [libc][nfc] move ctype_utils and FPUtils to __support

Michael Jones via Phabricator via libc-commits libc-commits at lists.llvm.org
Fri Aug 6 10:30:00 PDT 2021


This revision was landed with ongoing or failed builds.
This revision was automatically updated to reflect the committed changes.
Closed by commit rGc120edc7b3e1: [libc][nfc] move ctype_utils and FPUtils to __support (authored by michaelrj).

Changed prior to commit:
  https://reviews.llvm.org/D107600?vs=364638&id=364841#toc

Repository:
  rG LLVM Github Monorepo

CHANGES SINCE LAST ACTION
  https://reviews.llvm.org/D107600/new/

https://reviews.llvm.org/D107600

Files:
  libc/fuzzing/math/CMakeLists.txt
  libc/fuzzing/math/Compare.h
  libc/fuzzing/math/RemQuoDiff.h
  libc/fuzzing/math/SingleInputSingleOutputDiff.h
  libc/fuzzing/math/TwoInputSingleOutputDiff.h
  libc/src/__support/CMakeLists.txt
  libc/src/__support/FPUtil/BasicOperations.h
  libc/src/__support/FPUtil/CMakeLists.txt
  libc/src/__support/FPUtil/DivisionAndRemainderOperations.h
  libc/src/__support/FPUtil/DummyFEnvImpl.h
  libc/src/__support/FPUtil/FEnvUtils.h
  libc/src/__support/FPUtil/FMA.h
  libc/src/__support/FPUtil/FPBits.h
  libc/src/__support/FPUtil/FPExceptMatcher.cpp
  libc/src/__support/FPUtil/FPExceptMatcher.h
  libc/src/__support/FPUtil/FloatProperties.h
  libc/src/__support/FPUtil/Hypot.h
  libc/src/__support/FPUtil/LongDoubleBitsX86.h
  libc/src/__support/FPUtil/ManipulationFunctions.h
  libc/src/__support/FPUtil/NearestIntegerOperations.h
  libc/src/__support/FPUtil/NextAfterLongDoubleX86.h
  libc/src/__support/FPUtil/NormalFloat.h
  libc/src/__support/FPUtil/PlatformDefs.h
  libc/src/__support/FPUtil/PolyEval.h
  libc/src/__support/FPUtil/Sqrt.h
  libc/src/__support/FPUtil/SqrtLongDoubleX86.h
  libc/src/__support/FPUtil/TestHelpers.cpp
  libc/src/__support/FPUtil/TestHelpers.h
  libc/src/__support/FPUtil/aarch64/FEnvImpl.h
  libc/src/__support/FPUtil/aarch64/FMA.h
  libc/src/__support/FPUtil/generic/FMA.h
  libc/src/__support/FPUtil/generic/README.md
  libc/src/__support/FPUtil/x86_64/FEnvImpl.h
  libc/src/__support/FPUtil/x86_64/FMA.h
  libc/src/__support/ctype_utils.h
  libc/src/ctype/CMakeLists.txt
  libc/src/ctype/ctype_utils.h
  libc/src/ctype/isalnum.cpp
  libc/src/ctype/isalpha.cpp
  libc/src/ctype/isdigit.cpp
  libc/src/ctype/isgraph.cpp
  libc/src/ctype/islower.cpp
  libc/src/ctype/ispunct.cpp
  libc/src/ctype/isspace.cpp
  libc/src/ctype/isupper.cpp
  libc/src/ctype/isxdigit.cpp
  libc/src/ctype/tolower.cpp
  libc/src/ctype/toupper.cpp
  libc/src/fenv/CMakeLists.txt
  libc/src/fenv/feclearexcept.cpp
  libc/src/fenv/fegetenv.cpp
  libc/src/fenv/fegetexceptflag.cpp
  libc/src/fenv/fegetround.cpp
  libc/src/fenv/feholdexcept.cpp
  libc/src/fenv/feraiseexcept.cpp
  libc/src/fenv/fesetenv.cpp
  libc/src/fenv/fesetexceptflag.cpp
  libc/src/fenv/fesetround.cpp
  libc/src/fenv/fetestexcept.cpp
  libc/src/fenv/feupdateenv.cpp
  libc/src/math/CMakeLists.txt
  libc/src/math/fma.cpp
  libc/src/math/fmaf.cpp
  libc/src/math/generic/CMakeLists.txt
  libc/src/math/generic/ceil.cpp
  libc/src/math/generic/ceilf.cpp
  libc/src/math/generic/ceill.cpp
  libc/src/math/generic/copysign.cpp
  libc/src/math/generic/copysignf.cpp
  libc/src/math/generic/copysignl.cpp
  libc/src/math/generic/expm1f.cpp
  libc/src/math/generic/fabs.cpp
  libc/src/math/generic/fabsf.cpp
  libc/src/math/generic/fabsl.cpp
  libc/src/math/generic/fdim.cpp
  libc/src/math/generic/fdimf.cpp
  libc/src/math/generic/fdiml.cpp
  libc/src/math/generic/floor.cpp
  libc/src/math/generic/floorf.cpp
  libc/src/math/generic/floorl.cpp
  libc/src/math/generic/fmax.cpp
  libc/src/math/generic/fmaxf.cpp
  libc/src/math/generic/fmaxl.cpp
  libc/src/math/generic/fmin.cpp
  libc/src/math/generic/fminf.cpp
  libc/src/math/generic/fminl.cpp
  libc/src/math/generic/frexp.cpp
  libc/src/math/generic/frexpf.cpp
  libc/src/math/generic/frexpl.cpp
  libc/src/math/generic/hypot.cpp
  libc/src/math/generic/hypotf.cpp
  libc/src/math/generic/ilogb.cpp
  libc/src/math/generic/ilogbf.cpp
  libc/src/math/generic/ilogbl.cpp
  libc/src/math/generic/ldexp.cpp
  libc/src/math/generic/ldexpf.cpp
  libc/src/math/generic/ldexpl.cpp
  libc/src/math/generic/llrint.cpp
  libc/src/math/generic/llrintf.cpp
  libc/src/math/generic/llrintl.cpp
  libc/src/math/generic/llround.cpp
  libc/src/math/generic/llroundf.cpp
  libc/src/math/generic/llroundl.cpp
  libc/src/math/generic/logb.cpp
  libc/src/math/generic/logbf.cpp
  libc/src/math/generic/logbl.cpp
  libc/src/math/generic/lrint.cpp
  libc/src/math/generic/lrintf.cpp
  libc/src/math/generic/lrintl.cpp
  libc/src/math/generic/lround.cpp
  libc/src/math/generic/lroundf.cpp
  libc/src/math/generic/lroundl.cpp
  libc/src/math/generic/modf.cpp
  libc/src/math/generic/modff.cpp
  libc/src/math/generic/modfl.cpp
  libc/src/math/generic/nearbyint.cpp
  libc/src/math/generic/nearbyintf.cpp
  libc/src/math/generic/nearbyintl.cpp
  libc/src/math/generic/nextafter.cpp
  libc/src/math/generic/nextafterf.cpp
  libc/src/math/generic/nextafterl.cpp
  libc/src/math/generic/remainder.cpp
  libc/src/math/generic/remainderf.cpp
  libc/src/math/generic/remainderl.cpp
  libc/src/math/generic/remquo.cpp
  libc/src/math/generic/remquof.cpp
  libc/src/math/generic/remquol.cpp
  libc/src/math/generic/rint.cpp
  libc/src/math/generic/rintf.cpp
  libc/src/math/generic/rintl.cpp
  libc/src/math/generic/round.cpp
  libc/src/math/generic/roundf.cpp
  libc/src/math/generic/roundl.cpp
  libc/src/math/generic/sqrt.cpp
  libc/src/math/generic/sqrtf.cpp
  libc/src/math/generic/sqrtl.cpp
  libc/src/math/generic/trunc.cpp
  libc/src/math/generic/truncf.cpp
  libc/src/math/generic/truncl.cpp
  libc/test/src/fenv/CMakeLists.txt
  libc/test/src/fenv/enabled_exceptions_test.cpp
  libc/test/src/fenv/exception_flags_test.cpp
  libc/test/src/fenv/exception_status_test.cpp
  libc/test/src/fenv/feclearexcept_test.cpp
  libc/test/src/fenv/feholdexcept_test.cpp
  libc/test/src/fenv/feupdateenv_test.cpp
  libc/test/src/fenv/getenv_and_setenv_test.cpp
  libc/test/src/math/CMakeLists.txt
  libc/test/src/math/CeilTest.h
  libc/test/src/math/CopySignTest.h
  libc/test/src/math/FAbsTest.h
  libc/test/src/math/FDimTest.h
  libc/test/src/math/FMaxTest.h
  libc/test/src/math/FMinTest.h
  libc/test/src/math/FloorTest.h
  libc/test/src/math/FmaTest.h
  libc/test/src/math/FrexpTest.h
  libc/test/src/math/HypotTest.h
  libc/test/src/math/ILogbTest.h
  libc/test/src/math/LdExpTest.h
  libc/test/src/math/LogbTest.h
  libc/test/src/math/ModfTest.h
  libc/test/src/math/NextAfterTest.h
  libc/test/src/math/RIntTest.h
  libc/test/src/math/RemQuoTest.h
  libc/test/src/math/RoundTest.h
  libc/test/src/math/RoundToIntegerTest.h
  libc/test/src/math/SqrtTest.h
  libc/test/src/math/TruncTest.h
  libc/test/src/math/cos_test.cpp
  libc/test/src/math/cosf_test.cpp
  libc/test/src/math/differential_testing/CMakeLists.txt
  libc/test/src/math/differential_testing/SingleInputSingleOutputDiff.h
  libc/test/src/math/exhaustive/CMakeLists.txt
  libc/test/src/math/exhaustive/cosf_test.cpp
  libc/test/src/math/exhaustive/expm1f_test.cpp
  libc/test/src/math/exhaustive/sinf_test.cpp
  libc/test/src/math/exhaustive/sqrtf_test.cpp
  libc/test/src/math/exp2f_test.cpp
  libc/test/src/math/expf_test.cpp
  libc/test/src/math/expm1f_test.cpp
  libc/test/src/math/fdim_test.cpp
  libc/test/src/math/fdimf_test.cpp
  libc/test/src/math/fdiml_test.cpp
  libc/test/src/math/generic/CMakeLists.txt
  libc/test/src/math/ilogb_test.cpp
  libc/test/src/math/ilogbf_test.cpp
  libc/test/src/math/ilogbl_test.cpp
  libc/test/src/math/sin_test.cpp
  libc/test/src/math/sincosf_test.cpp
  libc/test/src/math/sinf_test.cpp
  libc/test/src/math/tan_test.cpp
  libc/test/utils/FPUtil/CMakeLists.txt
  libc/test/utils/FPUtil/x86_long_double_test.cpp
  libc/utils/CMakeLists.txt
  libc/utils/FPUtil/BasicOperations.h
  libc/utils/FPUtil/CMakeLists.txt
  libc/utils/FPUtil/DivisionAndRemainderOperations.h
  libc/utils/FPUtil/DummyFEnvImpl.h
  libc/utils/FPUtil/FEnvUtils.h
  libc/utils/FPUtil/FMA.h
  libc/utils/FPUtil/FPBits.h
  libc/utils/FPUtil/FPExceptMatcher.cpp
  libc/utils/FPUtil/FPExceptMatcher.h
  libc/utils/FPUtil/FloatProperties.h
  libc/utils/FPUtil/Hypot.h
  libc/utils/FPUtil/LongDoubleBitsX86.h
  libc/utils/FPUtil/ManipulationFunctions.h
  libc/utils/FPUtil/NearestIntegerOperations.h
  libc/utils/FPUtil/NextAfterLongDoubleX86.h
  libc/utils/FPUtil/NormalFloat.h
  libc/utils/FPUtil/PlatformDefs.h
  libc/utils/FPUtil/PolyEval.h
  libc/utils/FPUtil/Sqrt.h
  libc/utils/FPUtil/SqrtLongDoubleX86.h
  libc/utils/FPUtil/TestHelpers.cpp
  libc/utils/FPUtil/TestHelpers.h
  libc/utils/FPUtil/aarch64/FEnvImpl.h
  libc/utils/FPUtil/aarch64/FMA.h
  libc/utils/FPUtil/generic/FMA.h
  libc/utils/FPUtil/generic/README.md
  libc/utils/FPUtil/x86_64/FEnvImpl.h
  libc/utils/FPUtil/x86_64/FMA.h
  libc/utils/MPFRWrapper/CMakeLists.txt
  libc/utils/MPFRWrapper/MPFRUtils.cpp

-------------- next part --------------
A non-text attachment was scrubbed...
Name: D107600.364841.patch
Type: text/x-patch
Size: 130393 bytes
Desc: not available
URL: <http://lists.llvm.org/pipermail/libc-commits/attachments/20210806/ae9bfd8b/attachment-0001.bin>


More information about the libc-commits mailing list