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
As node construction is one of the most common operations in the virtual machine, it is important that it be as cheap as possible.
Currently this is quite a heavyweight task due to the boxed structure of the value tree. This could be improved.
Spec
Come up with an artificially flat representation for these nodes. This will make allocation effectively arena-like using a vector and indices as pointers.
Make this type safe.
Re-engineer the value representation around this.
The text was updated successfully, but these errors were encountered:
Description
As node construction is one of the most common operations in the virtual machine, it is important that it be as cheap as possible.
Currently this is quite a heavyweight task due to the boxed structure of the value tree. This could be improved.
Spec
The text was updated successfully, but these errors were encountered: