stdarg.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250
  1. /*****************************************************************************/
  2. /* stdarg.h v8.2.2 */
  3. /* */
  4. /* Copyright (c) 1993-2017 Texas Instruments Incorporated */
  5. /* http://www.ti.com/ */
  6. /* */
  7. /* Redistribution and use in source and binary forms, with or without */
  8. /* modification, are permitted provided that the following conditions */
  9. /* are met: */
  10. /* */
  11. /* Redistributions of source code must retain the above copyright */
  12. /* notice, this list of conditions and the following disclaimer. */
  13. /* */
  14. /* Redistributions in binary form must reproduce the above copyright */
  15. /* notice, this list of conditions and the following disclaimer in */
  16. /* the documentation and/or other materials provided with the */
  17. /* distribution. */
  18. /* */
  19. /* Neither the name of Texas Instruments Incorporated nor the names */
  20. /* of its contributors may be used to endorse or promote products */
  21. /* derived from this software without specific prior written */
  22. /* permission. */
  23. /* */
  24. /* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS */
  25. /* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT */
  26. /* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR */
  27. /* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT */
  28. /* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, */
  29. /* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT */
  30. /* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, */
  31. /* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY */
  32. /* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT */
  33. /* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE */
  34. /* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */
  35. /* */
  36. /*****************************************************************************/
  37. #ifndef _STDARG
  38. #define _STDARG
  39. #pragma diag_push
  40. #pragma CHECK_MISRA("-20.1") /* standard headers must define standard names */
  41. #pragma CHECK_MISRA("-20.2") /* standard headers must define standard names */
  42. #pragma CHECK_MISRA("-19.7") /* macros required for implementation */
  43. #pragma CHECK_MISRA("-19.10") /* need types as macro arguments */
  44. #ifdef __cplusplus
  45. namespace std
  46. {
  47. #endif
  48. #ifdef __TI_LLVM__
  49. typedef __builtin_va_list va_list;
  50. #else
  51. typedef char *va_list;
  52. #endif
  53. #ifdef __cplusplus
  54. }
  55. #endif
  56. /*****************************************************************************/
  57. /* LLVM VARARGS HANDLING - Use builtin operations. */
  58. /*****************************************************************************/
  59. #if defined(__TI_LLVM__)
  60. #define va_start(_ap, _parmN) \
  61. __builtin_va_start((_ap), (_parmN))
  62. #define va_arg(_ap, _type) \
  63. __builtin_va_arg((_ap), _type)
  64. #define va_copy(_dst, _src) \
  65. __builtin_va_copy((_dst), (_src))
  66. #define va_end(_ap) \
  67. __builtin_va_end(_ap)
  68. #else
  69. /*****************************************************************************/
  70. /* VA_END - Reclaim resources used by varargs handling. */
  71. /* */
  72. /* No action needed */
  73. /*****************************************************************************/
  74. #define va_end(_ap) ((void)0)
  75. /*****************************************************************************/
  76. /* VA_COPY - Make a copy of the varargs. */
  77. /*****************************************************************************/
  78. #define va_copy(_dst, _src) ((_dst)=(_src))
  79. /*****************************************************************************/
  80. /* VA_START - Set up the va_list pointer. */
  81. /*****************************************************************************/
  82. #if !defined(__TI_EABI__)
  83. /*---------------------------------------------------------------------------*/
  84. /* COFF ABI convention: */
  85. /* - va_list is kept aligned to 4 bytes. */
  86. /* - va_list pointer points one word beyond the start of the last argument. */
  87. /*---------------------------------------------------------------------------*/
  88. #define va_start(_ap, _parmN) \
  89. (_ap = ((char *)__va_parmadr(_parmN)) + \
  90. (__va_argref(_parmN) ? sizeof(&_parmN) : \
  91. (sizeof(_parmN) < 4 ? 4 : sizeof(_parmN))))
  92. #else
  93. /*---------------------------------------------------------------------------*/
  94. /* ELF ABI convention: */
  95. /* - va_list pointer points one byte beyond the last argument. */
  96. /*---------------------------------------------------------------------------*/
  97. #define va_start(_ap, _parmN) \
  98. (_ap = ((char *)__va_parmadr(_parmN)) + \
  99. (__va_argref(_parmN) ? sizeof(&_parmN) : \
  100. sizeof(_parmN)))
  101. #endif /* defined(__TI_EABI__) */
  102. /*****************************************************************************/
  103. /* VA_ARG - Return the next argument, adjust va_list pointer */
  104. /* */
  105. /* Some arguments passed by value are turned into pass-by-reference by */
  106. /* making a temporary object and passing a pointer to this temporary. For */
  107. /* such an argument (indicated by __va_argref(_type)) the actual argument */
  108. /* passed is a pointer, so it must be dealt with specially. */
  109. /* */
  110. /* When an argument is larger than the maximum alignment (8 bytes for double */
  111. /* or long long), we only align to 8 bytes. */
  112. /*****************************************************************************/
  113. /*---------------------------------------------------------------------------*/
  114. /* What happens on every va_arg(_ap, _type) call is: */
  115. /* 1) Align the value of _ap (the va_list pointer) appropriately for _type */
  116. /* (the requested type). */
  117. /* 2) Increment _ap appropriately for _type. */
  118. /* 3) Return the value desired by dereferencing _ap. */
  119. /*---------------------------------------------------------------------------*/
  120. #if !defined(__TI_EABI__)
  121. /*---------------------------------------------------------------------------*/
  122. /* The big- and little-endian variants are different only because we are */
  123. /* trying to support the case of the user asking for "char" or "short", */
  124. /* which is actually undefined behavior (See ISO/IEC 9899:1999 7.15.1.1), */
  125. /* but we are trying to be friendly. */
  126. /*---------------------------------------------------------------------------*/
  127. #ifdef _BIG_ENDIAN
  128. #define va_arg(_ap, _type) \
  129. (__va_argref(_type) \
  130. ? ((_ap += 4), (**(_type **)(_ap-4))) \
  131. : ((sizeof(_type) == sizeof(double) \
  132. ? ((_ap = (char *)(((int)_ap + 7) & ~7)), \
  133. (_ap += 8), (*(_type *)(_ap - 8))) \
  134. : ((_ap += 4), (*(_type *)(_ap - (sizeof(_type))))))))
  135. #else
  136. #define va_arg(_ap, _type) \
  137. (__va_argref(_type) \
  138. ? ((_ap += 4), (**(_type **)(_ap - 4))) \
  139. : ((sizeof(_type) == sizeof(double) \
  140. ? ((_ap = (char *)(((int)_ap + 7) & ~7)), \
  141. (_ap += 8), (*(_type *)(_ap - 8))) \
  142. : ((_ap += 4), (*(_type *)(_ap - 4))))))
  143. #endif
  144. #else /* defined(__TI_EABI__) */
  145. /*---------------------------------------------------------------------------*/
  146. /* 1) Align _ap to satisfy alignment of _type. */
  147. /* 2) Increment _ap by sizeof(_type) */
  148. /* 3) return *(ap-sizeof(_type)) */
  149. /*---------------------------------------------------------------------------*/
  150. #define __TI_SIZEOF_SCALAR_STR(_type) \
  151. ((sizeof(_type) > 8) ? 16 : \
  152. (sizeof(_type) > 4) ? 8 : \
  153. (sizeof(_type) > 2) ? 4 : \
  154. (sizeof(_type) > 1) ? 2 : 1)
  155. #define __TI_ALIGNOF_SCALAR_STR(_type) \
  156. ((sizeof(_type) > 8) ? 16 : \
  157. (sizeof(_type) > 4) ? 8 : \
  158. (sizeof(_type) > 2) ? 4 : \
  159. (sizeof(_type) > 1) ? 2 : 1)
  160. #define __TI_ALIGNOF_PROMOTED_TYPE(_type) \
  161. (__va_argref(_type) ? __alignof__(_type *) : \
  162. __va_argcsu(_type) ? __TI_ALIGNOF_SCALAR_STR(_type) : \
  163. (sizeof(_type) < 4) ? __alignof__(int) : \
  164. __alignof__(_type))
  165. #define __TI_ALIGN(e, _type) \
  166. ((char *)(((unsigned)(e) + __TI_ALIGNOF_PROMOTED_TYPE(_type) - 1) & \
  167. ~(__TI_ALIGNOF_PROMOTED_TYPE(_type) - 1)))
  168. #define __TI_SIZEOF_PROMOTED_TYPE(_type) \
  169. (__va_argref(_type) ? sizeof(_type *) : \
  170. __va_argcsu(_type) ? __TI_SIZEOF_SCALAR_STR(_type) : \
  171. (sizeof(_type) < 4) ? sizeof(int) : sizeof(_type))
  172. #define __TI_DEREF(e, _type) \
  173. (__va_argref(_type) ? **(_type **)(e) : *(_type *)(e))
  174. /*---------------------------------------------------------------------------*/
  175. /* The big- and little-endian variants are different only because we are */
  176. /* trying to support the case of the user asking for "char" or "short", */
  177. /* which is actually undefined behavior (See ISO/IEC 9899:1999 7.15.1.1), */
  178. /* but we are trying to be friendly. */
  179. /*---------------------------------------------------------------------------*/
  180. #ifdef _BIG_ENDIAN
  181. #define __TI_BE_SIZEOF_UNPROMOTED_TYPE(_type) \
  182. (__va_argref(_type) ? sizeof(_type *) : \
  183. __va_argcsu(_type) ? __TI_SIZEOF_SCALAR_STR(_type) : \
  184. (sizeof(_type)))
  185. #define va_arg(_ap, _type) \
  186. (_ap = __TI_ALIGN(_ap, _type), \
  187. _ap += __TI_SIZEOF_PROMOTED_TYPE(_type), \
  188. __TI_DEREF(_ap - __TI_BE_SIZEOF_UNPROMOTED_TYPE(_type), _type))
  189. #else
  190. #define va_arg(_ap, _type) \
  191. (_ap = __TI_ALIGN(_ap, _type), \
  192. _ap += __TI_SIZEOF_PROMOTED_TYPE(_type), \
  193. __TI_DEREF(_ap - __TI_SIZEOF_PROMOTED_TYPE(_type), _type))
  194. #endif /* _BIG_ENDIAN */
  195. #endif /* defined(__TI_EABI__) */
  196. #endif /* defined(__TI_LLVM__) */
  197. #pragma diag_pop
  198. #endif /* _STDARG */
  199. #pragma diag_push
  200. /* using declarations must occur outside header guard to support including both
  201. C and C++-wrapped version of header; see _CPP_STYLE_HEADER check */
  202. /* this code is for C++ mode only and thus also not relevant for MISRA */
  203. #pragma CHECK_MISRA("-19.15")
  204. #if defined(__cplusplus) && !defined(_CPP_STYLE_HEADER)
  205. using std::va_list;
  206. #endif /* _CPP_STYLE_HEADER */
  207. #pragma diag_pop