gen_offset.h 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990
  1. /*
  2. * Copyright (c) 2010, 2012, 2014 Wind River Systems, Inc.
  3. *
  4. * SPDX-License-Identifier: Apache-2.0
  5. */
  6. /**
  7. * @file
  8. * @brief Macros to generate structure member offset definitions
  9. *
  10. * This header contains macros to allow a kernel implementation to generate
  11. * absolute symbols whose values represents the member offsets for various
  12. * kernel structures. These absolute symbols are typically utilized by
  13. * assembly source files rather than hardcoding the values in some local header
  14. * file.
  15. *
  16. * WARNING: Absolute symbols can potentially be utilized by external tools --
  17. * for example, to locate a specific field within a data structure.
  18. * Consequently, changes made to such symbols may require modifications to the
  19. * associated tool(s). Typically, relocating a member of a structure merely
  20. * requires that a tool be rebuilt; however, moving a member to another
  21. * structure (or to a new sub-structure within an existing structure) may
  22. * require that the tool itself be modified. Likewise, deleting, renaming, or
  23. * changing the meaning of an absolute symbol may require modifications to a
  24. * tool.
  25. *
  26. * The macro "GEN_OFFSET_SYM(structure, member)" is used to generate a single
  27. * absolute symbol. The absolute symbol will appear in the object module
  28. * generated from the source file that utilizes the GEN_OFFSET_SYM() macro.
  29. * Absolute symbols representing a structure member offset have the following
  30. * form:
  31. *
  32. * __<structure>_<member>_OFFSET
  33. *
  34. * The macro "GEN_NAMED_OFFSET_SYM(structure, member, name)" is also provided
  35. * to create the symbol with the following form:
  36. *
  37. * __<structure>_<name>_OFFSET
  38. *
  39. * This header also defines the GEN_ABSOLUTE_SYM macro to simply define an
  40. * absolute symbol, irrespective of whether the value represents a structure
  41. * or offset.
  42. *
  43. * The following sample file illustrates the usage of the macros available
  44. * in this file:
  45. *
  46. * <START of sample source file: offsets.c>
  47. *
  48. * #include <gen_offset.h>
  49. * /@ include struct definitions for which offsets symbols are to be
  50. * generated @/
  51. *
  52. * #include <kernel_structs.h>
  53. * GEN_ABS_SYM_BEGIN (_OffsetAbsSyms) /@ the name parameter is arbitrary @/
  54. * /@ _kernel_t structure member offsets @/
  55. *
  56. * GEN_OFFSET_SYM (_kernel_t, nested);
  57. * GEN_OFFSET_SYM (_kernel_t, irq_stack);
  58. * GEN_OFFSET_SYM (_kernel_t, current);
  59. * GEN_OFFSET_SYM (_kernel_t, idle);
  60. *
  61. * GEN_ABSOLUTE_SYM (___kernel_t_SIZEOF, sizeof(_kernel_t));
  62. *
  63. * GEN_ABS_SYM_END
  64. * <END of sample source file: offsets.c>
  65. *
  66. * Compiling the sample offsets.c results in the following symbols in offsets.o:
  67. *
  68. * $ nm offsets.o
  69. * 00000000 A ___kernel_t_nested_OFFSET
  70. * 00000004 A ___kernel_t_irq_stack_OFFSET
  71. * 00000008 A ___kernel_t_current_OFFSET
  72. * 0000000c A ___kernel_t_idle_OFFSET
  73. */
  74. #ifndef ZEPHYR_KERNEL_INCLUDE_GEN_OFFSET_H_
  75. #define ZEPHYR_KERNEL_INCLUDE_GEN_OFFSET_H_
  76. #include <toolchain.h>
  77. #include <stddef.h>
  78. /* definition of the GEN_OFFSET_SYM() macros is toolchain independent */
  79. #define GEN_OFFSET_SYM(S, M) \
  80. GEN_ABSOLUTE_SYM(__##S##_##M##_##OFFSET, offsetof(S, M))
  81. #define GEN_NAMED_OFFSET_SYM(S, M, N) \
  82. GEN_ABSOLUTE_SYM(__##S##_##N##_##OFFSET, offsetof(S, M))
  83. #endif /* ZEPHYR_KERNEL_INCLUDE_GEN_OFFSET_H_ */