26 #if defined (HAVE_CONFIG_H)
40 : m_time (0.0), m_calls (0), m_recursive (false),
41 m_parents (), m_children ()
51 for (
const auto& nm : list)
60 : m_parent (p), m_fcn_id (
f), m_children (), m_time (0.0), m_calls (0)
65 for (
auto& idx_tnode : m_children)
66 delete idx_tnode.second;
74 child_map::iterator pos = m_children.
find (fcn);
75 if (pos == m_children.end ())
104 stats& entry = data[m_fcn_id - 1];
110 if (m_parent->m_fcn_id != 0)
112 entry.
m_parents.insert (m_parent->m_fcn_id);
113 data[m_parent->m_fcn_id - 1].m_children.insert (m_fcn_id);
118 if (i->m_fcn_id == m_fcn_id)
126 for (
const auto& idx_tnode : m_children)
127 idx_tnode.second->build_flat (data);
140 Cell rv_indices (
n, 1);
141 Cell rv_times (
n, 1);
142 Cell rv_totals (
n, 1);
143 Cell rv_calls (
n, 1);
144 Cell rv_children (
n, 1);
147 for (
const auto& idx_tnode : m_children)
149 const tree_node& entry = *idx_tnode.second;
150 double child_total = entry.
m_time;
159 *total += child_total;
207 fcn_index_map::iterator pos =
m_fcn_index.find (fcn);
215 fcn_idx = pos->second;
242 fcn_index_map::iterator pos =
m_fcn_index.find (fcn);
258 error (
"Can't reset active profiler.");
286 Cell rv_names (
n, 1);
287 Cell rv_times (
n, 1);
288 Cell rv_calls (
n, 1);
289 Cell rv_recursive (
n, 1);
290 Cell rv_parents (
n, 1);
291 Cell rv_children (
n, 1);
305 m.assign (
"FunctionName", rv_names);
306 m.assign (
"TotalTime", rv_times);
307 m.assign (
"NumCalls", rv_calls);
308 m.assign (
"IsRecursive", rv_recursive);
309 m.assign (
"Parents", rv_parents);
310 m.assign (
"Children", rv_children);
316 static const char *fn[] =
344 static const char *fn[] =
386 DEFMETHOD (__profiler_enable__, interp, args, ,
392 int nargin = args.length ();
406 DEFMETHOD (__profiler_reset__, interp, args, ,
412 if (args.length () != 0)
423 DEFMETHOD (__profiler_data__, interp, args, nargout,
429 if (args.length () != 0)
void assign(const idx_vector &i, const Array< T > &rhs, const T &rfv)
Indexed assignment (always with resize & fill).
Array< octave_idx_type > find(octave_idx_type n=-1, bool backward=false) const
Find indices of (at most n) nonzero elements.
Vector representing the dimensions (size) of an Array.
tree_node(tree_node *, octave_idx_type)
void build_flat(flat_profile &) const
tree_node * enter(octave_idx_type)
tree_node * exit(octave_idx_type)
octave_value get_hierarchical(double *total=nullptr) const
octave_value get_flat(void) const
void exit_function(const std::string &)
fcn_index_map m_fcn_index
function_set m_known_functions
std::vector< stats > flat_profile
double query_time(void) const
octave_value get_hierarchical(void) const
void enter_function(const std::string &)
void add_current_time(void)
double double_value(void) const
OCTINTERP_API void print_usage(void)
#define DEFMETHOD(name, interp_name, args_name, nargout_name, doc)
Macro to define a builtin method.
void error(const char *fmt,...)
static double f(double k, double l_nu, double c_pm)
return octave_value(v1.char_array_value() . concat(v2.char_array_value(), ra_idx),((a1.is_sq_string()||a2.is_sq_string()) ? '\'' :'"'))
octave_value::octave_value(const Array< char > &chm, char type) return retval
octave_value_list ovl(const OV_Args &... args)
Construct an octave_value_list with less typing.
static octave_value function_set_value(const function_set &)
std::set< octave_idx_type > function_set