ALGOL 68-R


ALGOL 68-R was the first implementation of the Algorithmic Language ALGOL 68.
In December 1968, the report on the Algorithmic Language ALGOL 68 was published. On 20–24 July 1970 a working conference was arranged by the International Federation for Information Processing to discuss the problems of implementing the language, a small team from the Royal Radar Establishment attended to present their compiler, written by I. F. Currie, Susan G. Bond,
and J. D. Morrison. In the face of estimates of up to 100 man-years to implement the language, using multi-pass compilers with up to seven passes, they described how they had already implemented a one-pass compiler which was in production for engineering and scientific uses.

The compiler

The ALGOL 68-R compiler was initially written in a local dialect of ALGOL 60 with extensions for address manipulation and list processing. The parser was written using J. M. Foster's Syntax Improving Device parser generator.
The first version of the compiler occupied 34 K words. It was later rewritten in ALGOL 68-R, taking around 36 K words to compile most programs.
ALGOL 68-R was implemented under the George 3 operating system on an ICL 1907F. The compiler was distributed at no charge by International Computers Limited on behalf of the Royal Radar Establishment.

Restrictions in the language compiled

To allow one pass compiling, ALGOL 68-R implemented a subset of the language defined in the original report:
  1. Identifiers, modes and operators must be specified before use.
  2. No automatic proceduring
  3. Explicit void mode
  4. No formal declarers
  5. No parallel processing
  6. goto may not be omitted
  7. Uniting is only valid in strong positions
Many of these restrictions were adopted by the revised report on ALGOL 68.

Specification before use

To allow compiling in one pass ALGOL 68-R insisted that all identifiers were specified before use.
The standard program:
proc even = bool: ;
proc odd = bool: ;
would have to be rewritten as:
proc bool odd;
proc even = bool : ;
odd := bool : ;
To allow recursive declarations of modes a special stub mode declaration was used to inform the compiler that an up-coming symbol was a mode rather than an operator:
mode b;
mode a = struct ;
mode b = ref a;

No ''proceduring''

In the standard language the proceduring coercion could, in a strong context, convert an expression of some type into a procedure returning that type. This could be used to implement call by name.
Another case where proceduring was used was the declaration of procedures, in the declaration:
proc x plus 1 = int : x + 1;
the right hand side was a cast of x + 1 to integer, which was then converted to procedure returning integer.
The ALGOL 68-R team found this too difficult to handle and made two changes to the language. The proceduring coercion was dropped, and the form mode : expression was redefined as a procedure denotation, casts being indicated by an explicit val symbol:
real : x co a cast to real in ALGOL 68 co
real val x co a cast to real in ALGOL 68-R co
Code that had a valid use for call by name could simply pass a procedure denotation:
proc sum = real :
begin
real temp := 0;
for i from lo to hi do
temp +:= term ;
temp
end;
print
In the version of the language defined in the revised report these changes were accepted, although the form of the cast was slightly changed to mode .
real co a cast to real in revised ALGOL 68 co

Explicit void mode

In the original language the void mode was represented by an empty mode:
: x := 3.14; co cast to void co
proc endit = goto end; co a procedure returning void co
The ALGOL 68-R team decided to use an explicit void symbol in order to simplify parsing :
void val x := 3.14; co cast to void co
proc endit = void : goto end; co a procedure returning void co
This modification to the language was adopted by the ALGOL 68 revised report.

No formal declarers

Formal declarers are the modes on the left hand side of an identity declaration, or the modes specified in a procedure declaration. In the original language, they could include array bounds and specified whether the matching actual declarer was fixed, flex or either:
int a; co an actual declarer, bounds 1:15 co
ref int b = a; co This is an error co
proc x = :...
The ALGOL 68-R team redefined formal declarers to be the same as virtual declarers which include no bound information. They found that this reduced the ambiguities in parsing the language and felt that it was not a feature that would be used in working programs.
If a procedure needed certain bounds for its arguments it could check them itself with the upb and lwb operators.
In ALGOL 68-R the example above could be recoded like this:.
int a; co an actual declarer, bounds 1:15 co
ref int b = a ; co use slice so b has bounds 3:17 co
proc x = void:... co bounds given by caller co
In the revised report on ALGOL 68 formal bounds were also removed, but the flex indication was moved in position so it could be include in formal declarers:
int a; co original ALGOL 68, or ALGOL 68-R co
flex int a; co revised ALGOL 68, co
proc x = :... co Original ALGOL 68 co
proc x = void:... co ALGOL 68-R co
proc x = void:... co Revised ALGOL 68 co

