debugger-ruby_core_source 1.1.9 → 1.2.0

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 (42) hide show
  1. data/CHANGELOG.md +3 -0
  2. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/addr2line.h +21 -0
  3. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/constant.h +36 -0
  4. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/dln.h +50 -0
  5. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/encdb.h +169 -0
  6. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/eval_intern.h +213 -0
  7. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/gc.h +104 -0
  8. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/id.h +133 -0
  9. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/insns.inc +187 -0
  10. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/insns_info.inc +724 -0
  11. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/internal.h +378 -0
  12. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/iseq.h +139 -0
  13. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/known_errors.inc +731 -0
  14. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/method.h +138 -0
  15. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/node.h +539 -0
  16. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/node_name.inc +212 -0
  17. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/opt_sc.inc +702 -0
  18. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/optinsn.inc +83 -0
  19. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/optunifs.inc +120 -0
  20. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/parse.h +292 -0
  21. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/probes_helper.h +67 -0
  22. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/regenc.h +227 -0
  23. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/regint.h +914 -0
  24. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/regparse.h +367 -0
  25. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/revision.h +1 -0
  26. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/ruby_atomic.h +121 -0
  27. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/siphash.h +48 -0
  28. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/thread_pthread.h +56 -0
  29. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/thread_win32.h +45 -0
  30. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/timev.h +21 -0
  31. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/transcode_data.h +127 -0
  32. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/transdb.h +193 -0
  33. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/version.h +52 -0
  34. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm.inc +3199 -0
  35. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_core.h +1009 -0
  36. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_debug.h +41 -0
  37. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_exec.h +173 -0
  38. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_insnhelper.h +274 -0
  39. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_opts.h +56 -0
  40. data/lib/debugger/ruby_core_source/ruby-2.0.0-p0/vmtc.inc +101 -0
  41. data/lib/debugger/ruby_core_source/version.rb +1 -1
  42. metadata +41 -2
@@ -0,0 +1,56 @@
1
+ /*-*-c-*-*/
2
+ /**********************************************************************
3
+
4
+ vm_opts.h - VM optimize option
5
+
6
+ $Author: ko1 $
7
+
8
+ Copyright (C) 2004-2007 Koichi Sasada
9
+
10
+ **********************************************************************/
11
+
12
+
13
+ #ifndef RUBY_VM_OPTS_H
14
+ #define RUBY_VM_OPTS_H
15
+
16
+ /* Compile options.
17
+ * You can change these options at runtime by VM::CompileOption.
18
+ * Following definitions are default values.
19
+ */
20
+
21
+ #define OPT_TRACE_INSTRUCTION 1
22
+ #define OPT_TAILCALL_OPTIMIZATION 0
23
+ #define OPT_PEEPHOLE_OPTIMIZATION 1
24
+ #define OPT_SPECIALISED_INSTRUCTION 1
25
+ #define OPT_INLINE_CONST_CACHE 1
26
+
27
+
28
+ /* Build Options.
29
+ * You can't change these options at runtime.
30
+ */
31
+
32
+ /* C compiler depend */
33
+ #define OPT_DIRECT_THREADED_CODE 1
34
+ #define OPT_TOKEN_THREADED_CODE 0
35
+ #define OPT_CALL_THREADED_CODE 0
36
+
37
+ /* VM running option */
38
+ #define OPT_CHECKED_RUN 1
39
+ #define OPT_INLINE_METHOD_CACHE 1
40
+ #define OPT_GLOBAL_METHOD_CACHE 1
41
+ #define OPT_BLOCKINLINING 0
42
+
43
+ /* architecture independent, affects generated code */
44
+ #define OPT_OPERANDS_UNIFICATION 1
45
+ #define OPT_INSTRUCTIONS_UNIFICATION 0
46
+ #define OPT_UNIFY_ALL_COMBINATION 0
47
+ #define OPT_STACK_CACHING 0
48
+
49
+ /* misc */
50
+ #define SUPPORT_JOKE 0
51
+
52
+ #ifndef VM_COLLECT_USAGE_DETAILS
53
+ #define VM_COLLECT_USAGE_DETAILS 0
54
+ #endif
55
+
56
+ #endif /* RUBY_VM_OPTS_H */
@@ -0,0 +1,101 @@
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(getinstancevariable),
22
+ LABEL_PTR(setinstancevariable),
23
+ LABEL_PTR(getclassvariable),
24
+ LABEL_PTR(setclassvariable),
25
+ LABEL_PTR(getconstant),
26
+ LABEL_PTR(setconstant),
27
+ LABEL_PTR(getglobal),
28
+ LABEL_PTR(setglobal),
29
+ LABEL_PTR(putnil),
30
+ LABEL_PTR(putself),
31
+ LABEL_PTR(putobject),
32
+ LABEL_PTR(putspecialobject),
33
+ LABEL_PTR(putiseq),
34
+ LABEL_PTR(putstring),
35
+ LABEL_PTR(concatstrings),
36
+ LABEL_PTR(tostring),
37
+ LABEL_PTR(toregexp),
38
+ LABEL_PTR(newarray),
39
+ LABEL_PTR(duparray),
40
+ LABEL_PTR(expandarray),
41
+ LABEL_PTR(concatarray),
42
+ LABEL_PTR(splatarray),
43
+ LABEL_PTR(newhash),
44
+ LABEL_PTR(newrange),
45
+ LABEL_PTR(pop),
46
+ LABEL_PTR(dup),
47
+ LABEL_PTR(dupn),
48
+ LABEL_PTR(swap),
49
+ LABEL_PTR(reput),
50
+ LABEL_PTR(topn),
51
+ LABEL_PTR(setn),
52
+ LABEL_PTR(adjuststack),
53
+ LABEL_PTR(defined),
54
+ LABEL_PTR(checkmatch),
55
+ LABEL_PTR(trace),
56
+ LABEL_PTR(defineclass),
57
+ LABEL_PTR(send),
58
+ LABEL_PTR(opt_send_simple),
59
+ LABEL_PTR(invokesuper),
60
+ LABEL_PTR(invokeblock),
61
+ LABEL_PTR(leave),
62
+ LABEL_PTR(throw),
63
+ LABEL_PTR(jump),
64
+ LABEL_PTR(branchif),
65
+ LABEL_PTR(branchunless),
66
+ LABEL_PTR(getinlinecache),
67
+ LABEL_PTR(onceinlinecache),
68
+ LABEL_PTR(setinlinecache),
69
+ LABEL_PTR(opt_case_dispatch),
70
+ LABEL_PTR(opt_plus),
71
+ LABEL_PTR(opt_minus),
72
+ LABEL_PTR(opt_mult),
73
+ LABEL_PTR(opt_div),
74
+ LABEL_PTR(opt_mod),
75
+ LABEL_PTR(opt_eq),
76
+ LABEL_PTR(opt_neq),
77
+ LABEL_PTR(opt_lt),
78
+ LABEL_PTR(opt_le),
79
+ LABEL_PTR(opt_gt),
80
+ LABEL_PTR(opt_ge),
81
+ LABEL_PTR(opt_ltlt),
82
+ LABEL_PTR(opt_aref),
83
+ LABEL_PTR(opt_aset),
84
+ LABEL_PTR(opt_length),
85
+ LABEL_PTR(opt_size),
86
+ LABEL_PTR(opt_empty_p),
87
+ LABEL_PTR(opt_succ),
88
+ LABEL_PTR(opt_not),
89
+ LABEL_PTR(opt_regexpmatch1),
90
+ LABEL_PTR(opt_regexpmatch2),
91
+ LABEL_PTR(opt_call_c_function),
92
+ LABEL_PTR(bitblt),
93
+ LABEL_PTR(answer),
94
+ LABEL_PTR(getlocal_OP__WC__0),
95
+ LABEL_PTR(getlocal_OP__WC__1),
96
+ LABEL_PTR(setlocal_OP__WC__0),
97
+ LABEL_PTR(setlocal_OP__WC__1),
98
+ LABEL_PTR(putobject_OP_INT2FIX_O_0_C_),
99
+ LABEL_PTR(putobject_OP_INT2FIX_O_1_C_),
100
+ };
101
+
@@ -1,5 +1,5 @@
1
1
  module Debugger
