From: "peterzhu2118 (Peter Zhu)" Date: 2021-12-14T14:13:38+00:00 Subject: [ruby-core:106655] [Ruby master Feature#18364] Add GC.stat_pool for Variable Width Allocation Issue #18364 has been updated by peterzhu2118 (Peter Zhu). If callers want to prevent the probe effect from calls to `GC.stat`, they have to not only create a hash beforehand, but also do a call to `GC.stat`. Since the first call can trigger GC, I don't think it's unreasonable to also allocate objects. ```ruby my_hash = {} # This call is needed to initialize the hash with keys # Adding keys to the hash can cause the hash to resize which can trigger GC GC.stat(my_hash) # This call to GC.stat now guarantees that the probe effect won't happen GC.stat(my_hash) ``` ---------------------------------------- Feature #18364: Add GC.stat_pool for Variable Width Allocation https://bugs.ruby-lang.org/issues/18364#change-95327 * Author: peterzhu2118 (Peter Zhu) * Status: Open * Priority: Normal * Assignee: matz (Yukihiro Matsumoto) ---------------------------------------- # GitHub PR: https://github.com/ruby/ruby/pull/5177 We're proposing an API to get statistics for size pools for Variable Width Allocation similar to `GC.stat`. This will make it easier for us (and other developers) to tune VWA. Before 3.1 release, we plan to keep this method hidden from the documentation using `:nodoc:` since it is not useful when not using VWA. For example: ```ruby # Get stats for size pool 2 puts GC.stat_pool(2) #=> {:slot_size=>160, :heap_allocatable_pages=>80, :heap_eden_pages=>14, :heap_eden_slots=>1424, :heap_tomb_pages=>0, :heap_tomb_slots=>0} puts GC.stat_pool(2, :heap_eden_pages) #=> 14 ``` We aim to keep the keys in the outputted hash the same as the keys used in `GC.stat`. We chose to implement a new method instead of re-using an existing API (`GC.stat`) because the keys returned by `GC.stat_pool` will not be the same as `GC.stat`. We believe that having `GC.stat` return different shapes of hashes based on its arguments is confusing. -- https://bugs.ruby-lang.org/ Unsubscribe: