From 5d4b4ef80d8dc427b0e2803d50e439f76f06e17a Mon Sep 17 00:00:00 2001 From: Kimplul Date: Wed, 4 Dec 2024 11:04:16 +0200 Subject: implement expression handling further + Add some notes about returning functions that I started thinking about as a result of the fib example --- README.md | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) (limited to 'README.md') diff --git a/README.md b/README.md index f61dfdb..9e40e96 100644 --- a/README.md +++ b/README.md @@ -83,3 +83,36 @@ If (big if) this experiment turns out to be useful on some level I'll probably slowly try to make it more self-reliant. My target would be systems programming, possibly even embedded systems, though I don't yet know if this 'paradigm' is powerful enough or if I might need some escape hatches like `unsafe` in Rust. + +### Really, not returns? + +Semantically, yes, although it is useful to convert certain closure calls to +equivalent return statements where possible. This reduces stack usage if nothing +else, and existing compilers are more used to return-oriented programming so it +might also be possible that the produced assembly is more efficient. + +As an example, see `examples/fib.fwd`. The naive C++ currently generated +(besides not actually compiling due to template instantiation depth, heh) +converts what's usually a binary tree of successive calls into a linear sequence +that takes up a huge amount of stack memory. However, we can note that a closure +call is equivalent to a return when + +1. the function has only one closure parameter +2. all code paths end in the closure call +3. the closure call does not reference any local variables by reference + (except references that were taken as parameters) + +Our fibonacci function matches all these cases, and could theoretically be +turned into a more typical return-oriented function for great benefit. Checking +these requirements should be relatively straightforward. + +We could potentially loosen up these requirements, for example we could allow +multiple closure parameters and just return a variant, although the caller now +has to pattern match on the result. Taking things even further, we could start +treating functions more as macros and just replace the function call with the +function body, although this has some other, more fuzzy, requirements like not +allowing recursion. + +We might even want to require that a function can be turned into a 'returning' +function (being pretentious we might prefer calling it 'folding' but anyway) so +that it can be interfaced from C code, for example. -- cgit v1.2.3