That is sort of like inlining the demand paging code from the OS. When we have exokernels, they exist as a library so can be delt with like regular code
This would be trivial (and fun) to implement with Wasm.
Are you saying this could be a way to break out of the 32 bit barrier (a bit) on WASM? Sort of like how Windows NT could handle 64 gigs of RAM even though it was a 32 bit operating system?
Wasm64 will soon be everywhere if you want more than 4GB of address space. No, I was saying you could simulate larger heaps by selectively paging data memory in and out, you would still need a way to represent your max heap size.
"As long as Wasm memories are limited to 32 bit address space, there is no way to scale out of 4 GB memory efficiently. Multiple memories at least provide an efficient workaround until 64 bit memories become available (which may still take a while)."
So pretty similar to launching several processes on 32 bit NT or Linux, each having their own memory space.
This would be trivial (and fun) to implement with Wasm.