feat(allocator): AllocatorPool store IDs in Allocators#12310
Merged
graphite-app[bot] merged 1 commit intomainfrom Jul 18, 2025
Merged
Conversation
This was referenced Jul 16, 2025
Member
Author
CodSpeed Instrumentation Performance ReportMerging #12310 will not alter performanceComparing Summary
|
9264b16 to
bbf4b88
Compare
39b9a42 to
2935e46
Compare
2935e46 to
fd24afa
Compare
bbf4b88 to
e4e2888
Compare
fd24afa to
ba193f3
Compare
e4e2888 to
19bd7a2
Compare
19bd7a2 to
fca2e84
Compare
ba193f3 to
df1506e
Compare
df1506e to
69e5cac
Compare
69e5cac to
a3e15a9
Compare
92280ab to
b975b1e
Compare
a3e15a9 to
9956c9a
Compare
1926f69 to
1d16b81
Compare
ed1c7b3 to
1aeb2ac
Compare
1aeb2ac to
cb20b64
Compare
1d16b81 to
2750a9a
Compare
cb20b64 to
e21eeac
Compare
This was referenced Jul 18, 2025
2750a9a to
6524307
Compare
e21eeac to
43b0114
Compare
This was referenced Jul 18, 2025
Contributor
Merge activity
|
Fixed size allocator pool give each `Allocator` a unique ID and store it in `FixedSizeAllocatorMetadata` struct at end of the buffer. This prepares the way for sharing buffers created on Rust side with JS while avoiding use-after-free or double-free.
6524307 to
319fc3b
Compare
43b0114 to
bc0fbe5
Compare
Base automatically changed from
07-17-refactor_allocator_fixed-size_store_alloc_ptr_in_the_memory_block_backing_the_allocator
to
main
July 18, 2025 09:10
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.

Fixed size allocator pool give each
Allocatora unique ID and store it inFixedSizeAllocatorMetadatastruct at end of the buffer. This prepares the way for sharing buffers created on Rust side with JS while avoiding use-after-free or double-free.