Kconfig.cbprintf 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. # Copyright (c) 2020 Nordic Semiconductor ASA
  2. # SPDX-License-Identifier: Apache-2.0
  3. choice CBPRINTF_IMPLEMENTATION
  4. prompt "Capabilities of cbprintf implementation"
  5. default CBPRINTF_COMPLETE
  6. config CBPRINTF_COMPLETE
  7. bool "All selected features"
  8. help
  9. Select this for an implementation that supports all potential
  10. conversions, with Kconfig options to control availability at build
  11. time.
  12. config CBPRINTF_COMPLETE_BROM
  13. bool "All selected features use rom export function"
  14. help
  15. same as CBPRINTF_COMPLETE, but use rom export cbvprintf
  16. # 80: -53% / 982 B (80 / 00)
  17. config CBPRINTF_NANO
  18. bool "Space-optimized but feature-limited"
  19. # nano needs to count characters if it's the formatter for libc
  20. select CBPRINTF_LIBC_SUBSTS if MINIMAL_LIBC
  21. help
  22. If selected a completely different implementation of the core
  23. formatting capability is substituted. This has a much smaller code
  24. footprint, but provides fewer capabilities.
  25. endchoice # CBPRINTF_IMPLEMENTATION
  26. choice CBPRINTF_INTEGRAL_CONV
  27. prompt "Control range of convertible integer values"
  28. default CBPRINTF_FULL_INTEGRAL
  29. # 01: 0% / 0 B (01 / 00)
  30. config CBPRINTF_FULL_INTEGRAL
  31. bool "Convert the full range of integer values"
  32. help
  33. Build cbprintf with buffers sized to support converting the full
  34. range of all integral and pointer values.
  35. Selecting this has no effect on code size, but will increase call
  36. stack size by a few words.
  37. # 00:
  38. config CBPRINTF_REDUCED_INTEGRAL
  39. bool "Convert only integer values that fit in 32 bits"
  40. help
  41. Build cbprintf with buffers sized to support converting integer
  42. values with no more than 32 bits.
  43. This will decrease stack space, but affects conversion of any type
  44. with more than 32 bits. This includes not only intmax_t but any
  45. type that can be converted to an integral represention including
  46. size_t and pointers.
  47. With CBPRINTF_COMPLETE conversions that may result in value-specific
  48. truncation are not supported, and the generated text will be the
  49. specification (e.g. %jd).
  50. With CBPRINTF_NANO all conversions will be attempted but values that
  51. cannot fit will be silently truncated.
  52. endchoice
  53. # 02: 82% / 1530 B (02 / 00)
  54. config CBPRINTF_FP_SUPPORT
  55. bool "Enable floating point formatting in cbprintf"
  56. default y if FPU
  57. depends on CBPRINTF_COMPLETE || CBPRINTF_COMPLETE_BROM
  58. help
  59. Build the cbprintf utility function with support for floating
  60. point format specifiers. Selecting this increases stack size
  61. requirements slightly, but increases code size significantly.
  62. # 04: 13% / 456 B (07 / 03)
  63. config CBPRINTF_FP_A_SUPPORT
  64. bool "Enable floating point %a conversions"
  65. depends on CBPRINTF_FULL_INTEGRAL
  66. select CBPRINTF_FP_SUPPORT
  67. help
  68. The %a hexadecimal format for floating point value conversion was
  69. added in C99, but the output is not easily understood so it rarely
  70. appears in application code.
  71. Selecting this adds support for the conversion, but increases the
  72. overall code size related to FP support.
  73. # 40: -15% / -508 B (46 / 06)
  74. config CBPRINTF_FP_ALWAYS_A
  75. bool "Select %a format for all floating point specifications"
  76. select CBPRINTF_FP_A_SUPPORT
  77. help
  78. The %a format for floats requires significantly less code than the
  79. standard decimal representations (%f, %e, %g). Selecting this
  80. option implicitly uses %a (or %A) for all decimal floating
  81. conversions. The precision of the original specification is
  82. ignored.
  83. Selecting this decreases code size when FP_SUPPORT is enabled.
  84. # 08: 3% / 60 B (08 / 00)
  85. config CBPRINTF_N_SPECIFIER
  86. bool "Support %n specifications"
  87. depends on CBPRINTF_COMPLETE
  88. default y
  89. help
  90. If selected %n can be used to determine the number of characters
  91. emitted. If enabled there is a small increase in code size.
  92. # 180: 18% / 138 B (180 / 80) [NANO]
  93. config CBPRINTF_LIBC_SUBSTS
  94. bool "Generate C-library compatible functions using cbprintf"
  95. help
  96. If selected wrappers are generated for various C library functions
  97. using the cbprintf formatter underneath. The wrappers use the C
  98. library function name with a cb suffix; e.g. printfcb() or
  99. vsnprintfcb().
  100. When used with CBPRINTF_NANO this increases the implementation code
  101. size by a small amount.
  102. config CBPRINTF_PACKAGE_LONGDOUBLE
  103. bool "Support packaging of long doubles"
  104. help
  105. Option impact required alignment for buffers used for packaging
  106. (CBPRINTF_PACKAGE_ALIGNMENT). On most platforms long doubles
  107. requires buffer to be 16 bytes aligned. Long doubles are rarely used
  108. so such alignment is an unnecessary waste. If option is disabled,
  109. then compilation fails if long double is used.
  110. config CBPRINTF_STATIC_PACKAGE_CHECK_ALIGNMENT
  111. bool "Validate alignment of a static package buffer"
  112. # To avoid self referential macro when printk is redirected to logging
  113. depends on !LOG_PRINTK
  114. help
  115. When enabled, CBPRINTF_STATIC_PACKAGE asserts when buffer is not
  116. properly aligned. If macro is widely used then assert may impact
  117. memory footprint.