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.
Files changed (209) hide show
  1. checksums.yaml +5 -5
  2. data/CHANGES +579 -371
  3. data/LICENSE +24 -23
  4. data/README.rdoc +5 -433
  5. data/Rakefile +98 -110
  6. data/bin/ruby-prof +328 -329
  7. data/bin/ruby-prof-check-trace +45 -0
  8. data/ext/ruby_prof/extconf.rb +16 -59
  9. data/ext/ruby_prof/rp_aggregate_call_tree.c +59 -0
  10. data/ext/ruby_prof/rp_aggregate_call_tree.h +13 -0
  11. data/ext/ruby_prof/rp_allocation.c +287 -0
  12. data/ext/ruby_prof/rp_allocation.h +31 -0
  13. data/ext/ruby_prof/rp_call_tree.c +369 -0
  14. data/ext/ruby_prof/rp_call_tree.h +43 -0
  15. data/ext/ruby_prof/rp_call_trees.c +288 -0
  16. data/ext/ruby_prof/rp_call_trees.h +28 -0
  17. data/ext/ruby_prof/rp_measure_allocations.c +50 -65
  18. data/ext/ruby_prof/rp_measure_memory.c +42 -73
  19. data/ext/ruby_prof/rp_measure_process_time.c +65 -71
  20. data/ext/ruby_prof/rp_measure_wall_time.c +64 -42
  21. data/ext/ruby_prof/rp_measurement.c +237 -0
  22. data/ext/ruby_prof/rp_measurement.h +50 -0
  23. data/ext/ruby_prof/rp_method.c +491 -420
  24. data/ext/ruby_prof/rp_method.h +62 -57
  25. data/ext/ruby_prof/rp_profile.c +908 -0
  26. data/ext/ruby_prof/rp_profile.h +35 -0
  27. data/ext/ruby_prof/rp_stack.c +212 -128
  28. data/ext/ruby_prof/rp_stack.h +53 -51
  29. data/ext/ruby_prof/rp_thread.c +362 -268
  30. data/ext/ruby_prof/rp_thread.h +39 -27
  31. data/ext/ruby_prof/ruby_prof.c +52 -695
  32. data/ext/ruby_prof/ruby_prof.h +26 -55
  33. data/ext/ruby_prof/vc/ruby_prof.sln +28 -21
  34. data/ext/ruby_prof/vc/{ruby_prof_20.vcxproj → ruby_prof.vcxproj} +56 -8
  35. data/lib/ruby-prof.rb +52 -67
  36. data/lib/ruby-prof/assets/call_stack_printer.html.erb +710 -0
  37. data/lib/ruby-prof/assets/call_stack_printer.png +0 -0
  38. data/lib/ruby-prof/assets/graph_printer.html.erb +355 -0
  39. data/lib/ruby-prof/call_tree.rb +57 -0
  40. data/lib/ruby-prof/call_tree_visitor.rb +36 -0
  41. data/lib/ruby-prof/compatibility.rb +99 -169
  42. data/lib/ruby-prof/exclude_common_methods.rb +198 -0
  43. data/lib/ruby-prof/measurement.rb +17 -0
  44. data/lib/ruby-prof/method_info.rb +78 -131
  45. data/lib/ruby-prof/printers/abstract_printer.rb +137 -85
  46. data/lib/ruby-prof/printers/call_info_printer.rb +53 -41
  47. data/lib/ruby-prof/printers/call_stack_printer.rb +180 -773
  48. data/lib/ruby-prof/printers/call_tree_printer.rb +151 -92
  49. data/lib/ruby-prof/printers/dot_printer.rb +132 -132
  50. data/lib/ruby-prof/printers/flat_printer.rb +53 -69
  51. data/lib/ruby-prof/printers/graph_html_printer.rb +63 -255
  52. data/lib/ruby-prof/printers/graph_printer.rb +113 -116
  53. data/lib/ruby-prof/printers/multi_printer.rb +127 -56
  54. data/lib/ruby-prof/profile.rb +37 -77
  55. data/lib/ruby-prof/rack.rb +62 -15
  56. data/lib/ruby-prof/task.rb +147 -147
  57. data/lib/ruby-prof/thread.rb +10 -12
  58. data/lib/ruby-prof/version.rb +3 -0
  59. data/lib/unprof.rb +10 -10
  60. data/ruby-prof.gemspec +65 -61
  61. data/test/abstract_printer_test.rb +26 -0
  62. data/test/alias_test.rb +126 -0
  63. data/test/basic_test.rb +43 -128
  64. data/test/call_tree_visitor_test.rb +32 -0
  65. data/test/call_trees_test.rb +66 -0
  66. data/test/duplicate_names_test.rb +32 -32
  67. data/test/dynamic_method_test.rb +53 -74
  68. data/test/enumerable_test.rb +21 -16
  69. data/test/exceptions_test.rb +24 -16
  70. data/test/exclude_methods_test.rb +151 -0
  71. data/test/exclude_threads_test.rb +53 -54
  72. data/test/fiber_test.rb +129 -65
  73. data/test/gc_test.rb +90 -0
  74. data/test/inverse_call_tree_test.rb +175 -0
  75. data/test/line_number_test.rb +158 -71
  76. data/test/marshal_test.rb +113 -0
  77. data/test/measure_allocations.rb +30 -0
  78. data/test/measure_allocations_test.rb +375 -25
  79. data/test/measure_allocations_trace_test.rb +375 -0
  80. data/test/measure_memory_trace_test.rb +1101 -0
  81. data/test/measure_process_time_test.rb +785 -62
  82. data/test/measure_times.rb +56 -0
  83. data/test/measure_wall_time_test.rb +434 -254
  84. data/test/multi_printer_test.rb +71 -82
  85. data/test/no_method_class_test.rb +15 -15
  86. data/test/pause_resume_test.rb +175 -166
  87. data/test/prime.rb +54 -54
  88. data/test/prime_script.rb +6 -0
  89. data/test/printer_call_stack_test.rb +27 -0
  90. data/test/printer_call_tree_test.rb +30 -0
  91. data/test/printer_flat_test.rb +99 -0
  92. data/test/printer_graph_html_test.rb +59 -0
  93. data/test/printer_graph_test.rb +40 -0
  94. data/test/printers_test.rb +141 -257
  95. data/test/printing_recursive_graph_test.rb +81 -0
  96. data/test/profile_test.rb +16 -0
  97. data/test/rack_test.rb +93 -0
  98. data/test/recursive_test.rb +206 -215
  99. data/test/singleton_test.rb +38 -38
  100. data/test/stack_printer_test.rb +64 -78
  101. data/test/start_stop_test.rb +109 -112
  102. data/test/test_helper.rb +13 -115
  103. data/test/thread_test.rb +144 -178
  104. data/test/unique_call_path_test.rb +120 -224
  105. data/test/yarv_test.rb +56 -0
  106. metadata +77 -133
  107. data/doc/LICENSE.html +0 -155
  108. data/doc/README_rdoc.html +0 -648
  109. data/doc/Rack.html +0 -167
  110. data/doc/Rack/RubyProf.html +0 -319
  111. data/doc/RubyProf.html +0 -1000
  112. data/doc/RubyProf/AbstractPrinter.html +0 -580
  113. data/doc/RubyProf/AggregateCallInfo.html +0 -570
  114. data/doc/RubyProf/CallInfo.html +0 -512
  115. data/doc/RubyProf/CallInfoPrinter.html +0 -190
  116. data/doc/RubyProf/CallInfoVisitor.html +0 -332
  117. data/doc/RubyProf/CallStackPrinter.html +0 -1600
  118. data/doc/RubyProf/CallTreePrinter.html +0 -413
  119. data/doc/RubyProf/Cmd.html +0 -669
  120. data/doc/RubyProf/DotPrinter.html +0 -312
  121. data/doc/RubyProf/FlatPrinter.html +0 -229
  122. data/doc/RubyProf/FlatPrinterWithLineNumbers.html +0 -267
  123. data/doc/RubyProf/GraphHtmlPrinter.html +0 -630
  124. data/doc/RubyProf/GraphPrinter.html +0 -209
  125. data/doc/RubyProf/MethodInfo.html +0 -713
  126. data/doc/RubyProf/MultiPrinter.html +0 -407
  127. data/doc/RubyProf/Profile.html +0 -821
  128. data/doc/RubyProf/ProfileTask.html +0 -532
  129. data/doc/RubyProf/Test.html +0 -578
  130. data/doc/RubyProf/Thread.html +0 -262
  131. data/doc/created.rid +0 -32
  132. data/doc/examples/flat_txt.html +0 -191
  133. data/doc/examples/graph_txt.html +0 -305
  134. data/doc/images/add.png +0 -0
  135. data/doc/images/brick.png +0 -0
  136. data/doc/images/brick_link.png +0 -0
  137. data/doc/images/bug.png +0 -0
  138. data/doc/images/bullet_black.png +0 -0
  139. data/doc/images/bullet_toggle_minus.png +0 -0
  140. data/doc/images/bullet_toggle_plus.png +0 -0
  141. data/doc/images/date.png +0 -0
  142. data/doc/images/delete.png +0 -0
  143. data/doc/images/find.png +0 -0
  144. data/doc/images/loadingAnimation.gif +0 -0
  145. data/doc/images/macFFBgHack.png +0 -0
  146. data/doc/images/package.png +0 -0
  147. data/doc/images/page_green.png +0 -0
  148. data/doc/images/page_white_text.png +0 -0
  149. data/doc/images/page_white_width.png +0 -0
  150. data/doc/images/plugin.png +0 -0
  151. data/doc/images/ruby.png +0 -0
  152. data/doc/images/tag_blue.png +0 -0
  153. data/doc/images/tag_green.png +0 -0
  154. data/doc/images/transparent.png +0 -0
  155. data/doc/images/wrench.png +0 -0
  156. data/doc/images/wrench_orange.png +0 -0
  157. data/doc/images/zoom.png +0 -0
  158. data/doc/index.html +0 -647
  159. data/doc/js/darkfish.js +0 -155
  160. data/doc/js/jquery.js +0 -18
  161. data/doc/js/navigation.js +0 -142
  162. data/doc/js/search.js +0 -94
  163. data/doc/js/search_index.js +0 -1
  164. data/doc/js/searcher.js +0 -228
  165. data/doc/rdoc.css +0 -543
  166. data/doc/table_of_contents.html +0 -462
  167. data/examples/empty.png +0 -0
  168. data/examples/flat.txt +0 -55
  169. data/examples/graph.dot +0 -106
  170. data/examples/graph.html +0 -823
  171. data/examples/graph.png +0 -0
  172. data/examples/graph.txt +0 -170
  173. data/examples/minus.png +0 -0
  174. data/examples/multi.flat.txt +0 -23
  175. data/examples/multi.graph.html +0 -906
  176. data/examples/multi.grind.dat +0 -194
  177. data/examples/multi.stack.html +0 -573
  178. data/examples/plus.png +0 -0
  179. data/examples/stack.html +0 -573
  180. data/ext/ruby_prof/rp_call_info.c +0 -407
  181. data/ext/ruby_prof/rp_call_info.h +0 -48
  182. data/ext/ruby_prof/rp_measure.c +0 -48
  183. data/ext/ruby_prof/rp_measure.h +0 -45
  184. data/ext/ruby_prof/rp_measure_cpu_time.c +0 -112
  185. data/ext/ruby_prof/rp_measure_gc_runs.c +0 -65
  186. data/ext/ruby_prof/rp_measure_gc_time.c +0 -57
  187. data/ext/ruby_prof/vc/ruby_prof_18.vcxproj +0 -108
  188. data/ext/ruby_prof/vc/ruby_prof_19.vcxproj +0 -110
  189. data/ext/ruby_prof/version.h +0 -7
  190. data/lib/ruby-prof/aggregate_call_info.rb +0 -72
  191. data/lib/ruby-prof/call_info.rb +0 -89
  192. data/lib/ruby-prof/call_info_visitor.rb +0 -44
  193. data/lib/ruby-prof/images/empty.png +0 -0
  194. data/lib/ruby-prof/images/minus.png +0 -0
  195. data/lib/ruby-prof/images/plus.png +0 -0
  196. data/lib/ruby-prof/printers/flat_printer_with_line_numbers.rb +0 -57
  197. data/lib/ruby-prof/test.rb +0 -150
  198. data/test/aggregate_test.rb +0 -136
  199. data/test/call_info_test.rb +0 -78
  200. data/test/call_info_visitor_test.rb +0 -31
  201. data/test/exec_test.rb +0 -14
  202. data/test/measure_cpu_time_test.rb +0 -220
  203. data/test/measure_gc_runs_test.rb +0 -32
  204. data/test/measure_gc_time_test.rb +0 -36
  205. data/test/measure_memory_test.rb +0 -31
  206. data/test/method_elimination_test.rb +0 -84
  207. data/test/module_test.rb +0 -45
  208. data/test/stack_test.rb +0 -138
  209. data/test/test_suite.rb +0 -37
