cl-arena: Add arena allocator implementation based HEAVILY on rustc-arena

It seems to pass the most basic of tests in miri (shame it needs the unstable `strict_provenance` feature to do so, but eh.)
This commit is contained in:
2024-04-26 00:02:50 -05:00
parent 893b716c86
commit a877c0d726
5 changed files with 458 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ members = [
"compiler/cl-ast",
"compiler/cl-parser",
"compiler/cl-lexer",
"compiler/cl-arena",
"repline",
]
resolver = "2"