cbprintf_cxx.h 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  1. /*
  2. * Copyright (c) 2021 Nordic Semiconductor ASA
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. #ifndef ZEPHYR_INCLUDE_SYS_CBPRINTF_CXX_H_
  7. #define ZEPHYR_INCLUDE_SYS_CBPRINTF_CXX_H_
  8. #ifdef __cplusplus
  9. /* C++ version for detecting a pointer to a string. */
  10. static inline int z_cbprintf_cxx_is_pchar(char *)
  11. {
  12. return 1;
  13. }
  14. static inline int z_cbprintf_cxx_is_pchar(const char *)
  15. {
  16. return 1;
  17. }
  18. static inline int z_cbprintf_cxx_is_pchar(volatile char *)
  19. {
  20. return 1;
  21. }
  22. static inline int z_cbprintf_cxx_is_pchar(const volatile char *)
  23. {
  24. return 1;
  25. }
  26. static inline int z_cbprintf_cxx_is_pchar(wchar_t *)
  27. {
  28. return 1;
  29. }
  30. static inline int z_cbprintf_cxx_is_pchar(const wchar_t *)
  31. {
  32. return 1;
  33. }
  34. static inline int z_cbprintf_cxx_is_pchar(volatile wchar_t *)
  35. {
  36. return 1;
  37. }
  38. static inline int z_cbprintf_cxx_is_pchar(const volatile wchar_t *)
  39. {
  40. return 1;
  41. }
  42. template < typename T >
  43. static inline int z_cbprintf_cxx_is_pchar(T arg)
  44. {
  45. _Pragma("GCC diagnostic push")
  46. _Pragma("GCC diagnostic ignored \"-Wpointer-arith\"")
  47. return 0;
  48. _Pragma("GCC diagnostic pop")
  49. }
  50. /* C++ version for calculating argument size. */
  51. static inline size_t z_cbprintf_cxx_arg_size(float f)
  52. {
  53. ARG_UNUSED(f);
  54. return sizeof(double);
  55. }
  56. static inline size_t z_cbprintf_cxx_arg_size(void *p)
  57. {
  58. ARG_UNUSED(p);
  59. return sizeof(void *);
  60. }
  61. template < typename T >
  62. static inline size_t z_cbprintf_cxx_arg_size(T arg)
  63. {
  64. return sizeof(arg + 0);
  65. }
  66. /* C++ version for storing arguments. */
  67. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, float arg)
  68. {
  69. double d = (double)arg;
  70. void *p = &d;
  71. z_cbprintf_wcpy((int *)dst, (int *)p, sizeof(d) / sizeof(int));
  72. }
  73. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, void *p)
  74. {
  75. z_cbprintf_wcpy((int *)dst, (int *)&p, sizeof(p) / sizeof(int));
  76. }
  77. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, char arg)
  78. {
  79. int tmp = arg + 0;
  80. z_cbprintf_wcpy((int *)dst, &tmp, 1);
  81. }
  82. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, unsigned char arg)
  83. {
  84. int tmp = arg + 0;
  85. z_cbprintf_wcpy((int *)dst, &tmp, 1);
  86. }
  87. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, signed char arg)
  88. {
  89. int tmp = arg + 0;
  90. z_cbprintf_wcpy((int *)dst, &tmp, 1);
  91. }
  92. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, short arg)
  93. {
  94. int tmp = arg + 0;
  95. z_cbprintf_wcpy((int *)dst, &tmp, 1);
  96. }
  97. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, unsigned short arg)
  98. {
  99. int tmp = arg + 0;
  100. z_cbprintf_wcpy((int *)dst, &tmp, 1);
  101. }
  102. template < typename T >
  103. static inline void z_cbprintf_cxx_store_arg(uint8_t *dst, T arg)
  104. {
  105. size_t wlen = z_cbprintf_cxx_arg_size(arg) / sizeof(int);
  106. void *p = &arg;
  107. z_cbprintf_wcpy((int *)dst, (int *)p, wlen);
  108. }
  109. /* C++ version for long double detection. */
  110. static inline int z_cbprintf_cxx_is_longdouble(long double arg)
  111. {
  112. ARG_UNUSED(arg);
  113. return 1;
  114. }
  115. template < typename T >
  116. static inline int z_cbprintf_cxx_is_longdouble(T arg)
  117. {
  118. ARG_UNUSED(arg);
  119. return 0;
  120. }
  121. /* C++ version for caluculating argument alignment. */
  122. static inline size_t z_cbprintf_cxx_alignment(float arg)
  123. {
  124. ARG_UNUSED(arg);
  125. return VA_STACK_ALIGN(double);
  126. }
  127. static inline size_t z_cbprintf_cxx_alignment(double arg)
  128. {
  129. ARG_UNUSED(arg);
  130. return VA_STACK_ALIGN(double);
  131. }
  132. static inline size_t z_cbprintf_cxx_alignment(long double arg)
  133. {
  134. ARG_UNUSED(arg);
  135. return VA_STACK_ALIGN(long double);
  136. }
  137. static inline size_t z_cbprintf_cxx_alignment(long long arg)
  138. {
  139. ARG_UNUSED(arg);
  140. return VA_STACK_ALIGN(long long);
  141. }
  142. static inline size_t z_cbprintf_cxx_alignment(unsigned long long arg)
  143. {
  144. ARG_UNUSED(arg);
  145. return VA_STACK_ALIGN(long long);
  146. }
  147. template < typename T >
  148. static inline size_t z_cbprintf_cxx_alignment(T arg)
  149. {
  150. return MAX(__alignof__(arg), VA_STACK_MIN_ALIGN);
  151. }
  152. #endif /* __cplusplus */
  153. #endif /* ZEPHYR_INCLUDE_SYS_CBPRINTF_CXX_H_ */