ruby-prof 0.12.1 → 0.12.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (109) hide show
  1. data/CHANGES +5 -1
  2. data/Rakefile +25 -7
  3. data/bin/ruby-prof +2 -2
  4. data/doc/LICENSE.html +155 -0
  5. data/doc/README_rdoc.html +640 -0
  6. data/doc/Rack.html +167 -0
  7. data/doc/Rack/RubyProf.html +319 -0
  8. data/doc/RubyProf.html +999 -0
  9. data/doc/RubyProf/AbstractPrinter.html +580 -0
  10. data/doc/RubyProf/AggregateCallInfo.html +570 -0
  11. data/doc/RubyProf/CallInfo.html +512 -0
  12. data/doc/RubyProf/CallInfoPrinter.html +190 -0
  13. data/doc/RubyProf/CallInfoVisitor.html +332 -0
  14. data/doc/RubyProf/CallStackPrinter.html +1597 -0
  15. data/doc/RubyProf/CallTreePrinter.html +413 -0
  16. data/doc/RubyProf/Cmd.html +669 -0
  17. data/doc/RubyProf/DotPrinter.html +312 -0
  18. data/doc/RubyProf/FlatPrinter.html +229 -0
  19. data/doc/RubyProf/FlatPrinterWithLineNumbers.html +267 -0
  20. data/doc/RubyProf/GraphHtmlPrinter.html +622 -0
  21. data/doc/RubyProf/GraphPrinter.html +209 -0
  22. data/doc/RubyProf/MethodInfo.html +713 -0
  23. data/doc/RubyProf/MultiPrinter.html +407 -0
  24. data/doc/RubyProf/Profile.html +821 -0
  25. data/doc/RubyProf/ProfileTask.html +532 -0
  26. data/doc/RubyProf/Test.html +578 -0
  27. data/doc/RubyProf/Thread.html +262 -0
  28. data/doc/created.rid +31 -0
  29. data/doc/examples/flat_txt.html +191 -0
  30. data/doc/examples/graph_txt.html +305 -0
  31. data/doc/images/add.png +0 -0
  32. data/doc/images/brick.png +0 -0
  33. data/doc/images/brick_link.png +0 -0
  34. data/doc/images/bug.png +0 -0
  35. data/doc/images/bullet_black.png +0 -0
  36. data/doc/images/bullet_toggle_minus.png +0 -0
  37. data/doc/images/bullet_toggle_plus.png +0 -0
  38. data/doc/images/date.png +0 -0
  39. data/doc/images/delete.png +0 -0
  40. data/doc/images/find.png +0 -0
  41. data/doc/images/loadingAnimation.gif +0 -0
  42. data/doc/images/macFFBgHack.png +0 -0
  43. data/doc/images/package.png +0 -0
  44. data/doc/images/page_green.png +0 -0
  45. data/doc/images/page_white_text.png +0 -0
  46. data/doc/images/page_white_width.png +0 -0
  47. data/doc/images/plugin.png +0 -0
  48. data/doc/images/ruby.png +0 -0
  49. data/doc/images/tag_blue.png +0 -0
  50. data/doc/images/tag_green.png +0 -0
  51. data/doc/images/transparent.png +0 -0
  52. data/doc/images/wrench.png +0 -0
  53. data/doc/images/wrench_orange.png +0 -0
  54. data/doc/images/zoom.png +0 -0
  55. data/doc/index.html +639 -0
  56. data/doc/js/darkfish.js +153 -0
  57. data/doc/js/jquery.js +18 -0
  58. data/doc/js/navigation.js +142 -0
  59. data/doc/js/search.js +94 -0
  60. data/doc/js/search_index.js +1 -0
  61. data/doc/js/searcher.js +228 -0
  62. data/doc/rdoc.css +543 -0
  63. data/doc/table_of_contents.html +462 -0
  64. data/examples/empty.png +0 -0
  65. data/examples/minus.png +0 -0
  66. data/examples/plus.png +0 -0
  67. data/ext/ruby_prof/extconf.rb +5 -1
  68. data/ext/ruby_prof/rp_call_info.c +1 -1
  69. data/ext/ruby_prof/rp_measure_gc_time.c +6 -10
  70. data/ext/ruby_prof/rp_measure_memory.c +0 -1
  71. data/ext/ruby_prof/rp_stack.c +0 -5
  72. data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -2
  73. data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +1 -3
  74. data/ext/ruby_prof/vc/ruby_prof_20.vcxproj +1 -3
  75. data/ext/ruby_prof/version.h +2 -2
  76. data/lib/ruby-prof/compatibility.rb +8 -3
  77. data/lib/ruby-prof/images/empty.png +0 -0
  78. data/lib/ruby-prof/images/minus.png +0 -0
  79. data/lib/ruby-prof/images/plus.png +0 -0
  80. data/lib/ruby-prof/task.rb +0 -0
  81. data/ruby-prof.gemspec +2 -1
  82. data/test/aggregate_test.rb +0 -0
  83. data/test/basic_test.rb +0 -0
  84. data/test/duplicate_names_test.rb +0 -0
  85. data/test/dynamic_method_test.rb +8 -1
  86. data/test/enumerable_test.rb +0 -0
  87. data/test/exceptions_test.rb +0 -0
  88. data/test/exclude_threads_test.rb +0 -0
  89. data/test/exec_test.rb +0 -0
  90. data/test/line_number_test.rb +0 -0
  91. data/test/measure_gc_runs_test.rb +4 -1
  92. data/test/measure_gc_time_test.rb +10 -3
  93. data/test/measure_memory_test.rb +3 -8
  94. data/test/measure_process_time_test.rb +10 -4
  95. data/test/method_elimination_test.rb +1 -2
  96. data/test/module_test.rb +0 -0
  97. data/test/multi_printer_test.rb +5 -6
  98. data/test/no_method_class_test.rb +0 -0
  99. data/test/pause_resume_test.rb +6 -8
  100. data/test/printers_test.rb +0 -0
  101. data/test/recursive_test.rb +0 -0
  102. data/test/singleton_test.rb +0 -0
  103. data/test/stack_printer_test.rb +8 -5
  104. data/test/stack_test.rb +0 -0
  105. data/test/start_stop_test.rb +0 -0
  106. data/test/test_helper.rb +16 -4
  107. data/test/thread_test.rb +0 -0
  108. data/test/unique_call_path_test.rb +0 -0
  109. metadata +90 -17
