summaryrefslogtreecommitdiff
path: root/benchmark/vm_gc_short_with_complex_long.yml
blob: 4b6c3ed7b99953c72c6a4e69af287d40607e0815 (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:
  vm_gc_short_with_complex_long: |
    a = '' # short-lived String
    b = ''
    c = ''
    d = ''
    e = ''
    f = ''
loop_count: 30000000