Sha256: 1421f822b8f259c8d040fe40722f4c4cae6168e0afbe96d3fdf17bf6bc6005b4

Contents?: true

Size: 1.43 KB

Versions: 3

Compression:

Stored size: 1.43 KB

Contents

/* Copyright (C) 2005-2013 Shugo Maeda <shugo@ruby-lang.org> and Charlie Savage <cfis@savagexi.com>
   Please see the LICENSE file for copyright and distribution information */

/* :nodoc: */

#include "rp_measurement.h"

static VALUE cMeasureAllocations;
VALUE total_allocated_objects_key;

static double
measure_allocations_via_gc_stats(rb_trace_arg_t* trace_arg)
{
    return rb_gc_stat(total_allocated_objects_key);
}

static double
measure_allocations_via_tracing(rb_trace_arg_t* trace_arg)
{
    static double result = 0;

    if (trace_arg)
    {
        rb_event_flag_t event = rb_tracearg_event_flag(trace_arg);
        if (event == RUBY_INTERNAL_EVENT_NEWOBJ)
            result++;
    }
    return result;
}

prof_measurer_t* prof_measurer_allocations(bool track_allocations)
{
  prof_measurer_t* measure = ALLOC(prof_measurer_t);
  measure->mode = MEASURE_ALLOCATIONS;
  measure->multiplier = 1;
  measure->track_allocations = track_allocations;

  if (track_allocations)
      measure->measure = measure_allocations_via_tracing;
  else
      measure->measure = measure_allocations_via_gc_stats;

  return measure;
}

void rp_init_measure_allocations()
{
    total_allocated_objects_key = ID2SYM(rb_intern("total_allocated_objects"));
    rb_define_const(mProf, "ALLOCATIONS", INT2NUM(MEASURE_ALLOCATIONS));

    cMeasureAllocations = rb_define_class_under(mMeasure, "Allocations", rb_cObject);
}

Version data entries

3 entries across 3 versions & 1 rubygems

Version Path
ruby-prof-1.1.0-x64-mingw32 ext/ruby_prof/rp_measure_allocations.c
ruby-prof-1.1.0 ext/ruby_prof/rp_measure_allocations.c
ruby-prof-1.0.0 ext/ruby_prof/rp_measure_allocations.c