Loader (computing)
From Wikipedia, the free encyclopedia
| This article needs additional citations for verification. Please help improve this article by adding reliable references. Unsourced material may be challenged and removed. (June 2008) |
In computing, a loader is the part of an operating system that is responsible for loading programs from executables (i.e., executable files) into memory, preparing them for execution and then executing them.
The loader is usually a part of the operating system's kernel and usually loaded at system boot time and stays in memory until the system is rebooted, shut down, or powered off. Some operating systems that have a pageable kernel may have the loader in the pageable part of memory and thus the loader sometimes may be swapped out of memory. All operating systems that support program loading have loaders. Some embedded operating systems in highly specialized computers run only one program and have no program loading capabilities and thus no loaders, for example embedded systems in cars or stereo equipment.
Contents |
[edit] Responsibilities
For example: in Unix, the loader is the handler for the system call execve().[1] The loader's tasks under Unix include:
- validation (permissions, memory requirements etc.);
- copying the program image from the disk into main memory;
- copying the command-line arguments on the stack;
- initializing registers (e.g., the stack pointer);
- jumping to the program entry point (
_start).
Loader programs are useful for prototyping, testing, and one-off applications. One such program was an integral part of Gene Amdahl's original OS/360 operating system, and this loader facility was continued through OS/360's descendants including MVT, MVS and z/OS.
[edit] Relocating loaders
Some computers need relocating loaders, which adjust addresses (pointers) in the executable to compensate for variations in the address at which loading starts. The computers which need relocating loaders are those in which pointers are absolute addresses rather than offsets from the program's base address. One well-known example is IBM's System/360 mainframes and their descendants, including the System z9 series.
[edit] Dynamic linkers
Dynamic linkers are another type of loader that load and link shared libraries (like .dll files) to already loaded running programs.
[edit] See also
[edit] References
- ^ "exec". The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition. The Open Group. http://www.opengroup.org/onlinepubs/000095399/functions/exec.html. Retrieved on 2008-06-23.

