kobject-text.ld 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. /* SPDX-License-Identifier: Apache-2.0 */
  2. #ifdef CONFIG_USERSPACE
  3. /* We need to reserve room for the gperf generated hash functions.
  4. * Fortunately, unlike the data tables, the size of the code is
  5. * reasonably predictable.
  6. *
  7. * The linker will error out complaining that the location pointer
  8. * is moving backwards if the reserved room isn't large enough.
  9. */
  10. _kobject_text_area_start = .;
  11. *(".kobject_data.text*")
  12. _kobject_text_area_end = .;
  13. _kobject_text_area_used = _kobject_text_area_end - _kobject_text_area_start;
  14. #ifndef LINKER_ZEPHYR_FINAL
  15. #ifdef CONFIG_DYNAMIC_OBJECTS
  16. PROVIDE(z_object_gperf_find = .);
  17. PROVIDE(z_object_gperf_wordlist_foreach = .);
  18. #else
  19. PROVIDE(z_object_find = .);
  20. PROVIDE(z_object_wordlist_foreach = .);
  21. #endif
  22. #endif
  23. /* In a valid build the MAX function will always evaluate to the
  24. second argument below, but to give the user a good error message
  25. when the area overflows we need to temporarily corrupt the
  26. location counter, and then detect the overflow with an assertion
  27. later on. */
  28. . = MAX(., _kobject_text_area_start + CONFIG_KOBJECT_TEXT_AREA);
  29. ASSERT(
  30. CONFIG_KOBJECT_TEXT_AREA >= _kobject_text_area_used,
  31. "Reserved space for kobject text area is too small. \
  32. Please change CONFIG_KOBJECT_TEXT_AREA to a larger number."
  33. );
  34. #endif /* CONFIG_USERSPACE */