debase-ruby_core_source 0.8.2 → 0.8.3

Sign up to get free protection for your applications and to get access to all the features.
Files changed (126) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +6 -0
  3. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/addr2line.h +21 -0
  4. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/constant.h +36 -0
  5. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/dln.h +50 -0
  6. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/encdb.h +169 -0
  7. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/eval_intern.h +241 -0
  8. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/gc.h +104 -0
  9. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/id.h +135 -0
  10. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/insns.inc +187 -0
  11. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/insns_info.inc +724 -0
  12. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/internal.h +395 -0
  13. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/iseq.h +140 -0
  14. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/known_errors.inc +731 -0
  15. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/method.h +141 -0
  16. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/node.h +541 -0
  17. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/node_name.inc +212 -0
  18. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/opt_sc.inc +702 -0
  19. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/optinsn.inc +83 -0
  20. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/optunifs.inc +120 -0
  21. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/parse.h +181 -0
  22. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/probes_helper.h +67 -0
  23. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/regenc.h +227 -0
  24. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/regint.h +915 -0
  25. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/regparse.h +367 -0
  26. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/revision.h +1 -0
  27. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/ruby_atomic.h +170 -0
  28. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/siphash.h +48 -0
  29. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/thread_pthread.h +56 -0
  30. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/thread_win32.h +45 -0
  31. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/timev.h +21 -0
  32. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/transcode_data.h +127 -0
  33. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/transdb.h +193 -0
  34. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/version.h +52 -0
  35. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm.inc +3196 -0
  36. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm_core.h +1020 -0
  37. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm_debug.h +41 -0
  38. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm_exec.h +173 -0
  39. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm_insnhelper.h +274 -0
  40. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vm_opts.h +56 -0
  41. data/lib/debase/ruby_core_source/ruby-2.0.0-p648/vmtc.inc +101 -0
  42. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/addr2line.h +21 -0
  43. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/constant.h +36 -0
  44. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/dln.h +51 -0
  45. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/encdb.h +170 -0
  46. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/eval_intern.h +270 -0
  47. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/gc.h +101 -0
  48. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/id.h +171 -0
  49. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/insns.inc +189 -0
  50. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/insns_info.inc +731 -0
  51. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/internal.h +896 -0
  52. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/iseq.h +136 -0
  53. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/known_errors.inc +731 -0
  54. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/method.h +145 -0
  55. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/node.h +543 -0
  56. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/node_name.inc +212 -0
  57. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/opt_sc.inc +710 -0
  58. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/optinsn.inc +83 -0
  59. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/optunifs.inc +121 -0
  60. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/parse.h +183 -0
  61. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/probes_helper.h +67 -0
  62. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/regenc.h +223 -0
  63. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/regint.h +911 -0
  64. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/regparse.h +363 -0
  65. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/revision.h +1 -0
  66. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/ruby_atomic.h +170 -0
  67. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/siphash.h +48 -0
  68. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/thread_native.h +23 -0
  69. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/thread_pthread.h +56 -0
  70. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/thread_win32.h +45 -0
  71. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/timev.h +42 -0
  72. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/transcode_data.h +123 -0
  73. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/transdb.h +190 -0
  74. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/version.h +52 -0
  75. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm.inc +3241 -0
  76. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm_core.h +1057 -0
  77. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm_debug.h +37 -0
  78. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm_exec.h +182 -0
  79. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm_insnhelper.h +273 -0
  80. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vm_opts.h +56 -0
  81. data/lib/debase/ruby_core_source/ruby-2.1.8-p440/vmtc.inc +102 -0
  82. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/addr2line.h +21 -0
  83. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ccan/build_assert/build_assert.h +40 -0
  84. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ccan/check_type/check_type.h +63 -0
  85. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ccan/container_of/container_of.h +142 -0
  86. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ccan/list/list.h +635 -0
  87. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ccan/str/str.h +16 -0
  88. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/constant.h +43 -0
  89. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/dln.h +51 -0
  90. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/eval_intern.h +275 -0
  91. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/gc.h +107 -0
  92. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/id.h +210 -0
  93. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/insns.inc +107 -0
  94. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/insns_info.inc +752 -0
  95. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/internal.h +1196 -0
  96. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/iseq.h +158 -0
  97. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/known_errors.inc +746 -0
  98. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/method.h +144 -0
  99. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/node.h +544 -0
  100. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/node_name.inc +212 -0
  101. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/opt_sc.inc +734 -0
  102. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/optinsn.inc +83 -0
  103. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/optunifs.inc +124 -0
  104. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/parse.h +184 -0
  105. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/probes_helper.h +67 -0
  106. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/regenc.h +234 -0
  107. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/regint.h +972 -0
  108. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/regparse.h +363 -0
  109. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/revision.h +1 -0
  110. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/ruby_atomic.h +170 -0
  111. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/siphash.h +48 -0
  112. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/symbol.h +88 -0
  113. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/thread_pthread.h +54 -0
  114. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/thread_win32.h +36 -0
  115. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/timev.h +42 -0
  116. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/transcode_data.h +123 -0
  117. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/version.h +52 -0
  118. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm.inc +3370 -0
  119. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm_core.h +1160 -0
  120. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm_debug.h +37 -0
  121. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm_exec.h +182 -0
  122. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm_insnhelper.h +233 -0
  123. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vm_opts.h +56 -0
  124. data/lib/debase/ruby_core_source/ruby-2.2.4-p230/vmtc.inc +105 -0
  125. data/lib/debase/ruby_core_source/version.rb +1 -1
  126. metadata +124 -2