No parallel processing

In ALGOL 68 code can be run in parallel by writing par followed by a collateral clause, for example in:
par begin
producer,
consumer
end
the procedures producer and consumer will be run in parallel. A semaphore type with the traditional P and V operators is provided for sysynchronizing between the parts of the parallel clause,
This feature was not implemented in ALGOL 68-R.
An extension named ALGOL 68-RT was written which used the subprogramming feature of the ICL 1900 to provide multithreading facilities to ALGOL 68-R programs with semantics similar to modern thread libraries. No changes were made to the compiler, only the runtime library and the linker.

goto may not be omitted

In ALGOL 68 the goto symbol could be omitted from a jump:
proc stop = :...;
...
begin
if x > 3 then stop fi; co a jump, not a call co
...
stop:
skip
end
As ALGOL 68-R was a one pass compiler this was too difficult, so the goto symbol was made obligatory.
The same restriction was made in the official sublanguage, ALGOL 68S.

Uniting is only allowed in ''strong'' positions

In ALGOL 68 uniting is the coercion that produces a union from a constituent mode, for example:
mode ibool = union ; co an ibool is an int or a bool co
ibool a = true; co the bool value true is united to an ibool co
In standard ALGOL 68 uniting was possible in firm or strong contexts, so for example could be applied to the operands of formulas:
op istrue = bool:...;
if istrue 1 co legal because 1 can be united to ibool co
then...
The ALGOL 68-R implementers found this gave too many ambiguous situations so restricted the uniting coercion to strong contexts.
The effects of this restriction were rarely important and, if necessary, could be worked around by using a cast to provide a strong context at the required point in the program.

F00L

The ALGOL 68-R compiler initialised unused memory to the value -6815700.
This value was chosen because:
The same value was used to represent nil.

Stropping

In ALGOL family languages, it is necessary to distinguish between identifiers and basic symbols of the language. In printed texts this was usually accomplished by printing basic symbols in boldface or underlined.
In source code programs, some stropping technique had to be used. In many ALGOL like languages, before ALGOL 68-R, this was accomplished by enclosing basic symbols in single quote characters. In 68-R, basic symbols could be distinguished by writing them in upper case, lower case being used for identifiers.
As ALGOL 68-R was implemented on a machine with 6-bit bytes this was quite complex and, at least initially, programs had to be composed on paper punched tape using a Friden Flexowriter.
Partly based on the experience of ALGOL 68-R, the revised report on ALGOL 68 specified hardware representations for the language, including UPPER stropping.

Extensions to ALGOL 68

ALGOL 68-R included extensions for separate compiling and low-level access to the machine.

Separate compiling

Since ALGOL 68 is a strongly typed language, the simple library facilities used by other languages on the ICL 1900 system were insufficient. ALGOL 68-R was delivered with its own library format and utilities which allowed sharing of modes, functions, variables, and operators between separately compiled segments of code which could be stored in albums.
A segment to be made available to other segments would end with a list of declarations to be made available:
graphlib co the segment name co
begin
mode graphdata = struct ;
mode graph = ref graphdata;
proc new graph = graph :...;
proc draw graph = void :...;
...
end
keep graph, new graph, draw graph
finish
And then the graph functions could be used by another segment:
myprog with graphlib from graphalbum
begin
graph g = new graph ;
...
draw graph ;
...
end
finish

Low level system access

As a strongly typed high level language, ALGOL 68 prevents programs from directly accessing the low level hardware. No operators exist for address arithmetic, for example.
Since ALGOL 68-R didn't compile to standard ICL semicompiled format, it was necessary to extend the language to provide features in ALGOL 68-R to write code that would normally be written in assembly language. Machine instructions could be written inline, inside code... edoc sections and the address manipulation operators inc, dec, dif, as were added.
An example, using a George peri operation to issue a command:
CHAR buff;
INT unitnumber;
STRUCT
control area := ;
...;
CODE 0,6/unitnumber; 157,6/typemode OF control area EDOC

Availability

A copy of the ALGOL 68-R compiler, runnable under the George 3 operating system emulator, by David Holdsworth, is available, with source code, under a GNU General Public License.