Bug #18829
closedGC_COMPACTION_SUPPORTED macro should be set and detected automatically.
Description
After backporting the patch [0] for GC compaction support from https://github.com/ruby/ruby/pull/5934 (for bug https://bugs.ruby-lang.org/issues/18779), I found that there is no mechanism to automatically define the GC_COMPACTION_SUPPORTED based on the platform.
This does not seem to be a major issue with the Ruby master branch as the Ruby GC page size is bumped up to 64K so platforms like ppc64le do not struggle anymore, however, if the Ruby GC page size is set to 16K as is the case with Ruby 3.1 for example, then the compaction is enabled even in cases when it should not be.
For master I can reach a failure if I set the Ruby GC page size to 16K by editing macro in gc.c (https://github.com/ruby/ruby/blob/master/gc.c#L863) to:
#define HEAP_PAGE_ALIGN_LOG 14
As there are no compile-time checks around this, after compiling ruby and using the following script I get an exception.
script:
if GC.respond_to?(:compact)
GC.verify_compaction_references(double_heap: true, toward: :empty)
end
100_000.times do |i|
puts "i: #{i}, count: #{count}"
end
Running it raises an exception even though the code is in a guard clause that should prevent this:
~/.rubies/ruby-master/bin/ruby ./reproducer.rb
<internal:gc>:251:in `verify_compaction_references': Compaction isn't available on this platform (NotImplementedError)
from ./reproducer.rb:4:in `<main>'
Right now, our workaround is to define the macro GC_COMPACTION_SUPPORTED
only on platforms that we know do support compaction. Ideally, this should not be required and the configuration script or the gc.c file should take care of defining the macro correctly.