math_extras.h 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /*
  2. * Copyright (c) 2019 Facebook.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Extra arithmetic and bit manipulation functions.
  9. *
  10. * @details This header file provides portable wrapper functions for a number of
  11. * arithmetic and bit-counting functions that are often provided by compiler
  12. * builtins. If the compiler does not have an appropriate builtin, a portable C
  13. * implementation is used instead.
  14. */
  15. #ifndef ZEPHYR_INCLUDE_SYS_MATH_EXTRAS_H_
  16. #define ZEPHYR_INCLUDE_SYS_MATH_EXTRAS_H_
  17. #include <zephyr/types.h>
  18. #include <stdbool.h>
  19. #include <stddef.h>
  20. /**
  21. * @name Unsigned integer addition with overflow detection.
  22. *
  23. * These functions compute `a + b` and store the result in `*result`, returning
  24. * true if the operation overflowed.
  25. */
  26. /**@{*/
  27. static bool u16_add_overflow(uint16_t a, uint16_t b, uint16_t *result);
  28. static bool u32_add_overflow(uint32_t a, uint32_t b, uint32_t *result);
  29. static bool u64_add_overflow(uint64_t a, uint64_t b, uint64_t *result);
  30. static bool size_add_overflow(size_t a, size_t b, size_t *result);
  31. /**@}*/
  32. /**
  33. * @name Unsigned integer multiplication with overflow detection.
  34. *
  35. * These functions compute `a * b` and store the result in `*result`, returning
  36. * true if the operation overflowed.
  37. */
  38. /**@{*/
  39. static bool u16_mul_overflow(uint16_t a, uint16_t b, uint16_t *result);
  40. static bool u32_mul_overflow(uint32_t a, uint32_t b, uint32_t *result);
  41. static bool u64_mul_overflow(uint64_t a, uint64_t b, uint64_t *result);
  42. static bool size_mul_overflow(size_t a, size_t b, size_t *result);
  43. /**@}*/
  44. /**
  45. * @name Count leading zeros.
  46. *
  47. * Count the number of leading zero bits in the bitwise representation of `x`.
  48. * When `x = 0`, this is the size of `x` in bits.
  49. */
  50. /**@{*/
  51. static int u32_count_leading_zeros(uint32_t x);
  52. static int u64_count_leading_zeros(uint64_t x);
  53. /**@}*/
  54. /**
  55. * @name Count trailing zeros.
  56. *
  57. * Count the number of trailing zero bits in the bitwise representation of `x`.
  58. * When `x = 0`, this is the size of `x` in bits.
  59. */
  60. /**@{*/
  61. static int u32_count_trailing_zeros(uint32_t x);
  62. static int u64_count_trailing_zeros(uint64_t x);
  63. /**@}*/
  64. #include <sys/math_extras_impl.h>
  65. #endif /* ZEPHYR_INCLUDE_SYS_MATH_EXTRAS_H_ */