It’s Time for a Modern Synthesis Kernel
https://blog.regehr.org/archives/1676 [blog.regehr.org]
2019-07-05 01:28
The promise of kernel-mode runtime code generation is that we can have very fast, feature-rich operating systems by, for example, not including code implementing generic read() and write() system calls, but rather synthesizing code for these operations each time a file is opened. The idea is that at file open time, the OS has a lot of information that it can use to generate highly specialized code, eliding code paths that are provably not going to execute.