summaryrefslogtreecommitdiff
path: root/rtl.h (follow)
AgeCommit message (Collapse)Author
2013-09-05Fix symbols which need underscorePeng Fan
To some archs, the symbols are added a '_' prefix. we should handle it.
2013-01-15Update comments.Chris Johns
2012-11-29RAP file support.Chris Johns
This is the initial addition of support for LZ77 RTEMS applications in the RAP format. The change add support for different formats to the loader. Each format type is asked to check the file being loading and if it matches the format's loader is called to load the file. Support has been added to stream LZ77 files via the object file cache.
2012-09-18Formatting clean up.Chris Johns
2012-07-16Resolve unresolved externals when loading object files.Chris Johns
Object files that depend on each other will cause an unresolved external. The change lets object files load with unresolved externals and will resolve them when the object file with the external is loaded. A common table of symbol strings and relocation records is maintained. The symbol string is shared by each object file that is unresolved. Each relocation record that references the symbol is held. The table is a series of small blocks that compact as symbols are resolved. The number of symbols left unresolved is typically small this design avoids fragmentation of the heap memory.
2012-05-13Support indirect pointers for strings in the object file.Chris Johns
Add indirect pointers and use it for the file names parts which are part of the object module.
2012-05-08Add RTL allocator.Chris Johns
Add a custom allocator that can be hooked. The default heap allocator in this code does nothing more than wrap the libc heap allocator. Fix up the RTL initialise to better handle the locking and initialisation of internal structures.
2012-05-07Update copyright year. Remove the Id tag.Chris Johns
2012-04-25Import the current project to git.Chris Johns