debugger-ruby_core_source 1.1.8 → 1.1.9
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.
- data/CHANGELOG.md +3 -0
- data/lib/debugger/ruby_core_source.rb +1 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/addr2line.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/constant.h +34 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/debug.h +41 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/dln.h +50 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/encdb.h +167 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/eval_intern.h +234 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/gc.h +99 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/id.h +175 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/insns.inc +179 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/insns_info.inc +695 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/internal.h +239 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/iseq.h +126 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/known_errors.inc +731 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/method.h +105 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/node.h +503 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/node_name.inc +208 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/opt_sc.inc +670 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/optinsn.inc +30 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/optunifs.inc +116 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/parse.h +302 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/regenc.h +219 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/regint.h +850 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/regparse.h +362 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/revision.h +1 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/ruby_atomic.h +115 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/siphash.h +48 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/thread_pthread.h +51 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/thread_win32.h +40 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/timev.h +21 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/transcode_data.h +117 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/transdb.h +189 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/version.h +52 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm.inc +3054 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_core.h +763 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_exec.h +184 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_insnhelper.h +220 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_opts.h +51 -0
- data/lib/debugger/ruby_core_source/ruby-1.9.3-p392/vmtc.inc +97 -0
- data/lib/debugger/ruby_core_source/version.rb +1 -1
- metadata +40 -2
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
/* -*-c-*- *********************************************************/
|
|
2
|
+
/*******************************************************************/
|
|
3
|
+
/*******************************************************************/
|
|
4
|
+
/**
|
|
5
|
+
This file is for threaded code.
|
|
6
|
+
|
|
7
|
+
----
|
|
8
|
+
This file is auto generated by insns2vm.rb
|
|
9
|
+
DO NOT TOUCH!
|
|
10
|
+
|
|
11
|
+
If you want to fix something, you must edit 'template/vmtc.inc.tmpl'
|
|
12
|
+
or insns2vm.rb
|
|
13
|
+
*/
|
|
14
|
+
|
|
15
|
+
static const void *const insns_address_table[] = {
|
|
16
|
+
LABEL_PTR(nop),
|
|
17
|
+
LABEL_PTR(getlocal),
|
|
18
|
+
LABEL_PTR(setlocal),
|
|
19
|
+
LABEL_PTR(getspecial),
|
|
20
|
+
LABEL_PTR(setspecial),
|
|
21
|
+
LABEL_PTR(getdynamic),
|
|
22
|
+
LABEL_PTR(setdynamic),
|
|
23
|
+
LABEL_PTR(getinstancevariable),
|
|
24
|
+
LABEL_PTR(setinstancevariable),
|
|
25
|
+
LABEL_PTR(getclassvariable),
|
|
26
|
+
LABEL_PTR(setclassvariable),
|
|
27
|
+
LABEL_PTR(getconstant),
|
|
28
|
+
LABEL_PTR(setconstant),
|
|
29
|
+
LABEL_PTR(getglobal),
|
|
30
|
+
LABEL_PTR(setglobal),
|
|
31
|
+
LABEL_PTR(putnil),
|
|
32
|
+
LABEL_PTR(putself),
|
|
33
|
+
LABEL_PTR(putobject),
|
|
34
|
+
LABEL_PTR(putspecialobject),
|
|
35
|
+
LABEL_PTR(putiseq),
|
|
36
|
+
LABEL_PTR(putstring),
|
|
37
|
+
LABEL_PTR(concatstrings),
|
|
38
|
+
LABEL_PTR(tostring),
|
|
39
|
+
LABEL_PTR(toregexp),
|
|
40
|
+
LABEL_PTR(newarray),
|
|
41
|
+
LABEL_PTR(duparray),
|
|
42
|
+
LABEL_PTR(expandarray),
|
|
43
|
+
LABEL_PTR(concatarray),
|
|
44
|
+
LABEL_PTR(splatarray),
|
|
45
|
+
LABEL_PTR(checkincludearray),
|
|
46
|
+
LABEL_PTR(newhash),
|
|
47
|
+
LABEL_PTR(newrange),
|
|
48
|
+
LABEL_PTR(pop),
|
|
49
|
+
LABEL_PTR(dup),
|
|
50
|
+
LABEL_PTR(dupn),
|
|
51
|
+
LABEL_PTR(swap),
|
|
52
|
+
LABEL_PTR(reput),
|
|
53
|
+
LABEL_PTR(topn),
|
|
54
|
+
LABEL_PTR(setn),
|
|
55
|
+
LABEL_PTR(adjuststack),
|
|
56
|
+
LABEL_PTR(defined),
|
|
57
|
+
LABEL_PTR(trace),
|
|
58
|
+
LABEL_PTR(defineclass),
|
|
59
|
+
LABEL_PTR(send),
|
|
60
|
+
LABEL_PTR(invokesuper),
|
|
61
|
+
LABEL_PTR(invokeblock),
|
|
62
|
+
LABEL_PTR(leave),
|
|
63
|
+
LABEL_PTR(finish),
|
|
64
|
+
LABEL_PTR(throw),
|
|
65
|
+
LABEL_PTR(jump),
|
|
66
|
+
LABEL_PTR(branchif),
|
|
67
|
+
LABEL_PTR(branchunless),
|
|
68
|
+
LABEL_PTR(getinlinecache),
|
|
69
|
+
LABEL_PTR(onceinlinecache),
|
|
70
|
+
LABEL_PTR(setinlinecache),
|
|
71
|
+
LABEL_PTR(opt_case_dispatch),
|
|
72
|
+
LABEL_PTR(opt_checkenv),
|
|
73
|
+
LABEL_PTR(opt_plus),
|
|
74
|
+
LABEL_PTR(opt_minus),
|
|
75
|
+
LABEL_PTR(opt_mult),
|
|
76
|
+
LABEL_PTR(opt_div),
|
|
77
|
+
LABEL_PTR(opt_mod),
|
|
78
|
+
LABEL_PTR(opt_eq),
|
|
79
|
+
LABEL_PTR(opt_neq),
|
|
80
|
+
LABEL_PTR(opt_lt),
|
|
81
|
+
LABEL_PTR(opt_le),
|
|
82
|
+
LABEL_PTR(opt_gt),
|
|
83
|
+
LABEL_PTR(opt_ge),
|
|
84
|
+
LABEL_PTR(opt_ltlt),
|
|
85
|
+
LABEL_PTR(opt_aref),
|
|
86
|
+
LABEL_PTR(opt_aset),
|
|
87
|
+
LABEL_PTR(opt_length),
|
|
88
|
+
LABEL_PTR(opt_size),
|
|
89
|
+
LABEL_PTR(opt_succ),
|
|
90
|
+
LABEL_PTR(opt_not),
|
|
91
|
+
LABEL_PTR(opt_regexpmatch1),
|
|
92
|
+
LABEL_PTR(opt_regexpmatch2),
|
|
93
|
+
LABEL_PTR(opt_call_c_function),
|
|
94
|
+
LABEL_PTR(bitblt),
|
|
95
|
+
LABEL_PTR(answer),
|
|
96
|
+
};
|
|
97
|
+
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: debugger-ruby_core_source
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.1.
|
|
4
|
+
version: 1.1.9
|
|
5
5
|
prerelease:
|
|
6
6
|
platform: ruby
|
|
7
7
|
authors:
|
|
@@ -10,7 +10,7 @@ authors:
|
|
|
10
10
|
autorequire:
|
|
11
11
|
bindir: bin
|
|
12
12
|
cert_chain: []
|
|
13
|
-
date: 2013-02-
|
|
13
|
+
date: 2013-02-23 00:00:00.000000000Z
|
|
14
14
|
dependencies:
|
|
15
15
|
- !ruby/object:Gem::Dependency
|
|
16
16
|
name: archive-tar-minitar
|
|
@@ -152,6 +152,15 @@ files:
|
|
|
152
152
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/optunifs.inc
|
|
153
153
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm.inc
|
|
154
154
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/vmtc.inc
|
|
155
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/insns.inc
|
|
156
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/insns_info.inc
|
|
157
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/known_errors.inc
|
|
158
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/node_name.inc
|
|
159
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/opt_sc.inc
|
|
160
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/optinsn.inc
|
|
161
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/optunifs.inc
|
|
162
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm.inc
|
|
163
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vmtc.inc
|
|
155
164
|
- ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/debug.h
|
|
156
165
|
- ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/dln.h
|
|
157
166
|
- ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/encdb.h
|
|
@@ -452,6 +461,35 @@ files:
|
|
|
452
461
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_exec.h
|
|
453
462
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_insnhelper.h
|
|
454
463
|
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p385/vm_opts.h
|
|
464
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/addr2line.h
|
|
465
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/constant.h
|
|
466
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/debug.h
|
|
467
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/dln.h
|
|
468
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/encdb.h
|
|
469
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/eval_intern.h
|
|
470
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/gc.h
|
|
471
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/id.h
|
|
472
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/internal.h
|
|
473
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/iseq.h
|
|
474
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/method.h
|
|
475
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/node.h
|
|
476
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/parse.h
|
|
477
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/regenc.h
|
|
478
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/regint.h
|
|
479
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/regparse.h
|
|
480
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/revision.h
|
|
481
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/ruby_atomic.h
|
|
482
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/siphash.h
|
|
483
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/thread_pthread.h
|
|
484
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/thread_win32.h
|
|
485
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/timev.h
|
|
486
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/transcode_data.h
|
|
487
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/transdb.h
|
|
488
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/version.h
|
|
489
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_core.h
|
|
490
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_exec.h
|
|
491
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_insnhelper.h
|
|
492
|
+
- ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_opts.h
|
|
455
493
|
- ./Rakefile
|
|
456
494
|
- ./README.md
|
|
457
495
|
- ./CHANGELOG.md
|