logo

oasis-root

Compiled tree of Oasis Linux based on own branch at <https://hacktivis.me/git/oasis/> git clone https://anongit.hacktivis.me/git/oasis-root.git

const.h (1587B)


  1. /* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
  2. /* const.h: Macros for dealing with constants. */
  3. #ifndef _LINUX_CONST_H
  4. #define _LINUX_CONST_H
  5. /* Some constant macros are used in both assembler and
  6. * C code. Therefore we cannot annotate them always with
  7. * 'UL' and other type specifiers unilaterally. We
  8. * use the following macros to deal with this.
  9. *
  10. * Similarly, _AT() will cast an expression with a type in C, but
  11. * leave it unchanged in asm.
  12. */
  13. #ifdef __ASSEMBLY__
  14. #define _AC(X,Y) X
  15. #define _AT(T,X) X
  16. #else
  17. #define __AC(X,Y) (X##Y)
  18. #define _AC(X,Y) __AC(X,Y)
  19. #define _AT(T,X) ((T)(X))
  20. #endif
  21. #define _UL(x) (_AC(x, UL))
  22. #define _ULL(x) (_AC(x, ULL))
  23. #define _BITUL(x) (_UL(1) << (x))
  24. #define _BITULL(x) (_ULL(1) << (x))
  25. #if !defined(__ASSEMBLY__)
  26. /*
  27. * Missing __asm__ support
  28. *
  29. * __BIT128() would not work in the __asm__ code, as it shifts an
  30. * 'unsigned __init128' data type as direct representation of
  31. * 128 bit constants is not supported in the gcc compiler, as
  32. * they get silently truncated.
  33. *
  34. * TODO: Please revisit this implementation when gcc compiler
  35. * starts representing 128 bit constants directly like long
  36. * and unsigned long etc. Subsequently drop the comment for
  37. * GENMASK_U128() which would then start supporting __asm__ code.
  38. */
  39. #define _BIT128(x) ((unsigned __int128)(1) << (x))
  40. #endif
  41. #define __ALIGN_KERNEL(x, a) __ALIGN_KERNEL_MASK(x, (__typeof__(x))(a) - 1)
  42. #define __ALIGN_KERNEL_MASK(x, mask) (((x) + (mask)) & ~(mask))
  43. #define __KERNEL_DIV_ROUND_UP(n, d) (((n) + (d) - 1) / (d))
  44. #endif /* _LINUX_CONST_H */