aboutsummaryrefslogblamecommitdiffstats
path: root/activesupport/lib/active_support/testing/performance/ruby/yarv.rb
blob: c34d31bf1068fc23b6a8a2ef1a0f8fe92554f5a1 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12





                      





                                  

               
 
                                             
                                   

                                                   
                                      


               
 







                                                
 
                             

                     

             
 
                           

                                   





             
module ActiveSupport
  module Testing
    module Performance
      module Metrics
        class Base
          protected
            def with_gc_stats
              GC::Profiler.enable
              GC.start
              yield
            ensure
              GC::Profiler.disable
            end
        end

        class Memory < DigitalInformationUnit
          # Ruby 1.9 + GCdata patch
          if GC.respond_to?(:malloc_allocated_size)
            def measure
              GC.malloc_allocated_size
            end
          end
        end

        class Objects < Amount
          # Ruby 1.9 + GCdata patch
          if GC.respond_to?(:malloc_allocations)
            def measure
              GC.malloc_allocations
            end
          end
        end

        class GcRuns < Amount
          def measure
            GC.count
          end
        end

        class GcTime < Time
          def measure
            GC::Profiler.total_time
          end
        end
      end
    end
  end
end