summaryrefslogtreecommitdiff
path: root/benchmark/vm1_gc_short_with_complex_long.yml
blob: c22ea74a6073afb0e00d9b0af69b90d3bcddd8c0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
prelude: |
  def nested_hash h, n
    if n == 0
      ''
    else
      10.times{
        h[Object.new] = nested_hash(h, n-1)
      }
    end
  end

  long_lived = Hash.new
  nested_hash long_lived, 6

  GC.start
  GC.start
benchmark:
  vm1_gc_short_with_complex_long: |
    a = '' # short-lived String
    b = ''
    c = ''
    d = ''
    e = ''
    f = ''
loop_count: 30000000