summaryrefslogtreecommitdiffstats
path: root/testsuites/libtests/dl09/dl09.doc (follow)
Commit message (Collapse)AuthorAgeFilesLines
* testsuites/libtests/[a-l]*: Change license to BSD-2Joel Sherrill2022-04-121-3/+22
| | | | Updates #3053.
* libdl: Do not access the ELF file while the allocator is locked.Chris Johns2019-05-031-1/+1
| | | | | | | | | | | | | - Load symbols before allocation. - Parse reloc records and place any reloc recs in a cache to use while the allocator is locked. - Relocate symbols after section allocation. - Split section loading into allocation/locating and loading. - Update all arch back-ends with a new reloc interface to control tramp handling. - Add `-a` and `-t` to the object list shell command. Closes #3741
* libdl: Add support for trampolinesChris Johns2019-02-091-0/+23
- 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