Sha256: f7a01e2cbb1f9c017e87d8bedc5ed2f77ce68b7260877de14936cb0a45879ffe

Contents?: true

Size: 1.61 KB

Versions: 14

Compression:

Stored size: 1.61 KB

Contents

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

#ifndef __RP_CALL_TREE_H__
#define __RP_CALL_TREE_H__

#include "ruby_prof.h"
#include "rp_measurement.h"
#include "rp_method.h"

extern VALUE cRpCallTree;

/* Callers and callee information for a method. */
typedef struct prof_call_tree_t
{
    prof_method_t* method;
    struct prof_call_tree_t* parent;
    st_table* children;             /* Call infos that this call info calls */
    prof_measurement_t* measurement;
    VALUE object;

    int visits;                             /* Current visits on the stack */

    unsigned int source_line;
    VALUE source_file;
} prof_call_tree_t;

prof_call_tree_t* prof_call_tree_create(prof_method_t* method, prof_call_tree_t* parent, VALUE source_file, int source_line);
prof_call_tree_t* prof_call_tree_copy(prof_call_tree_t* other);
void prof_call_tree_merge(prof_call_tree_t* result, prof_call_tree_t* other);
void prof_call_tree_mark(void* data);
prof_call_tree_t* call_tree_table_lookup(st_table* table, st_data_t key);

void prof_call_tree_add_parent(prof_call_tree_t* self, prof_call_tree_t* parent);
void prof_call_tree_add_child(prof_call_tree_t* self, prof_call_tree_t* child);

uint32_t prof_call_figure_depth(prof_call_tree_t* call_tree_data);
prof_call_tree_t* prof_get_call_tree(VALUE self);
VALUE prof_call_tree_wrap(prof_call_tree_t* call_tree);
void prof_call_tree_free(prof_call_tree_t* call_tree);
void rp_init_call_tree(void);

#endif //__RP_CALL_TREE_H__

Version data entries

14 entries across 14 versions & 1 rubygems

Version Path
ruby-prof-1.4.3-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.3 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.2-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.2 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.1-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.1 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.0-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.4.0 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.3.2 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.3.1-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.3.1 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.3.0-x64-mingw32 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.3.0 ext/ruby_prof/rp_call_tree.h
ruby-prof-1.2.0 ext/ruby_prof/rp_call_tree.h