- Loader (computing)
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 theoperating system 's kernel and usually is loaded at systemboot 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. Someembedded operating system s 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.In Unix, the loader is the handler for the system call execve(). [cite web |url=http://www.opengroup.org/onlinepubs/000095399/functions/exec.html |title=exec |publisher=The Open Group |work=The Open Group Base Specifications Issue 6, IEEE Std 1003.1, 2004 Edition |accessdate=2008-06-23] The loader's tasks under Unix include: (1) validation (permissions, memory requirements etc.); (2) copying the program image from the disk into main memory; (3) copying the command-line arguments on the stack; (4) initializing registers (e.g., the stack pointer); (5) 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 originalOS/360 operating system , and this loader facility was continued through OS/360's descendants includingMVT ,MVS andz/OS .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'sSystem/360 mainframes and their descendants, including theSystem z9 series.Dynamic linkers
Dynamic linker s are another type of loader that load and linkshared libraries (like .dll files) to already loaded running programs.ee also
*
Library (computing)
*Linker
*Object File
*Prebinding
*Relocation
*Static Library
*LD_PRELOAD
*Runtime
* JavaClassloader References
Wikimedia Foundation. 2010.