Actions
Bug #19903
closedFix memory leak in generating and loading iseq
Bug #19903:
Fix memory leak in generating and loading iseq
Description
PR: https://github.com/ruby/ruby/pull/8512
Reproduction:
10.times do
100_000.times do
RubyVM::InstructionSequence.load_from_binary(RubyVM::InstructionSequence.compile("def foo(bar:); end; foo(bar: :baz)").to_binary)
end
puts `ps -o rss= -p #{$$}`
end
before:
after:
Updated by peterzhu2118 (Peter Zhu) almost 3 years ago
- Backport changed from 3.0: UNKNOWN, 3.1: UNKNOWN, 3.2: UNKNOWN to 3.0: UNKNOWN, 3.1: REQUIRED, 3.2: REQUIRED
Updated by Anonymous almost 3 years ago
- Status changed from Open to Closed
Applied in changeset git|ef59175a68c448fe334125824b477a9e1d5629bc.
fix iseq kwargs table and original_iseq leaks
[bug #19903]
Co-authored-by: Peter Zhu peter@peterzhu.ca
Updated by nagachika (Tomoyuki Chikanaga) almost 3 years ago
- Backport changed from 3.0: UNKNOWN, 3.1: REQUIRED, 3.2: REQUIRED to 3.0: UNKNOWN, 3.1: REQUIRED, 3.2: DONE
ruby_3_2 128d8728d39c2da21e5433c7af169f73e18fd133 merged revision(s) ef59175a68c448fe334125824b477a9e1d5629bc.
Actions