bindex 0.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +7 -0
- data/.gitignore +16 -0
- data/.travis.yml +48 -0
- data/CONTRIBUTING.md +15 -0
- data/Gemfile +10 -0
- data/LICENSE.txt +22 -0
- data/README.md +38 -0
- data/Rakefile +48 -0
- data/bindex.gemspec +27 -0
- data/ext/bindex/bindex.h +11 -0
- data/ext/bindex/bindings.c +106 -0
- data/ext/bindex/com/gsamokovarov/bindex/BindingBuilder.java.erb +17 -0
- data/ext/bindex/com/gsamokovarov/bindex/CurrentBindingsIterator.java +54 -0
- data/ext/bindex/com/gsamokovarov/bindex/RubyBindingsCollector.java +34 -0
- data/ext/bindex/com/gsamokovarov/bindex/SetExceptionBindingsEventHook.java +21 -0
- data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInterfaceException.java +14 -0
- data/ext/bindex/com/gsamokovarov/bindex/ThreadContextInternals.java +54 -0
- data/ext/bindex/cruby.c +34 -0
- data/ext/bindex/extconf.rb +29 -0
- data/ext/bindex/ruby_193.h +101 -0
- data/ext/bindex/ruby_193/addr2line.h +21 -0
- data/ext/bindex/ruby_193/constant.h +34 -0
- data/ext/bindex/ruby_193/debug.h +41 -0
- data/ext/bindex/ruby_193/dln.h +50 -0
- data/ext/bindex/ruby_193/encdb.h +167 -0
- data/ext/bindex/ruby_193/eval_intern.h +234 -0
- data/ext/bindex/ruby_193/gc.h +99 -0
- data/ext/bindex/ruby_193/id.h +177 -0
- data/ext/bindex/ruby_193/internal.h +242 -0
- data/ext/bindex/ruby_193/iseq.h +126 -0
- data/ext/bindex/ruby_193/method.h +105 -0
- data/ext/bindex/ruby_193/node.h +504 -0
- data/ext/bindex/ruby_193/parse.h +302 -0
- data/ext/bindex/ruby_193/probes.h +369 -0
- data/ext/bindex/ruby_193/regenc.h +219 -0
- data/ext/bindex/ruby_193/regint.h +850 -0
- data/ext/bindex/ruby_193/regparse.h +362 -0
- data/ext/bindex/ruby_193/revision.h +1 -0
- data/ext/bindex/ruby_193/ruby_atomic.h +175 -0
- data/ext/bindex/ruby_193/siphash.h +48 -0
- data/ext/bindex/ruby_193/thread_pthread.h +51 -0
- data/ext/bindex/ruby_193/thread_win32.h +40 -0
- data/ext/bindex/ruby_193/timev.h +21 -0
- data/ext/bindex/ruby_193/transcode_data.h +117 -0
- data/ext/bindex/ruby_193/transdb.h +186 -0
- data/ext/bindex/ruby_193/verconf.h +12 -0
- data/ext/bindex/ruby_193/version.h +52 -0
- data/ext/bindex/ruby_193/vm_core.h +763 -0
- data/ext/bindex/ruby_193/vm_exec.h +184 -0
- data/ext/bindex/ruby_193/vm_insnhelper.h +220 -0
- data/ext/bindex/ruby_193/vm_opts.h +51 -0
- data/ext/bindex/ruby_20.h +142 -0
- data/ext/bindex/ruby_20/addr2line.h +21 -0
- data/ext/bindex/ruby_20/constant.h +36 -0
- data/ext/bindex/ruby_20/dln.h +50 -0
- data/ext/bindex/ruby_20/encdb.h +169 -0
- data/ext/bindex/ruby_20/eval_intern.h +241 -0
- data/ext/bindex/ruby_20/gc.h +104 -0
- data/ext/bindex/ruby_20/id.h +135 -0
- data/ext/bindex/ruby_20/internal.h +395 -0
- data/ext/bindex/ruby_20/iseq.h +140 -0
- data/ext/bindex/ruby_20/method.h +138 -0
- data/ext/bindex/ruby_20/node.h +541 -0
- data/ext/bindex/ruby_20/parse.h +292 -0
- data/ext/bindex/ruby_20/probes.h +369 -0
- data/ext/bindex/ruby_20/probes_helper.h +67 -0
- data/ext/bindex/ruby_20/regenc.h +227 -0
- data/ext/bindex/ruby_20/regint.h +915 -0
- data/ext/bindex/ruby_20/regparse.h +367 -0
- data/ext/bindex/ruby_20/revision.h +1 -0
- data/ext/bindex/ruby_20/ruby_atomic.h +170 -0
- data/ext/bindex/ruby_20/siphash.h +48 -0
- data/ext/bindex/ruby_20/thread_pthread.h +56 -0
- data/ext/bindex/ruby_20/thread_win32.h +45 -0
- data/ext/bindex/ruby_20/timev.h +21 -0
- data/ext/bindex/ruby_20/transcode_data.h +127 -0
- data/ext/bindex/ruby_20/transdb.h +190 -0
- data/ext/bindex/ruby_20/verconf.h +12 -0
- data/ext/bindex/ruby_20/version.h +52 -0
- data/ext/bindex/ruby_20/vm_core.h +1018 -0
- data/ext/bindex/ruby_20/vm_debug.h +41 -0
- data/ext/bindex/ruby_20/vm_exec.h +173 -0
- data/ext/bindex/ruby_20/vm_insnhelper.h +274 -0
- data/ext/bindex/ruby_20/vm_opts.h +56 -0
- data/ext/bindex/ruby_21.h +142 -0
- data/ext/bindex/ruby_21/addr2line.h +21 -0
- data/ext/bindex/ruby_21/constant.h +36 -0
- data/ext/bindex/ruby_21/dln.h +51 -0
- data/ext/bindex/ruby_21/encdb.h +170 -0
- data/ext/bindex/ruby_21/eval_intern.h +260 -0
- data/ext/bindex/ruby_21/gc.h +101 -0
- data/ext/bindex/ruby_21/id.h +210 -0
- data/ext/bindex/ruby_21/internal.h +889 -0
- data/ext/bindex/ruby_21/iseq.h +136 -0
- data/ext/bindex/ruby_21/method.h +142 -0
- data/ext/bindex/ruby_21/node.h +543 -0
- data/ext/bindex/ruby_21/parse.h +298 -0
- data/ext/bindex/ruby_21/probes.h +401 -0
- data/ext/bindex/ruby_21/probes_helper.h +67 -0
- data/ext/bindex/ruby_21/regenc.h +223 -0
- data/ext/bindex/ruby_21/regint.h +911 -0
- data/ext/bindex/ruby_21/regparse.h +363 -0
- data/ext/bindex/ruby_21/revision.h +1 -0
- data/ext/bindex/ruby_21/ruby_atomic.h +170 -0
- data/ext/bindex/ruby_21/siphash.h +48 -0
- data/ext/bindex/ruby_21/thread_native.h +23 -0
- data/ext/bindex/ruby_21/thread_pthread.h +56 -0
- data/ext/bindex/ruby_21/thread_win32.h +45 -0
- data/ext/bindex/ruby_21/timev.h +42 -0
- data/ext/bindex/ruby_21/transcode_data.h +123 -0
- data/ext/bindex/ruby_21/transdb.h +190 -0
- data/ext/bindex/ruby_21/verconf.h +13 -0
- data/ext/bindex/ruby_21/version.h +52 -0
- data/ext/bindex/ruby_21/vm_core.h +1043 -0
- data/ext/bindex/ruby_21/vm_debug.h +37 -0
- data/ext/bindex/ruby_21/vm_exec.h +182 -0
- data/ext/bindex/ruby_21/vm_insnhelper.h +273 -0
- data/ext/bindex/ruby_21/vm_opts.h +56 -0
- data/ext/bindex/ruby_21preview.h +146 -0
- data/ext/bindex/ruby_21preview/addr2line.h +21 -0
- data/ext/bindex/ruby_21preview/constant.h +36 -0
- data/ext/bindex/ruby_21preview/dln.h +51 -0
- data/ext/bindex/ruby_21preview/encdb.h +270 -0
- data/ext/bindex/ruby_21preview/eval_intern.h +217 -0
- data/ext/bindex/ruby_21preview/gc.h +100 -0
- data/ext/bindex/ruby_21preview/id.h +169 -0
- data/ext/bindex/ruby_21preview/internal.h +765 -0
- data/ext/bindex/ruby_21preview/iseq.h +136 -0
- data/ext/bindex/ruby_21preview/method.h +141 -0
- data/ext/bindex/ruby_21preview/node.h +543 -0
- data/ext/bindex/ruby_21preview/parse.h +298 -0
- data/ext/bindex/ruby_21preview/probes.h +385 -0
- data/ext/bindex/ruby_21preview/probes_helper.h +67 -0
- data/ext/bindex/ruby_21preview/regenc.h +223 -0
- data/ext/bindex/ruby_21preview/regint.h +911 -0
- data/ext/bindex/ruby_21preview/regparse.h +363 -0
- data/ext/bindex/ruby_21preview/revision.h +1 -0
- data/ext/bindex/ruby_21preview/ruby_atomic.h +130 -0
- data/ext/bindex/ruby_21preview/siphash.h +48 -0
- data/ext/bindex/ruby_21preview/thread_native.h +23 -0
- data/ext/bindex/ruby_21preview/thread_pthread.h +56 -0
- data/ext/bindex/ruby_21preview/thread_win32.h +45 -0
- data/ext/bindex/ruby_21preview/timev.h +42 -0
- data/ext/bindex/ruby_21preview/transcode_data.h +123 -0
- data/ext/bindex/ruby_21preview/transdb.h +190 -0
- data/ext/bindex/ruby_21preview/verconf.h +13 -0
- data/ext/bindex/ruby_21preview/version.h +53 -0
- data/ext/bindex/ruby_21preview/vm_core.h +1017 -0
- data/ext/bindex/ruby_21preview/vm_debug.h +37 -0
- data/ext/bindex/ruby_21preview/vm_exec.h +180 -0
- data/ext/bindex/ruby_21preview/vm_insnhelper.h +272 -0
- data/ext/bindex/ruby_21preview/vm_opts.h +56 -0
- data/lib/bindex.rb +10 -0
- data/lib/bindex/jruby.rb +20 -0
- data/lib/bindex/jruby_internals.jar +0 -0
- data/lib/bindex/jruby_internals_9k.jar +0 -0
- data/lib/bindex/rubinius.rb +56 -0
- data/lib/bindex/version.rb +3 -0
- data/test/exception_test.rb +45 -0
- data/test/fixtures/basic_nested_fixture.rb +13 -0
- data/test/fixtures/custom_error_fixture.rb +9 -0
- data/test/fixtures/eval_nested_fixture.rb +13 -0
- data/test/fixtures/flat_fixture.rb +7 -0
- data/test/test_helper.rb +17 -0
- metadata +270 -0
@@ -0,0 +1,142 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
Copyright (C) 1993-2013 Yukihiro Matsumoto. All rights reserved.
|
4
|
+
|
5
|
+
Redistribution and use in source and binary forms, with or without
|
6
|
+
modification, are permitted provided that the following conditions
|
7
|
+
are met:
|
8
|
+
1. Redistributions of source code must retain the above copyright
|
9
|
+
notice, this list of conditions and the following disclaimer.
|
10
|
+
2. Redistributions in binary form must reproduce the above copyright
|
11
|
+
notice, this list of conditions and the following disclaimer in the
|
12
|
+
documentation and/or other materials provided with the distribution.
|
13
|
+
|
14
|
+
THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
15
|
+
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
16
|
+
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
17
|
+
ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
18
|
+
FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
19
|
+
DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
20
|
+
OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
21
|
+
HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
22
|
+
LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
23
|
+
OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
24
|
+
SUCH DAMAGE.
|
25
|
+
|
26
|
+
**********************************************************************/
|
27
|
+
#ifndef _RUBY_20_H
|
28
|
+
#define _RUBY_20_H
|
29
|
+
|
30
|
+
#include "ruby_20/internal.h"
|
31
|
+
#include "ruby_20/method.h"
|
32
|
+
#include "ruby_20/vm_core.h"
|
33
|
+
|
34
|
+
typedef struct rb_backtrace_location_struct {
|
35
|
+
enum LOCATION_TYPE {
|
36
|
+
LOCATION_TYPE_ISEQ = 1,
|
37
|
+
LOCATION_TYPE_ISEQ_CALCED,
|
38
|
+
LOCATION_TYPE_CFUNC,
|
39
|
+
LOCATION_TYPE_IFUNC
|
40
|
+
} type;
|
41
|
+
|
42
|
+
union {
|
43
|
+
struct {
|
44
|
+
const rb_iseq_t *iseq;
|
45
|
+
union {
|
46
|
+
const VALUE *pc;
|
47
|
+
int lineno;
|
48
|
+
} lineno;
|
49
|
+
} iseq;
|
50
|
+
struct {
|
51
|
+
ID mid;
|
52
|
+
struct rb_backtrace_location_struct *prev_loc;
|
53
|
+
} cfunc;
|
54
|
+
} body;
|
55
|
+
} rb_backtrace_location_t;
|
56
|
+
|
57
|
+
typedef struct rb_backtrace_struct {
|
58
|
+
rb_backtrace_location_t *backtrace;
|
59
|
+
rb_backtrace_location_t *backtrace_base;
|
60
|
+
int backtrace_size;
|
61
|
+
VALUE strary;
|
62
|
+
} rb_backtrace_t;
|
63
|
+
|
64
|
+
static void
|
65
|
+
location_mark_entry(rb_backtrace_location_t *fi)
|
66
|
+
{
|
67
|
+
switch (fi->type) {
|
68
|
+
case LOCATION_TYPE_ISEQ:
|
69
|
+
case LOCATION_TYPE_ISEQ_CALCED:
|
70
|
+
rb_gc_mark(fi->body.iseq.iseq->self);
|
71
|
+
break;
|
72
|
+
case LOCATION_TYPE_CFUNC:
|
73
|
+
case LOCATION_TYPE_IFUNC:
|
74
|
+
default:
|
75
|
+
break;
|
76
|
+
}
|
77
|
+
}
|
78
|
+
|
79
|
+
static void
|
80
|
+
backtrace_mark(void *ptr)
|
81
|
+
{
|
82
|
+
if (ptr) {
|
83
|
+
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
84
|
+
size_t i, s = bt->backtrace_size;
|
85
|
+
|
86
|
+
for (i=0; i<s; i++) {
|
87
|
+
location_mark_entry(&bt->backtrace[i]);
|
88
|
+
rb_gc_mark(bt->strary);
|
89
|
+
}
|
90
|
+
}
|
91
|
+
}
|
92
|
+
|
93
|
+
static void
|
94
|
+
backtrace_free(void *ptr)
|
95
|
+
{
|
96
|
+
if (ptr) {
|
97
|
+
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
98
|
+
if (bt->backtrace) ruby_xfree(bt->backtrace_base);
|
99
|
+
ruby_xfree(bt);
|
100
|
+
}
|
101
|
+
}
|
102
|
+
|
103
|
+
static size_t
|
104
|
+
backtrace_memsize(const void *ptr)
|
105
|
+
{
|
106
|
+
rb_backtrace_t *bt = (rb_backtrace_t *)ptr;
|
107
|
+
return sizeof(rb_backtrace_t) + sizeof(rb_backtrace_location_t) * bt->backtrace_size;
|
108
|
+
}
|
109
|
+
|
110
|
+
static const rb_data_type_t backtrace_data_type = {
|
111
|
+
"backtrace",
|
112
|
+
{backtrace_mark, backtrace_free, backtrace_memsize,},
|
113
|
+
};
|
114
|
+
|
115
|
+
int
|
116
|
+
rb_backtrace_p(VALUE obj)
|
117
|
+
{
|
118
|
+
return rb_typeddata_is_kind_of(obj, &backtrace_data_type);
|
119
|
+
}
|
120
|
+
|
121
|
+
VALUE
|
122
|
+
rb_check_backtrace(VALUE bt)
|
123
|
+
{
|
124
|
+
long i;
|
125
|
+
static const char err[] = "backtrace must be Array of String";
|
126
|
+
|
127
|
+
if (!NIL_P(bt)) {
|
128
|
+
if (RB_TYPE_P(bt, T_STRING)) return rb_ary_new3(1, bt);
|
129
|
+
if (rb_backtrace_p(bt)) return bt;
|
130
|
+
if (!RB_TYPE_P(bt, T_ARRAY)) {
|
131
|
+
rb_raise(rb_eTypeError, err);
|
132
|
+
}
|
133
|
+
for (i=0;i<RARRAY_LEN(bt);i++) {
|
134
|
+
if (!RB_TYPE_P(RARRAY_PTR(bt)[i], T_STRING)) {
|
135
|
+
rb_raise(rb_eTypeError, err);
|
136
|
+
}
|
137
|
+
}
|
138
|
+
}
|
139
|
+
return bt;
|
140
|
+
}
|
141
|
+
|
142
|
+
#endif
|
@@ -0,0 +1,21 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
addr2line.h -
|
4
|
+
|
5
|
+
$Author$
|
6
|
+
|
7
|
+
Copyright (C) 2010 Shinichiro Hamaji
|
8
|
+
|
9
|
+
**********************************************************************/
|
10
|
+
|
11
|
+
#ifndef RUBY_ADDR2LINE_H
|
12
|
+
#define RUBY_ADDR2LINE_H
|
13
|
+
|
14
|
+
#ifdef USE_ELF
|
15
|
+
|
16
|
+
void
|
17
|
+
rb_dump_backtrace_with_lines(int num_traces, void **traces, char **syms);
|
18
|
+
|
19
|
+
#endif /* USE_ELF */
|
20
|
+
|
21
|
+
#endif /* RUBY_ADDR2LINE_H */
|
@@ -0,0 +1,36 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
constant.h -
|
4
|
+
|
5
|
+
$Author$
|
6
|
+
created at: Sun Nov 15 00:09:33 2009
|
7
|
+
|
8
|
+
Copyright (C) 2009 Yusuke Endoh
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
#ifndef CONSTANT_H
|
12
|
+
#define CONSTANT_H
|
13
|
+
|
14
|
+
typedef enum {
|
15
|
+
CONST_PUBLIC = 0x00,
|
16
|
+
CONST_PRIVATE = 0x01
|
17
|
+
} rb_const_flag_t;
|
18
|
+
|
19
|
+
typedef struct rb_const_entry_struct {
|
20
|
+
rb_const_flag_t flag;
|
21
|
+
VALUE value; /* should be mark */
|
22
|
+
VALUE file;
|
23
|
+
int line;
|
24
|
+
} rb_const_entry_t;
|
25
|
+
|
26
|
+
VALUE rb_mod_private_constant(int argc, VALUE *argv, VALUE obj);
|
27
|
+
VALUE rb_mod_public_constant(int argc, VALUE *argv, VALUE obj);
|
28
|
+
void rb_free_const_table(st_table *tbl);
|
29
|
+
VALUE rb_public_const_get(VALUE klass, ID id);
|
30
|
+
VALUE rb_public_const_get_at(VALUE klass, ID id);
|
31
|
+
VALUE rb_public_const_get_from(VALUE klass, ID id);
|
32
|
+
int rb_public_const_defined(VALUE klass, ID id);
|
33
|
+
int rb_public_const_defined_at(VALUE klass, ID id);
|
34
|
+
int rb_public_const_defined_from(VALUE klass, ID id);
|
35
|
+
|
36
|
+
#endif /* CONSTANT_H */
|
@@ -0,0 +1,50 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
dln.h -
|
4
|
+
|
5
|
+
$Author$
|
6
|
+
created at: Wed Jan 19 16:53:09 JST 1994
|
7
|
+
|
8
|
+
Copyright (C) 1993-2007 Yukihiro Matsumoto
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef DLN_H
|
13
|
+
#define DLN_H
|
14
|
+
|
15
|
+
#ifdef __cplusplus
|
16
|
+
# ifndef HAVE_PROTOTYPES
|
17
|
+
# define HAVE_PROTOTYPES 1
|
18
|
+
# endif
|
19
|
+
# ifndef HAVE_STDARG_PROTOTYPES
|
20
|
+
# define HAVE_STDARG_PROTOTYPES 1
|
21
|
+
# endif
|
22
|
+
#endif
|
23
|
+
|
24
|
+
#undef _
|
25
|
+
#ifdef HAVE_PROTOTYPES
|
26
|
+
# define _(args) args
|
27
|
+
#else
|
28
|
+
# define _(args) ()
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
32
|
+
#pragma GCC visibility push(default)
|
33
|
+
#endif
|
34
|
+
|
35
|
+
DEPRECATED(char *dln_find_exe(const char*,const char*));
|
36
|
+
DEPRECATED(char *dln_find_file(const char*,const char*));
|
37
|
+
char *dln_find_exe_r(const char*,const char*,char*,size_t);
|
38
|
+
char *dln_find_file_r(const char*,const char*,char*,size_t);
|
39
|
+
|
40
|
+
#ifdef USE_DLN_A_OUT
|
41
|
+
extern char *dln_argv0;
|
42
|
+
#endif
|
43
|
+
|
44
|
+
void *dln_load(const char*);
|
45
|
+
|
46
|
+
#if defined __GNUC__ && __GNUC__ >= 4
|
47
|
+
#pragma GCC visibility pop
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#endif
|
@@ -0,0 +1,169 @@
|
|
1
|
+
ENC_DEFINE("ASCII-8BIT");
|
2
|
+
ENC_DEFINE("Big5");
|
3
|
+
ENC_DEFINE("Big5-HKSCS");
|
4
|
+
ENC_DEFINE("Big5-UAO");
|
5
|
+
ENC_DEFINE("CP949");
|
6
|
+
ENC_DEFINE("Emacs-Mule");
|
7
|
+
ENC_DEFINE("EUC-JP");
|
8
|
+
ENC_DEFINE("EUC-KR");
|
9
|
+
ENC_DEFINE("EUC-TW");
|
10
|
+
ENC_DEFINE("GB18030");
|
11
|
+
ENC_DEFINE("GBK");
|
12
|
+
ENC_DEFINE("ISO-8859-1");
|
13
|
+
ENC_DEFINE("ISO-8859-2");
|
14
|
+
ENC_DEFINE("ISO-8859-3");
|
15
|
+
ENC_DEFINE("ISO-8859-4");
|
16
|
+
ENC_DEFINE("ISO-8859-5");
|
17
|
+
ENC_DEFINE("ISO-8859-6");
|
18
|
+
ENC_DEFINE("ISO-8859-7");
|
19
|
+
ENC_DEFINE("ISO-8859-8");
|
20
|
+
ENC_DEFINE("ISO-8859-9");
|
21
|
+
ENC_DEFINE("ISO-8859-10");
|
22
|
+
ENC_DEFINE("ISO-8859-11");
|
23
|
+
ENC_DEFINE("ISO-8859-13");
|
24
|
+
ENC_DEFINE("ISO-8859-14");
|
25
|
+
ENC_DEFINE("ISO-8859-15");
|
26
|
+
ENC_DEFINE("ISO-8859-16");
|
27
|
+
ENC_DEFINE("KOI8-R");
|
28
|
+
ENC_DEFINE("KOI8-U");
|
29
|
+
ENC_DEFINE("Shift_JIS");
|
30
|
+
ENC_DEFINE("US-ASCII");
|
31
|
+
ENC_DEFINE("UTF-8");
|
32
|
+
ENC_DEFINE("UTF-16BE");
|
33
|
+
ENC_DEFINE("UTF-16LE");
|
34
|
+
ENC_DEFINE("UTF-32BE");
|
35
|
+
ENC_DEFINE("UTF-32LE");
|
36
|
+
ENC_DEFINE("Windows-31J");
|
37
|
+
ENC_DEFINE("Windows-1251");
|
38
|
+
ENC_ALIAS("BINARY", "ASCII-8BIT");
|
39
|
+
ENC_REPLICATE("IBM437", "ASCII-8BIT");
|
40
|
+
ENC_ALIAS("CP437", "IBM437");
|
41
|
+
ENC_REPLICATE("IBM737", "ASCII-8BIT");
|
42
|
+
ENC_ALIAS("CP737", "IBM737");
|
43
|
+
ENC_REPLICATE("IBM775", "ASCII-8BIT");
|
44
|
+
ENC_ALIAS("CP775", "IBM775");
|
45
|
+
ENC_REPLICATE("CP850", "ASCII-8BIT");
|
46
|
+
ENC_ALIAS("IBM850", "CP850");
|
47
|
+
ENC_REPLICATE("IBM852", "ASCII-8BIT");
|
48
|
+
ENC_REPLICATE("CP852", "IBM852");
|
49
|
+
ENC_REPLICATE("IBM855", "ASCII-8BIT");
|
50
|
+
ENC_REPLICATE("CP855", "IBM855");
|
51
|
+
ENC_REPLICATE("IBM857", "ASCII-8BIT");
|
52
|
+
ENC_ALIAS("CP857", "IBM857");
|
53
|
+
ENC_REPLICATE("IBM860", "ASCII-8BIT");
|
54
|
+
ENC_ALIAS("CP860", "IBM860");
|
55
|
+
ENC_REPLICATE("IBM861", "ASCII-8BIT");
|
56
|
+
ENC_ALIAS("CP861", "IBM861");
|
57
|
+
ENC_REPLICATE("IBM862", "ASCII-8BIT");
|
58
|
+
ENC_ALIAS("CP862", "IBM862");
|
59
|
+
ENC_REPLICATE("IBM863", "ASCII-8BIT");
|
60
|
+
ENC_ALIAS("CP863", "IBM863");
|
61
|
+
ENC_REPLICATE("IBM864", "ASCII-8BIT");
|
62
|
+
ENC_ALIAS("CP864", "IBM864");
|
63
|
+
ENC_REPLICATE("IBM865", "ASCII-8BIT");
|
64
|
+
ENC_ALIAS("CP865", "IBM865");
|
65
|
+
ENC_REPLICATE("IBM866", "ASCII-8BIT");
|
66
|
+
ENC_ALIAS("CP866", "IBM866");
|
67
|
+
ENC_REPLICATE("IBM869", "ASCII-8BIT");
|
68
|
+
ENC_ALIAS("CP869", "IBM869");
|
69
|
+
ENC_REPLICATE("Windows-1258", "ASCII-8BIT");
|
70
|
+
ENC_ALIAS("CP1258", "Windows-1258");
|
71
|
+
ENC_REPLICATE("GB1988", "ASCII-8BIT");
|
72
|
+
ENC_REPLICATE("macCentEuro", "ASCII-8BIT");
|
73
|
+
ENC_REPLICATE("macCroatian", "ASCII-8BIT");
|
74
|
+
ENC_REPLICATE("macCyrillic", "ASCII-8BIT");
|
75
|
+
ENC_REPLICATE("macGreek", "ASCII-8BIT");
|
76
|
+
ENC_REPLICATE("macIceland", "ASCII-8BIT");
|
77
|
+
ENC_REPLICATE("macRoman", "ASCII-8BIT");
|
78
|
+
ENC_REPLICATE("macRomania", "ASCII-8BIT");
|
79
|
+
ENC_REPLICATE("macThai", "ASCII-8BIT");
|
80
|
+
ENC_REPLICATE("macTurkish", "ASCII-8BIT");
|
81
|
+
ENC_REPLICATE("macUkraine", "ASCII-8BIT");
|
82
|
+
ENC_REPLICATE("CP950", "Big5");
|
83
|
+
ENC_SET_BASE("Big5-HKSCS", "Big5");
|
84
|
+
ENC_ALIAS("Big5-HKSCS:2008", "Big5-HKSCS");
|
85
|
+
ENC_REPLICATE("CP951", "Big5-HKSCS");
|
86
|
+
ENC_SET_BASE("Big5-UAO", "Big5");
|
87
|
+
ENC_REPLICATE("stateless-ISO-2022-JP", "Emacs-Mule");
|
88
|
+
ENC_ALIAS("eucJP", "EUC-JP") /* UI-OSF Application Platform Profile for Japanese Environment Version 1.1 */;
|
89
|
+
ENC_REPLICATE("eucJP-ms", "EUC-JP") /* TOG/JVC CDE/Motif Technical WG */;
|
90
|
+
ENC_ALIAS("euc-jp-ms", "eucJP-ms");
|
91
|
+
ENC_REPLICATE("CP51932", "EUC-JP");
|
92
|
+
ENC_REPLICATE("EUC-JP-2004", "EUC-JP") /* defined at JIS X 0213:2004 */;
|
93
|
+
ENC_ALIAS("EUC-JISX0213", "EUC-JP-2004") /* defined at JIS X 0213:2000, and obsolete at JIS X 0213:2004 */;
|
94
|
+
ENC_ALIAS("eucKR", "EUC-KR");
|
95
|
+
ENC_ALIAS("eucTW", "EUC-TW");
|
96
|
+
ENC_ALIAS("EUC-CN", "GB2312");
|
97
|
+
ENC_ALIAS("eucCN", "GB2312");
|
98
|
+
ENC_REPLICATE("GB12345", "GB2312");
|
99
|
+
ENC_ALIAS("CP936", "GBK");
|
100
|
+
ENC_DUMMY("ISO-2022-JP");
|
101
|
+
ENC_ALIAS("ISO2022-JP", "ISO-2022-JP");
|
102
|
+
ENC_REPLICATE("ISO-2022-JP-2", "ISO-2022-JP");
|
103
|
+
ENC_ALIAS("ISO2022-JP2", "ISO-2022-JP-2");
|
104
|
+
ENC_REPLICATE("CP50220", "ISO-2022-JP");
|
105
|
+
ENC_REPLICATE("CP50221", "ISO-2022-JP");
|
106
|
+
ENC_ALIAS("ISO8859-1", "ISO-8859-1");
|
107
|
+
ENC_REPLICATE("Windows-1252", "ISO-8859-1");
|
108
|
+
ENC_ALIAS("CP1252", "Windows-1252");
|
109
|
+
ENC_ALIAS("ISO8859-2", "ISO-8859-2");
|
110
|
+
ENC_REPLICATE("Windows-1250", "ISO-8859-2");
|
111
|
+
ENC_ALIAS("CP1250", "Windows-1250");
|
112
|
+
ENC_ALIAS("ISO8859-3", "ISO-8859-3");
|
113
|
+
ENC_ALIAS("ISO8859-4", "ISO-8859-4");
|
114
|
+
ENC_ALIAS("ISO8859-5", "ISO-8859-5");
|
115
|
+
ENC_ALIAS("ISO8859-6", "ISO-8859-6");
|
116
|
+
ENC_REPLICATE("Windows-1256", "ISO-8859-6");
|
117
|
+
ENC_ALIAS("CP1256", "Windows-1256");
|
118
|
+
ENC_ALIAS("ISO8859-7", "ISO-8859-7");
|
119
|
+
ENC_REPLICATE("Windows-1253", "ISO-8859-7");
|
120
|
+
ENC_ALIAS("CP1253", "Windows-1253");
|
121
|
+
ENC_ALIAS("ISO8859-8", "ISO-8859-8");
|
122
|
+
ENC_REPLICATE("Windows-1255", "ISO-8859-8");
|
123
|
+
ENC_ALIAS("CP1255", "Windows-1255");
|
124
|
+
ENC_ALIAS("ISO8859-9", "ISO-8859-9");
|
125
|
+
ENC_REPLICATE("Windows-1254", "ISO-8859-9");
|
126
|
+
ENC_ALIAS("CP1254", "Windows-1254");
|
127
|
+
ENC_ALIAS("ISO8859-10", "ISO-8859-10");
|
128
|
+
ENC_ALIAS("ISO8859-11", "ISO-8859-11");
|
129
|
+
ENC_REPLICATE("TIS-620", "ISO-8859-11");
|
130
|
+
ENC_REPLICATE("Windows-874", "ISO-8859-11");
|
131
|
+
ENC_ALIAS("CP874", "Windows-874");
|
132
|
+
ENC_ALIAS("ISO8859-13", "ISO-8859-13");
|
133
|
+
ENC_REPLICATE("Windows-1257", "ISO-8859-13");
|
134
|
+
ENC_ALIAS("CP1257", "Windows-1257");
|
135
|
+
ENC_ALIAS("ISO8859-14", "ISO-8859-14");
|
136
|
+
ENC_ALIAS("ISO8859-15", "ISO-8859-15");
|
137
|
+
ENC_ALIAS("ISO8859-16", "ISO-8859-16");
|
138
|
+
ENC_ALIAS("CP878", "KOI8-R");
|
139
|
+
ENC_REPLICATE("MacJapanese", "Shift_JIS");
|
140
|
+
ENC_ALIAS("MacJapan", "MacJapanese");
|
141
|
+
ENC_ALIAS("ASCII", "US-ASCII");
|
142
|
+
ENC_ALIAS("ANSI_X3.4-1968", "US-ASCII");
|
143
|
+
ENC_ALIAS("646", "US-ASCII");
|
144
|
+
ENC_DUMMY("UTF-7");
|
145
|
+
ENC_ALIAS("CP65000", "UTF-7");
|
146
|
+
ENC_ALIAS("CP65001", "UTF-8");
|
147
|
+
ENC_REPLICATE("UTF8-MAC", "UTF-8");
|
148
|
+
ENC_ALIAS("UTF-8-MAC", "UTF8-MAC");
|
149
|
+
ENC_ALIAS("UTF-8-HFS", "UTF8-MAC") /* Emacs 23.2 */;
|
150
|
+
ENC_DUMMY_UNICODE("UTF-16");
|
151
|
+
ENC_DUMMY_UNICODE("UTF-32");
|
152
|
+
ENC_ALIAS("UCS-2BE", "UTF-16BE");
|
153
|
+
ENC_ALIAS("UCS-4BE", "UTF-32BE");
|
154
|
+
ENC_ALIAS("UCS-4LE", "UTF-32LE");
|
155
|
+
ENC_ALIAS("CP932", "Windows-31J");
|
156
|
+
ENC_ALIAS("csWindows31J", "Windows-31J") /* IANA. IE6 don't accept Windows-31J but csWindows31J. */;
|
157
|
+
ENC_ALIAS("SJIS", "Windows-31J");
|
158
|
+
ENC_ALIAS("PCK", "Windows-31J");
|
159
|
+
ENC_ALIAS("CP1251", "Windows-1251");
|
160
|
+
ENC_REPLICATE("UTF8-DoCoMo", "UTF-8");
|
161
|
+
ENC_REPLICATE("SJIS-DoCoMo", "Windows-31J");
|
162
|
+
ENC_REPLICATE("UTF8-KDDI", "UTF-8");
|
163
|
+
ENC_REPLICATE("SJIS-KDDI", "Windows-31J");
|
164
|
+
ENC_REPLICATE("ISO-2022-JP-KDDI", "ISO-2022-JP");
|
165
|
+
ENC_REPLICATE("stateless-ISO-2022-JP-KDDI", "stateless-ISO-2022-JP");
|
166
|
+
ENC_REPLICATE("UTF8-SoftBank", "UTF-8");
|
167
|
+
ENC_REPLICATE("SJIS-SoftBank", "Windows-31J");
|
168
|
+
|
169
|
+
#define ENCODING_COUNT 100
|
@@ -0,0 +1,241 @@
|
|
1
|
+
#ifndef RUBY_EVAL_INTERN_H
|
2
|
+
#define RUBY_EVAL_INTERN_H
|
3
|
+
|
4
|
+
#include "ruby/ruby.h"
|
5
|
+
#include "vm_core.h"
|
6
|
+
|
7
|
+
#define PASS_PASSED_BLOCK_TH(th) do { \
|
8
|
+
(th)->passed_block = rb_vm_control_frame_block_ptr(th->cfp); \
|
9
|
+
(th)->cfp->flag |= VM_FRAME_FLAG_PASSED; \
|
10
|
+
} while (0)
|
11
|
+
|
12
|
+
#define PASS_PASSED_BLOCK() do { \
|
13
|
+
rb_thread_t * const __th__ = GET_THREAD(); \
|
14
|
+
PASS_PASSED_BLOCK_TH(__th__); \
|
15
|
+
} while (0)
|
16
|
+
|
17
|
+
#ifdef HAVE_STDLIB_H
|
18
|
+
#include <stdlib.h>
|
19
|
+
#endif
|
20
|
+
#ifndef EXIT_SUCCESS
|
21
|
+
#define EXIT_SUCCESS 0
|
22
|
+
#endif
|
23
|
+
#ifndef EXIT_FAILURE
|
24
|
+
#define EXIT_FAILURE 1
|
25
|
+
#endif
|
26
|
+
|
27
|
+
#include <stdio.h>
|
28
|
+
#include <setjmp.h>
|
29
|
+
|
30
|
+
#ifdef __APPLE__
|
31
|
+
# ifdef HAVE_CRT_EXTERNS_H
|
32
|
+
# include <crt_externs.h>
|
33
|
+
# else
|
34
|
+
# include "missing/crt_externs.h"
|
35
|
+
# endif
|
36
|
+
#endif
|
37
|
+
|
38
|
+
#ifndef HAVE_STRING_H
|
39
|
+
char *strrchr(const char *, const char);
|
40
|
+
#endif
|
41
|
+
|
42
|
+
#ifdef HAVE_UNISTD_H
|
43
|
+
#include <unistd.h>
|
44
|
+
#endif
|
45
|
+
|
46
|
+
#ifdef HAVE_NET_SOCKET_H
|
47
|
+
#include <net/socket.h>
|
48
|
+
#endif
|
49
|
+
|
50
|
+
#define ruby_setjmp(env) RUBY_SETJMP(env)
|
51
|
+
#define ruby_longjmp(env,val) RUBY_LONGJMP((env),(val))
|
52
|
+
#ifdef __CYGWIN__
|
53
|
+
# ifndef _setjmp
|
54
|
+
int _setjmp(jmp_buf);
|
55
|
+
# endif
|
56
|
+
# ifndef _longjmp
|
57
|
+
NORETURN(void _longjmp(jmp_buf, int));
|
58
|
+
# endif
|
59
|
+
#endif
|
60
|
+
|
61
|
+
#include <sys/types.h>
|
62
|
+
#include <signal.h>
|
63
|
+
#include <errno.h>
|
64
|
+
|
65
|
+
#ifdef HAVE_SYS_SELECT_H
|
66
|
+
#include <sys/select.h>
|
67
|
+
#endif
|
68
|
+
|
69
|
+
/*
|
70
|
+
Solaris sys/select.h switches select to select_large_fdset to support larger
|
71
|
+
file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
|
72
|
+
But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
|
73
|
+
So following definition is required to use select_large_fdset.
|
74
|
+
*/
|
75
|
+
#ifdef HAVE_SELECT_LARGE_FDSET
|
76
|
+
#define select(n, r, w, e, t) select_large_fdset((n), (r), (w), (e), (t))
|
77
|
+
extern int select_large_fdset(int, fd_set *, fd_set *, fd_set *, struct timeval *);
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifdef HAVE_SYS_PARAM_H
|
81
|
+
#include <sys/param.h>
|
82
|
+
#endif
|
83
|
+
|
84
|
+
#include <sys/stat.h>
|
85
|
+
|
86
|
+
#ifdef _MSC_VER
|
87
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
88
|
+
__try {
|
89
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT \
|
90
|
+
} \
|
91
|
+
__except (GetExceptionCode() == EXCEPTION_STACK_OVERFLOW ? \
|
92
|
+
(rb_thread_raised_set(GET_THREAD(), RAISED_STACKOVERFLOW), \
|
93
|
+
raise(SIGSEGV), \
|
94
|
+
EXCEPTION_EXECUTE_HANDLER) : \
|
95
|
+
EXCEPTION_CONTINUE_SEARCH) { \
|
96
|
+
/* never reaches here */ \
|
97
|
+
}
|
98
|
+
#elif defined(__MINGW32__)
|
99
|
+
LONG WINAPI rb_w32_stack_overflow_handler(struct _EXCEPTION_POINTERS *);
|
100
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
101
|
+
do { \
|
102
|
+
PVOID _handler = AddVectoredExceptionHandler(1, rb_w32_stack_overflow_handler);
|
103
|
+
|
104
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT \
|
105
|
+
RemoveVectoredExceptionHandler(_handler); \
|
106
|
+
} while (0);
|
107
|
+
#else
|
108
|
+
#define SAVE_ROOT_JMPBUF_BEFORE_STMT
|
109
|
+
#define SAVE_ROOT_JMPBUF_AFTER_STMT
|
110
|
+
#endif
|
111
|
+
|
112
|
+
#define SAVE_ROOT_JMPBUF(th, stmt) do \
|
113
|
+
if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
|
114
|
+
SAVE_ROOT_JMPBUF_BEFORE_STMT \
|
115
|
+
stmt; \
|
116
|
+
SAVE_ROOT_JMPBUF_AFTER_STMT \
|
117
|
+
} \
|
118
|
+
else { \
|
119
|
+
rb_fiber_start(); \
|
120
|
+
} while (0)
|
121
|
+
|
122
|
+
#define TH_PUSH_TAG(th) do { \
|
123
|
+
rb_thread_t * const _th = (th); \
|
124
|
+
struct rb_vm_tag _tag; \
|
125
|
+
_tag.tag = 0; \
|
126
|
+
_tag.prev = _th->tag; \
|
127
|
+
_th->tag = &_tag;
|
128
|
+
|
129
|
+
#define TH_POP_TAG() \
|
130
|
+
_th->tag = _tag.prev; \
|
131
|
+
} while (0)
|
132
|
+
|
133
|
+
#define TH_POP_TAG2() \
|
134
|
+
_th->tag = _tag.prev
|
135
|
+
|
136
|
+
#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
|
137
|
+
#define POP_TAG() TH_POP_TAG()
|
138
|
+
|
139
|
+
#define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
|
140
|
+
|
141
|
+
#define EXEC_TAG() \
|
142
|
+
TH_EXEC_TAG()
|
143
|
+
|
144
|
+
#define TH_JUMP_TAG(th, st) do { \
|
145
|
+
ruby_longjmp((th)->tag->buf,(st)); \
|
146
|
+
} while (0)
|
147
|
+
|
148
|
+
#define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), (st))
|
149
|
+
|
150
|
+
#define INTERNAL_EXCEPTION_P(exc) FIXNUM_P(exc)
|
151
|
+
|
152
|
+
enum ruby_tag_type {
|
153
|
+
RUBY_TAG_RETURN = 0x1,
|
154
|
+
RUBY_TAG_BREAK = 0x2,
|
155
|
+
RUBY_TAG_NEXT = 0x3,
|
156
|
+
RUBY_TAG_RETRY = 0x4,
|
157
|
+
RUBY_TAG_REDO = 0x5,
|
158
|
+
RUBY_TAG_RAISE = 0x6,
|
159
|
+
RUBY_TAG_THROW = 0x7,
|
160
|
+
RUBY_TAG_FATAL = 0x8,
|
161
|
+
RUBY_TAG_MASK = 0xf
|
162
|
+
};
|
163
|
+
#define TAG_RETURN RUBY_TAG_RETURN
|
164
|
+
#define TAG_BREAK RUBY_TAG_BREAK
|
165
|
+
#define TAG_NEXT RUBY_TAG_NEXT
|
166
|
+
#define TAG_RETRY RUBY_TAG_RETRY
|
167
|
+
#define TAG_REDO RUBY_TAG_REDO
|
168
|
+
#define TAG_RAISE RUBY_TAG_RAISE
|
169
|
+
#define TAG_THROW RUBY_TAG_THROW
|
170
|
+
#define TAG_FATAL RUBY_TAG_FATAL
|
171
|
+
#define TAG_MASK RUBY_TAG_MASK
|
172
|
+
|
173
|
+
#define NEW_THROW_OBJECT(val, pt, st) \
|
174
|
+
((VALUE)rb_node_newnode(NODE_LIT, (VALUE)(val), (VALUE)(pt), (VALUE)(st)))
|
175
|
+
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
176
|
+
(RNODE((obj))->u2.value = (val))
|
177
|
+
#define SET_THROWOBJ_STATE(obj, val) \
|
178
|
+
(RNODE((obj))->u3.value = (val))
|
179
|
+
|
180
|
+
#define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
|
181
|
+
#define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
|
182
|
+
#define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
|
183
|
+
|
184
|
+
#define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
|
185
|
+
#define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
|
186
|
+
#define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
|
187
|
+
|
188
|
+
void rb_thread_cleanup(void);
|
189
|
+
void rb_thread_wait_other_threads(void);
|
190
|
+
|
191
|
+
enum {
|
192
|
+
RAISED_EXCEPTION = 1,
|
193
|
+
RAISED_STACKOVERFLOW = 2,
|
194
|
+
RAISED_NOMEMORY = 4
|
195
|
+
};
|
196
|
+
int rb_threadptr_set_raised(rb_thread_t *th);
|
197
|
+
int rb_threadptr_reset_raised(rb_thread_t *th);
|
198
|
+
#define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
|
199
|
+
#define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
|
200
|
+
#define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
|
201
|
+
#define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
|
202
|
+
|
203
|
+
VALUE rb_f_eval(int argc, VALUE *argv, VALUE self);
|
204
|
+
VALUE rb_make_exception(int argc, VALUE *argv);
|
205
|
+
|
206
|
+
NORETURN(void rb_method_name_error(VALUE, VALUE));
|
207
|
+
|
208
|
+
NORETURN(void rb_fiber_start(void));
|
209
|
+
|
210
|
+
NORETURN(void rb_print_undef(VALUE, ID, int));
|
211
|
+
NORETURN(void rb_print_undef_str(VALUE, VALUE));
|
212
|
+
NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
|
213
|
+
NORETURN(void rb_vm_jump_tag_but_local_jump(int));
|
214
|
+
NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
|
215
|
+
VALUE obj, int call_status));
|
216
|
+
|
217
|
+
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
|
218
|
+
NODE *rb_vm_cref(void);
|
219
|
+
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
|
220
|
+
void rb_vm_set_progname(VALUE filename);
|
221
|
+
void rb_thread_terminate_all(void);
|
222
|
+
VALUE rb_vm_top_self();
|
223
|
+
VALUE rb_vm_cbase(void);
|
224
|
+
|
225
|
+
#ifndef CharNext /* defined as CharNext[AW] on Windows. */
|
226
|
+
#define CharNext(p) ((p) + mblen((p), RUBY_MBCHAR_MAXSIZE))
|
227
|
+
#endif
|
228
|
+
|
229
|
+
#if defined DOSISH || defined __CYGWIN__
|
230
|
+
static inline void
|
231
|
+
translit_char(char *p, int from, int to)
|
232
|
+
{
|
233
|
+
while (*p) {
|
234
|
+
if ((unsigned char)*p == from)
|
235
|
+
*p = to;
|
236
|
+
p = CharNext(p);
|
237
|
+
}
|
238
|
+
}
|
239
|
+
#endif
|
240
|
+
|
241
|
+
#endif /* RUBY_EVAL_INTERN_H */
|