ALGOL-FOR-LINUX is Reimagining Memory Safety for Linux
6 points by getz
6 points by getz
They also plan to rewrite TECO in Algol 68 and make it the default Linux editor.
This, but unironically.
There is no place in the kernel for immature languages invented just yesterday.
Adopting the likes of ada or algol would actually be sensible.
This, but unironically.
Yes!
Adopting the likes of ada or algol would actually be sensible.
How about Oberon? Maybe one of the later versions. Its genealogy is a bit confused but Active Oberon or Rochus Keller’s Oberon+ maybe?
I have not heard much about Zonnon which is one of the other later descendants.
Oberon relies on a garbage collector for safety. The Project Oberon book says in chapter 8:
Apart from global (static) variables, and local (stack-allocated) variables, a program may refer to anonymous variables referenced through pointers. Such variables are allocated truly dynamically through calls of an explicit operation (NEW). These variables are allocated in the so-called heap. Their deallocation is “automatic”, when free storage is needed and they are no longer referenced from any of the loaded modules. This process is called garbage collection.
Interesting. I wonder – not expecting canonical answers here – is that true of the later versions as well? Does it apply to the pure language or to the OS/environment? Would it be possible to construct a safer subset that doesn’t need it?
I was looking at the most recent edition of the book, which is mostly about how the Oberon system as a whole works. Oberon the language doesn’t specify any way to reclaim memory, the garbage collector is implicitly part of the Oberon environment.
I don’t think Oberon is really concerned with safety. Minimalism is much more important to it.
I’ve talked with Linus Walleij about this, he loves bringing up ALGOL when rust is brought up. A memory safe language is welcome and it happens to be that rust has the momentum and community backing it.
Algol 68 as a programming language is comparable to Modula 3 or Golang in that it requires a garbage collector. Chris Cheney’s stackless copying algorithm was invented when he was working with Stephen Bourne on Algol68C.
Garbage collection is not mentioned in ALGOL68 report at all. I have heard this claim before, where did you get it from?
Lindsay and van der Meulen, “Informal Introduction to Algol 68”, section 5.7.2.2,
it will be necessary for your implementation to include in your run-time program a “garbage collection routine” which will be called in whenever the size of the heap has become embarrassingly large
Ah, I downloaded a copy of the Revised Report which says in its introduction,
0.2.3. Dynamic storage allocation in ALGOL 68
Whereas ALGOL 60 (apart from “own dynamic arrays”) implies a “stack”-oriented storage-allocation regime, sufficient to cope with objects having nested lifetimes (an object created before another object being guaranteed not to become inaccessible before that second one), ALGOL 68 provides, in addition, the ability to create and manipulate objects whose lifetimes are not so restricted. This ability implies the use of an additional area of storage, the “heap”, in which garbage-collection techniques must be used.
The corresponding paragraph in the original report is vague,
0.2.3. Dynamic storage allocation in ALGOL 68
Whereas ALGOL 60 (apart from the so-called “own dynamic arrays”) implies a “stack”-oriented storage-allocation regime, sufficient to cope with a statically (i.e., at compile time) determined number of single or multiple values, ALGOL 68 provides, in addition, the ability to generate a dynamically (i.e., at run time) determined number of values, which ability implies the use of additional storage-allocation techniques.
Thank you! I was under the impression that it was implementation defined which the original reports seems to indicate.
Given the day, a cute idea, but it does rather fall down if one has really used Algol 68.
Personally I find reasoning with REF’‘s harder than with explicit pointers, especially given A68’s differing rules for when it will automatically deference.
I used it for a while around ’’87-88 (since the Uni lecturer chose that), and recently decided to play with it for a scripting task. It rather failed at that latter task when I needed hashes, and the hassle of implementing them myself was too much of a headache. I eventually ended up re-coding the script as a Go program.
BTW: The Algol 68 Genie implementation actually used a GC for its HEAP allocator.