@@ -0,0 +1,83 @@
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/optinsn.inc.tmpl'
12
+ or rb/insns2vm.rb
13
+ */
14
+
15
+ static INSN *
16
+ insn_operands_unification(INSN *insnobj){
17
+ #ifdef OPT_OPERANDS_UNIFICATION
18
+ /* optimize rule */
19
+ switch(insnobj->insn_id){
20
+
21
+ case BIN(getlocal):
22
+ if(
23
+ insnobj->operands[1] == INT2FIX(0)
24
+ ){
25
+ insnobj->insn_id = BIN(getlocal_OP__WC__0);
26
+ insnobj->operand_size = 1;
27
+ break;
28
+ }
29
+
30
+ if(
31
+ insnobj->operands[1] == INT2FIX(1)
32
+ ){
33
+ insnobj->insn_id = BIN(getlocal_OP__WC__1);
34
+ insnobj->operand_size = 1;
35
+ break;
36
+ }
37
+
38
+ break;
39
+ case BIN(setlocal):
40
+ if(
41
+ insnobj->operands[1] == INT2FIX(0)
42
+ ){
43
+ insnobj->insn_id = BIN(setlocal_OP__WC__0);
44
+ insnobj->operand_size = 1;
45
+ break;
46
+ }
47
+
48
+ if(
49
+ insnobj->operands[1] == INT2FIX(1)
50
+ ){
51
+ insnobj->insn_id = BIN(setlocal_OP__WC__1);
52
+ insnobj->operand_size = 1;
53
+ break;
54
+ }
55
+
56
+ break;
57
+ case BIN(putobject):
58
+ if(
59
+ insnobj->operands[0] == INT2FIX(0)
60
+ ){
61
+ insnobj->insn_id = BIN(putobject_OP_INT2FIX_O_0_C_);
62
+ insnobj->operand_size = 0;
63
+ break;
64
+ }
65
+
66
+ if(
67
+ insnobj->operands[0] == INT2FIX(1)
68
+ ){
69
+ insnobj->insn_id = BIN(putobject_OP_INT2FIX_O_1_C_);
70
+ insnobj->operand_size = 0;
71
+ break;
72
+ }
73
+
74
+ break;
75
+
76
+ default:
77
+ /* do nothing */;
78
+ break;
79
+ }
80
+ #endif
81
+ return insnobj;
82
+ }
83
+
@@ -0,0 +1,121 @@
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/optunifs.inc.tmpl'
12
+ or rb/insns2vm.rb
13
+ */
14
+
15
+ /*
16
+ static const int UNIFIED_insn_name_1[] = {id, size, ...};
17
+ static const int UNIFIED_insn_name_2[] = {id, size, ...};
18
+ ...
19
+
20
+ static const int *const UNIFIED_insn_name[] = {size,
21
+ UNIFIED_insn_name_1,
22
+ UNIFIED_insn_name_2, ...};
23
+ ...
24
+
25
+ static const int *const *const unified_insns_data[] = {
26
+ UNIFIED_insn_nameA,
27
+ UNIFIED_insn_nameB, ...};
28
+ */
29
+
30
+
31
+
32
+ static const int *const *const unified_insns_data[] = {
33
+ 0,
34
+ 0,
35
+ 0,
36
+ 0,
37
+ 0,
38
+ 0,
39
+ 0,
40
+ 0,
41
+ 0,
42
+ 0,
43
+ 0,
44
+ 0,
45
+ 0,
46
+ 0,
47
+ 0,
48
+ 0,
49
+ 0,
50
+ 0,
51
+ 0,
52
+ 0,
53
+ 0,
54
+ 0,
55
+ 0,
56
+ 0,
57
+ 0,
58
+ 0,
59
+ 0,
60
+ 0,
61
+ 0,
62
+ 0,
63
+ 0,
64
+ 0,
65
+ 0,
66
+ 0,
67
+ 0,
68
+ 0,
69
+ 0,
70
+ 0,
71
+ 0,
72
+ 0,
73
+ 0,
74
+ 0,
75
+ 0,
76
+ 0,
77
+ 0,
78
+ 0,
79
+ 0,
80
+ 0,
81
+ 0,
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0,
93
+ 0,
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 0,
101
+ 0,
102
+ 0,
103
+ 0,
104
+ 0,
105
+ 0,
106
+ 0,
107
+ 0,
108
+ 0,
109
+ 0,
110
+ 0,
111
+ 0,
112
+ 0,
113
+ 0,
114
+ 0,
115
+ 0,
116
+ 0,
117
+ 0};
118
+
119
+
120
+ #undef GET_INSN_NAME
121
+
@@ -0,0 +1,183 @@
1
+ /* A Bison parser, made by GNU Bison 2.5. */
2
+
3
+ /* Bison interface for Yacc-like parsers in C
4
+
5
+ Copyright (C) 1984, 1989-1990, 2000-2011 Free Software Foundation, Inc.
6
+
7
+ This program is free software: you can redistribute it and/or modify
8
+ it under the terms of the GNU General Public License as published by
9
+ the Free Software Foundation, either version 3 of the License, or
10
+ (at your option) any later version.
11
+
12
+ This program is distributed in the hope that it will be useful,
13
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
14
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15
+ GNU General Public License for more details.
16
+
17
+ You should have received a copy of the GNU General Public License
18
+ along with this program. If not, see <http://www.gnu.org/licenses/>. */
19
+
20
+ /* As a special exception, you may create a larger work that contains
21
+ part or all of the Bison parser skeleton and distribute that work
22
+ under terms of your choice, so long as that work isn't itself a
23
+ parser generator using the skeleton or a modified version thereof
24
+ as a parser skeleton. Alternatively, if you modify or redistribute
25
+ the parser skeleton itself, you may (at your option) remove this
26
+ special exception, which will cause the skeleton and the resulting
27
+ Bison output files to be licensed under the GNU General Public
28
+ License without this special exception.
29
+
30
+ This special exception was added by the Free Software Foundation in
31
+ version 2.2 of Bison. */
32
+
33
+
34
+ /* Tokens. */
35
+ #ifndef YYTOKENTYPE
36
+ # define YYTOKENTYPE
37
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
38
+ know about them. */
39
+ enum yytokentype {
40
+ END_OF_INPUT = 0,
41
+ keyword_class = 258,
42
+ keyword_module = 259,
43
+ keyword_def = 260,
44
+ keyword_undef = 261,
45
+ keyword_begin = 262,
46
+ keyword_rescue = 263,
47
+ keyword_ensure = 264,
48
+ keyword_end = 265,
49
+ keyword_if = 266,
50
+ keyword_unless = 267,
51
+ keyword_then = 268,
52
+ keyword_elsif = 269,
53
+ keyword_else = 270,
54
+ keyword_case = 271,
55
+ keyword_when = 272,
56
+ keyword_while = 273,
57
+ keyword_until = 274,
58
+ keyword_for = 275,
59
+ keyword_break = 276,
60
+ keyword_next = 277,
61
+ keyword_redo = 278,
62
+ keyword_retry = 279,
63
+ keyword_in = 280,
64
+ keyword_do = 281,
65
+ keyword_do_cond = 282,
66
+ keyword_do_block = 283,
67
+ keyword_do_LAMBDA = 284,
68
+ keyword_return = 285,
69
+ keyword_yield = 286,
70
+ keyword_super = 287,
71
+ keyword_self = 288,
72
+ keyword_nil = 289,
73
+ keyword_true = 290,
74
+ keyword_false = 291,
75
+ keyword_and = 292,
76
+ keyword_or = 293,
77
+ keyword_not = 294,
78
+ modifier_if = 295,
79
+ modifier_unless = 296,
80
+ modifier_while = 297,
81
+ modifier_until = 298,
82
+ modifier_rescue = 299,
83
+ keyword_alias = 300,
84
+ keyword_defined = 301,
85
+ keyword_BEGIN = 302,
86
+ keyword_END = 303,
87
+ keyword__LINE__ = 304,
88
+ keyword__FILE__ = 305,
89
+ keyword__ENCODING__ = 306,
90
+ tIDENTIFIER = 307,
91
+ tFID = 308,
92
+ tGVAR = 309,
93
+ tIVAR = 310,
94
+ tCONSTANT = 311,
95
+ tCVAR = 312,
96
+ tLABEL = 313,
97
+ tINTEGER = 314,
98
+ tFLOAT = 315,
99
+ tRATIONAL = 316,
100
+ tIMAGINARY = 317,
101
+ tSTRING_CONTENT = 318,
102
+ tCHAR = 319,
103
+ tNTH_REF = 320,
104
+ tBACK_REF = 321,
105
+ tREGEXP_END = 322,
106
+ tUPLUS = 130,
107
+ tUMINUS = 131,
108
+ tPOW = 132,
109
+ tCMP = 134,
110
+ tEQ = 139,
111
+ tEQQ = 140,
112
+ tNEQ = 141,
113
+ tGEQ = 138,
114
+ tLEQ = 137,
115
+ tANDOP = 323,
116
+ tOROP = 324,
117
+ tMATCH = 142,
118
+ tNMATCH = 143,
119
+ tDOT2 = 128,
120
+ tDOT3 = 129,
121
+ tAREF = 144,
122
+ tASET = 145,
123
+ tLSHFT = 135,
124
+ tRSHFT = 136,
125
+ tCOLON2 = 325,
126
+ tCOLON3 = 326,
127
+ tOP_ASGN = 327,
128
+ tASSOC = 328,
129
+ tLPAREN = 329,
130
+ tLPAREN_ARG = 330,
131
+ tRPAREN = 331,
132
+ tLBRACK = 332,
133
+ tLBRACE = 333,
134
+ tLBRACE_ARG = 334,
135
+ tSTAR = 335,
136
+ tDSTAR = 336,
137
+ tAMPER = 337,
138
+ tLAMBDA = 338,
139
+ tSYMBEG = 339,
140
+ tSTRING_BEG = 340,
141
+ tXSTRING_BEG = 341,
142
+ tREGEXP_BEG = 342,
143
+ tWORDS_BEG = 343,
144
+ tQWORDS_BEG = 344,
145
+ tSYMBOLS_BEG = 345,
146
+ tQSYMBOLS_BEG = 346,
147
+ tSTRING_DBEG = 347,
148
+ tSTRING_DEND = 348,
149
+ tSTRING_DVAR = 349,
150
+ tSTRING_END = 350,
151
+ tLAMBEG = 351,
152
+ tLOWEST = 352,
153
+ tUMINUS_NUM = 353,
154
+ tLAST_TOKEN = 354
155
+ };
156
+ #endif
157
+
158
+
159
+
160
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
161
+ typedef union YYSTYPE
162
+ {
163
+
164
+ /* Line 2068 of yacc.c */
165
+
166
+ VALUE val;
167
+ NODE *node;
168
+ ID id;
169
+ int num;
170
+ const struct vtable *vars;
171
+
172
+
173
+
174
+ /* Line 2068 of yacc.c */
175
+ } YYSTYPE;
176
+ # define YYSTYPE_IS_TRIVIAL 1
177
+ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
178
+ # define YYSTYPE_IS_DECLARED 1
179
+ #endif
180
+
181
+
182
+
183
+
@@ -0,0 +1,67 @@
1
+ #ifndef RUBY_PROBES_HELPER_H
2
+ #define RUBY_PROBES_HELPER_H
3
+
4
+ #include "ruby/ruby.h"
5
+ #include "probes.h"
6
+
7
+ VALUE rb_class_path_no_cache(VALUE _klass);
8
+
9
+ #define RUBY_DTRACE_HOOK(name, th, klazz, id) \
10
+ do { \
11
+ if (RUBY_DTRACE_##name##_ENABLED()) { \
12
+ VALUE _klass = (klazz); \
13
+ VALUE _id = (id); \
14
+ const char * classname; \
15
+ const char * methodname; \
16
+ const char * filename; \
17
+ if (!_klass) { \
18
+ rb_thread_method_id_and_class((th), &_id, &_klass); \
19
+ } \
20
+ if (_klass) { \
21
+ if (RB_TYPE_P(_klass, T_ICLASS)) { \
22
+ _klass = RBASIC(_klass)->klass; \
23
+ } \
24
+ else if (FL_TEST(_klass, FL_SINGLETON)) { \
25
+ _klass = rb_iv_get(_klass, "__attached__"); \
26
+ } \
27
+ switch (TYPE(_klass)) { \
28
+ case T_CLASS: \
29
+ case T_ICLASS: \
30
+ case T_MODULE: \
31
+ { \
32
+ VALUE _name = rb_class_path_no_cache(_klass); \
33
+ if (!NIL_P(_name)) { \
34
+ classname = StringValuePtr(_name); \
35
+ } \
36
+ else { \
37
+ classname = "<unknown>"; \
38
+ } \
39
+ methodname = rb_id2name(_id); \
40
+ filename = rb_sourcefile(); \
41
+ if (classname && methodname && filename) { \
42
+ RUBY_DTRACE_##name( \
43
+ classname, \
44
+ methodname, \
45
+ filename, \
46
+ rb_sourceline()); \
47
+ } \
48
+ break; \
49
+ } \
50
+ } \
51
+ } \
52
+ } \
53
+ } while (0)
54
+
55
+ #define RUBY_DTRACE_METHOD_ENTRY_HOOK(th, klass, id) \
56
+ RUBY_DTRACE_HOOK(METHOD_ENTRY, th, klass, id)
57
+
58
+ #define RUBY_DTRACE_METHOD_RETURN_HOOK(th, klass, id) \
59
+ RUBY_DTRACE_HOOK(METHOD_RETURN, th, klass, id)
60
+
61
+ #define RUBY_DTRACE_CMETHOD_ENTRY_HOOK(th, klass, id) \
62
+ RUBY_DTRACE_HOOK(CMETHOD_ENTRY, th, klass, id)
63
+
64
+ #define RUBY_DTRACE_CMETHOD_RETURN_HOOK(th, klass, id) \
65
+ RUBY_DTRACE_HOOK(CMETHOD_RETURN, th, klass, id)
66
+
67
+ #endif /* RUBY_PROBES_HELPER_H */