ashrti3.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. /* ===-- ashrti3.c - Implement __ashrti3 -----------------------------------===
  2. *
  3. * The LLVM Compiler Infrastructure
  4. *
  5. * This file is dual licensed under the MIT and the University of Illinois Open
  6. * Source Licenses. See LICENSE.TXT for details.
  7. *
  8. * ===----------------------------------------------------------------------===
  9. *
  10. * This file implements __ashrti3 for the compiler_rt library.
  11. *
  12. * ===----------------------------------------------------------------------===
  13. */
  14. #include "int_lib.h"
  15. #ifdef CRT_HAS_128BIT
  16. /* Returns: arithmetic a >> b */
  17. /* Precondition: 0 <= b < bits_in_tword */
  18. COMPILER_RT_ABI ti_int
  19. __ashrti3(ti_int a, si_int b)
  20. {
  21. const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
  22. twords input;
  23. twords result;
  24. input.all = a;
  25. if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */
  26. {
  27. /* result.s.high = input.s.high < 0 ? -1 : 0 */
  28. result.s.high = input.s.high >> (bits_in_dword - 1);
  29. result.s.low = input.s.high >> (b - bits_in_dword);
  30. }
  31. else /* 0 <= b < bits_in_dword */
  32. {
  33. if (b == 0)
  34. return a;
  35. result.s.high = input.s.high >> b;
  36. result.s.low = (input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
  37. }
  38. return result.all;
  39. }
  40. #endif /* CRT_HAS_128BIT */