@@ -1,462 +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>Table of Contents - 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 class="indexpage">
24
- <h1>Table of Contents - ruby-prof</h1>
25
-
26
- <h2>Pages</h2>
27
- <ul>
28
- <li class="file">
29
- <a href="LICENSE.html">LICENSE</a>
30
- </li>
31
- <li class="file">
32
- <a href="README_rdoc.html">README</a>
33
-
34
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
35
- <ul class="initially-hidden">
36
- <li><a href="README_rdoc.html#label-ruby-prof">ruby-prof</a>
37
- <li><a href="README_rdoc.html#label-Overview">Overview</a>
38
- <li><a href="README_rdoc.html#label-Requirements">Requirements</a>
39
- <li><a href="README_rdoc.html#label-Install">Install</a>
40
- <li><a href="README_rdoc.html#label-Usage">Usage</a>
41
- <li><a href="README_rdoc.html#label-ruby-prof+executable">ruby-prof executable</a>
42
- <li><a href="README_rdoc.html#label-ruby-prof+API">ruby-prof API</a>
43
- <li><a href="README_rdoc.html#label-Method+and+Thread+Elimination">Method and Thread Elimination</a>
44
- <li><a href="README_rdoc.html#label-Benchmarking+full+load+time+including+rubygems+startup+cost+%3D%3D">Benchmarking full load time including rubygems startup cost ==</a>
45
- <li><a href="README_rdoc.html#label-Profiling+Tests">Profiling Tests</a>
46
- <li><a href="README_rdoc.html#label-Profiling+Rails">Profiling Rails</a>
47
- <li><a href="README_rdoc.html#label-Reports">Reports</a>
48
- <li><a href="README_rdoc.html#label-Printers">Printers</a>
49
- <li><a href="README_rdoc.html#label-Measurements">Measurements</a>
50
- <li><a href="README_rdoc.html#label-Multi-threaded+Applications">Multi-threaded Applications</a>
51
- <li><a href="README_rdoc.html#label-Performance">Performance</a>
52
- <li><a href="README_rdoc.html#label-License">License</a>
53
- <li><a href="README_rdoc.html#label-Development">Development</a>
54
- </ul>
55
- </li>
56
- <li class="file">
57
- <a href="examples/flat_txt.html">flat</a>
58
-
59
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
60
- <ul class="initially-hidden">
61
- <li><a href="examples/flat_txt.html#label-Flat+Profiles">Flat Profiles</a>
62
- </ul>
63
- </li>
64
- <li class="file">
65
- <a href="examples/graph_txt.html">graph</a>
66
-
67
- <img class="toc-toggle" src="images/transparent.png" alt="" title="toggle headings">
68
- <ul class="initially-hidden">
69
- <li><a href="examples/graph_txt.html#label-Graph+Profiles">Graph Profiles</a>
70
- <li><a href="examples/graph_txt.html#label-Overview">Overview</a>
71
- <li><a href="examples/graph_txt.html#label-Parents">Parents</a>
72
- <li><a href="examples/graph_txt.html#label-Children">Children</a>
73
- </ul>
74
- </li>
75
-
76
- </ul>
77
-
78
- <h2 id="classes">Classes/Modules</h2>
79
- <ul>
80
- <li class="module">
81
- <a href="RubyProf.html">RubyProf</a>
82
- </li>
83
- <li class="class">
84
- <a href="RubyProf/AbstractPrinter.html">RubyProf::AbstractPrinter</a>
85
- </li>
86
- <li class="class">
87
- <a href="RubyProf/AggregateCallInfo.html">RubyProf::AggregateCallInfo</a>
88
- </li>
89
- <li class="class">
90
- <a href="RubyProf/CallInfo.html">RubyProf::CallInfo</a>
91
- </li>
92
- <li class="class">
93
- <a href="RubyProf/CallInfoPrinter.html">RubyProf::CallInfoPrinter</a>
94
- </li>
95
- <li class="class">
96
- <a href="RubyProf/CallInfoVisitor.html">RubyProf::CallInfoVisitor</a>
97
- </li>
98
- <li class="class">
99
- <a href="RubyProf/CallStackPrinter.html">RubyProf::CallStackPrinter</a>
100
- </li>
101
- <li class="class">
102
- <a href="RubyProf/CallTreePrinter.html">RubyProf::CallTreePrinter</a>
103
- </li>
104
- <li class="class">
105
- <a href="RubyProf/Cmd.html">RubyProf::Cmd</a>
106
- </li>
107
- <li class="class">
108
- <a href="RubyProf/DotPrinter.html">RubyProf::DotPrinter</a>
109
- </li>
110
- <li class="class">
111
- <a href="RubyProf/FlatPrinter.html">RubyProf::FlatPrinter</a>
112
- </li>
113
- <li class="class">
114
- <a href="RubyProf/FlatPrinterWithLineNumbers.html">RubyProf::FlatPrinterWithLineNumbers</a>
115
- </li>
116
- <li class="class">
117
- <a href="RubyProf/GraphHtmlPrinter.html">RubyProf::GraphHtmlPrinter</a>
118
- </li>
119
- <li class="class">
120
- <a href="RubyProf/GraphPrinter.html">RubyProf::GraphPrinter</a>
121
- </li>
122
- <li class="class">
123
- <a href="RubyProf/MethodInfo.html">RubyProf::MethodInfo</a>
124
- </li>
125
- <li class="class">
126
- <a href="RubyProf/MultiPrinter.html">RubyProf::MultiPrinter</a>
127
- </li>
128
- <li class="class">
129
- <a href="RubyProf/Profile.html">RubyProf::Profile</a>
130
- </li>
131
- <li class="class">
132
- <a href="RubyProf/ProfileTask.html">RubyProf::ProfileTask</a>
133
- </li>
134
- <li class="module">
135
- <a href="RubyProf/Test.html">RubyProf::Test</a>
136
- </li>
137
- <li class="class">
138
- <a href="RubyProf/Thread.html">RubyProf::Thread</a>
139
- </li>
140
- <li class="module">
141
- <a href="Rack.html">Rack</a>
142
- </li>
143
- <li class="class">
144
- <a href="Rack/RubyProf.html">Rack::RubyProf</a>
145
- </li>
146
-
147
- </ul>
148
-
149
- <h2 id="methods">Methods</h2>
150
- <ul>
151
-
152
- <li class="method"><a href="RubyProf.html#method-c-cpu_frequency">::cpu_frequency &mdash; RubyProf</a>
153
-
154
- <li class="method"><a href="RubyProf.html#method-c-cpu_frequency-3D">::cpu_frequency= &mdash; RubyProf</a>
155
-
156
- <li class="method"><a href="RubyProf.html#method-c-exclude_threads">::exclude_threads &mdash; RubyProf</a>
157
-
158
- <li class="method"><a href="RubyProf.html#method-c-exclude_threads-3D">::exclude_threads= &mdash; RubyProf</a>
159
-
160
- <li class="method"><a href="RubyProf.html#method-c-figure_measure_mode">::figure_measure_mode &mdash; RubyProf</a>
161
-
162
- <li class="method"><a href="RubyProf.html#method-c-measure_allocations">::measure_allocations &mdash; RubyProf</a>
163
-
164
- <li class="method"><a href="RubyProf.html#method-c-measure_cpu_time">::measure_cpu_time &mdash; RubyProf</a>
165
-
166
- <li class="method"><a href="RubyProf.html#method-c-measure_gc_runs">::measure_gc_runs &mdash; RubyProf</a>
167
-
168
- <li class="method"><a href="RubyProf.html#method-c-measure_gc_time">::measure_gc_time &mdash; RubyProf</a>
169
-
170
- <li class="method"><a href="RubyProf.html#method-c-measure_memory">::measure_memory &mdash; RubyProf</a>
171
-
172
- <li class="method"><a href="RubyProf.html#method-c-measure_mode">::measure_mode &mdash; RubyProf</a>
173
-
174
- <li class="method"><a href="RubyProf.html#method-c-measure_mode-3D">::measure_mode= &mdash; RubyProf</a>
175
-
176
- <li class="method"><a href="RubyProf.html#method-c-measure_process_time">::measure_process_time &mdash; RubyProf</a>
177
-
178
- <li class="method"><a href="RubyProf.html#method-c-measure_wall_time">::measure_wall_time &mdash; RubyProf</a>
179
-
180
- <li class="method"><a href="RubyProf/Cmd.html#method-c-new">::new &mdash; RubyProf::Cmd</a>
181
-
182
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-c-new">::new &mdash; RubyProf::AbstractPrinter</a>
183
-
184
- <li class="method"><a href="Rack/RubyProf.html#method-c-new">::new &mdash; Rack::RubyProf</a>
185
-
186
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-c-new">::new &mdash; RubyProf::AggregateCallInfo</a>
187
-
188
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-c-new">::new &mdash; RubyProf::CallInfoVisitor</a>
189
-
190
- <li class="method"><a href="RubyProf/Profile.html#method-c-new">::new &mdash; RubyProf::Profile</a>
191
-
192
- <li class="method"><a href="RubyProf/ProfileTask.html#method-c-new">::new &mdash; RubyProf::ProfileTask</a>
193
-
194
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-c-new">::new &mdash; RubyProf::MultiPrinter</a>
195
-
196
- <li class="method"><a href="RubyProf/DotPrinter.html#method-c-new">::new &mdash; RubyProf::DotPrinter</a>
197
-
198
- <li class="method"><a href="RubyProf.html#method-c-pause">::pause &mdash; RubyProf</a>
199
-
200
- <li class="method"><a href="RubyProf/Profile.html#method-c-profile">::profile &mdash; RubyProf::Profile</a>
201
-
202
- <li class="method"><a href="RubyProf.html#method-c-profile">::profile &mdash; RubyProf</a>
203
-
204
- <li class="method"><a href="RubyProf.html#method-c-resume">::resume &mdash; RubyProf</a>
205
-
206
- <li class="method"><a href="RubyProf.html#method-c-running-3F">::running? &mdash; RubyProf</a>
207
-
208
- <li class="method"><a href="RubyProf.html#method-c-start">::start &mdash; RubyProf</a>
209
-
210
- <li class="method"><a href="RubyProf.html#method-c-start_script">::start_script &mdash; RubyProf</a>
211
-
212
- <li class="method"><a href="RubyProf.html#method-c-stop">::stop &mdash; RubyProf</a>
213
-
214
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-3C-3D-3E">#<=> &mdash; RubyProf::MethodInfo</a>
215
-
216
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_children">#aggregate_children &mdash; RubyProf::MethodInfo</a>
217
-
218
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-aggregate_parents">#aggregate_parents &mdash; RubyProf::MethodInfo</a>
219
-
220
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-application">#application &mdash; RubyProf::CallStackPrinter</a>
221
-
222
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-arguments">#arguments &mdash; RubyProf::CallStackPrinter</a>
223
-
224
- <li class="method"><a href="Rack/RubyProf.html#method-i-call">#call &mdash; Rack::RubyProf</a>
225
-
226
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-call_sequence">#call_sequence &mdash; RubyProf::CallInfo</a>
227
-
228
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-called">#called &mdash; RubyProf::AggregateCallInfo</a>
229
-
230
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-called">#called &mdash; RubyProf::MethodInfo</a>
231
-
232
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children">#children &mdash; RubyProf::AggregateCallInfo</a>
233
-
234
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-children">#children &mdash; RubyProf::MethodInfo</a>
235
-
236
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-children_time">#children_time &mdash; RubyProf::CallInfo</a>
237
-
238
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-children_time">#children_time &mdash; RubyProf::AggregateCallInfo</a>
239
-
240
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-children_time">#children_time &mdash; RubyProf::MethodInfo</a>
241
-
242
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-clean_output_directory">#clean_output_directory &mdash; RubyProf::ProfileTask</a>
243
-
244
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-color">#color &mdash; RubyProf::CallStackPrinter</a>
245
-
246
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-convert">#convert &mdash; RubyProf::CallTreePrinter</a>
247
-
248
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-copy_image_files">#copy_image_files &mdash; RubyProf::CallStackPrinter</a>
249
-
250
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-create_link">#create_link &mdash; RubyProf::GraphHtmlPrinter</a>
251
-
252
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-create_output_directory">#create_output_directory &mdash; RubyProf::ProfileTask</a>
253
-
254
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-define">#define &mdash; RubyProf::ProfileTask</a>
255
-
256
- <li class="method"><a href="RubyProf/Profile.html#method-i-detect_recursion">#detect_recursion &mdash; RubyProf::Profile</a>
257
-
258
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-dump">#dump &mdash; RubyProf::CallStackPrinter</a>
259
-
260
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-eliminate-21">#eliminate! &mdash; RubyProf::CallInfo</a>
261
-
262
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-eliminate-21">#eliminate! &mdash; RubyProf::MethodInfo</a>
263
-
264
- <li class="method"><a href="RubyProf/Profile.html#method-i-eliminate_methods-21">#eliminate_methods! &mdash; RubyProf::Profile</a>
265
-
266
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-expansion">#expansion &mdash; RubyProf::CallStackPrinter</a>
267
-
268
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-file">#file &mdash; RubyProf::CallTreePrinter</a>
269
-
270
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-file_link">#file_link &mdash; RubyProf::GraphHtmlPrinter</a>
271
-
272
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-find_call">#find_call &mdash; RubyProf::CallInfo</a>
273
-
274
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-flat_profile">#flat_profile &mdash; RubyProf::MultiPrinter</a>
275
-
276
- <li class="method"><a href="RubyProf/Test.html#method-i-format_profile_total">#format_profile_total &mdash; RubyProf::Test</a>
277
-
278
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-graph_link">#graph_link &mdash; RubyProf::CallStackPrinter</a>
279
-
280
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-graph_profile">#graph_profile &mdash; RubyProf::MultiPrinter</a>
281
-
282
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-line">#line &mdash; RubyProf::AggregateCallInfo</a>
283
-
284
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-link">#link &mdash; RubyProf::CallStackPrinter</a>
285
-
286
- <li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_execs">#load_pre_execs &mdash; RubyProf::Cmd</a>
287
-
288
- <li class="method"><a href="RubyProf/Cmd.html#method-i-load_pre_libs">#load_pre_libs &mdash; RubyProf::Cmd</a>
289
-
290
- <li class="method"><a href="RubyProf/Test.html#method-i-measure_mode_name">#measure_mode_name &mdash; RubyProf::Test</a>
291
-
292
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-merge_call_tree">#merge_call_tree &mdash; RubyProf::CallInfo</a>
293
-
294
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-method_href">#method_href &mdash; RubyProf::GraphHtmlPrinter</a>
295
-
296
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-method_href">#method_href &mdash; RubyProf::CallStackPrinter</a>
297
-
298
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-method_name">#method_name &mdash; RubyProf::AbstractPrinter</a>
299
-
300
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-min_depth">#min_depth &mdash; RubyProf::MethodInfo</a>
301
-
302
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-min_percent">#min_percent &mdash; RubyProf::AbstractPrinter</a>
303
-
304
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-name">#name &mdash; RubyProf::CallStackPrinter</a>
305
-
306
- <li class="method"><a href="RubyProf/Cmd.html#method-i-option_parser">#option_parser &mdash; RubyProf::Cmd</a>
307
-
308
- <li class="method"><a href="RubyProf/Test.html#method-i-output_dir">#output_dir &mdash; RubyProf::Test</a>
309
-
310
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-output_directory">#output_directory &mdash; RubyProf::ProfileTask</a>
311
-
312
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-parent">#parent &mdash; RubyProf::AggregateCallInfo</a>
313
-
314
- <li class="method"><a href="RubyProf/Cmd.html#method-i-parse_args">#parse_args &mdash; RubyProf::Cmd</a>
315
-
316
- <li class="method"><a href="RubyProf/Profile.html#method-i-pause">#pause &mdash; RubyProf::Profile</a>
317
-
318
- <li class="method"><a href="RubyProf/Profile.html#method-i-paused-3F">#paused? &mdash; RubyProf::Profile</a>
319
-
320
- <li class="method"><a href="RubyProf/Profile.html#method-i-post_process">#post_process &mdash; RubyProf::Profile</a>
321
-
322
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print">#print &mdash; RubyProf::CallTreePrinter</a>
323
-
324
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print">#print &mdash; RubyProf::AbstractPrinter</a>
325
-
326
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-print">#print &mdash; RubyProf::GraphHtmlPrinter</a>
327
-
328
- <li class="method"><a href="RubyProf/DotPrinter.html#method-i-print">#print &mdash; RubyProf::DotPrinter</a>
329
-
330
- <li class="method"><a href="Rack/RubyProf.html#method-i-print">#print &mdash; Rack::RubyProf</a>
331
-
332
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-print">#print &mdash; RubyProf::MultiPrinter</a>
333
-
334
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print">#print &mdash; RubyProf::CallStackPrinter</a>
335
-
336
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_commands">#print_commands &mdash; RubyProf::CallStackPrinter</a>
337
-
338
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_css">#print_css &mdash; RubyProf::CallStackPrinter</a>
339
-
340
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_file">#print_file &mdash; RubyProf::AbstractPrinter</a>
341
-
342
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_footer">#print_footer &mdash; RubyProf::CallStackPrinter</a>
343
-
344
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_footer">#print_footer &mdash; RubyProf::AbstractPrinter</a>
345
-
346
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_header">#print_header &mdash; RubyProf::CallStackPrinter</a>
347
-
348
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_header">#print_header &mdash; RubyProf::AbstractPrinter</a>
349
-
350
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_help">#print_help &mdash; RubyProf::CallStackPrinter</a>
351
-
352
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_java_script">#print_java_script &mdash; RubyProf::CallStackPrinter</a>
353
-
354
- <li class="method"><a href="RubyProf/FlatPrinterWithLineNumbers.html#method-i-print_methods">#print_methods &mdash; RubyProf::FlatPrinterWithLineNumbers</a>
355
-
356
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_stack">#print_stack &mdash; RubyProf::CallStackPrinter</a>
357
-
358
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_thread">#print_thread &mdash; RubyProf::AbstractPrinter</a>
359
-
360
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_thread">#print_thread &mdash; RubyProf::CallTreePrinter</a>
361
-
362
- <li class="method"><a href="RubyProf/CallTreePrinter.html#method-i-print_threads">#print_threads &mdash; RubyProf::CallTreePrinter</a>
363
-
364
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-print_threads">#print_threads &mdash; RubyProf::AbstractPrinter</a>
365
-
366
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-print_title_bar">#print_title_bar &mdash; RubyProf::CallStackPrinter</a>
367
-
368
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-recursive-3F">#recursive? &mdash; RubyProf::MethodInfo</a>
369
-
370
- <li class="method"><a href="RubyProf/Test.html#method-i-report_filename">#report_filename &mdash; RubyProf::Test</a>
371
-
372
- <li class="method"><a href="RubyProf/Test.html#method-i-report_profile">#report_profile &mdash; RubyProf::Test</a>
373
-
374
- <li class="method"><a href="RubyProf/Profile.html#method-i-resume">#resume &mdash; RubyProf::Profile</a>
375
-
376
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-root-3F">#root? &mdash; RubyProf::MethodInfo</a>
377
-
378
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-root-3F">#root? &mdash; RubyProf::CallInfo</a>
379
-
380
- <li class="method"><a href="RubyProf/Cmd.html#method-i-run">#run &mdash; RubyProf::Cmd</a>
381
-
382
- <li class="method"><a href="RubyProf/Test.html#method-i-run">#run &mdash; RubyProf::Test</a>
383
-
384
- <li class="method"><a href="RubyProf/Test.html#method-i-run_profile">#run_profile &mdash; RubyProf::Test</a>
385
-
386
- <li class="method"><a href="RubyProf/ProfileTask.html#method-i-run_script">#run_script &mdash; RubyProf::ProfileTask</a>
387
-
388
- <li class="method"><a href="RubyProf/Test.html#method-i-run_test">#run_test &mdash; RubyProf::Test</a>
389
-
390
- <li class="method"><a href="RubyProf/Test.html#method-i-run_warmup">#run_warmup &mdash; RubyProf::Test</a>
391
-
392
- <li class="method"><a href="RubyProf/Profile.html#method-i-running-3F">#running? &mdash; RubyProf::Profile</a>
393
-
394
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-self_time">#self_time &mdash; RubyProf::AggregateCallInfo</a>
395
-
396
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-self_time">#self_time &mdash; RubyProf::MethodInfo</a>
397
-
398
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-setup_options">#setup_options &mdash; RubyProf::GraphHtmlPrinter</a>
399
-
400
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-setup_options">#setup_options &mdash; RubyProf::AbstractPrinter</a>
401
-
402
- <li class="method"><a href="RubyProf/Cmd.html#method-i-setup_options">#setup_options &mdash; RubyProf::Cmd</a>
403
-
404
- <li class="method"><a href="RubyProf/AbstractPrinter.html#method-i-sort_method">#sort_method &mdash; RubyProf::AbstractPrinter</a>
405
-
406
- <li class="method"><a href="RubyProf/FlatPrinter.html#method-i-sort_method">#sort_method &mdash; RubyProf::FlatPrinter</a>
407
-
408
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-stack">#stack &mdash; RubyProf::CallInfo</a>
409
-
410
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-stack_profile">#stack_profile &mdash; RubyProf::MultiPrinter</a>
411
-
412
- <li class="method"><a href="RubyProf/Profile.html#method-i-start">#start &mdash; RubyProf::Profile</a>
413
-
414
- <li class="method"><a href="RubyProf/Profile.html#method-i-stop">#stop &mdash; RubyProf::Profile</a>
415
-
416
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-sum">#sum &mdash; RubyProf::CallStackPrinter</a>
417
-
418
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-target">#target &mdash; RubyProf::AggregateCallInfo</a>
419
-
420
- <li class="method"><a href="RubyProf/GraphHtmlPrinter.html#method-i-template">#template &mdash; RubyProf::GraphHtmlPrinter</a>
421
-
422
- <li class="method"><a href="RubyProf/Profile.html#method-i-threads">#threads &mdash; RubyProf::Profile</a>
423
-
424
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-threshold">#threshold &mdash; RubyProf::CallStackPrinter</a>
425
-
426
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-title">#title &mdash; RubyProf::CallStackPrinter</a>
427
-
428
- <li class="method"><a href="RubyProf/CallInfo.html#method-i-to_s">#to_s &mdash; RubyProf::CallInfo</a>
429
-
430
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-to_s">#to_s &mdash; RubyProf::AggregateCallInfo</a>
431
-
432
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-to_s">#to_s &mdash; RubyProf::MethodInfo</a>
433
-
434
- <li class="method"><a href="RubyProf/Thread.html#method-i-top_methods">#top_methods &mdash; RubyProf::Thread</a>
435
-
436
- <li class="method"><a href="RubyProf/Thread.html#method-i-total_time">#total_time &mdash; RubyProf::Thread</a>
437
-
438
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-total_time">#total_time &mdash; RubyProf::MethodInfo</a>
439
-
440
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-total_time">#total_time &mdash; RubyProf::AggregateCallInfo</a>
441
-
442
- <li class="method"><a href="RubyProf/CallStackPrinter.html#method-i-total_time">#total_time &mdash; RubyProf::CallStackPrinter</a>
443
-
444
- <li class="method"><a href="RubyProf/MultiPrinter.html#method-i-tree_profile">#tree_profile &mdash; RubyProf::MultiPrinter</a>
445
-
446
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit">#visit &mdash; RubyProf::CallInfoVisitor</a>
447
-
448
- <li class="method"><a href="RubyProf/CallInfoVisitor.html#method-i-visit_call_info">#visit_call_info &mdash; RubyProf::CallInfoVisitor</a>
449
-
450
- <li class="method"><a href="RubyProf/AggregateCallInfo.html#method-i-wait_time">#wait_time &mdash; RubyProf::AggregateCallInfo</a>
451
-
452
- <li class="method"><a href="RubyProf/MethodInfo.html#method-i-wait_time">#wait_time &mdash; RubyProf::MethodInfo</a>
453
-
454
- </ul>
455
-
456
-
457
- <footer id="validator-badges">
458
- <p><a href="http://validator.w3.org/check/referer">[Validate]</a>
459
- <p>Generated by <a href="https://github.com/rdoc/rdoc">RDoc</a> 3.12.1.
460
- <p>Generated with the <a href="http://deveiate.org/projects/Darkfish-Rdoc/">Darkfish Rdoc Generator</a> 3.
461
- </footer>
462
-