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
It hasn't been brought up in our discussion yet, but we need to investigate this topic, how is memory managed in Rust and how should we abstract it in kmir.
Rustc implements Arena for its compile time memory management, e.g., memory allocation, locals, typing context, lifetime analysis etc..
Finding a proper way of implementing the arena in KMIR would probably solve multiple issues we have in our implementation so far. An approximated list of related issues: #134 #87 #57 #55 #54
The text was updated successfully, but these errors were encountered:
It hasn't been brought up in our discussion yet, but we need to investigate this topic, how is memory managed in Rust and how should we abstract it in kmir.
Rustc implements Arena for its compile time memory management, e.g., memory allocation, locals, typing context, lifetime analysis etc..
Finding a proper way of implementing the arena in KMIR would probably solve multiple issues we have in our implementation so far. An approximated list of related issues:
#134
#87
#57
#55
#54
The text was updated successfully, but these errors were encountered: