X-Git-Url: http://git.lukelau.me/?p=scheme.git;a=blobdiff_plain;f=abi.md;h=28f81c4152683ee00ae2a3c77daa166fd6f92959;hp=5f09227ae56f2b21e31e7eca856a2e9917f60eec;hb=f605bff88ce12e5f4384ab308c036350bfa86cb5;hpb=91145e54f41ee88f1e279a80430b3f5ed4e7a8c6 diff --git a/abi.md b/abi.md index 5f09227..28f81c4 100644 --- a/abi.md +++ b/abi.md @@ -4,6 +4,22 @@ a heap is allocated at the start, and the address to the next free space on it is stored in `heap_start`. it needs to be updated/decremented whenever you put anything on the heap +## todo +- how should allocation be managed? +make free blocks a doubly linked list. (how big is a block?) +when allocating, use first free block, move up free pointer +when freeing, do ??? + + +# ownership + +``` +(let ([s "hello"]) <- s should be a linear string + (mkpair + (lambda () (print s)) <- two references to s? + (lambda () (print (reverse s))))) +``` + # closures * lambda: actual function containing the code