Re: The History of the ALGOL Effort

Peter Flass <Peter_Flass@Yahoo.com>
11 Sep 2006 23:56:23 -0400

          From comp.compilers

Related articles
[4 earlier articles]
Re: The History of the ALGOL Effort H.T.de.Beer@gmail.com (HT de Beer) (2006-08-18)
Re: The History of the ALGOL Effort henry@spsystems.net (2006-08-18)
Re: The History of the ALGOL Effort p_ludemann@yahoo.com (Peter Ludemann) (2006-08-29)
Re: The History of the ALGOL Effort ArarghMail608@Arargh.com (2006-08-30)
Re: The History of the ALGOL Effort alexc@TheWorld.com (Alex Colvin) (2006-08-31)
Re: The History of the ALGOL Effort henry@spsystems.net (2006-09-11)
Re: The History of the ALGOL Effort Peter_Flass@Yahoo.com (Peter Flass) (2006-09-11)
Re: The History of the ALGOL Effort cbarron413@adelphia.net (Carl Barron) (2006-09-12)
Re: The History of the ALGOL Effort gah@ugcs.caltech.edu (glen herrmannsfeldt) (2006-09-12)
Re: The History of the ALGOL Effort ArarghMail609@Arargh.com (2006-09-12)
Re: ancient linkers, The History of the ALGOL Effort gah@ugcs.caltech.edu (glen herrmannsfeldt) (2006-09-12)
Re: The History of the ALGOL Effort gah@ugcs.caltech.edu (glen herrmannsfeldt) (2006-09-12)
Re: linking in OS/360, was The History of the ALGOL Effort Peter_Flass@Yahoo.com (Peter Flass) (2006-09-12)
[7 later articles]
| List of all articles for this month |

From: Peter Flass <Peter_Flass@Yahoo.com>
Newsgroups: comp.compilers
Date: 11 Sep 2006 23:56:23 -0400
Organization: Road Runner
References: 06-08-082 06-08-086 06-08-105 06-08-138 06-09-050
Keywords: linker, history, comment
Posted-Date: 11 Sep 2006 23:56:23 EDT

Henry Spencer wrote:
> Peter Ludemann <p_ludemann@yahoo.com> wrote:
>
>>One of the nice properties of the PL360 compiler is that it could
>>compile a program, produce a listing, and cross-references faster than
>>IBM's IEBPTPCH utility could produce only a listing.


> This experience had wider ramifications, too: PL360 compiled so much
> faster than IBM's glacially-slow linker could link, that it soured Wirth
> on separate compilation. The result was several influential languages,
> most notably Pascal, with no provision for separate compilation.


I finally just finally got around to reading _The Mythical Man-Month_,
and Fred Brooks has some comments on the OS/360 Linkage Editor. His
thesis is that it's the final culmination of the overlay linkers in
previous systems, such as the 7094 -- whatever they would have wanted
there got thrown into OS/360, making it very slow. At the same time
OS/360 got, and made extensive use of, dynamic linking, that made most
of the features of the Linkage Editor obsolete. Unfortunately, the
two development groups didn't communicate too well...


[That's not really what he said on page 56. OS didn't have dynamic
linking in the modern sense. What it did have was the ability to
allocate storage dynamically to each program. OS programs used static
overlays extensively, probably too extensively. IEWL, the link editor,
was heavily overlaid so it could run in a tiny amount of storage, like
8K bytes, at the cost of dreadful performance as it read in all those
overlays. But in the 99% of the cases where it had a whole lot more
than 8K available, since the overlay structure was fixed at link time,
it still did all the overlays and was just as slow. One of the nicest
things about virtual memory is that it automatically sizes to the
amount of real storage you have, so if you attach more memory, your
programs automatically run faster. -John]


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.