Top Qs
Timeline
Chat
Perspective

DG/L

From Wikipedia, the free encyclopedia

Remove ads

DG/L is a programming language developed by Data General Corporation for the Nova, Eclipse, and Eclipse/MV families of minicomputers in the 1970s and early 1980s. Released in late 1977, the language was based on ALGOL, specifically the ALGOL 60 specification.

Quick Facts Paradigms, Family ...
Remove ads

Description

Summarize
Perspective

Data General offered two separate versions of ALGOL:

  • Data General Extended ALGOL-60, or Extended ALGOL, which ran on and generated code for the Nova and Eclipse series of 16-bit computers. The compiler only did a little optimization. It was only available on the RDOS family of operating systems.[1]:111[2]
  • DG/L, which was developed by extensively modifying the Fortran 5 optimizing compiler. This compiler ran only on the Eclipse and Eclipse/MV family of computers[3] but generated optimized code for the Nova, Eclipse and Eclipse/MV (Eagle) family. It was available on RDOS, AOS, and AOS/VS.[2][4]

The language itself was an extended version of ALGOL 60.[5] It supported integers, single- and double-precision floating point and complex numbers, and both fixed and arbitrary precision strings.[6] It also supported full arbitrary precision binary-coded decimal (BCD) arithmetic on strings.[2] It had many convenient program control flow features, but being designed in the mid-1970s, it lacked user defined data structures.

Originally called ALGOL/5, the product was renamed DG/L shortly before the first commercial release in around August 1977.[7][6] Prior to its release, DG/L had been used internally within Data General for the development of several major titles offered by the company.[4][6] The company touted it as the world's first high-level structured programming language for a minicomputer.[6]

DG/L had a substantial runtime library for its day, and was used for systems programming both within and outside of Data General. It held the distinction of being the only compiler that let users write a program for one Data General computer and then compile it for various Data General operating systems (RDOS, AOS, or AOS/VS) and hardware architectures (Nova, Eclipse, and Eclipse/MV). This made it useful for organizations which still relied on older, pre-AOS/VS DG systems. It also allowed developers to take advantage of AOS/VS's powerful tools for writing, compiling, and debugging, and then easily adapt the same program for the other environments by recompiling and relinking, accomplished via conditional compilation directives and compiler switches.[2]

Ostensibly standing for "Data General Language",[8]:6 the name "DG/L" eventually came to hinder sales by giving it the misleading reputation as a highly proprietary programming language specific to Data General computers, according to the journalist Peter Walsall, despite being a close ALGOL derivative.[2] After the first commercial release, targeting 16-bit Eclipse and Nova, several subsequent updates and major versions were released, approximately one a year. By 1987, DG/L had been largely forgotten among Data General's clientele, although it was still receiving routine updates by that point.[5] By 1989, however, the programming language was nearly extinct and did not find mention in any of the company's contemporary literature.[2]

Remove ads

Comparison with ALGOL 60

Summarize
Perspective

Appendix A of Data General's 1982 revision of its DG/L Language Reference Manual (093-00229-01) describes DG/L as based on the ALGOL 60 programming language, but gives "data types, operations and statements that ALGOL 60 lacks". Specific differences are:

ALGOL 60 features unsupported in DG/L

More information ALGOL 60 feature, As described in ALGOL 60 report paragraph ...

Extensions

Some of the extensions to the ALGOL 60 standard introduced in DG/L or carried over from Data General's previous ALGOL implementation of 1971:

String operations

  • SUBSTR substring
  • INDEX – position of a substring
  • LENGTH – length of a string
  • SETCURRENT – sets the current length of a string; e.g. setcurrent(str,length(str)-1);
  • !! concatenation operator[2]
  • String arithmetic (e.g. "123.45" + "0.01")[2]
  • Type conversion (boolean, integer, real, pointer, bit)[2]
  • Octal numbers and some special symbols enclosed in brackets to represent ASCII characters

Input and output

  • Fully formatted output, unformatted input, and output for all supported data types
  • Full interface to Data General's RDOS, AOS and AOS/VS system calls
  • Cache memory management (with virtual memory option).
  • Interface to CLRE and INFOS II databases

Other extensions

  • Conditional compiling of sections of code, using /** letter-digit-string <statement> */
  • End-of-line comments using the % character and /* comment */
  • Expanded do, for, and if syntax (e.g. WHILE <boolexp1> DO <statement> UNTIL <boolexp2>)
  • Types: BIT, BYTE, 16-bit and 32-bit integers, 32-bit and 64-bit reals and arbitrary precision arithmetic
  • Literals (e.g. LITERAL C (299792.458))
  • Global data
  • Error trapping
  • External procedures and data
  • Cluster declaration in a manner very similar to Pascal units (allows a cluster of procedures and data in a separate compiled source).
  • Pointer (-> symbol and BASED variables of all types
  • Exclusive OR operator (XOR)
  • Multitasking
Remove ads

References

Loading related searches...

Wikiwand - on

Seamless Wikipedia browsing. On steroids.

Remove ads