rbx-trepanning 0.0.5-universal-rubinius-1.2.1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (266) hide show
  1. data/ChangeLog +2002 -0
  2. data/LICENSE +25 -0
  3. data/NEWS +31 -0
  4. data/README.textile +34 -0
  5. data/Rakefile +165 -0
  6. data/THANKS +14 -0
  7. data/app/breakpoint.rb +219 -0
  8. data/app/breakpoint.rbc +3551 -0
  9. data/app/brkptmgr.rb +140 -0
  10. data/app/brkptmgr.rbc +2903 -0
  11. data/app/client.rb +61 -0
  12. data/app/client.rbc +1225 -0
  13. data/app/complete.rb +52 -0
  14. data/app/complete.rbc +1288 -0
  15. data/app/default.rb +71 -0
  16. data/app/default.rbc +1132 -0
  17. data/app/display.rb +148 -0
  18. data/app/display.rbc +2578 -0
  19. data/app/frame.rb +98 -0
  20. data/app/frame.rbc +1808 -0
  21. data/app/irb.rb +111 -0
  22. data/app/irb.rbc +2094 -0
  23. data/app/iseq.rb +117 -0
  24. data/app/iseq.rbc +2192 -0
  25. data/app/llvm.rbc +2478 -0
  26. data/app/method.rb +173 -0
  27. data/app/method.rbc +2492 -0
  28. data/app/method_name.rbc +2467 -0
  29. data/app/mock.rb +13 -0
  30. data/app/mock.rbc +398 -0
  31. data/app/options.rb +137 -0
  32. data/app/options.rbc +2898 -0
  33. data/app/rbx-llvm.rb +165 -0
  34. data/app/rbx-llvm.rbc +2478 -0
  35. data/app/run.rb +86 -0
  36. data/app/run.rbc +1244 -0
  37. data/app/util.rb +49 -0
  38. data/app/util.rbc +1146 -0
  39. data/app/validate.rb +30 -0
  40. data/app/validate.rbc +676 -0
  41. data/bin/trepan.compiled.rbc +1043 -0
  42. data/bin/trepanx +69 -0
  43. data/bin/trepanx.compiled.rbc +1049 -0
  44. data/data/irbrc +41 -0
  45. data/data/irbrc.compiled.rbc +640 -0
  46. data/interface/base_intf.rb +105 -0
  47. data/interface/base_intf.rbc +1899 -0
  48. data/interface/client.rb +80 -0
  49. data/interface/client.rbc +1072 -0
  50. data/interface/comcodes.rb +20 -0
  51. data/interface/comcodes.rbc +385 -0
  52. data/interface/script.rb +104 -0
  53. data/interface/script.rbc +1642 -0
  54. data/interface/server.rb +143 -0
  55. data/interface/server.rbc +2213 -0
  56. data/interface/user.rb +150 -0
  57. data/interface/user.rbc +2867 -0
  58. data/io/base_io.rb +148 -0
  59. data/io/base_io.rbc +2111 -0
  60. data/io/input.rb +135 -0
  61. data/io/input.rbc +2528 -0
  62. data/io/null_output.rb +42 -0
  63. data/io/null_output.rbc +730 -0
  64. data/io/string_array.rb +156 -0
  65. data/io/string_array.rbc +2466 -0
  66. data/io/tcpclient.rb +129 -0
  67. data/io/tcpclient.rbc +2419 -0
  68. data/io/tcpfns.rb +33 -0
  69. data/io/tcpfns.rbc +694 -0
  70. data/io/tcpserver.rb +141 -0
  71. data/io/tcpserver.rbc +2638 -0
  72. data/lib/trepanning.rb +474 -0
  73. data/lib/trepanning.rbc +7705 -0
  74. data/lib/trepanning2.rb +441 -0
  75. data/processor/breakpoint.rb +164 -0
  76. data/processor/command/alias.rb +55 -0
  77. data/processor/command/backtrace.rb +76 -0
  78. data/processor/command/base/cmd.rb +173 -0
  79. data/processor/command/base/subcmd.rb +229 -0
  80. data/processor/command/base/submgr.rb +182 -0
  81. data/processor/command/base/subsubcmd.rb +103 -0
  82. data/processor/command/base/subsubmgr.rb +195 -0
  83. data/processor/command/break.rb +100 -0
  84. data/processor/command/complete.rb +37 -0
  85. data/processor/command/continue.rb +91 -0
  86. data/processor/command/delete.rb +30 -0
  87. data/processor/command/directory.rb +51 -0
  88. data/processor/command/disassemble.rb +145 -0
  89. data/processor/command/display.rb +82 -0
  90. data/processor/command/down.rb +54 -0
  91. data/processor/command/eval.rb +51 -0
  92. data/processor/command/exit.rb +62 -0
  93. data/processor/command/finish.rb +80 -0
  94. data/processor/command/frame.rb +89 -0
  95. data/processor/command/help.rb +251 -0
  96. data/processor/command/info.rb +28 -0
  97. data/processor/command/info_subcmd/breakpoints.rb +73 -0
  98. data/processor/command/info_subcmd/files.rb +209 -0
  99. data/processor/command/info_subcmd/line.rb +86 -0
  100. data/processor/command/info_subcmd/method.rb +71 -0
  101. data/processor/command/info_subcmd/program.rb +49 -0
  102. data/processor/command/info_subcmd/ruby.rb +62 -0
  103. data/processor/command/info_subcmd/variables.rb +48 -0
  104. data/processor/command/irb.rb +128 -0
  105. data/processor/command/kill.rb +70 -0
  106. data/processor/command/list.rb +300 -0
  107. data/processor/command/macro.rb +76 -0
  108. data/processor/command/next.rb +66 -0
  109. data/processor/command/nexti.rb +59 -0
  110. data/processor/command/pr.rb +38 -0
  111. data/processor/command/ps.rb +40 -0
  112. data/processor/command/restart.rb +60 -0
  113. data/processor/command/server.rb +72 -0
  114. data/processor/command/set.rb +47 -0
  115. data/processor/command/set_subcmd/auto.rb +27 -0
  116. data/processor/command/set_subcmd/auto_subcmd/dis.rb +33 -0
  117. data/processor/command/set_subcmd/auto_subcmd/eval.rb +54 -0
  118. data/processor/command/set_subcmd/auto_subcmd/irb.rb +34 -0
  119. data/processor/command/set_subcmd/auto_subcmd/list.rb +34 -0
  120. data/processor/command/set_subcmd/basename.rb +25 -0
  121. data/processor/command/set_subcmd/confirm.rb +24 -0
  122. data/processor/command/set_subcmd/debug.rb +26 -0
  123. data/processor/command/set_subcmd/debug_subcmd/dbgr.rb +36 -0
  124. data/processor/command/set_subcmd/debug_subcmd/skip.rb +23 -0
  125. data/processor/command/set_subcmd/debug_subcmd/step.rb +23 -0
  126. data/processor/command/set_subcmd/different.rb +59 -0
  127. data/processor/command/set_subcmd/hidelevel.rb +62 -0
  128. data/processor/command/set_subcmd/highlight.rb +33 -0
  129. data/processor/command/set_subcmd/kernelstep.rb +60 -0
  130. data/processor/command/set_subcmd/max.rb +26 -0
  131. data/processor/command/set_subcmd/max_subcmd/list.rb +49 -0
  132. data/processor/command/set_subcmd/max_subcmd/stack.rb +50 -0
  133. data/processor/command/set_subcmd/max_subcmd/string.rb +76 -0
  134. data/processor/command/set_subcmd/max_subcmd/width.rb +49 -0
  135. data/processor/command/set_subcmd/substitute.rb +24 -0
  136. data/processor/command/set_subcmd/substitute_subcmd/path.rb +56 -0
  137. data/processor/command/set_subcmd/trace.rb +36 -0
  138. data/processor/command/set_subcmd/trace_subcmd/print.rb +57 -0
  139. data/processor/command/show.rb +38 -0
  140. data/processor/command/show_subcmd/alias.rb +42 -0
  141. data/processor/command/show_subcmd/args.rb +25 -0
  142. data/processor/command/show_subcmd/auto.rb +28 -0
  143. data/processor/command/show_subcmd/auto_subcmd/dis.rb +37 -0
  144. data/processor/command/show_subcmd/auto_subcmd/eval.rb +28 -0
  145. data/processor/command/show_subcmd/auto_subcmd/irb.rb +23 -0
  146. data/processor/command/show_subcmd/auto_subcmd/list.rb +22 -0
  147. data/processor/command/show_subcmd/basename.rb +20 -0
  148. data/processor/command/show_subcmd/confirm.rb +18 -0
  149. data/processor/command/show_subcmd/debug.rb +26 -0
  150. data/processor/command/show_subcmd/debug_subcmd/dbgr.rb +21 -0
  151. data/processor/command/show_subcmd/debug_subcmd/skip.rb +22 -0
  152. data/processor/command/show_subcmd/debug_subcmd/step.rb +22 -0
  153. data/processor/command/show_subcmd/different.rb +26 -0
  154. data/processor/command/show_subcmd/hidelevel.rb +41 -0
  155. data/processor/command/show_subcmd/highlight.rb +24 -0
  156. data/processor/command/show_subcmd/kernelstep.rb +34 -0
  157. data/processor/command/show_subcmd/max.rb +27 -0
  158. data/processor/command/show_subcmd/max_subcmd/list.rb +38 -0
  159. data/processor/command/show_subcmd/max_subcmd/stack.rb +36 -0
  160. data/processor/command/show_subcmd/max_subcmd/string.rb +42 -0
  161. data/processor/command/show_subcmd/max_subcmd/width.rb +37 -0
  162. data/processor/command/show_subcmd/trace.rb +27 -0
  163. data/processor/command/show_subcmd/trace_subcmd/print.rb +38 -0
  164. data/processor/command/show_subcmd/version.rb +23 -0
  165. data/processor/command/source.rb +126 -0
  166. data/processor/command/step.rb +84 -0
  167. data/processor/command/tbreak.rb +19 -0
  168. data/processor/command/unalias.rb +44 -0
  169. data/processor/command/undisplay.rb +59 -0
  170. data/processor/command/up.rb +86 -0
  171. data/processor/default.rb +58 -0
  172. data/processor/disassemble.rb +46 -0
  173. data/processor/display.rb +18 -0
  174. data/processor/eval.rb +96 -0
  175. data/processor/frame.rb +211 -0
  176. data/processor/help.rb +72 -0
  177. data/processor/hook.rb +133 -0
  178. data/processor/load_cmds.rb +185 -0
  179. data/processor/location.rb +137 -0
  180. data/processor/main.rb +412 -0
  181. data/processor/mock.rb +144 -0
  182. data/processor/msg.rb +43 -0
  183. data/processor/running.rb +234 -0
  184. data/processor/stepping.rb +114 -0
  185. data/processor/subcmd.rb +161 -0
  186. data/processor/validate.rb +355 -0
  187. data/sample/list-terminal-colors.rb +139 -0
  188. data/sample/list-terminal-colors.rbc +2318 -0
  189. data/sample/rocky-dot-trepanxrc +14 -0
  190. data/sample/rocky-trepanx-colors.rb +47 -0
  191. data/sample/rocky-trepanx-colors.rbc +530 -0
  192. data/test/data/enable.right +36 -0
  193. data/test/data/fname-with-blank.cmd +6 -0
  194. data/test/data/fname-with-blank.right +4 -0
  195. data/test/data/inline-call.cmd +6 -0
  196. data/test/data/inline-call.right +13 -0
  197. data/test/data/quit-Xdebug.right +3 -0
  198. data/test/data/quit.cmd +5 -0
  199. data/test/data/quit.right +2 -0
  200. data/test/data/quit2.cmd +6 -0
  201. data/test/data/quit2.right +3 -0
  202. data/test/data/step-bug.cmd +11 -0
  203. data/test/data/step-bug.right +3 -0
  204. data/test/example/fname with blank.rb +1 -0
  205. data/test/example/gcd-server.rb +22 -0
  206. data/test/example/gcd.rb +19 -0
  207. data/test/example/inline-call.rb +23 -0
  208. data/test/example/null.rb +1 -0
  209. data/test/example/step-bug.rb +14 -0
  210. data/test/example/thread1.rb +3 -0
  211. data/test/functional/fn_helper.rb +112 -0
  212. data/test/functional/test-break-name.rb +52 -0
  213. data/test/functional/test-break.rb +51 -0
  214. data/test/functional/test-finish.rb +70 -0
  215. data/test/functional/test-fn_helper.rb +43 -0
  216. data/test/functional/test-list.rb +55 -0
  217. data/test/functional/test-next-bug.rb +49 -0
  218. data/test/functional/test-next.rb +101 -0
  219. data/test/functional/test-step.rb +272 -0
  220. data/test/functional/test-step2.rb +35 -0
  221. data/test/functional/test-tbreak.rb +41 -0
  222. data/test/integration/file-diff.rb +89 -0
  223. data/test/integration/helper.rb +78 -0
  224. data/test/integration/skip-test-step-bug.rb +17 -0
  225. data/test/integration/test-fname-with-blank.rb +16 -0
  226. data/test/integration/test-inline-call.rb +20 -0
  227. data/test/integration/test-quit.rb +47 -0
  228. data/test/unit/cmd-helper.rb +50 -0
  229. data/test/unit/mock-helper.rb +10 -0
  230. data/test/unit/test-app-brkpt.rb +29 -0
  231. data/test/unit/test-app-brkptmgr.rb +51 -0
  232. data/test/unit/test-app-iseq.rb +64 -0
  233. data/test/unit/test-app-method.rb +54 -0
  234. data/test/unit/test-app-options.rb +82 -0
  235. data/test/unit/test-app-run.rb +16 -0
  236. data/test/unit/test-app-util.rb +27 -0
  237. data/test/unit/test-app-validate.rb +18 -0
  238. data/test/unit/test-base-cmd.rb +47 -0
  239. data/test/unit/test-base-subcmd.rb +61 -0
  240. data/test/unit/test-base-submgr.rb +24 -0
  241. data/test/unit/test-bin-trepanx.rb +48 -0
  242. data/test/unit/test-cmd-alias.rb +48 -0
  243. data/test/unit/test-cmd-break.rb +22 -0
  244. data/test/unit/test-cmd-exit.rb +27 -0
  245. data/test/unit/test-cmd-finish.rb +27 -0
  246. data/test/unit/test-cmd-help.rb +104 -0
  247. data/test/unit/test-cmd-kill.rb +47 -0
  248. data/test/unit/test-cmd-source.rb +34 -0
  249. data/test/unit/test-cmd-step.rb +29 -0
  250. data/test/unit/test-completion.rb +38 -0
  251. data/test/unit/test-intf-user.rb +46 -0
  252. data/test/unit/test-io-input.rb +27 -0
  253. data/test/unit/test-io-tcp.rb +33 -0
  254. data/test/unit/test-io-tcpclient.rb +54 -0
  255. data/test/unit/test-io-tcpfns.rb +17 -0
  256. data/test/unit/test-io-tcpserver.rb +50 -0
  257. data/test/unit/test-proc-eval.rb +36 -0
  258. data/test/unit/test-proc-frame.rb +79 -0
  259. data/test/unit/test-proc-help.rb +16 -0
  260. data/test/unit/test-proc-hook.rb +30 -0
  261. data/test/unit/test-proc-load_cmds.rb +50 -0
  262. data/test/unit/test-proc-location.rb +53 -0
  263. data/test/unit/test-proc-main.rb +99 -0
  264. data/test/unit/test-proc-validate.rb +91 -0
  265. data/test/unit/test-subcmd-help.rb +47 -0
  266. metadata +398 -0
