ashrti3.c 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. //===-- ashrti3.c - Implement __ashrti3 -----------------------------------===//
  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 __ashrti3 for the compiler_rt library.
  10. //
  11. //===----------------------------------------------------------------------===//
  12. #include "int_lib.h"
  13. #ifdef CRT_HAS_128BIT
  14. // Returns: arithmetic a >> b
  15. // Precondition: 0 <= b < bits_in_tword
  16. COMPILER_RT_ABI ti_int __ashrti3(ti_int a, int b) {
  17. const int bits_in_dword = (int)(sizeof(di_int) * CHAR_BIT);
  18. twords input;
  19. twords result;
  20. input.all = a;
  21. if (b & bits_in_dword) /* bits_in_dword <= b < bits_in_tword */ {
  22. // result.s.high = input.s.high < 0 ? -1 : 0
  23. result.s.high = input.s.high >> (bits_in_dword - 1);
  24. result.s.low = input.s.high >> (b - bits_in_dword);
  25. } else /* 0 <= b < bits_in_dword */ {
  26. if (b == 0)
  27. return a;
  28. result.s.high = input.s.high >> b;
  29. result.s.low =
  30. ((du_int)input.s.high << (bits_in_dword - b)) | (input.s.low >> b);
  31. }
  32. return result.all;
  33. }
  34. #endif // CRT_HAS_128BIT