Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix complex transi compact #547

Open
wants to merge 21 commits into
base: master
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
3bc41f4
[ruby/prism] Add macGreek encoding
kddnewton Nov 16, 2023
498b086
Skip test_ForwardingArgumentsNode
mame Nov 17, 2023
94c9f16
Refactor rb_obj_evacuate_ivs_to_hash_table
byroot Nov 16, 2023
940f2e7
size_pool_idx_for_size: Include debugging info in error message
byroot Nov 17, 2023
4a26a65
[ruby/prism] Add macTurkish
haldun Nov 16, 2023
9ba49c6
mingw.yml - remove encoding, run tests in cmd shell
MSP-Greg Nov 16, 2023
c2f2090
[ruby/prism] Do not test locale encoding on windows
kddnewton Nov 17, 2023
db4303f
[ruby/prism] Never test locale encoding
kddnewton Nov 17, 2023
e5d6b40
[ruby/prism] Do not allow trailing commas in calls without parenthesis
haldun Nov 13, 2023
85dcfef
[ruby/prism] Add macUkraine
haldun Nov 17, 2023
0a081a3
[ruby/prism] Add macRoman
haldun Nov 17, 2023
50b7b92
[ruby/prism] Add macThai
haldun Nov 17, 2023
229f6e5
[ruby/prism] Update spacing in encoding_test.rb
kddnewton Nov 17, 2023
585fdfe
[ruby/prism] add Windows-874 encoding
pcai Nov 17, 2023
cbdac2f
[ruby/prism] Silence clang analyzer warnings for the memory leaks
haldun Nov 17, 2023
7c99e43
[ruby/prism] Ensure serialized file is little endian
kddnewton Nov 13, 2023
3dd77bc
Fix corruption when out of shape during ivar remove
peterzhu2118 Nov 17, 2023
ef72970
Fix File.directory? doc hidding File::Stat#directory? doc
robotdana Nov 17, 2023
24fe22a
Fix ordering for auto compaction in get_overloaded_cme()
XrXr Nov 17, 2023
f479e62
[ruby/prism] Revert "Ensure serialized file is little endian"
kddnewton Nov 18, 2023
97fb07d
Pin object ivars while they are being copied in a hash
byroot Nov 16, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
size_pool_idx_for_size: Include debugging info in error message
We ran into that case on our CI, including some sizes would help
debug it much easier.
  • Loading branch information
byroot committed Nov 17, 2023
commit 940f2e7f1893af17be6e35ef8f7ad09949a12709
2 changes: 1 addition & 1 deletion gc.c
Original file line number Diff line number Diff line change
@@ -2769,7 +2769,7 @@ size_pool_idx_for_size(size_t size)
size_t size_pool_idx = 64 - nlz_int64(slot_count - 1);

if (size_pool_idx >= SIZE_POOL_COUNT) {
rb_bug("size_pool_idx_for_size: allocation size too large");
rb_bug("size_pool_idx_for_size: allocation size too large (size=%lu, size_pool_idx=%lu)", size, size_pool_idx);
}

#if RGENGC_CHECK_MODE