fixunsxfti.c 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. //===-- fixunsxfti.c - Implement __fixunsxfti -----------------------------===//
  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 __fixunsxfti for the compiler_rt library.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #include "int_lib.h"
  13. #ifdef CRT_HAS_128BIT
  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 tu_int is a 128 bit integral type value in long double is representable
  18. // in tu_int or is negative
  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. COMPILER_RT_ABI tu_int __fixunsxfti(xf_float a) {
  23. xf_bits fb;
  24. fb.f = a;
  25. int e = (fb.u.high.s.low & 0x00007FFF) - 16383;
  26. if (e < 0 || (fb.u.high.s.low & 0x00008000))
  27. return 0;
  28. if ((unsigned)e > sizeof(tu_int) * CHAR_BIT)
  29. return ~(tu_int)0;
  30. tu_int r = fb.u.low.all;
  31. if (e > 63)
  32. r <<= (e - 63);
  33. else
  34. r >>= (63 - e);
  35. return r;
  36. }
  37. #endif // CRT_HAS_128BIT