debase-ruby_core_source 0.7.8 → 0.7.9
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +6 -0
- data/Rakefile +6 -3
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/constant.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/dln.h +50 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/encdb.h +169 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/eval_intern.h +241 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/gc.h +104 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/id.h +135 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/insns.inc +187 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/insns_info.inc +724 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/internal.h +395 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/iseq.h +140 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/known_errors.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/method.h +141 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/node.h +541 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/opt_sc.inc +702 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/optunifs.inc +120 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/parse.h +181 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/regenc.h +227 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/regint.h +915 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/regparse.h +367 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/thread_pthread.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/thread_win32.h +45 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/timev.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/transcode_data.h +127 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/transdb.h +193 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm.inc +3196 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm_core.h +1020 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm_debug.h +41 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm_exec.h +173 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm_insnhelper.h +274 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.0.0-p645/vmtc.inc +101 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/constant.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/encdb.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/eval_intern.h +270 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/gc.h +101 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/id.h +171 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/insns.inc +189 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/insns_info.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/internal.h +892 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/iseq.h +136 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/known_errors.inc +731 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/method.h +145 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/node.h +543 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/opt_sc.inc +710 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/optunifs.inc +121 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/parse.h +183 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/regenc.h +223 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/regint.h +911 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/regparse.h +363 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/thread_native.h +23 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/thread_pthread.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/thread_win32.h +45 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/timev.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/transcode_data.h +123 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/transdb.h +193 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm.inc +3243 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm_core.h +1057 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm_debug.h +37 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm_exec.h +182 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm_insnhelper.h +273 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.1.6-p336/vmtc.inc +102 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ccan/list/list.h +635 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ccan/str/str.h +16 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/constant.h +43 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/eval_intern.h +275 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/gc.h +107 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/id.h +210 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/insns.inc +107 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/insns_info.inc +752 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/internal.h +1185 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/iseq.h +158 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/known_errors.inc +746 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/method.h +144 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/node.h +544 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/node_name.inc +212 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/opt_sc.inc +734 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/optinsn.inc +83 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/optunifs.inc +124 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/parse.h +184 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/probes_helper.h +67 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/regenc.h +234 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/regint.h +972 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/regparse.h +363 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/revision.h +1 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/ruby_atomic.h +170 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/symbol.h +87 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/thread_pthread.h +54 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/thread_win32.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/timev.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/transcode_data.h +123 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/version.h +52 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm.inc +3353 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm_core.h +1161 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm_debug.h +37 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm_exec.h +182 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm_insnhelper.h +233 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vm_opts.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.2.2-p95/vmtc.inc +105 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- 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 tool/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,124 @@
|
|
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 tool/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
|
+
0,
|
119
|
+
0,
|
120
|
+
0};
|
121
|
+
|
122
|
+
|
123
|
+
#undef GET_INSN_NAME
|
124
|
+
|
@@ -0,0 +1,184 @@
|
|
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 = 148,
|
116
|
+
tOROP = 149,
|
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
|
+
tLABEL_END = 350,
|
153
|
+
tLOWEST = 351,
|
154
|
+
tUMINUS_NUM = 352,
|
155
|
+
tLAST_TOKEN = 353
|
156
|
+
};
|
157
|
+
#endif
|
158
|
+
|
159
|
+
|
160
|
+
|
161
|
+
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
162
|
+
typedef union YYSTYPE
|
163
|
+
{
|
164
|
+
|
165
|
+
/* Line 2068 of yacc.c */
|
166
|
+
|
167
|
+
VALUE val;
|
168
|
+
NODE *node;
|
169
|
+
ID id;
|
170
|
+
int num;
|
171
|
+
const struct vtable *vars;
|
172
|
+
|
173
|
+
|
174
|
+
|
175
|
+
/* Line 2068 of yacc.c */
|
176
|
+
} YYSTYPE;
|
177
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
178
|
+
# define yystype YYSTYPE /* obsolescent; will be withdrawn */
|
179
|
+
# define YYSTYPE_IS_DECLARED 1
|
180
|
+
#endif
|
181
|
+
|
182
|
+
|
183
|
+
|
184
|
+
|
@@ -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
|
+
ID _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 */
|