You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After the baseline verified runtime is completed, we will implement some optimizations and show that these optimizations preserve our safety properties. I will list out some potential optimizations as I think of them.
For system calls that use a mutable buffer (i.e., write), let the os copy data directly into the sandbox.
Use mmap instead of vector initialization to set up sandbox memory (faster startup).
The text was updated successfully, but these errors were encountered:
Prove that sandbox memory and runtime memory are non-overlapping so we can use Rust's extra-fast copy optimization copy_nonoverlapping (memcpy) instead of copy (memmove)
After the baseline verified runtime is completed, we will implement some optimizations and show that these optimizations preserve our safety properties. I will list out some potential optimizations as I think of them.
The text was updated successfully, but these errors were encountered: