refactor(allocator): move all fixed size allocator code into 1 file#12309
Merged
graphite-app[bot] merged 1 commit intomainfrom Jul 17, 2025
Conversation
Member
Author
6cbf927 to
bb7b441
Compare
CodSpeed Instrumentation Performance ReportMerging #12309 will not alter performanceComparing Summary
|
5e89735 to
324eb2f
Compare
bb7b441 to
9264b16
Compare
9264b16 to
bbf4b88
Compare
bbf4b88 to
ca28d7d
Compare
ca28d7d to
70f88fc
Compare
70f88fc to
92280ab
Compare
92280ab to
b975b1e
Compare
This was referenced Jul 17, 2025
22bc769 to
98b17e9
Compare
b975b1e to
ec36d55
Compare
1926f69 to
f550279
Compare
This was referenced Jul 17, 2025
Member
Author
|
This PR is pure refactor, so I think it's good to merge. Still working on rest of the stack. |
cf412a4 to
380e8f7
Compare
f550279 to
1d16b81
Compare
380e8f7 to
6b49bf8
Compare
5699805 to
bbed811
Compare
6b49bf8 to
279d2f3
Compare
camc314
approved these changes
Jul 17, 2025
bbed811 to
98f3152
Compare
279d2f3 to
341b0df
Compare
98f3152 to
a5fa21c
Compare
341b0df to
b10ed11
Compare
a5fa21c to
b740bf9
Compare
Member
Author
Merge activity
|
…12309) Pure refactor. Split `AllocatorPool` into 2 separate files for the normal and fixed size variants. The extra layer of abstraction required to share code between the two versions was getting unwieldy. All the fixed-size allocator code is now together in one file.
b740bf9 to
dfe54b4
Compare
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.

Pure refactor. Split
AllocatorPoolinto 2 separate files for the normal and fixed size variants. The extra layer of abstraction required to share code between the two versions was getting unwieldy. All the fixed-size allocator code is now together in one file.