Difference between revisions of "BCPL"

From Computer History Wiki
Jump to: navigation, search
m (Fix error in CPL institutions)
(MUD1)
 
(11 intermediate revisions by 4 users not shown)
Line 1: Line 1:
'''BCPL''' is a [[programming language]] that was first developed in the late 1960's. Although little-used nowdays, it is historically important as [[C (language)|C]] is derived from it. (C can be crisply, and aptly, described as 'BCPL with types and terser syntax'.)
+
'''BCPL''' is a [[programming language]] that was first developed in the late 1960's. Although little-used nowdays, it is historically important as the [[C programming language]] is derived from it. (C can be crisply, and aptly, described as 'BCPL with [[type]]s and terser [[syntax]]'.)
  
Like [[ALGOL]], from which is is descended, it includes modern [[control flow]], including 'block structure'. Unlike Algol, it did not have types; the only type spported was 'word'.
+
Like [[ALGOL]], from which it is descended, it includes modern [[control flow]], including 'block structure'. Unlike Algol, it did not have types; the only type supported was '[[word]]'.
  
It was intended by Martin Richards, its designer, mostly for systems programming (such as [[operating system]]s, [[compiler]]s, etc), for which the type limitation was not severe. (The lack of any support for [[floating point]] made it a poor choice for classic computational applications.)
+
It was intended by Martin Richards, its designer, mostly for systems programming (such as [[operating system]]s, [[compiler]]s, etc), for which the type limitation was not severe. (The lack of any support for [[floating point]] made it a poor choice for classic computational [[application]]s, the main use of computers at the time.)
  
BCPL was also used in a number of other significant places, including much of the early work on the [[Xerox Alto]].
+
BCPL was also used in a number of other significant places, including much of the early work on the [[Xerox Alto]] and the first [[Multi-User Dungeon]].
  
 
==History==
 
==History==
Line 17: Line 17:
 
==Portability==
 
==Portability==
  
Portability was a significant goal of BCPL, both in the language itself, and in also in the openly available original BCPL compiler, itself written in BCPL; this compiler was ported to a large number of machines.
+
[[Portable|Portability]] was a significant goal of BCPL, both in the language itself, and also in the openly available original BCPL compiler, itself written in BCPL; this compiler was ported to a large number of machines.
  
 
The compiler was structured as three phases, the third of which converted a machine-independent intermediate language called OCODE, generated by the second phase, into the target machine's [[object code]].
 
The compiler was structured as three phases, the third of which converted a machine-independent intermediate language called OCODE, generated by the second phase, into the target machine's [[object code]].
  
Porting the compiler involved writing a new third phase; compiling that with the existing compiler on the host machine, producing a [[cross-compiler]]; and then running the compiler itself through the cross-compiler, producing a native compiler for the target machine.
+
Porting the compiler involved writing a new third phase; compiling that with the existing compiler on the host machine, producing a [[cross-compiler]]; and then running the compiler itself through the cross-compiler, producing object code for a native compiler for the target machine.
 +
 
 +
==External links==
 +
 
 +
* [https://www.bell-labs.com/usr/dmr/www/bcpl.html Martin Richards's BCPL Reference Manual, 1967]
 +
** [https://www.bell-labs.com/usr/dmr/www/bcpl.pdf BCPL Reference Manual]
 +
* [https://dl.acm.org/doi/10.1145/1476793.1476880 BCPL: a tool for compiler writing and system programming], Richards 1969
 +
* [https://www.cl.cam.ac.uk/~mr10/BCPLCTSS.html CTSS BCPL] from MIT.
 +
* [https://people.csail.mit.edu/saltzer/Multics/Multics-Documents/MSPM/bz-6-00.680618.bcpl-overview.pdf Multics BCPL]
 +
* [http://www.bitsavers.org/pdf/mit/tx-2/TX-2_BCPL_Reference_Manual_May69.pdf TX-2 BCPL manual, 1969]
 +
* [https://github.com/PDP-10/essex-bcpl Essex BCPL] for TOPS-10.
 +
* [https://github.com/PDP-10/tenex-bcpl TENEX BCPL] from BBN - source code only.
 +
* [http://bitsavers.trailing-edge.com/pdf/xerox/alto/bcpl/ Alto BCPL]
 +
* [http://bitsavers.org/pdf/aarhusUniversity/md/MD-38_The_RIKKE_BCPL_System_Sep80.pdf The RIKKE BCPL System]
 +
* [https://www.cpcwiki.eu/index.php/BCPL Arnor BCPL] for Amstrad CPC and PCW computers.
 +
* [https://github.com/LardoBoffin/BBC-BCPL_Overview Acornsoft BCPL] for the BBC Micro.
 +
 
 +
[[Category:Languages]]

Latest revision as of 07:42, 20 June 2023

BCPL is a programming language that was first developed in the late 1960's. Although little-used nowdays, it is historically important as the C programming language is derived from it. (C can be crisply, and aptly, described as 'BCPL with types and terser syntax'.)

Like ALGOL, from which it is descended, it includes modern control flow, including 'block structure'. Unlike Algol, it did not have types; the only type supported was 'word'.

It was intended by Martin Richards, its designer, mostly for systems programming (such as operating systems, compilers, etc), for which the type limitation was not severe. (The lack of any support for floating point made it a poor choice for classic computational applications, the main use of computers at the time.)

BCPL was also used in a number of other significant places, including much of the early work on the Xerox Alto and the first Multi-User Dungeon.

History

BCPL is based on Combined Programming Language (CPL), an ambitious collaboration between Cambridge University and the University of London, by a team including Christopher Strachey. BCPL was defined in part as a interim (originally the name apparently stood for 'Bootstrap CPL'; it later became 'Basic CPL') while waiting for CPL to appear (which it never did).

BCPL retains much of the syntactic richness of CPL, but did so while considerably limiting its complexity - thereby producing a very elegant language.

It was first implemented on the CTSS operating system, while Richards was visiting MIT. A number of the early UNIX personnel from Bell Labs became familiar with it there, while working on Multics.

Portability

Portability was a significant goal of BCPL, both in the language itself, and also in the openly available original BCPL compiler, itself written in BCPL; this compiler was ported to a large number of machines.

The compiler was structured as three phases, the third of which converted a machine-independent intermediate language called OCODE, generated by the second phase, into the target machine's object code.

Porting the compiler involved writing a new third phase; compiling that with the existing compiler on the host machine, producing a cross-compiler; and then running the compiler itself through the cross-compiler, producing object code for a native compiler for the target machine.

External links