Compile and go system

From Infogalactic: the planetary knowledge core
(Redirected from Compile and go loader)
Jump to: navigation, search

In computer programming, a compile and go system, compile, load, and go system, assemble and go system, or load and go system[1][2][3] is a programming language processor in which the compilation, assembly, or link steps are not separated from program execution. The intermediate forms of the program are generally kept in primary memory, and not saved to the file system.[4][5][6][7][8][3][1][2]

Examples of compile-and-go systems are WATFOR, PL/C, and Dartmouth BASIC.[3]

A example of a load-and-go system is the OS/360 loader, which performed many of the functions of the Linkage Editor, but placed the linked program in memory rather than creating an executable on disk.[9]

Compile and go systems differ from interpreters, which either directly execute source code or execute an intermediate representation.

Analysis

Advantages of compile-and-go systems are:

  • The user need not be concerned with the separate steps of compilation, assembling, linking, loading, and executing.
  • Execution speed is generally much superior to interpreted systems.
  • They are simple and easier to implement.[dubious ][3]

Disadvantages of compile-and-go loaders are:

  • There is wastage in memory space due to the presence of the assembler.[7][3]
  • The code must be reprocessed every time it is run.[10][7][3]
  • Systems with multiple modules, possibly in different languages, cannot be handled naturally within this framework.[7][3]

Compile-and-go systems were popular in academic environments, where student programs were small, compiled many times, usually executed quickly and, once debugged, seldom needed to be re-executed.

See also

References

Cross-reference

  1. 1.0 1.1 Weik 2000a, p. 66.
  2. 2.0 2.1 Weik 2000b, p. 260.
  3. 3.0 3.1 3.2 3.3 3.4 3.5 3.6 Dhotre & Puntambekar 2008, pp. 3—2.
  4. Donovan 1972, pp. 150.
  5. Janson 1985, pp. 184.
  6. Morris 1992, pp. 477.
  7. 7.0 7.1 7.2 7.3 Isrd 2006, pp. 226.
  8. Joseph 2007, pp. 130.
  9. Lua error in package.lua at line 80: module 'strict' not found.
  10. Janson 1985, pp. 189.

Sources used

  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.
  • Lua error in package.lua at line 80: module 'strict' not found.

External links