summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl09/dl-load.c (unfollow)
Commit message (Collapse)AuthorFilesLines
2023-08-27libdl: Realloc text memory if there are trampolinesChris Johns1-2/+14
- Add resize to the allocator interface - Rework the trampoline variables in the obj struct to make better sense of what is happening Closes #4944
2022-08-19dl09/dl-load.c: Fix gcc 12 warningRyan Long1-1/+1
Changed format of size_t variable being printed. Updates #4662
2022-04-07testsuites/libtests/dl*: Change license to BSD-2Joel Sherrill1-3/+22
Updates #3053.
2020-05-06libtest/dl09: Test trampolines only when supportedChris Johns1-4/+20
2019-02-09libdl: Add powerpc large memory and small data support.Chris Johns1-1/+3
- Add support for architecure sections that can be handled by the architecture back end. - Add trampoline/fixup support for PowerPC. This means the PowerPC now supports large memory loading of applications. - Add a bit allocator to manage small block based regions of memory. - Add small data (sdata/sbss) support for the PowerPC. The support makes the linker allocated small data region of memory a global resource available to libdl loaded object files. Updates #3687 Updates #3685
2019-02-09libdl: Add support for large memory programsChris Johns1-2/+8
- Add trampolines to support relocs that are out of range on support architectures. - Support not loading separate text/data sections in an object file if the symbol provided in the section is a duplicate. A base image may have pulled in part of an object and another part needs to be dynamically loaded. - Refactor the unresolved handling to scale to hundreds of unresolved symbols when loading large number of files. Updates #3685
2019-02-09libdl: Add support for trampolinesChris Johns1-0/+195
- Trampolines or fixups for veneers provide long jump support for instruciton sets that implement short relative address branches. The linker provides trampolines when creating a static image. This patch adds trampoline support to libdl and the ARM architecture. - The dl09 test requires enough memory so modules are outside the relative branch instruction ranges for the architecture. Updates #3685