floatsitf.c 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. //===-- lib/floatsitf.c - integer -> quad-precision conversion ----*- C -*-===//
  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 integer to quad-precision conversion for the
  10. // compiler-rt library in the IEEE-754 default round-to-nearest, ties-to-even
  11. // mode.
  12. //
  13. //===----------------------------------------------------------------------===//
  14. #define QUAD_PRECISION
  15. #include "fp_lib.h"
  16. #if defined(CRT_HAS_TF_MODE)
  17. COMPILER_RT_ABI fp_t __floatsitf(si_int a) {
  18. const int aWidth = sizeof a * CHAR_BIT;
  19. // Handle zero as a special case to protect clz
  20. if (a == 0)
  21. return fromRep(0);
  22. // All other cases begin by extracting the sign and absolute value of a
  23. rep_t sign = 0;
  24. su_int aAbs = (su_int)a;
  25. if (a < 0) {
  26. sign = signBit;
  27. aAbs = -aAbs;
  28. }
  29. // Exponent of (fp_t)a is the width of abs(a).
  30. const int exponent = (aWidth - 1) - clzsi(aAbs);
  31. rep_t result;
  32. // Shift a into the significand field and clear the implicit bit.
  33. const int shift = significandBits - exponent;
  34. result = (rep_t)aAbs << shift ^ implicitBit;
  35. // Insert the exponent
  36. result += (rep_t)(exponent + exponentBias) << significandBits;
  37. // Insert the sign bit and return
  38. return fromRep(result | sign);
  39. }
  40. #endif