@@ -0,0 +1,80 @@
1
+ # -*- coding: utf-8 -*-
2
+ # Copyright (C) 2011 Rocky Bernstein <rockyb@rubyforge.net>
3
+
4
+ # Interface for client (i.e. user to communication-device) interaction.
5
+ # The debugged program is at the other end of the communcation.
6
+
7
+ require 'rubygems'; require 'require_relative'
8
+ require_relative 'user'
9
+ require_relative '../io/tcpclient'
10
+ require_relative 'comcodes'
11
+
12
+ # Mfifoclient = import_relative('fifoclient', '..io', 'pydbgr')
13
+
14
+ # Interface for a user which is attached to a debugged process via
15
+ # some sort of communication medium (e.g. socket, tty, FIFOs). This
16
+ # could be on the same computer in a different process or on a remote
17
+ # computer.
18
+ class Trepan::ClientInterface < Trepan::Interface
19
+
20
+ DEFAULT_INIT_CONNECTION_OPTS = {
21
+ :open => true,
22
+ :io => :tcp
23
+ }
24
+
25
+ def initialize(inp=nil, out=nil, inout=nil, user_opts={},
26
+ connection_opts={})
27
+
28
+ @connection_opts = DEFAULT_INIT_CONNECTION_OPTS.merge(connection_opts)
29
+
30
+ @user = Trepan::UserInterface.new(inp, out, user_opts)
31
+
32
+ @inout =
33
+ if inout
34
+ inout
35
+ else
36
+ # @server_type = @connection_opts[:io]
37
+ # if 'FIFO' == self.server_type
38
+ # Mfifoclient.FIFOClient(opts=@connection_opts)
39
+ # elsif :tcp == self.server_type
40
+ Trepan::TCPDbgClient.new(@connection_opts)
41
+ # else
42
+ # errmsg("Expecting server type TCP or FIFO. Got: %s." %
43
+ # self.server_type)
44
+ # return
45
+ # end
46
+ end
47
+ end
48
+
49
+ def confirm(prompt, default)
50
+ @user.confirm(prompt, default)
51
+ end
52
+
53
+ def read_command(prompt='')
54
+ @user.read_command(prompt)
55
+ end
56
+
57
+ # Send a message back to the server (in contrast to the local user
58
+ # output channel).
59
+ def read_remote
60
+ coded_line = nil
61
+ until coded_line
62
+ coded_line = @inout.read_msg
63
+ end
64
+ control = coded_line[0..0]
65
+ remote_line = coded_line[1..-1]
66
+ [control, remote_line]
67
+ end
68
+
69
+ # Send a message back to the server (in contrast to the local user
70
+ # output channel).
71
+ def write_remote(code, msg)
72
+ # FIXME change into write_xxx
73
+ @inout.writeline(code + msg)
74
+ end
75
+ end
76
+
77
+ # Demo
78
+ if __FILE__ == $0
79
+ intf = Trepan::ClientInterface.new
80
+ end
@@ -0,0 +1,1072 @@
1
+ !RBIX
2
+ 0
3
+ x
4
+ M
5
+ 1
6
+ n
7
+ n
8
+ x
9
+ 10
10
+ __script__
11
+ i
12
+ 128
13
+ 5
14
+ 7
15
+ 0
16
+ 64
17
+ 47
18
+ 49
19
+ 1
20
+ 1
21
+ 15
22
+ 5
23
+ 7
24
+ 2
25
+ 64
26
+ 47
27
+ 49
28
+ 1
29
+ 1
30
+ 15
31
+ 5
32
+ 7
33
+ 3
34
+ 64
35
+ 47
36
+ 49
37
+ 4
38
+ 1
39
+ 15
40
+ 5
41
+ 7
42
+ 5
43
+ 64
44
+ 47
45
+ 49
46
+ 4
47
+ 1
48
+ 15
49
+ 5
50
+ 7
51
+ 6
52
+ 64
53
+ 47
54
+ 49
55
+ 4
56
+ 1
57
+ 15
58
+ 99
59
+ 7
60
+ 7
61
+ 45
62
+ 8
63
+ 9
64
+ 43
65
+ 10
66
+ 45
67
+ 8
68
+ 11
69
+ 49
70
+ 12
71
+ 3
72
+ 13
73
+ 99
74
+ 12
75
+ 7
76
+ 13
77
+ 12
78
+ 7
79
+ 14
80
+ 12
81
+ 65
82
+ 12
83
+ 49
84
+ 15
85
+ 4
86
+ 15
87
+ 49
88
+ 13
89
+ 0
90
+ 15
91
+ 65
92
+ 49
93
+ 16
94
+ 0
95
+ 99
96
+ 43
97
+ 17
98
+ 7
99
+ 18
100
+ 49
101
+ 19
102
+ 1
103
+ 83
104
+ 20
105
+ 9
106
+ 124
107
+ 45
108
+ 8
109
+ 21
110
+ 43
111
+ 7
112
+ 13
113
+ 71
114
+ 22
115
+ 47
116
+ 9
117
+ 117
118
+ 47
119
+ 49
120
+ 23
121
+ 0
122
+ 13
123
+ 47
124
+ 49
125
+ 24
126
+ 0
127
+ 15
128
+ 8
129
+ 120
130
+ 49
131
+ 22
132
+ 0
133
+ 19
134
+ 0
135
+ 8
136
+ 125
137
+ 1
138
+ 15
139
+ 2
140
+ 11
141
+ I
142
+ 7
143
+ I
144
+ 1
145
+ I
146
+ 0
147
+ I
148
+ 0
149
+ n
150
+ p
151
+ 25
152
+ s
153
+ 8
154
+ rubygems
155
+ x
156
+ 7
157
+ require
158
+ s
159
+ 16
160
+ require_relative
161
+ s
162
+ 4
163
+ user
164
+ x
165
+ 16
166
+ require_relative
167
+ s
168
+ 15
169
+ ../io/tcpclient
170
+ s
171
+ 8
172
+ comcodes
173
+ x
174
+ 15
175
+ ClientInterface
176
+ x
177
+ 6
178
+ Trepan
179
+ n
180
+ x
181
+ 9
182
+ Interface
183
+ n
184
+ x
185
+ 16
186
+ open_class_under
187
+ x
188
+ 14
189
+ __class_init__
190
+ M
191
+ 1
192
+ n
193
+ n
194
+ x
195
+ 15
196
+ ClientInterface
197
+ i
198
+ 103
199
+ 5
200
+ 66
201
+ 65
202
+ 7
203
+ 0
204
+ 44
205
+ 43
206
+ 1
207
+ 80
208
+ 49
209
+ 2
210
+ 1
211
+ 13
212
+ 7
213
+ 3
214
+ 2
215
+ 49
216
+ 4
217
+ 2
218
+ 15
219
+ 13
220
+ 7
221
+ 5
222
+ 7
223
+ 6
224
+ 49
225
+ 4
226
+ 2
227
+ 15
228
+ 49
229
+ 7
230
+ 2
231
+ 15
232
+ 99
233
+ 7
234
+ 8
235
+ 7
236
+ 9
237
+ 65
238
+ 67
239
+ 49
240
+ 10
241
+ 0
242
+ 49
243
+ 11
244
+ 4
245
+ 15
246
+ 99
247
+ 7
248
+ 12
249
+ 7
250
+ 13
251
+ 65
252
+ 67
253
+ 49
254
+ 10
255
+ 0
256
+ 49
257
+ 11
258
+ 4
259
+ 15
260
+ 99
261
+ 7
262
+ 14
263
+ 7
264
+ 15
265
+ 65
266
+ 67
267
+ 49
268
+ 10
269
+ 0
270
+ 49
271
+ 11
272
+ 4
273
+ 15
274
+ 99
275
+ 7
276
+ 16
277
+ 7
278
+ 17
279
+ 65
280
+ 67
281
+ 49
282
+ 10
283
+ 0
284
+ 49
285
+ 11
286
+ 4
287
+ 15
288
+ 99
289
+ 7
290
+ 18
291
+ 7
292
+ 19
293
+ 65
294
+ 67
295
+ 49
296
+ 10
297
+ 0
298
+ 49
299
+ 11
300
+ 4
301
+ 11
302
+ I
303
+ 6
304
+ I
305
+ 0
306
+ I
307
+ 0
308
+ I
309
+ 0
310
+ n
311
+ p
312
+ 20
313
+ x
314
+ 28
315
+ DEFAULT_INIT_CONNECTION_OPTS
316
+ x
317
+ 4
318
+ Hash
319
+ x
320
+ 16
321
+ new_from_literal
322
+ x
323
+ 4
324
+ open
325
+ x
326
+ 3
327
+ []=
328
+ x
329
+ 2
330
+ io
331
+ x
332
+ 3
333
+ tcp
334
+ x
335
+ 9
336
+ const_set
337
+ x
338
+ 10
339
+ initialize
340
+ M
341
+ 1
342
+ n
343
+ n
344
+ x
345
+ 10
346
+ initialize
347
+ i
348
+ 145
349
+ 23
350
+ 0
351
+ 10
352
+ 8
353
+ 1
354
+ 19
355
+ 0
356
+ 15
357
+ 23
358
+ 1
359
+ 10
360
+ 16
361
+ 1
362
+ 19
363
+ 1
364
+ 15
365
+ 23
366
+ 2
367
+ 10
368
+ 24
369
+ 1
370
+ 19
371
+ 2
372
+ 15
373
+ 23
374
+ 3
375
+ 10
376
+ 38
377
+ 44
378
+ 43
379
+ 0
380
+ 78
381
+ 49
382
+ 1
383
+ 1
384
+ 19
385
+ 3
386
+ 15
387
+ 23
388
+ 4
389
+ 10
390
+ 52
391
+ 44
392
+ 43
393
+ 0
394
+ 78
395
+ 49
396
+ 1
397
+ 1
398
+ 19
399
+ 4
400
+ 15
401
+ 45
402
+ 2
403
+ 3
404
+ 20
405
+ 4
406
+ 49
407
+ 4
408
+ 1
409
+ 38
410
+ 5
411
+ 15
412
+ 45
413
+ 6
414
+ 7
415
+ 43
416
+ 8
417
+ 13
418
+ 71
419
+ 9
420
+ 47
421
+ 9
422
+ 92
423
+ 47
424
+ 49
425
+ 10
426
+ 0
427
+ 13
428
+ 20
429
+ 0
430
+ 20
431
+ 1
432
+ 20
433
+ 3
434
+ 47
435
+ 49
436
+ 11
437
+ 3
438
+ 15
439
+ 8
440
+ 101
441
+ 20
442
+ 0
443
+ 20
444
+ 1
445
+ 20
446
+ 3
447
+ 49
448
+ 9
449
+ 3
450
+ 38
451
+ 12
452
+ 15
453
+ 20
454
+ 2
455
+ 9
456
+ 112
457
+ 20
458
+ 2
459
+ 8
460
+ 142
461
+ 45
462
+ 6
463
+ 13
464
+ 43
465
+ 14
466
+ 13
467
+ 71
468
+ 9
469
+ 47
470
+ 9
471
+ 137
472
+ 47
473
+ 49
474
+ 10
475
+ 0
476
+ 13
477
+ 39
478
+ 5
479
+ 47
480
+ 49
481
+ 11
482
+ 1
483
+ 15
484
+ 8
485
+ 142
486
+ 39
487
+ 5
488
+ 49
489
+ 9
490
+ 1
491
+ 38
492
+ 15
493
+ 11
494
+ I
495
+ a
496
+ I
497
+ 5
498
+ I
499
+ 0
500
+ I
501
+ 5
502
+ n
503
+ p
504
+ 16
505
+ x
506
+ 4
507
+ Hash
508
+ x
509
+ 16
510
+ new_from_literal
511
+ x
512
+ 28
513
+ DEFAULT_INIT_CONNECTION_OPTS
514
+ n
515
+ x
516
+ 5
517
+ merge
518
+ x
519
+ 16
520
+ @connection_opts
521
+ x
522
+ 6
523
+ Trepan
524
+ n
525
+ x
526
+ 13
527
+ UserInterface
528
+ x
529
+ 3
530
+ new
531
+ x
532
+ 8
533
+ allocate
534
+ x
535
+ 10
536
+ initialize
537
+ x
538
+ 5
539
+ @user
540
+ n
541
+ x
542
+ 12
543
+ TCPDbgClient
544
+ x
545
+ 6
546
+ @inout
547
+ p
548
+ 19
549
+ I
550
+ -1
551
+ I
552
+ 1a
553
+ I
554
+ 4
555
+ I
556
+ 19
557
+ I
558
+ 2a
559
+ I
560
+ 1a
561
+ I
562
+ 34
563
+ I
564
+ 1c
565
+ I
566
+ 3f
567
+ I
568
+ 1e
569
+ I
570
+ 68
571
+ I
572
+ 21
573
+ I
574
+ 6c
575
+ I
576
+ 22
577
+ I
578
+ 70
579
+ I
580
+ 28
581
+ I
582
+ 8e
583
+ I
584
+ 20
585
+ I
586
+ 91
587
+ x
588
+ 59
589
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
590
+ p
591
+ 5
592
+ x
593
+ 3
594
+ inp
595
+ x
596
+ 3
597
+ out
598
+ x
599
+ 5
600
+ inout
601
+ x
602
+ 9
603
+ user_opts
604
+ x
605
+ 15
606
+ connection_opts
607
+ x
608
+ 17
609
+ method_visibility
610
+ x
611
+ 15
612
+ add_defn_method
613
+ x
614
+ 7
615
+ confirm
616
+ M
617
+ 1
618
+ n
619
+ n
620
+ x
621
+ 7
622
+ confirm
623
+ i
624
+ 10
625
+ 39
626
+ 0
627
+ 20
628
+ 0
629
+ 20
630
+ 1
631
+ 49
632
+ 1
633
+ 2
634
+ 11
635
+ I
636
+ 5
637
+ I
638
+ 2
639
+ I
640
+ 2
641
+ I
642
+ 2
643
+ n
644
+ p
645
+ 2
646
+ x
647
+ 5
648
+ @user
649
+ x
650
+ 7
651
+ confirm
652
+ p
653
+ 5
654
+ I
655
+ -1
656
+ I
657
+ 31
658
+ I
659
+ 0
660
+ I
661
+ 32
662
+ I
663
+ a
664
+ x
665
+ 59
666
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
667
+ p
668
+ 2
669
+ x
670
+ 6
671
+ prompt
672
+ x
673
+ 7
674
+ default
675
+ x
676
+ 12
677
+ read_command
678
+ M
679
+ 1
680
+ n
681
+ n
682
+ x
683
+ 12
684
+ read_command
685
+ i
686
+ 18
687
+ 23
688
+ 0
689
+ 10
690
+ 10
691
+ 7
692
+ 0
693
+ 64
694
+ 19
695
+ 0
696
+ 15
697
+ 39
698
+ 1
699
+ 20
700
+ 0
701
+ 49
702
+ 2
703
+ 1
704
+ 11
705
+ I
706
+ 3
707
+ I
708
+ 1
709
+ I
710
+ 0
711
+ I
712
+ 1
713
+ n
714
+ p
715
+ 3
716
+ s
717
+ 0
718
+
719
+ x
720
+ 5
721
+ @user
722
+ x
723
+ 12
724
+ read_command
725
+ p
726
+ 5
727
+ I
728
+ -1
729
+ I
730
+ 35
731
+ I
732
+ a
733
+ I
734
+ 36
735
+ I
736
+ 12
737
+ x
738
+ 59
739
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
740
+ p
741
+ 1
742
+ x
743
+ 6
744
+ prompt
745
+ x
746
+ 11
747
+ read_remote
748
+ M
749
+ 1
750
+ n
751
+ n
752
+ x
753
+ 11
754
+ read_remote
755
+ i
756
+ 60
757
+ 1
758
+ 19
759
+ 0
760
+ 15
761
+ 20
762
+ 0
763
+ 10
764
+ 19
765
+ 39
766
+ 0
767
+ 49
768
+ 1
769
+ 0
770
+ 19
771
+ 0
772
+ 15
773
+ 68
774
+ 8
775
+ 4
776
+ 1
777
+ 15
778
+ 20
779
+ 0
780
+ 44
781
+ 43
782
+ 2
783
+ 78
784
+ 78
785
+ 49
786
+ 3
787
+ 2
788
+ 49
789
+ 4
790
+ 1
791
+ 19
792
+ 1
793
+ 15
794
+ 20
795
+ 0
796
+ 44
797
+ 43
798
+ 2
799
+ 79
800
+ 77
801
+ 49
802
+ 3
803
+ 2
804
+ 49
805
+ 4
806
+ 1
807
+ 19
808
+ 2
809
+ 15
810
+ 20
811
+ 1
812
+ 20
813
+ 2
814
+ 35
815
+ 2
816
+ 11
817
+ I
818
+ 7
819
+ I
820
+ 3
821
+ I
822
+ 0
823
+ I
824
+ 0
825
+ n
826
+ p
827
+ 5
828
+ x
829
+ 6
830
+ @inout
831
+ x
832
+ 8
833
+ read_msg
834
+ x
835
+ 5
836
+ Range
837
+ x
838
+ 3
839
+ new
840
+ x
841
+ 2
842
+ []
843
+ p
844
+ 15
845
+ I
846
+ -1
847
+ I
848
+ 3b
849
+ I
850
+ 0
851
+ I
852
+ 3c
853
+ I
854
+ 4
855
+ I
856
+ 3d
857
+ I
858
+ 8
859
+ I
860
+ 3e
861
+ I
862
+ 15
863
+ I
864
+ 40
865
+ I
866
+ 25
867
+ I
868
+ 41
869
+ I
870
+ 35
871
+ I
872
+ 42
873
+ I
874
+ 3c
875
+ x
876
+ 59
877
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
878
+ p
879
+ 3
880
+ x
881
+ 10
882
+ coded_line
883
+ x
884
+ 7
885
+ control
886
+ x
887
+ 11
888
+ remote_line
889
+ x
890
+ 12
891
+ write_remote
892
+ M
893
+ 1
894
+ n
895
+ n
896
+ x
897
+ 12
898
+ write_remote
899
+ i
900
+ 12
901
+ 39
902
+ 0
903
+ 20
904
+ 0
905
+ 20
906
+ 1
907
+ 81
908
+ 1
909
+ 49
910
+ 2
911
+ 1
912
+ 11
913
+ I
914
+ 5
915
+ I
916
+ 2
917
+ I
918
+ 2
919
+ I
920
+ 2
921
+ n
922
+ p
923
+ 3
924
+ x
925
+ 6
926
+ @inout
927
+ x
928
+ 1
929
+ +
930
+ x
931
+ 9
932
+ writeline
933
+ p
934
+ 5
935
+ I
936
+ -1
937
+ I
938
+ 47
939
+ I
940
+ 0
941
+ I
942
+ 49
943
+ I
944
+ c
945
+ x
946
+ 59
947
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
948
+ p
949
+ 2
950
+ x
951
+ 4
952
+ code
953
+ x
954
+ 3
955
+ msg
956
+ p
957
+ 19
958
+ I
959
+ 2
960
+ I
961
+ 14
962
+ I
963
+ 5
964
+ I
965
+ 17
966
+ I
967
+ d
968
+ I
969
+ 15
970
+ I
971
+ 15
972
+ I
973
+ 16
974
+ I
975
+ 21
976
+ I
977
+ 1a
978
+ I
979
+ 2f
980
+ I
981
+ 31
982
+ I
983
+ 3d
984
+ I
985
+ 35
986
+ I
987
+ 4b
988
+ I
989
+ 3b
990
+ I
991
+ 59
992
+ I
993
+ 47
994
+ I
995
+ 67
996
+ x
997
+ 59
998
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
999
+ p
1000
+ 0
1001
+ x
1002
+ 13
1003
+ attach_method
1004
+ x
1005
+ 11
1006
+ active_path
1007
+ x
1008
+ 7
1009
+ Globals
1010
+ x
1011
+ 2
1012
+ $0
1013
+ x
1014
+ 2
1015
+ []
1016
+ x
1017
+ 2
1018
+ ==
1019
+ n
1020
+ x
1021
+ 3
1022
+ new
1023
+ x
1024
+ 8
1025
+ allocate
1026
+ x
1027
+ 10
1028
+ initialize
1029
+ p
1030
+ 17
1031
+ I
1032
+ 0
1033
+ I
1034
+ 7
1035
+ I
1036
+ 12
1037
+ I
1038
+ 8
1039
+ I
1040
+ 1b
1041
+ I
1042
+ 9
1043
+ I
1044
+ 24
1045
+ I
1046
+ a
1047
+ I
1048
+ 2d
1049
+ I
1050
+ 12
1051
+ I
1052
+ 4e
1053
+ I
1054
+ 4e
1055
+ I
1056
+ 5e
1057
+ I
1058
+ 4f
1059
+ I
1060
+ 7c
1061
+ I
1062
+ 4e
1063
+ I
1064
+ 80
1065
+ x
1066
+ 59
1067
+ /home/rocky-rvm/.rvm/src/rbx-trepanning/interface/client.rb
1068
+ p
1069
+ 1
1070
+ x
1071
+ 4
1072
+ intf