fixunsxfdi.c 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. //===-- fixunsxfdi.c - Implement __fixunsxfdi -----------------------------===//
  2. //
  3. // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
  4. // See https://llvm.org/LICENSE.txt for license information.
  5. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  6. //
  7. //===----------------------------------------------------------------------===//
  8. //
  9. // This file implements __fixunsxfdi for the compiler_rt library.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #if !_ARCH_PPC
  13. #include "int_lib.h"
  14. // Returns: convert a to a unsigned long long, rounding toward zero.
  15. // Negative values all become zero.
  16. // Assumption: long double is an intel 80 bit floating point type padded with 6
  17. // bytes du_int is a 64 bit integral type value in long double is representable
  18. // in du_int or is negative (no range checking performed)
  19. // gggg gggg gggg gggg gggg gggg gggg gggg | gggg gggg gggg gggg seee eeee eeee
  20. // eeee | 1mmm mmmm mmmm mmmm mmmm mmmm mmmm mmmm | mmmm mmmm mmmm mmmm mmmm
  21. // mmmm mmmm mmmm
  22. #if defined(_MSC_VER) && !defined(__clang__)
  23. // MSVC throws a warning about 'uninitialized variable use' here,
  24. // disable it for builds that warn-as-error
  25. #pragma warning(push)
  26. #pragma warning(disable : 4700)
  27. #endif
  28. COMPILER_RT_ABI du_int __fixunsxfdi(xf_float a) {
  29. xf_bits fb;
  30. fb.f = a;
  31. int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
  32. if (e < 0 || (fb.u.high.s.low & 0x00008000))
  33. return 0;
  34. if ((unsigned)e > sizeof(du_int) * CHAR_BIT)
  35. return ~(du_int)0;
  36. return fb.u.low.all >> (63 - e);
  37. }
  38. #if defined(_MSC_VER) && !defined(__clang__)
  39. #pragma warning(pop)
  40. #endif
  41. #endif //!_ARCH_PPC