2
2
  module RubyCoreSource
3
- VERSION = '1.1.9'
3
+ VERSION = '1.2.0'
4
4
  end
5
5
  end
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.9
4
+ version: 1.2.0
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-23 00:00:00.000000000Z
13
+ date: 2013-02-24 00:00:00.000000000Z
14
14
  dependencies:
15
15
  - !ruby/object:Gem::Dependency
16
16
  name: archive-tar-minitar
@@ -161,6 +161,15 @@ files:
161
161
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/optunifs.inc
162
162
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm.inc
163
163
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vmtc.inc
164
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/insns.inc
165
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/insns_info.inc
166
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/known_errors.inc
167
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/node_name.inc
168
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/opt_sc.inc
169
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/optinsn.inc
170
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/optunifs.inc
171
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm.inc
172
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vmtc.inc
164
173
  - ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/debug.h
165
174
  - ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/dln.h
166
175
  - ./lib/debugger/ruby_core_source/ruby-1.9.2-p290/encdb.h
@@ -490,6 +499,36 @@ files:
490
499
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_exec.h
491
500
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_insnhelper.h
492
501
  - ./lib/debugger/ruby_core_source/ruby-1.9.3-p392/vm_opts.h
502
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/addr2line.h
503
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/constant.h
504
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/dln.h
505
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/encdb.h
506
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/eval_intern.h
507
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/gc.h
508
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/id.h
509
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/internal.h
510
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/iseq.h
511
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/method.h
512
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/node.h
513
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/parse.h
514
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/probes_helper.h
515
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/regenc.h
516
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/regint.h
517
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/regparse.h
518
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/revision.h
519
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/ruby_atomic.h
520
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/siphash.h
521
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/thread_pthread.h
522
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/thread_win32.h
523
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/timev.h
524
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/transcode_data.h
525
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/transdb.h
526
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/version.h
527
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_core.h
528
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_debug.h
529
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_exec.h
530
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_insnhelper.h
531
+ - ./lib/debugger/ruby_core_source/ruby-2.0.0-p0/vm_opts.h
493
532
  - ./Rakefile
494
533
  - ./README.md
495
534
  - ./CHANGELOG.md