ruby-prof 0.13.1 → 1.4.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +5 -5
- data/CHANGES +579 -371
- data/LICENSE +24 -23
- data/README.rdoc +5 -433
- data/Rakefile +98 -110
- data/bin/ruby-prof +328 -329
- data/bin/ruby-prof-check-trace +45 -0
- data/ext/ruby_prof/extconf.rb +16 -59
- data/ext/ruby_prof/rp_aggregate_call_tree.c +59 -0
- data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
- data/ext/ruby_prof/rp_allocation.c +287 -0
- data/ext/ruby_prof/rp_allocation.h +31 -0
- data/ext/ruby_prof/rp_call_tree.c +369 -0
- data/ext/ruby_prof/rp_call_tree.h +43 -0
- data/ext/ruby_prof/rp_call_trees.c +288 -0
- data/ext/ruby_prof/rp_call_trees.h +28 -0
- data/ext/ruby_prof/rp_measure_allocations.c +50 -65
- data/ext/ruby_prof/rp_measure_memory.c +42 -73
- data/ext/ruby_prof/rp_measure_process_time.c +65 -71
- data/ext/ruby_prof/rp_measure_wall_time.c +64 -42
- data/ext/ruby_prof/rp_measurement.c +237 -0
- data/ext/ruby_prof/rp_measurement.h +50 -0
- data/ext/ruby_prof/rp_method.c +491 -420
- data/ext/ruby_prof/rp_method.h +62 -57
- data/ext/ruby_prof/rp_profile.c +908 -0
- data/ext/ruby_prof/rp_profile.h +35 -0
- data/ext/ruby_prof/rp_stack.c +212 -128
- data/ext/ruby_prof/rp_stack.h +53 -51
- data/ext/ruby_prof/rp_thread.c +362 -268
- data/ext/ruby_prof/rp_thread.h +39 -27
- data/ext/ruby_prof/ruby_prof.c +52 -695
- data/ext/ruby_prof/ruby_prof.h +26 -55
- data/ext/ruby_prof/vc/ruby_prof.sln +28 -21
- data/ext/ruby_prof/vc/{ruby_prof_20.vcxproj → ruby_prof.vcxproj} +56 -8
- data/lib/ruby-prof.rb +52 -67
- data/lib/ruby-prof/assets/call_stack_printer.html.erb +710 -0
- data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
- data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
- data/lib/ruby-prof/call_tree.rb +57 -0
- data/lib/ruby-prof/call_tree_visitor.rb +36 -0
- data/lib/ruby-prof/compatibility.rb +99 -169
- data/lib/ruby-prof/exclude_common_methods.rb +198 -0
- data/lib/ruby-prof/measurement.rb +17 -0
- data/lib/ruby-prof/method_info.rb +78 -131
- data/lib/ruby-prof/printers/abstract_printer.rb +137 -85
- data/lib/ruby-prof/printers/call_info_printer.rb +53 -41
- data/lib/ruby-prof/printers/call_stack_printer.rb +180 -773
- data/lib/ruby-prof/printers/call_tree_printer.rb +151 -92
- data/lib/ruby-prof/printers/dot_printer.rb +132 -132
- data/lib/ruby-prof/printers/flat_printer.rb +53 -69
- data/lib/ruby-prof/printers/graph_html_printer.rb +63 -255
- data/lib/ruby-prof/printers/graph_printer.rb +113 -116
- data/lib/ruby-prof/printers/multi_printer.rb +127 -56
- data/lib/ruby-prof/profile.rb +37 -77
- data/lib/ruby-prof/rack.rb +62 -15
- data/lib/ruby-prof/task.rb +147 -147
- data/lib/ruby-prof/thread.rb +10 -12
- data/lib/ruby-prof/version.rb +3 -0
- data/lib/unprof.rb +10 -10
- data/ruby-prof.gemspec +65 -61
- data/test/abstract_printer_test.rb +26 -0
- data/test/alias_test.rb +126 -0
- data/test/basic_test.rb +43 -128
- data/test/call_tree_visitor_test.rb +32 -0
- data/test/call_trees_test.rb +66 -0
- data/test/duplicate_names_test.rb +32 -32
- data/test/dynamic_method_test.rb +53 -74
- data/test/enumerable_test.rb +21 -16
- data/test/exceptions_test.rb +24 -16
- data/test/exclude_methods_test.rb +151 -0
- data/test/exclude_threads_test.rb +53 -54
- data/test/fiber_test.rb +129 -65
- data/test/gc_test.rb +90 -0
- data/test/inverse_call_tree_test.rb +175 -0
- data/test/line_number_test.rb +158 -71
- data/test/marshal_test.rb +113 -0
- data/test/measure_allocations.rb +30 -0
- data/test/measure_allocations_test.rb +375 -25
- data/test/measure_allocations_trace_test.rb +375 -0
- data/test/measure_memory_trace_test.rb +1101 -0
- data/test/measure_process_time_test.rb +785 -62
- data/test/measure_times.rb +56 -0
- data/test/measure_wall_time_test.rb +434 -254
- data/test/multi_printer_test.rb +71 -82
- data/test/no_method_class_test.rb +15 -15
- data/test/pause_resume_test.rb +175 -166
- data/test/prime.rb +54 -54
- data/test/prime_script.rb +6 -0
- data/test/printer_call_stack_test.rb +27 -0
- data/test/printer_call_tree_test.rb +30 -0
- data/test/printer_flat_test.rb +99 -0
- data/test/printer_graph_html_test.rb +59 -0
- data/test/printer_graph_test.rb +40 -0
- data/test/printers_test.rb +141 -257
- data/test/printing_recursive_graph_test.rb +81 -0
- data/test/profile_test.rb +16 -0
- data/test/rack_test.rb +93 -0
- data/test/recursive_test.rb +206 -215
- data/test/singleton_test.rb +38 -38
- data/test/stack_printer_test.rb +64 -78
- data/test/start_stop_test.rb +109 -112
- data/test/test_helper.rb +13 -115
- data/test/thread_test.rb +144 -178
- data/test/unique_call_path_test.rb +120 -224
- data/test/yarv_test.rb +56 -0
- metadata +77 -133
- data/doc/LICENSE.html +0 -155
- data/doc/README_rdoc.html +0 -648
- data/doc/Rack.html +0 -167
- data/doc/Rack/RubyProf.html +0 -319
- data/doc/RubyProf.html +0 -1000
- data/doc/RubyProf/AbstractPrinter.html +0 -580
- data/doc/RubyProf/AggregateCallInfo.html +0 -570
- data/doc/RubyProf/CallInfo.html +0 -512
- data/doc/RubyProf/CallInfoPrinter.html +0 -190
- data/doc/RubyProf/CallInfoVisitor.html +0 -332
- data/doc/RubyProf/CallStackPrinter.html +0 -1600
- data/doc/RubyProf/CallTreePrinter.html +0 -413
- data/doc/RubyProf/Cmd.html +0 -669
- data/doc/RubyProf/DotPrinter.html +0 -312
- data/doc/RubyProf/FlatPrinter.html +0 -229
- data/doc/RubyProf/FlatPrinterWithLineNumbers.html +0 -267
- data/doc/RubyProf/GraphHtmlPrinter.html +0 -630
- data/doc/RubyProf/GraphPrinter.html +0 -209
- data/doc/RubyProf/MethodInfo.html +0 -713
- data/doc/RubyProf/MultiPrinter.html +0 -407
- data/doc/RubyProf/Profile.html +0 -821
- data/doc/RubyProf/ProfileTask.html +0 -532
- data/doc/RubyProf/Test.html +0 -578
- data/doc/RubyProf/Thread.html +0 -262
- data/doc/created.rid +0 -32
- data/doc/examples/flat_txt.html +0 -191
- data/doc/examples/graph_txt.html +0 -305
- data/doc/images/add.png +0 -0
- data/doc/images/brick.png +0 -0
- data/doc/images/brick_link.png +0 -0
- data/doc/images/bug.png +0 -0
- data/doc/images/bullet_black.png +0 -0
- data/doc/images/bullet_toggle_minus.png +0 -0
- data/doc/images/bullet_toggle_plus.png +0 -0
- data/doc/images/date.png +0 -0
- data/doc/images/delete.png +0 -0
- data/doc/images/find.png +0 -0
- data/doc/images/loadingAnimation.gif +0 -0
- data/doc/images/macFFBgHack.png +0 -0
- data/doc/images/package.png +0 -0
- data/doc/images/page_green.png +0 -0
- data/doc/images/page_white_text.png +0 -0
- data/doc/images/page_white_width.png +0 -0
- data/doc/images/plugin.png +0 -0
- data/doc/images/ruby.png +0 -0
- data/doc/images/tag_blue.png +0 -0
- data/doc/images/tag_green.png +0 -0
- data/doc/images/transparent.png +0 -0
- data/doc/images/wrench.png +0 -0
- data/doc/images/wrench_orange.png +0 -0
- data/doc/images/zoom.png +0 -0
- data/doc/index.html +0 -647
- data/doc/js/darkfish.js +0 -155
- data/doc/js/jquery.js +0 -18
- data/doc/js/navigation.js +0 -142
- data/doc/js/search.js +0 -94
- data/doc/js/search_index.js +0 -1
- data/doc/js/searcher.js +0 -228
- data/doc/rdoc.css +0 -543
- data/doc/table_of_contents.html +0 -462
- data/examples/empty.png +0 -0
- data/examples/flat.txt +0 -55
- data/examples/graph.dot +0 -106
- data/examples/graph.html +0 -823
- data/examples/graph.png +0 -0
- data/examples/graph.txt +0 -170
- data/examples/minus.png +0 -0
- data/examples/multi.flat.txt +0 -23
- data/examples/multi.graph.html +0 -906
- data/examples/multi.grind.dat +0 -194
- data/examples/multi.stack.html +0 -573
- data/examples/plus.png +0 -0
- data/examples/stack.html +0 -573
- data/ext/ruby_prof/rp_call_info.c +0 -407
- data/ext/ruby_prof/rp_call_info.h +0 -48
- data/ext/ruby_prof/rp_measure.c +0 -48
- data/ext/ruby_prof/rp_measure.h +0 -45
- data/ext/ruby_prof/rp_measure_cpu_time.c +0 -112
- data/ext/ruby_prof/rp_measure_gc_runs.c +0 -65
- data/ext/ruby_prof/rp_measure_gc_time.c +0 -57
- data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -108
- data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +0 -110
- data/ext/ruby_prof/version.h +0 -7
- data/lib/ruby-prof/aggregate_call_info.rb +0 -72
- data/lib/ruby-prof/call_info.rb +0 -89
- data/lib/ruby-prof/call_info_visitor.rb +0 -44
- data/lib/ruby-prof/images/empty.png +0 -0
- data/lib/ruby-prof/images/minus.png +0 -0
- data/lib/ruby-prof/images/plus.png +0 -0
- data/lib/ruby-prof/printers/flat_printer_with_line_numbers.rb +0 -57
- data/lib/ruby-prof/test.rb +0 -150
- data/test/aggregate_test.rb +0 -136
- data/test/call_info_test.rb +0 -78
- data/test/call_info_visitor_test.rb +0 -31
- data/test/exec_test.rb +0 -14
- data/test/measure_cpu_time_test.rb +0 -220
- data/test/measure_gc_runs_test.rb +0 -32
- data/test/measure_gc_time_test.rb +0 -36
- data/test/measure_memory_test.rb +0 -31
- data/test/method_elimination_test.rb +0 -84
- data/test/module_test.rb +0 -45
- data/test/stack_test.rb +0 -138
- data/test/test_suite.rb +0 -37
data/doc/RubyProf/CallInfo.html
DELETED
@@ -1,512 +0,0 @@
|
|
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">'->'</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 "eliminating #{self}"</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"><<</span> <span class="ruby-identifier">kid</span>
|
304
|
-
<span class="ruby-comment"># $stderr.puts "setting parent of #{kid}\nto #{parent}"</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 <= 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">"inconsistent call tree"</span> <span class="ruby-keyword">unless</span> <span class="ruby-identifier">matching</span>.<span class="ruby-identifier">size</span> <span class="ruby-operator"><=</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 "merging #{self}\nand #{other}"</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 "merging kids"</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"><<</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"><<</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">"#{self.target.full_name} (c: #{self.called}, tt: #{self.total_time}, st: #{self.self_time}, ct: #{self.children_time})"</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.1.
|
510
|
-
<p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
|
511
|
-
</footer>
|
512
|
-
|