|
|
|
|
|
by drmeister
1256 days ago
|
|
Thank you. We do precise GC in C++. I wrote a C++ static analyzer in Lisp that uses the Clang front end and analyzes all of our C++ code and generates maps of GC-managed pointers in all classes. We precisely update pointers in thousands of classes that way. We also use it to save the system's state to a file or relinked executable so we can start up quickly later. Startup times using that are under 2 seconds on a reasonable CPU. |
|
In any case, I would imagine embedding a C++ compiler at runtime does open up a lot more options!