@@ -0,0 +1,512 @@
1
+ <!DOCTYPE html>
2
+
3
+ <html>
4
+ <head>
5
+ <meta content="text/html; charset=UTF-8" http-equiv="Content-Type">
6
+
7
+ <title>class RubyProf::CallInfo - ruby-prof</title>
8
+
9
+ <link type="text/css" media="screen" href="../rdoc.css" rel="stylesheet">
10
+
11
+ <script type="text/javascript">
12
+ var rdoc_rel_prefix = "../";
13
+ </script>
14
+
15
+ <script type="text/javascript" charset="utf-8" src="../js/jquery.js"></script>
16
+ <script type="text/javascript" charset="utf-8" src="../js/navigation.js"></script>
17
+ <script type="text/javascript" charset="utf-8" src="../js/search_index.js"></script>
18
+ <script type="text/javascript" charset="utf-8" src="../js/search.js"></script>
19
+ <script type="text/javascript" charset="utf-8" src="../js/searcher.js"></script>
20
+ <script type="text/javascript" charset="utf-8" src="../js/darkfish.js"></script>
21
+
22
+
23
+ <body id="top" class="class">
24
+ <nav id="metadata">
25
+ <nav id="home-section" class="section">
26
+ <h3 class="section-header">
27
+ <a href="../index.html">Home</a>
28
+ <a href="../table_of_contents.html#classes">Classes</a>
29
+ <a href="../table_of_contents.html#methods">Methods</a>
30
+ </h3>
31
+ </nav>
32
+
33
+
34
+ <nav id="search-section" class="section project-section" class="initially-hidden">
35
+ <form action="#" method="get" accept-charset="utf-8">
36
+ <h3 class="section-header">
37
+ <input type="text" name="search" placeholder="Search" id="search-field"
38
+ title="Type to search, Up and Down to navigate, Enter to load">
39
+ </h3>
40
+ </form>
41
+
42
+ <ul id="search-results" class="initially-hidden"></ul>
43
+ </nav>
44
+
45
+
46
+ <div id="file-metadata">
47
+ <nav id="file-list-section" class="section">
48
+ <h3 class="section-header">Defined In</h3>
49
+ <ul>
50
+ <li>lib/ruby-prof/call_info.rb
51
+ </ul>
52
+ </nav>
53
+
54
+
55
+ </div>
56
+
57
+ <div id="class-metadata">
58
+
59
+ <nav id="parent-class-section" class="section">
60
+ <h3 class="section-header">Parent</h3>
61
+
62
+ <p class="link">Object
63
+
64
+ </nav>
65
+
66
+
67
+ <!-- Method Quickref -->
68
+ <nav id="method-list-section" class="section">
69
+ <h3 class="section-header">Methods</h3>
70
+
71
+ <ul class="link-list">
72
+
73
+ <li><a href="#method-i-call_sequence">#call_sequence</a>
74
+
75
+ <li><a href="#method-i-children_time">#children_time</a>
76
+
77
+ <li><a href="#method-i-eliminate-21">#eliminate!</a>
78
+
79
+ <li><a href="#method-i-find_call">#find_call</a>
80
+
81
+ <li><a href="#method-i-merge_call_tree">#merge_call_tree</a>
82
+
83
+ <li><a href="#method-i-root-3F">#root?</a>
84
+
85
+ <li><a href="#method-i-stack">#stack</a>
86
+
87
+ <li><a href="#method-i-to_s">#to_s</a>
88
+
89
+ </ul>
90
+ </nav>
91
+
92
+ </div>
93
+
94
+ <div id="project-metadata">
95
+ <nav id="fileindex-section" class="section project-section">
96
+ <h3 class="section-header">Pages</h3>
97
+
98
+ <ul>
99
+
100
+ <li class="file"><a href="../LICENSE.html">LICENSE</a>
101
+
102
+ <li class="file"><a href="../README_rdoc.html">README</a>
103
+
104
+ <li class="file"><a href="../examples/flat_txt.html">flat</a>
105
+
106
+ <li class="file"><a href="../examples/graph_txt.html">graph</a>
107
+
108
+ </ul>
109
+ </nav>
110
+
111
+ <nav id="classindex-section" class="section project-section">
112
+ <h3 class="section-header">Class and Module Index</h3>
113
+
114
+ <ul class="link-list">
115
+
116
+ <li><a href="../RubyProf.html">RubyProf</a>
117
+
118
+ <li><a href="../RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
119
+
120
+ <li><a href="../RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
121
+
122
+ <li><a href="../RubyProf/CallInfo.html">RubyProf::CallInfo</a>
123
+
124
+ <li><a href="../RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
125
+
126
+ <li><a href="../RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
127
+
128
+ <li><a href="../RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
129
+
130
+ <li><a href="../RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
131
+
132
+ <li><a href="../RubyProf/Cmd.html">RubyProf::Cmd</a>
133
+
134
+ <li><a href="../RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
135
+
136
+ <li><a href="../RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
137
+
138
+ <li><a href="../RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
139
+
140
+ <li><a href="../RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
141
+
142
+ <li><a href="../RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
143
+
144
+ <li><a href="../RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
145
+
146
+ <li><a href="../RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
147
+
148
+ <li><a href="../RubyProf/Profile.html">RubyProf::Profile</a>
149
+
150
+ <li><a href="../RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
151
+
152
+ <li><a href="../RubyProf/Test.html">RubyProf::Test</a>
153
+
154
+ <li><a href="../RubyProf/Thread.html">RubyProf::Thread</a>
155
+
156
+ <li><a href="../Rack.html">Rack</a>
157
+
158
+ <li><a href="../Rack/RubyProf.html">Rack::RubyProf</a>
159
+
160
+ </ul>
161
+ </nav>
162
+
163
+ </div>
164
+ </nav>
165
+
166
+ <div id="documentation">
167
+ <h1 class="class">class RubyProf::CallInfo</h1>
168
+
169
+ <div id="description" class="description">
170
+
171
+ </div><!-- description -->
172
+
173
+
174
+
175
+
176
+ <section id="5Buntitled-5D" class="documentation-section">
177
+
178
+
179
+
180
+
181
+
182
+
183
+
184
+ <!-- Attributes -->
185
+ <section id="attribute-method-details" class="method-section section">
186
+ <h3 class="section-header">Attributes</h3>
187
+
188
+
189
+ <div id="attribute-i-recursive" class="method-detail">
190
+ <div class="method-heading attribute-method-heading">
191
+ <span class="method-name">recursive</span><span
192
+ class="attribute-access-type">[RW]</span>
193
+ </div>
194
+
195
+ <div class="method-description">
196
+
197
+
198
+
199
+ </div>
200
+ </div>
201
+
202
+ </section><!-- attribute-method-details -->
203
+
204
+
205
+ <!-- Methods -->
206
+
207
+ <section id="public-instance-5Buntitled-5D-method-details" class="method-section section">
208
+ <h3 class="section-header">Public Instance Methods</h3>
209
+
210
+
211
+ <div id="method-i-call_sequence" class="method-detail ">
212
+
213
+ <div class="method-heading">
214
+ <span class="method-name">call_sequence</span><span
215
+ class="method-args">()</span>
216
+ <span class="method-click-advice">click to toggle source</span>
217
+ </div>
218
+
219
+
220
+ <div class="method-description">
221
+
222
+
223
+
224
+
225
+
226
+ <div class="method-source-code" id="call_sequence-source">
227
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 25</span>
228
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">call_sequence</span>
229
+ <span class="ruby-ivar">@call_sequence</span> <span class="ruby-operator">||=</span> <span class="ruby-keyword">begin</span>
230
+ <span class="ruby-identifier">stack</span>.<span class="ruby-identifier">map</span> {<span class="ruby-operator">|</span><span class="ruby-identifier">method</span><span class="ruby-operator">|</span> <span class="ruby-identifier">method</span>.<span class="ruby-identifier">full_name</span>}.<span class="ruby-identifier">join</span>(<span class="ruby-string">'-&gt;'</span>)
231
+ <span class="ruby-keyword">end</span>
232
+ <span class="ruby-keyword">end</span></pre>
233
+ </div><!-- call_sequence-source -->
234
+
235
+ </div>
236
+
237
+
238
+
239
+
240
+ </div><!-- call_sequence-method -->
241
+
242
+
243
+ <div id="method-i-children_time" class="method-detail ">
244
+
245
+ <div class="method-heading">
246
+ <span class="method-name">children_time</span><span
247
+ class="method-args">()</span>
248
+ <span class="method-click-advice">click to toggle source</span>
249
+ </div>
250
+
251
+
252
+ <div class="method-description">
253
+
254
+
255
+
256
+
257
+
258
+ <div class="method-source-code" id="children_time-source">
259
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 6</span>
260
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">children_time</span>
261
+ <span class="ruby-identifier">children</span>.<span class="ruby-identifier">inject</span>(<span class="ruby-value">0</span>) <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">sum</span>, <span class="ruby-identifier">call_info</span><span class="ruby-operator">|</span>
262
+ <span class="ruby-identifier">sum</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">call_info</span>.<span class="ruby-identifier">total_time</span>
263
+ <span class="ruby-keyword">end</span>
264
+ <span class="ruby-keyword">end</span></pre>
265
+ </div><!-- children_time-source -->
266
+
267
+ </div>
268
+
269
+
270
+
271
+
272
+ </div><!-- children_time-method -->
273
+
274
+
275
+ <div id="method-i-eliminate-21" class="method-detail ">
276
+
277
+ <div class="method-heading">
278
+ <span class="method-name">eliminate!</span><span
279
+ class="method-args">()</span>
280
+ <span class="method-click-advice">click to toggle source</span>
281
+ </div>
282
+
283
+
284
+ <div class="method-description">
285
+
286
+ <p>eliminate call info from the call tree. adds self and wait time to parent
287
+ and attaches called methods to parent. merges call trees for methods called
288
+ from both praent end self.</p>
289
+
290
+
291
+
292
+ <div class="method-source-code" id="eliminate-21-source">
293
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 42</span>
294
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">eliminate!</span>
295
+ <span class="ruby-comment"># puts &quot;eliminating #{self}&quot;</span>
296
+ <span class="ruby-keyword">return</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">parent</span>
297
+ <span class="ruby-identifier">parent</span>.<span class="ruby-identifier">add_self_time</span>(<span class="ruby-keyword">self</span>)
298
+ <span class="ruby-identifier">parent</span>.<span class="ruby-identifier">add_wait_time</span>(<span class="ruby-keyword">self</span>)
299
+ <span class="ruby-identifier">children</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">kid</span><span class="ruby-operator">|</span>
300
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">call</span> = <span class="ruby-identifier">parent</span>.<span class="ruby-identifier">find_call</span>(<span class="ruby-identifier">kid</span>)
301
+ <span class="ruby-identifier">call</span>.<span class="ruby-identifier">merge_call_tree</span>(<span class="ruby-identifier">kid</span>)
302
+ <span class="ruby-keyword">else</span>
303
+ <span class="ruby-identifier">parent</span>.<span class="ruby-identifier">children</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">kid</span>
304
+ <span class="ruby-comment"># $stderr.puts &quot;setting parent of #{kid}\nto #{parent}&quot;</span>
305
+ <span class="ruby-identifier">kid</span>.<span class="ruby-identifier">parent</span> = <span class="ruby-identifier">parent</span>
306
+ <span class="ruby-keyword">end</span>
307
+ <span class="ruby-keyword">end</span>
308
+ <span class="ruby-identifier">parent</span>.<span class="ruby-identifier">children</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-keyword">self</span>)
309
+ <span class="ruby-keyword">end</span></pre>
310
+ </div><!-- eliminate-21-source -->
311
+
312
+ </div>
313
+
314
+
315
+
316
+
317
+ </div><!-- eliminate-21-method -->
318
+
319
+
320
+ <div id="method-i-find_call" class="method-detail ">
321
+
322
+ <div class="method-heading">
323
+ <span class="method-name">find_call</span><span
324
+ class="method-args">(other)</span>
325
+ <span class="method-click-advice">click to toggle source</span>
326
+ </div>
327
+
328
+
329
+ <div class="method-description">
330
+
331
+ <p>find a specific call in list of children. returns nil if not found. note:
332
+ there can’t be more than one child with a given target method. in other
333
+ words: x.children.grep{|y|y.target==m}.size &lt;= 1 for all method infos m
334
+ and call infos x</p>
335
+
336
+
337
+
338
+ <div class="method-source-code" id="find_call-source">
339
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 62</span>
340
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">find_call</span>(<span class="ruby-identifier">other</span>)
341
+ <span class="ruby-identifier">matching</span> = <span class="ruby-identifier">children</span>.<span class="ruby-identifier">select</span> { <span class="ruby-operator">|</span><span class="ruby-identifier">kid</span><span class="ruby-operator">|</span> <span class="ruby-identifier">kid</span>.<span class="ruby-identifier">target</span> <span class="ruby-operator">==</span> <span class="ruby-identifier">other</span>.<span class="ruby-identifier">target</span> }
342
+ <span class="ruby-identifier">raise</span> <span class="ruby-string">&quot;inconsistent call tree&quot;</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">matching</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator">&lt;=</span> <span class="ruby-value">1</span>
343
+ <span class="ruby-identifier">matching</span>.<span class="ruby-identifier">first</span>
344
+ <span class="ruby-keyword">end</span></pre>
345
+ </div><!-- find_call-source -->
346
+
347
+ </div>
348
+
349
+
350
+
351
+
352
+ </div><!-- find_call-method -->
353
+
354
+
355
+ <div id="method-i-merge_call_tree" class="method-detail ">
356
+
357
+ <div class="method-heading">
358
+ <span class="method-name">merge_call_tree</span><span
359
+ class="method-args">(other)</span>
360
+ <span class="method-click-advice">click to toggle source</span>
361
+ </div>
362
+
363
+
364
+ <div class="method-description">
365
+
366
+ <p>merge two call trees. adds self, wait, and total time of other to self and
367
+ merges children of other into children of self.</p>
368
+
369
+
370
+
371
+ <div class="method-source-code" id="merge_call_tree-source">
372
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 69</span>
373
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">merge_call_tree</span>(<span class="ruby-identifier">other</span>)
374
+ <span class="ruby-comment"># $stderr.puts &quot;merging #{self}\nand #{other}&quot;</span>
375
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">called</span> <span class="ruby-operator">+=</span> <span class="ruby-identifier">other</span>.<span class="ruby-identifier">called</span>
376
+ <span class="ruby-identifier">add_self_time</span>(<span class="ruby-identifier">other</span>)
377
+ <span class="ruby-identifier">add_wait_time</span>(<span class="ruby-identifier">other</span>)
378
+ <span class="ruby-identifier">add_total_time</span>(<span class="ruby-identifier">other</span>)
379
+ <span class="ruby-identifier">other</span>.<span class="ruby-identifier">children</span>.<span class="ruby-identifier">each</span> <span class="ruby-keyword">do</span> <span class="ruby-operator">|</span><span class="ruby-identifier">other_kid</span><span class="ruby-operator">|</span>
380
+ <span class="ruby-keyword">if</span> <span class="ruby-identifier">kid</span> = <span class="ruby-identifier">find_call</span>(<span class="ruby-identifier">other_kid</span>)
381
+ <span class="ruby-comment"># $stderr.puts &quot;merging kids&quot;</span>
382
+ <span class="ruby-identifier">kid</span>.<span class="ruby-identifier">merge_call_tree</span>(<span class="ruby-identifier">other_kid</span>)
383
+ <span class="ruby-keyword">else</span>
384
+ <span class="ruby-identifier">other_kid</span>.<span class="ruby-identifier">parent</span> = <span class="ruby-keyword">self</span>
385
+ <span class="ruby-identifier">children</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">other_kid</span>
386
+ <span class="ruby-keyword">end</span>
387
+ <span class="ruby-keyword">end</span>
388
+ <span class="ruby-identifier">other</span>.<span class="ruby-identifier">children</span>.<span class="ruby-identifier">clear</span>
389
+ <span class="ruby-identifier">other</span>.<span class="ruby-identifier">target</span>.<span class="ruby-identifier">call_infos</span>.<span class="ruby-identifier">delete</span>(<span class="ruby-identifier">other</span>)
390
+ <span class="ruby-keyword">end</span></pre>
391
+ </div><!-- merge_call_tree-source -->
392
+
393
+ </div>
394
+
395
+
396
+
397
+
398
+ </div><!-- merge_call_tree-method -->
399
+
400
+
401
+ <div id="method-i-root-3F" class="method-detail ">
402
+
403
+ <div class="method-heading">
404
+ <span class="method-name">root?</span><span
405
+ class="method-args">()</span>
406
+ <span class="method-click-advice">click to toggle source</span>
407
+ </div>
408
+
409
+
410
+ <div class="method-description">
411
+
412
+
413
+
414
+
415
+
416
+ <div class="method-source-code" id="root-3F-source">
417
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 31</span>
418
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">root?</span>
419
+ <span class="ruby-keyword">self</span>.<span class="ruby-identifier">parent</span>.<span class="ruby-identifier">nil?</span>
420
+ <span class="ruby-keyword">end</span></pre>
421
+ </div><!-- root-3F-source -->
422
+
423
+ </div>
424
+
425
+
426
+
427
+
428
+ </div><!-- root-3F-method -->
429
+
430
+
431
+ <div id="method-i-stack" class="method-detail ">
432
+
433
+ <div class="method-heading">
434
+ <span class="method-name">stack</span><span
435
+ class="method-args">()</span>
436
+ <span class="method-click-advice">click to toggle source</span>
437
+ </div>
438
+
439
+
440
+ <div class="method-description">
441
+
442
+
443
+
444
+
445
+
446
+ <div class="method-source-code" id="stack-source">
447
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 12</span>
448
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">stack</span>
449
+ <span class="ruby-ivar">@stack</span> <span class="ruby-operator">||=</span> <span class="ruby-keyword">begin</span>
450
+ <span class="ruby-identifier">methods</span> = <span class="ruby-constant">Array</span>.<span class="ruby-identifier">new</span>
451
+ <span class="ruby-identifier">call_info</span> = <span class="ruby-keyword">self</span>
452
+
453
+ <span class="ruby-keyword">while</span> <span class="ruby-identifier">call_info</span>
454
+ <span class="ruby-identifier">methods</span> <span class="ruby-operator">&lt;&lt;</span> <span class="ruby-identifier">call_info</span>.<span class="ruby-identifier">target</span>
455
+ <span class="ruby-identifier">call_info</span> = <span class="ruby-identifier">call_info</span>.<span class="ruby-identifier">parent</span>
456
+ <span class="ruby-keyword">end</span>
457
+ <span class="ruby-identifier">methods</span>.<span class="ruby-identifier">reverse</span>
458
+ <span class="ruby-keyword">end</span>
459
+ <span class="ruby-keyword">end</span></pre>
460
+ </div><!-- stack-source -->
461
+
462
+ </div>
463
+
464
+
465
+
466
+
467
+ </div><!-- stack-method -->
468
+
469
+
470
+ <div id="method-i-to_s" class="method-detail ">
471
+
472
+ <div class="method-heading">
473
+ <span class="method-name">to_s</span><span
474
+ class="method-args">()</span>
475
+ <span class="method-click-advice">click to toggle source</span>
476
+ </div>
477
+
478
+
479
+ <div class="method-description">
480
+
481
+
482
+
483
+
484
+
485
+ <div class="method-source-code" id="to_s-source">
486
+ <pre><span class="ruby-comment"># File lib/ruby-prof/call_info.rb, line 35</span>
487
+ <span class="ruby-keyword">def</span> <span class="ruby-identifier">to_s</span>
488
+ <span class="ruby-node">&quot;#{self.target.full_name} (c: #{self.called}, tt: #{self.total_time}, st: #{self.self_time}, ct: #{self.children_time})&quot;</span>
489
+ <span class="ruby-keyword">end</span></pre>
490
+ </div><!-- to_s-source -->
491
+
492
+ </div>
493
+
494
+
495
+
496
+
497
+ </div><!-- to_s-method -->
498
+
499
+
500
+ </section><!-- public-instance-method-details -->
501
+
502
+ </section><!-- 5Buntitled-5D -->
503
+
504
+ </div><!-- documentation -->
505
+
506
+
507
+ <footer id="validator-badges">
508
+ <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
509
+ <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.
510
+ <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
511
+ </footer>
512
+