Avoid allocating per-cursor LazyList factory delegates using function pointers#715
Merged
Merged
Conversation
… pointers `LazyList<T>` previously stored a `Func<int, T>` (or `Func<int, T?, T>`) factory per instance, which allocated a closure delegate for every cursor that exposed a lazy child list -- even when the list was empty (the common case for `Decl._attrs`). Mirroring the `ValueLazy<TSelf, T>` conversion, the factory is now a `delegate*<object, int, T>` function pointer plus a stored `object _self`, so the closure allocation is gone. All owners (`Cursor`, `Type`, `TemplateArgument`) are reference types, so passing `this` as `object self` never boxes. Each former lambda becomes a `static` factory method that casts `self` back to the owning type. Measured on the TerraFX d3d12 generation workload (gc-verbose, `DOTNET_TieredCompilation=0`): `Func<int, Decl, Decl>` (~2.0 MB) and `Func<int, Attr>` (~1.9 MB) are eliminated entirely, dropping sampled allocations from ~142.6 MB to ~134.2 MB. No behavioral change; all 3708 golden tests pass. Co-authored-by: Copilot App <223556219+Copilot@users.noreply.github.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
LazyList<T>stored aFunc<int, T>(orFunc<int, T?, T>) factory per instance, which allocated a closure delegate for every cursor that exposed a lazy child list -- even when the list was empty (the common case forDecl._attrs). Mirroring theValueLazy<TSelf, T>conversion in #707, the factory is now adelegate*<object, int, T>function pointer plus a storedobject _self, so the per-instance closure allocation is gone.All owners (
Cursor,Type,TemplateArgument) are reference types, so passingthisasobject selfnever boxes. Each former lambda becomes astaticfactory method that castsselfback to the owning type. The four nested_templateParameterListssites are deduplicated into a sharedDecl.CreateTemplateParameterListshelper.Measured on the TerraFX
d3d12generation workload (gc-verbose,DOTNET_TieredCompilation=0):Func<int, Decl, Decl>(~2.0 MB) andFunc<int, Attr>(~1.9 MB) are eliminated entirely, dropping sampled allocations from ~142.6 MB to ~134.2 MB. No behavioral change; all 3708 golden tests pass, output is byte-identical.Note
This PR description was drafted by Copilot.