debugger-ruby_core_source 1.1.9 → 1.2.0

Sign up to get free protection for your applications and to get access to all the features.
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,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,120 @@
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
+
118
+
119
+ #undef GET_INSN_NAME
120
+
@@ -0,0 +1,292 @@
1
+ /* A Bison parser, made by GNU Bison 2.3. */
2
+
3
+ /* Skeleton interface for Bison's Yacc-like parsers in C
4
+
5
+ Copyright (C) 1984, 1989, 1990, 2000, 2001, 2002, 2003, 2004, 2005, 2006
6
+ Free Software Foundation, Inc.
7
+
8
+ This program is free software; you can redistribute it and/or modify
9
+ it under the terms of the GNU General Public License as published by
10
+ the Free Software Foundation; either version 2, or (at your option)
11
+ any later version.
12
+
13
+ This program is distributed in the hope that it will be useful,
14
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
15
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16
+ GNU General Public License for more details.
17
+
18
+ You should have received a copy of the GNU General Public License
19
+ along with this program; if not, write to the Free Software
20
+ Foundation, Inc., 51 Franklin Street, Fifth Floor,
21
+ Boston, MA 02110-1301, USA. */
22
+
23
+ /* As a special exception, you may create a larger work that contains
24
+ part or all of the Bison parser skeleton and distribute that work
25
+ under terms of your choice, so long as that work isn't itself a
26
+ parser generator using the skeleton or a modified version thereof
27
+ as a parser skeleton. Alternatively, if you modify or redistribute
28
+ the parser skeleton itself, you may (at your option) remove this
29
+ special exception, which will cause the skeleton and the resulting
30
+ Bison output files to be licensed under the GNU General Public
31
+ License without this special exception.
32
+
33
+ This special exception was added by the Free Software Foundation in
34
+ version 2.2 of Bison. */
35
+
36
+ /* Tokens. */
37
+ #ifndef YYTOKENTYPE
38
+ # define YYTOKENTYPE
39
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
40
+ know about them. */
41
+ enum yytokentype {
42
+ END_OF_INPUT = 0,
43
+ keyword_class = 258,
44
+ keyword_module = 259,
45
+ keyword_def = 260,
46
+ keyword_undef = 261,
47
+ keyword_begin = 262,
48
+ keyword_rescue = 263,
49
+ keyword_ensure = 264,
50
+ keyword_end = 265,
51
+ keyword_if = 266,
52
+ keyword_unless = 267,
53
+ keyword_then = 268,
54
+ keyword_elsif = 269,
55
+ keyword_else = 270,
56
+ keyword_case = 271,
57
+ keyword_when = 272,
58
+ keyword_while = 273,
59
+ keyword_until = 274,
60
+ keyword_for = 275,
61
+ keyword_break = 276,
62
+ keyword_next = 277,
63
+ keyword_redo = 278,
64
+ keyword_retry = 279,
65
+ keyword_in = 280,
66
+ keyword_do = 281,
67
+ keyword_do_cond = 282,
68
+ keyword_do_block = 283,
69
+ keyword_do_LAMBDA = 284,
70
+ keyword_return = 285,
71
+ keyword_yield = 286,
72
+ keyword_super = 287,
73
+ keyword_self = 288,
74
+ keyword_nil = 289,
75
+ keyword_true = 290,
76
+ keyword_false = 291,
77
+ keyword_and = 292,
78
+ keyword_or = 293,
79
+ keyword_not = 294,
80
+ modifier_if = 295,
81
+ modifier_unless = 296,
82
+ modifier_while = 297,
83
+ modifier_until = 298,
84
+ modifier_rescue = 299,
85
+ keyword_alias = 300,
86
+ keyword_defined = 301,
87
+ keyword_BEGIN = 302,
88
+ keyword_END = 303,
89
+ keyword__LINE__ = 304,
90
+ keyword__FILE__ = 305,
91
+ keyword__ENCODING__ = 306,
92
+ tIDENTIFIER = 307,
93
+ tFID = 308,
94
+ tGVAR = 309,
95
+ tIVAR = 310,
96
+ tCONSTANT = 311,
97
+ tCVAR = 312,
98
+ tLABEL = 313,
99
+ tINTEGER = 314,
100
+ tFLOAT = 315,
101
+ tSTRING_CONTENT = 316,
102
+ tCHAR = 317,
103
+ tNTH_REF = 318,
104
+ tBACK_REF = 319,
105
+ tREGEXP_END = 320,
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 = 321,
116
+ tOROP = 322,
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 = 323,
126
+ tCOLON3 = 324,
127
+ tOP_ASGN = 325,
128
+ tASSOC = 326,
129
+ tLPAREN = 327,
130
+ tLPAREN_ARG = 328,
131
+ tRPAREN = 329,
132
+ tLBRACK = 330,
133
+ tLBRACE = 331,
134
+ tLBRACE_ARG = 332,
135
+ tSTAR = 333,
136
+ tDSTAR = 334,
137
+ tAMPER = 335,
138
+ tLAMBDA = 336,
139
+ tSYMBEG = 337,
140
+ tSTRING_BEG = 338,
141
+ tXSTRING_BEG = 339,
142
+ tREGEXP_BEG = 340,
143
+ tWORDS_BEG = 341,
144
+ tQWORDS_BEG = 342,
145
+ tSYMBOLS_BEG = 343,
146
+ tQSYMBOLS_BEG = 344,
147
+ tSTRING_DBEG = 345,
148
+ tSTRING_DEND = 346,
149
+ tSTRING_DVAR = 347,
150
+ tSTRING_END = 348,
151
+ tLAMBEG = 349,
152
+ tLOWEST = 350,
153
+ tUMINUS_NUM = 351,
154
+ tLAST_TOKEN = 352
155
+ };
156
+ #endif
157
+ /* Tokens. */
158
+ #define END_OF_INPUT 0
159
+ #define keyword_class 258
160
+ #define keyword_module 259
161
+ #define keyword_def 260
162
+ #define keyword_undef 261
163
+ #define keyword_begin 262
164
+ #define keyword_rescue 263
165
+ #define keyword_ensure 264
166
+ #define keyword_end 265
167
+ #define keyword_if 266
168
+ #define keyword_unless 267
169
+ #define keyword_then 268
170
+ #define keyword_elsif 269
171
+ #define keyword_else 270
172
+ #define keyword_case 271
173
+ #define keyword_when 272
174
+ #define keyword_while 273
175
+ #define keyword_until 274
176
+ #define keyword_for 275
177
+ #define keyword_break 276
178
+ #define keyword_next 277
179
+ #define keyword_redo 278
180
+ #define keyword_retry 279
181
+ #define keyword_in 280
182
+ #define keyword_do 281
183
+ #define keyword_do_cond 282
184
+ #define keyword_do_block 283
185
+ #define keyword_do_LAMBDA 284
186
+ #define keyword_return 285
187
+ #define keyword_yield 286
188
+ #define keyword_super 287
189
+ #define keyword_self 288
190
+ #define keyword_nil 289
191
+ #define keyword_true 290
192
+ #define keyword_false 291
193
+ #define keyword_and 292
194
+ #define keyword_or 293
195
+ #define keyword_not 294
196
+ #define modifier_if 295
197
+ #define modifier_unless 296
198
+ #define modifier_while 297
199
+ #define modifier_until 298
200
+ #define modifier_rescue 299
201
+ #define keyword_alias 300
202
+ #define keyword_defined 301
203
+ #define keyword_BEGIN 302
204
+ #define keyword_END 303
205
+ #define keyword__LINE__ 304
206
+ #define keyword__FILE__ 305
207
+ #define keyword__ENCODING__ 306
208
+ #define tIDENTIFIER 307
209
+ #define tFID 308
210
+ #define tGVAR 309
211
+ #define tIVAR 310
212
+ #define tCONSTANT 311
213
+ #define tCVAR 312
214
+ #define tLABEL 313
215
+ #define tINTEGER 314
216
+ #define tFLOAT 315
217
+ #define tSTRING_CONTENT 316
218
+ #define tCHAR 317
219
+ #define tNTH_REF 318
220
+ #define tBACK_REF 319
221
+ #define tREGEXP_END 320
222
+ #define tUPLUS 130
223
+ #define tUMINUS 131
224
+ #define tPOW 132
225
+ #define tCMP 134
226
+ #define tEQ 139
227
+ #define tEQQ 140
228
+ #define tNEQ 141
229
+ #define tGEQ 138
230
+ #define tLEQ 137
231
+ #define tANDOP 321
232
+ #define tOROP 322
233
+ #define tMATCH 142
234
+ #define tNMATCH 143
235
+ #define tDOT2 128
236
+ #define tDOT3 129
237
+ #define tAREF 144
238
+ #define tASET 145
239
+ #define tLSHFT 135
240
+ #define tRSHFT 136
241
+ #define tCOLON2 323
242
+ #define tCOLON3 324
243
+ #define tOP_ASGN 325
244
+ #define tASSOC 326
245
+ #define tLPAREN 327
246
+ #define tLPAREN_ARG 328
247
+ #define tRPAREN 329
248
+ #define tLBRACK 330
249
+ #define tLBRACE 331
250
+ #define tLBRACE_ARG 332
251
+ #define tSTAR 333
252
+ #define tDSTAR 334
253
+ #define tAMPER 335
254
+ #define tLAMBDA 336
255
+ #define tSYMBEG 337
256
+ #define tSTRING_BEG 338
257
+ #define tXSTRING_BEG 339
258
+ #define tREGEXP_BEG 340
259
+ #define tWORDS_BEG 341
260
+ #define tQWORDS_BEG 342
261
+ #define tSYMBOLS_BEG 343
262
+ #define tQSYMBOLS_BEG 344
263
+ #define tSTRING_DBEG 345
264
+ #define tSTRING_DEND 346
265
+ #define tSTRING_DVAR 347
266
+ #define tSTRING_END 348
267
+ #define tLAMBEG 349
268
+ #define tLOWEST 350
269
+ #define tUMINUS_NUM 351
270
+ #define tLAST_TOKEN 352
271
+
272
+
273
+
274
+
275
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
276
+ typedef union YYSTYPE
277
+ {
278
+ VALUE val;
279
+ NODE *node;
280
+ ID id;
281
+ int num;
282
+ const struct vtable *vars;
283
+ }
284
+ /* Line 1489 of yacc.c. */
285
+ YYSTYPE;
286
+ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
287
+ # define YYSTYPE_IS_DECLARED 1
288
+ # define YYSTYPE_IS_TRIVIAL 1
289
+ #endif
290
+
291
+
292
+