hpm_swap.c 782 B

123456789101112131415161718192021222324252627282930
  1. /*
  2. * Copyright (c) 2021-2024 HPMicro
  3. *
  4. * SPDX-License-Identifier: BSD-3-Clause
  5. *
  6. */
  7. #include "hpm_common.h"
  8. #if !defined(__riscv_xandes) || defined(__zcc__)
  9. uint32_t __bswapsi2 (uint32_t u)
  10. {
  11. return ((((u) & 0xff000000) >> 24)
  12. | (((u) & 0x00ff0000) >> 8)
  13. | (((u) & 0x0000ff00) << 8)
  14. | (((u) & 0x000000ff) << 24));
  15. }
  16. uint64_t __bswapdi2 (uint64_t u)
  17. {
  18. return ((((u) & 0xff00000000000000ull) >> 56)
  19. | (((u) & 0x00ff000000000000ull) >> 40)
  20. | (((u) & 0x0000ff0000000000ull) >> 24)
  21. | (((u) & 0x000000ff00000000ull) >> 8)
  22. | (((u) & 0x00000000ff000000ull) << 8)
  23. | (((u) & 0x0000000000ff0000ull) << 24)
  24. | (((u) & 0x000000000000ff00ull) << 40)
  25. | (((u) & 0x00000000000000ffull) << 56));
  26. }
  27. #endif