sender 1.0.1 → 1.1.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.
- data/CHANGELOG.rdoc +10 -1
- data/Makefile +2 -2
- data/Manifest.txt +27 -0
- data/README.rdoc +74 -24
- data/Rakefile +3 -1
- data/ext/sender/RPSender_internal.c +64 -0
- data/ext/sender/RPSender_internal.h +10 -0
- data/ext/sender/RubySourceSupport.c +2 -2
- data/ext/sender/RubySourceSupport.h +4 -4
- data/ext/sender/debug.h +36 -0
- data/ext/sender/dln.h +41 -0
- data/ext/sender/encdb.h +147 -0
- data/ext/sender/eval_intern.h +215 -0
- data/ext/sender/extconf.rb +0 -14
- data/ext/sender/gc.h +75 -0
- data/ext/sender/id.h +163 -0
- data/ext/sender/iseq.h +103 -0
- data/ext/sender/main.c +5 -4
- data/ext/sender/node.h +516 -0
- data/ext/sender/parse.h +189 -0
- data/ext/sender/rb_Global.c +18 -30
- data/ext/sender/rb_Global.h +7 -7
- data/ext/sender/rb_Global_internal.h +1 -1
- data/ext/sender/rb_Kernel.c +162 -0
- data/ext/sender/rb_Kernel.h +16 -0
- data/ext/sender/regenc.h +207 -0
- data/ext/sender/regint.h +842 -0
- data/ext/sender/regparse.h +351 -0
- data/ext/sender/revision.h +1 -0
- data/ext/sender/thread_pthread.h +24 -0
- data/ext/sender/thread_win32.h +33 -0
- data/ext/sender/transcode_data.h +106 -0
- data/ext/sender/transdb.h +147 -0
- data/ext/sender/version.h +55 -0
- data/ext/sender/vm_core.h +647 -0
- data/ext/sender/vm_exec.h +184 -0
- data/ext/sender/vm_insnhelper.h +196 -0
- data/ext/sender/vm_opts.h +51 -0
- data/lib/sender/sender.bundle +0 -0
- data/lib/sender.rb +1 -1
- data/sender.gemspec +55 -0
- metadata +48 -6
@@ -0,0 +1,215 @@
|
|
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 = GC_GUARDED_PTR_REF((rb_block_t *)(th)->cfp->lfp[0]); \
|
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
|
+
#include <crt_externs.h>
|
32
|
+
#endif
|
33
|
+
|
34
|
+
/* Make alloca work the best possible way. */
|
35
|
+
#ifdef __GNUC__
|
36
|
+
# ifndef atarist
|
37
|
+
# ifndef alloca
|
38
|
+
# define alloca __builtin_alloca
|
39
|
+
# endif
|
40
|
+
# endif /* atarist */
|
41
|
+
#else
|
42
|
+
# ifdef HAVE_ALLOCA_H
|
43
|
+
# include <alloca.h>
|
44
|
+
# else
|
45
|
+
# ifdef _AIX
|
46
|
+
#pragma alloca
|
47
|
+
# else
|
48
|
+
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
49
|
+
void *alloca();
|
50
|
+
# endif
|
51
|
+
# endif /* AIX */
|
52
|
+
# endif /* HAVE_ALLOCA_H */
|
53
|
+
#endif /* __GNUC__ */
|
54
|
+
|
55
|
+
#ifndef HAVE_STRING_H
|
56
|
+
char *strrchr(const char *, const char);
|
57
|
+
#endif
|
58
|
+
|
59
|
+
#ifdef HAVE_UNISTD_H
|
60
|
+
#include <unistd.h>
|
61
|
+
#endif
|
62
|
+
|
63
|
+
#ifdef HAVE_NET_SOCKET_H
|
64
|
+
#include <net/socket.h>
|
65
|
+
#endif
|
66
|
+
|
67
|
+
#define ruby_setjmp(env) RUBY_SETJMP(env)
|
68
|
+
#define ruby_longjmp(env,val) RUBY_LONGJMP(env,val)
|
69
|
+
#ifdef __CYGWIN__
|
70
|
+
# ifndef _setjmp
|
71
|
+
int _setjmp(jmp_buf);
|
72
|
+
# endif
|
73
|
+
# ifndef _longjmp
|
74
|
+
NORETURN(void _longjmp(jmp_buf, int));
|
75
|
+
# endif
|
76
|
+
#endif
|
77
|
+
|
78
|
+
#include <sys/types.h>
|
79
|
+
#include <signal.h>
|
80
|
+
#include <errno.h>
|
81
|
+
|
82
|
+
#ifdef HAVE_SYS_SELECT_H
|
83
|
+
#include <sys/select.h>
|
84
|
+
#endif
|
85
|
+
|
86
|
+
/*
|
87
|
+
Solaris sys/select.h switches select to select_large_fdset to support larger
|
88
|
+
file descriptors if FD_SETSIZE is larger than 1024 on 32bit environment.
|
89
|
+
But Ruby doesn't change FD_SETSIZE because fd_set is allocated dynamically.
|
90
|
+
So following definition is required to use select_large_fdset.
|
91
|
+
*/
|
92
|
+
#ifdef HAVE_SELECT_LARGE_FDSET
|
93
|
+
#define select(n, r, w, e, t) select_large_fdset(n, r, w, e, t)
|
94
|
+
#endif
|
95
|
+
|
96
|
+
#ifdef HAVE_SYS_PARAM_H
|
97
|
+
#include <sys/param.h>
|
98
|
+
#endif
|
99
|
+
|
100
|
+
#include <sys/stat.h>
|
101
|
+
|
102
|
+
#define SAVE_ROOT_JMPBUF(th, stmt) do \
|
103
|
+
if (ruby_setjmp((th)->root_jmpbuf) == 0) { \
|
104
|
+
stmt; \
|
105
|
+
} \
|
106
|
+
else { \
|
107
|
+
rb_fiber_start(); \
|
108
|
+
} while (0)
|
109
|
+
|
110
|
+
#define TH_PUSH_TAG(th) do { \
|
111
|
+
rb_thread_t * const _th = th; \
|
112
|
+
struct rb_vm_tag _tag; \
|
113
|
+
_tag.tag = 0; \
|
114
|
+
_tag.prev = _th->tag; \
|
115
|
+
_th->tag = &_tag;
|
116
|
+
|
117
|
+
#define TH_POP_TAG() \
|
118
|
+
_th->tag = _tag.prev; \
|
119
|
+
} while (0)
|
120
|
+
|
121
|
+
#define TH_POP_TAG2() \
|
122
|
+
_th->tag = _tag.prev
|
123
|
+
|
124
|
+
#define PUSH_TAG() TH_PUSH_TAG(GET_THREAD())
|
125
|
+
#define POP_TAG() TH_POP_TAG()
|
126
|
+
|
127
|
+
#define TH_EXEC_TAG() ruby_setjmp(_th->tag->buf)
|
128
|
+
|
129
|
+
#define EXEC_TAG() \
|
130
|
+
TH_EXEC_TAG()
|
131
|
+
|
132
|
+
#define TH_JUMP_TAG(th, st) do { \
|
133
|
+
ruby_longjmp(th->tag->buf,(st)); \
|
134
|
+
} while (0)
|
135
|
+
|
136
|
+
#define JUMP_TAG(st) TH_JUMP_TAG(GET_THREAD(), st)
|
137
|
+
|
138
|
+
enum ruby_tag_type {
|
139
|
+
RUBY_TAG_RETURN = 0x1,
|
140
|
+
RUBY_TAG_BREAK = 0x2,
|
141
|
+
RUBY_TAG_NEXT = 0x3,
|
142
|
+
RUBY_TAG_RETRY = 0x4,
|
143
|
+
RUBY_TAG_REDO = 0x5,
|
144
|
+
RUBY_TAG_RAISE = 0x6,
|
145
|
+
RUBY_TAG_THROW = 0x7,
|
146
|
+
RUBY_TAG_FATAL = 0x8,
|
147
|
+
RUBY_TAG_MASK = 0xf
|
148
|
+
};
|
149
|
+
#define TAG_RETURN RUBY_TAG_RETURN
|
150
|
+
#define TAG_BREAK RUBY_TAG_BREAK
|
151
|
+
#define TAG_NEXT RUBY_TAG_NEXT
|
152
|
+
#define TAG_RETRY RUBY_TAG_RETRY
|
153
|
+
#define TAG_REDO RUBY_TAG_REDO
|
154
|
+
#define TAG_RAISE RUBY_TAG_RAISE
|
155
|
+
#define TAG_THROW RUBY_TAG_THROW
|
156
|
+
#define TAG_FATAL RUBY_TAG_FATAL
|
157
|
+
#define TAG_MASK RUBY_TAG_MASK
|
158
|
+
|
159
|
+
#define NEW_THROW_OBJECT(val, pt, st) \
|
160
|
+
((VALUE)NEW_NODE(NODE_LIT, (val), (pt), (st)))
|
161
|
+
#define SET_THROWOBJ_CATCH_POINT(obj, val) \
|
162
|
+
(RNODE((obj))->u2.value = (val))
|
163
|
+
#define SET_THROWOBJ_STATE(obj, val) \
|
164
|
+
(RNODE((obj))->u3.value = (val))
|
165
|
+
|
166
|
+
#define GET_THROWOBJ_VAL(obj) ((VALUE)RNODE((obj))->u1.value)
|
167
|
+
#define GET_THROWOBJ_CATCH_POINT(obj) ((VALUE*)RNODE((obj))->u2.value)
|
168
|
+
#define GET_THROWOBJ_STATE(obj) ((int)RNODE((obj))->u3.value)
|
169
|
+
|
170
|
+
#define SCOPE_TEST(f) (rb_vm_cref()->nd_visi & (f))
|
171
|
+
#define SCOPE_CHECK(f) (rb_vm_cref()->nd_visi == (f))
|
172
|
+
#define SCOPE_SET(f) (rb_vm_cref()->nd_visi = (f))
|
173
|
+
|
174
|
+
#define CHECK_STACK_OVERFLOW(cfp, margin) do \
|
175
|
+
if (((VALUE *)(cfp)->sp) + (margin) + sizeof(rb_control_frame_t) >= ((VALUE *)cfp)) { \
|
176
|
+
rb_exc_raise(sysstack_error); \
|
177
|
+
} \
|
178
|
+
while (0)
|
179
|
+
|
180
|
+
void rb_thread_cleanup(void);
|
181
|
+
void rb_thread_wait_other_threads(void);
|
182
|
+
|
183
|
+
enum {
|
184
|
+
RAISED_EXCEPTION = 1,
|
185
|
+
RAISED_STACKOVERFLOW = 2,
|
186
|
+
RAISED_NOMEMORY = 4
|
187
|
+
};
|
188
|
+
int rb_thread_set_raised(rb_thread_t *th);
|
189
|
+
int rb_thread_reset_raised(rb_thread_t *th);
|
190
|
+
#define rb_thread_raised_set(th, f) ((th)->raised_flag |= (f))
|
191
|
+
#define rb_thread_raised_reset(th, f) ((th)->raised_flag &= ~(f))
|
192
|
+
#define rb_thread_raised_p(th, f) (((th)->raised_flag & (f)) != 0)
|
193
|
+
#define rb_thread_raised_clear(th) ((th)->raised_flag = 0)
|
194
|
+
|
195
|
+
VALUE rb_f_eval(int argc, VALUE *argv, VALUE self);
|
196
|
+
VALUE rb_make_exception(int argc, VALUE *argv);
|
197
|
+
|
198
|
+
NORETURN(void rb_fiber_start(void));
|
199
|
+
|
200
|
+
NORETURN(void rb_print_undef(VALUE, ID, int));
|
201
|
+
NORETURN(void rb_vm_localjump_error(const char *,VALUE, int));
|
202
|
+
NORETURN(void rb_vm_jump_tag_but_local_jump(int, VALUE));
|
203
|
+
NORETURN(void rb_raise_method_missing(rb_thread_t *th, int argc, VALUE *argv,
|
204
|
+
VALUE obj, int call_status));
|
205
|
+
|
206
|
+
VALUE rb_vm_make_jump_tag_but_local_jump(int state, VALUE val);
|
207
|
+
NODE *rb_vm_cref(void);
|
208
|
+
VALUE rb_obj_is_proc(VALUE);
|
209
|
+
VALUE rb_vm_call_cfunc(VALUE recv, VALUE (*func)(VALUE), VALUE arg, const rb_block_t *blockptr, VALUE filename);
|
210
|
+
void rb_thread_terminate_all(void);
|
211
|
+
VALUE rb_vm_top_self();
|
212
|
+
VALUE rb_vm_cbase(void);
|
213
|
+
void rb_trap_restore_mask(void);
|
214
|
+
|
215
|
+
#endif /* RUBY_EVAL_INTERN_H */
|
data/ext/sender/extconf.rb
CHANGED
@@ -6,19 +6,5 @@ RbConfig::MAKEFILE_CONFIG['CC'] = ENV['CC'] if ENV['CC']
|
|
6
6
|
|
7
7
|
target = "sender"
|
8
8
|
|
9
|
-
default_ruby_source_dir = '/usr/src/ruby'
|
10
|
-
|
11
|
-
# --with-rubysrc-include=default_ruby_source_dir
|
12
|
-
dir_config( 'rubysrc', default_ruby_source_dir )
|
13
|
-
|
14
|
-
if ! find_header( 'eval_intern.h', default_ruby_source_dir )
|
15
|
-
puts 'Could not find path to ruby source directory, so could not locate "eval_intern.h". Default location is ' + default_ruby_source_dir + '. Specify alternative directory --with-rubysrc-include=path.'
|
16
|
-
exit
|
17
|
-
end
|
18
|
-
if ! find_header( 'vm_exec.h', default_ruby_source_dir )
|
19
|
-
puts 'Could not find path to ruby source directory, so could not locate "vm_exec.h". Default location is ' + default_ruby_source_dir + '. You can specify an alternative directory --with-rubysrc-include=path, but if you are seeing this error we have most likely already found the ruby source directory, and it is missing items.'
|
20
|
-
exit
|
21
|
-
end
|
22
|
-
|
23
9
|
# Create our makefile from sources
|
24
10
|
create_makefile( target )
|
data/ext/sender/gc.h
ADDED
@@ -0,0 +1,75 @@
|
|
1
|
+
|
2
|
+
#ifndef RUBY_GC_H
|
3
|
+
#define RUBY_GC_H 1
|
4
|
+
|
5
|
+
#if defined(__i386) && defined(__GNUC__)
|
6
|
+
#define SET_MACHINE_STACK_END(p) __asm__("mov %%esp, %0" : "=r" (*p))
|
7
|
+
#else
|
8
|
+
NOINLINE(void rb_gc_set_stack_end(VALUE **stack_end_p));
|
9
|
+
#define SET_MACHINE_STACK_END(p) rb_gc_set_stack_end(p)
|
10
|
+
#define USE_CONSERVATIVE_STACK_END
|
11
|
+
#endif
|
12
|
+
|
13
|
+
/* for GC debug */
|
14
|
+
|
15
|
+
#ifndef RUBY_MARK_FREE_DEBUG
|
16
|
+
#define RUBY_MARK_FREE_DEBUG 0
|
17
|
+
#endif
|
18
|
+
|
19
|
+
#if RUBY_MARK_FREE_DEBUG
|
20
|
+
extern int ruby_gc_debug_indent;
|
21
|
+
|
22
|
+
static void
|
23
|
+
rb_gc_debug_indent(void)
|
24
|
+
{
|
25
|
+
printf("%*s", ruby_gc_debug_indent, "");
|
26
|
+
}
|
27
|
+
|
28
|
+
static void
|
29
|
+
rb_gc_debug_body(char *mode, char *msg, int st, void *ptr)
|
30
|
+
{
|
31
|
+
if (st == 0) {
|
32
|
+
ruby_gc_debug_indent--;
|
33
|
+
}
|
34
|
+
rb_gc_debug_indent();
|
35
|
+
printf("%s: %s %s (%p)\n", mode, st ? "->" : "<-", msg, ptr);
|
36
|
+
|
37
|
+
if (st) {
|
38
|
+
ruby_gc_debug_indent++;
|
39
|
+
}
|
40
|
+
|
41
|
+
fflush(stdout);
|
42
|
+
}
|
43
|
+
|
44
|
+
#define RUBY_MARK_ENTER(msg) rb_gc_debug_body("mark", msg, 1, ptr)
|
45
|
+
#define RUBY_MARK_LEAVE(msg) rb_gc_debug_body("mark", msg, 0, ptr)
|
46
|
+
#define RUBY_FREE_ENTER(msg) rb_gc_debug_body("free", msg, 1, ptr)
|
47
|
+
#define RUBY_FREE_LEAVE(msg) rb_gc_debug_body("free", msg, 0, ptr)
|
48
|
+
#define RUBY_GC_INFO rb_gc_debug_indent(); printf
|
49
|
+
|
50
|
+
#else
|
51
|
+
#define RUBY_MARK_ENTER(msg)
|
52
|
+
#define RUBY_MARK_LEAVE(msg)
|
53
|
+
#define RUBY_FREE_ENTER(msg)
|
54
|
+
#define RUBY_FREE_LEAVE(msg)
|
55
|
+
#define RUBY_GC_INFO if(0)printf
|
56
|
+
#endif
|
57
|
+
|
58
|
+
#define RUBY_MARK_UNLESS_NULL(ptr) if(RTEST(ptr)){rb_gc_mark(ptr);}
|
59
|
+
#define RUBY_FREE_UNLESS_NULL(ptr) if(ptr){ruby_xfree(ptr);}
|
60
|
+
|
61
|
+
#if STACK_GROW_DIRECTION > 0
|
62
|
+
# define STACK_UPPER(x, a, b) a
|
63
|
+
#elif STACK_GROW_DIRECTION < 0
|
64
|
+
# define STACK_UPPER(x, a, b) b
|
65
|
+
#else
|
66
|
+
RUBY_EXTERN int ruby_stack_grow_direction;
|
67
|
+
int ruby_get_stack_grow_direction(VALUE *addr);
|
68
|
+
# define stack_growup_p(x) ( \
|
69
|
+
(ruby_stack_grow_direction ? \
|
70
|
+
ruby_stack_grow_direction : \
|
71
|
+
ruby_get_stack_grow_direction(x)) > 0)
|
72
|
+
# define STACK_UPPER(x, a, b) (stack_growup_p(x) ? a : b)
|
73
|
+
#endif
|
74
|
+
|
75
|
+
#endif /* RUBY_GC_H */
|
data/ext/sender/id.h
ADDED
@@ -0,0 +1,163 @@
|
|
1
|
+
/* DO NOT EDIT THIS FILE DIRECTLY */
|
2
|
+
/**********************************************************************
|
3
|
+
|
4
|
+
id.h -
|
5
|
+
|
6
|
+
$Author: nobu $
|
7
|
+
created at: Sun Oct 19 21:12:51 2008
|
8
|
+
|
9
|
+
Copyright (C) 2007 Koichi Sasada
|
10
|
+
|
11
|
+
**********************************************************************/
|
12
|
+
|
13
|
+
#ifndef RUBY_ID_H
|
14
|
+
#define RUBY_ID_H
|
15
|
+
|
16
|
+
#define ID_SCOPE_SHIFT 3
|
17
|
+
#define ID_SCOPE_MASK 0x07
|
18
|
+
#define ID_LOCAL 0x00
|
19
|
+
#define ID_INSTANCE 0x01
|
20
|
+
#define ID_GLOBAL 0x03
|
21
|
+
#define ID_ATTRSET 0x04
|
22
|
+
#define ID_CONST 0x05
|
23
|
+
#define ID_CLASS 0x06
|
24
|
+
#define ID_JUNK 0x07
|
25
|
+
#define ID_INTERNAL ID_JUNK
|
26
|
+
|
27
|
+
#ifdef USE_PARSE_H
|
28
|
+
#include "parse.h"
|
29
|
+
#endif
|
30
|
+
|
31
|
+
#define symIFUNC ID2SYM(idIFUNC)
|
32
|
+
#define symCFUNC ID2SYM(idCFUNC)
|
33
|
+
|
34
|
+
#if !defined tLAST_TOKEN && defined YYTOKENTYPE
|
35
|
+
#define tLAST_TOKEN tLAST_TOKEN
|
36
|
+
#endif
|
37
|
+
|
38
|
+
enum ruby_method_ids {
|
39
|
+
#ifndef tLAST_TOKEN
|
40
|
+
tUPLUS = 321,
|
41
|
+
tUMINUS = 322,
|
42
|
+
tPOW = 323,
|
43
|
+
tCMP = 324,
|
44
|
+
tEQ = 325,
|
45
|
+
tEQQ = 326,
|
46
|
+
tNEQ = 327,
|
47
|
+
tGEQ = 328,
|
48
|
+
tLEQ = 329,
|
49
|
+
tANDOP = 330,
|
50
|
+
tOROP = 331,
|
51
|
+
tMATCH = 332,
|
52
|
+
tNMATCH = 333,
|
53
|
+
tDOT2 = 334,
|
54
|
+
tDOT3 = 335,
|
55
|
+
tAREF = 336,
|
56
|
+
tASET = 337,
|
57
|
+
tLSHFT = 338,
|
58
|
+
tRSHFT = 339,
|
59
|
+
tLAMBDA = 352,
|
60
|
+
idNULL = 365,
|
61
|
+
idRespond_to = 366,
|
62
|
+
idIFUNC = 367,
|
63
|
+
idCFUNC = 368,
|
64
|
+
idThrowState = 369,
|
65
|
+
id_core_set_method_alias = 370,
|
66
|
+
id_core_set_variable_alias = 371,
|
67
|
+
id_core_undef_method = 372,
|
68
|
+
id_core_define_method = 373,
|
69
|
+
id_core_define_singleton_method = 374,
|
70
|
+
id_core_set_postexe = 375,
|
71
|
+
tLAST_TOKEN = 376,
|
72
|
+
#endif
|
73
|
+
idPLUS = '+',
|
74
|
+
idMINUS = '-',
|
75
|
+
idMULT = '*',
|
76
|
+
idDIV = '/',
|
77
|
+
idMOD = '%',
|
78
|
+
idLT = '<',
|
79
|
+
idLTLT = tLSHFT,
|
80
|
+
idLE = tLEQ,
|
81
|
+
idGT = '>',
|
82
|
+
idGE = tGEQ,
|
83
|
+
idEq = tEQ,
|
84
|
+
idEqq = tEQQ,
|
85
|
+
idNeq = tNEQ,
|
86
|
+
idNot = '!',
|
87
|
+
idBackquote = '`',
|
88
|
+
idEqTilde = tMATCH,
|
89
|
+
idAREF = tAREF,
|
90
|
+
idASET = tASET,
|
91
|
+
idLAST_TOKEN = tLAST_TOKEN >> ID_SCOPE_SHIFT,
|
92
|
+
tIntern,
|
93
|
+
tMethodMissing,
|
94
|
+
tLength,
|
95
|
+
tGets,
|
96
|
+
tSucc,
|
97
|
+
tEach,
|
98
|
+
tLambda,
|
99
|
+
tSend,
|
100
|
+
t__send__,
|
101
|
+
tInitialize,
|
102
|
+
#if SUPPORT_JOKE
|
103
|
+
tBitblt,
|
104
|
+
tAnswer,
|
105
|
+
#endif
|
106
|
+
tLAST_ID,
|
107
|
+
#define TOKEN2ID(n) id##n = ((t##n<<ID_SCOPE_SHIFT)|ID_LOCAL)
|
108
|
+
#if SUPPORT_JOKE
|
109
|
+
TOKEN2ID(Bitblt),
|
110
|
+
TOKEN2ID(Answer),
|
111
|
+
#endif
|
112
|
+
TOKEN2ID(Intern),
|
113
|
+
TOKEN2ID(MethodMissing),
|
114
|
+
TOKEN2ID(Length),
|
115
|
+
TOKEN2ID(Gets),
|
116
|
+
TOKEN2ID(Succ),
|
117
|
+
TOKEN2ID(Each),
|
118
|
+
TOKEN2ID(Lambda),
|
119
|
+
TOKEN2ID(Send),
|
120
|
+
TOKEN2ID(__send__),
|
121
|
+
TOKEN2ID(Initialize)
|
122
|
+
};
|
123
|
+
|
124
|
+
#ifdef tLAST_TOKEN
|
125
|
+
struct ruby_method_ids_check {
|
126
|
+
#define ruby_method_id_check_for(name, value) \
|
127
|
+
int checking_for_##name[name == value ? 1 : -1]
|
128
|
+
ruby_method_id_check_for(tUPLUS, 321);
|
129
|
+
ruby_method_id_check_for(tUMINUS, 322);
|
130
|
+
ruby_method_id_check_for(tPOW, 323);
|
131
|
+
ruby_method_id_check_for(tCMP, 324);
|
132
|
+
ruby_method_id_check_for(tEQ, 325);
|
133
|
+
ruby_method_id_check_for(tEQQ, 326);
|
134
|
+
ruby_method_id_check_for(tNEQ, 327);
|
135
|
+
ruby_method_id_check_for(tGEQ, 328);
|
136
|
+
ruby_method_id_check_for(tLEQ, 329);
|
137
|
+
ruby_method_id_check_for(tANDOP, 330);
|
138
|
+
ruby_method_id_check_for(tOROP, 331);
|
139
|
+
ruby_method_id_check_for(tMATCH, 332);
|
140
|
+
ruby_method_id_check_for(tNMATCH, 333);
|
141
|
+
ruby_method_id_check_for(tDOT2, 334);
|
142
|
+
ruby_method_id_check_for(tDOT3, 335);
|
143
|
+
ruby_method_id_check_for(tAREF, 336);
|
144
|
+
ruby_method_id_check_for(tASET, 337);
|
145
|
+
ruby_method_id_check_for(tLSHFT, 338);
|
146
|
+
ruby_method_id_check_for(tRSHFT, 339);
|
147
|
+
ruby_method_id_check_for(tLAMBDA, 352);
|
148
|
+
ruby_method_id_check_for(idNULL, 365);
|
149
|
+
ruby_method_id_check_for(idRespond_to, 366);
|
150
|
+
ruby_method_id_check_for(idIFUNC, 367);
|
151
|
+
ruby_method_id_check_for(idCFUNC, 368);
|
152
|
+
ruby_method_id_check_for(idThrowState, 369);
|
153
|
+
ruby_method_id_check_for(id_core_set_method_alias, 370);
|
154
|
+
ruby_method_id_check_for(id_core_set_variable_alias, 371);
|
155
|
+
ruby_method_id_check_for(id_core_undef_method, 372);
|
156
|
+
ruby_method_id_check_for(id_core_define_method, 373);
|
157
|
+
ruby_method_id_check_for(id_core_define_singleton_method, 374);
|
158
|
+
ruby_method_id_check_for(id_core_set_postexe, 375);
|
159
|
+
ruby_method_id_check_for(tLAST_TOKEN, 376);
|
160
|
+
};
|
161
|
+
#endif
|
162
|
+
|
163
|
+
#endif /* RUBY_ID_H */
|
data/ext/sender/iseq.h
ADDED
@@ -0,0 +1,103 @@
|
|
1
|
+
/**********************************************************************
|
2
|
+
|
3
|
+
iseq.h -
|
4
|
+
|
5
|
+
$Author: yugui $
|
6
|
+
created at: 04/01/01 23:36:57 JST
|
7
|
+
|
8
|
+
Copyright (C) 2004-2008 Koichi Sasada
|
9
|
+
|
10
|
+
**********************************************************************/
|
11
|
+
|
12
|
+
#ifndef RUBY_COMPILE_H
|
13
|
+
#define RUBY_COMPILE_H
|
14
|
+
|
15
|
+
/* compile.c */
|
16
|
+
VALUE rb_iseq_compile_node(VALUE self, NODE *node);
|
17
|
+
int rb_iseq_translate_threaded_code(rb_iseq_t *iseq);
|
18
|
+
VALUE rb_iseq_build_from_ary(rb_iseq_t *iseq, VALUE locals, VALUE args,
|
19
|
+
VALUE exception, VALUE body);
|
20
|
+
|
21
|
+
/* iseq.c */
|
22
|
+
VALUE ruby_iseq_load(VALUE data, VALUE parent, VALUE opt);
|
23
|
+
struct st_table *ruby_insn_make_insn_table(void);
|
24
|
+
|
25
|
+
#define ISEQ_TYPE_TOP INT2FIX(1)
|
26
|
+
#define ISEQ_TYPE_METHOD INT2FIX(2)
|
27
|
+
#define ISEQ_TYPE_BLOCK INT2FIX(3)
|
28
|
+
#define ISEQ_TYPE_CLASS INT2FIX(4)
|
29
|
+
#define ISEQ_TYPE_RESCUE INT2FIX(5)
|
30
|
+
#define ISEQ_TYPE_ENSURE INT2FIX(6)
|
31
|
+
#define ISEQ_TYPE_EVAL INT2FIX(7)
|
32
|
+
#define ISEQ_TYPE_MAIN INT2FIX(8)
|
33
|
+
#define ISEQ_TYPE_DEFINED_GUARD INT2FIX(9)
|
34
|
+
|
35
|
+
#define CATCH_TYPE_RESCUE INT2FIX(1)
|
36
|
+
#define CATCH_TYPE_ENSURE INT2FIX(2)
|
37
|
+
#define CATCH_TYPE_RETRY INT2FIX(3)
|
38
|
+
#define CATCH_TYPE_BREAK INT2FIX(4)
|
39
|
+
#define CATCH_TYPE_REDO INT2FIX(5)
|
40
|
+
#define CATCH_TYPE_NEXT INT2FIX(6)
|
41
|
+
|
42
|
+
struct iseq_insn_info_entry {
|
43
|
+
unsigned short position;
|
44
|
+
unsigned short line_no;
|
45
|
+
unsigned short sp;
|
46
|
+
};
|
47
|
+
|
48
|
+
struct iseq_catch_table_entry {
|
49
|
+
VALUE type;
|
50
|
+
VALUE iseq;
|
51
|
+
unsigned long start;
|
52
|
+
unsigned long end;
|
53
|
+
unsigned long cont;
|
54
|
+
unsigned long sp;
|
55
|
+
};
|
56
|
+
|
57
|
+
#define INITIAL_ISEQ_COMPILE_DATA_STORAGE_BUFF_SIZE (512)
|
58
|
+
|
59
|
+
struct iseq_compile_data_storage {
|
60
|
+
struct iseq_compile_data_storage *next;
|
61
|
+
unsigned long pos;
|
62
|
+
unsigned long size;
|
63
|
+
char *buff;
|
64
|
+
};
|
65
|
+
|
66
|
+
struct iseq_compile_data {
|
67
|
+
/* GC is needed */
|
68
|
+
VALUE err_info;
|
69
|
+
VALUE mark_ary;
|
70
|
+
VALUE catch_table_ary; /* Array */
|
71
|
+
|
72
|
+
/* GC is not needed */
|
73
|
+
struct iseq_label_data *start_label;
|
74
|
+
struct iseq_label_data *end_label;
|
75
|
+
struct iseq_label_data *redo_label;
|
76
|
+
VALUE current_block;
|
77
|
+
VALUE loopval_popped; /* used by NODE_BREAK */
|
78
|
+
VALUE ensure_node;
|
79
|
+
VALUE for_iseq;
|
80
|
+
struct iseq_compile_data_ensure_node_stack *ensure_node_stack;
|
81
|
+
int cached_const;
|
82
|
+
struct iseq_compile_data_storage *storage_head;
|
83
|
+
struct iseq_compile_data_storage *storage_current;
|
84
|
+
int last_line;
|
85
|
+
int flip_cnt;
|
86
|
+
int label_no;
|
87
|
+
int node_level;
|
88
|
+
const rb_compile_option_t *option;
|
89
|
+
};
|
90
|
+
|
91
|
+
/* defined? */
|
92
|
+
#define DEFINED_IVAR INT2FIX(1)
|
93
|
+
#define DEFINED_IVAR2 INT2FIX(2)
|
94
|
+
#define DEFINED_GVAR INT2FIX(3)
|
95
|
+
#define DEFINED_CVAR INT2FIX(4)
|
96
|
+
#define DEFINED_CONST INT2FIX(5)
|
97
|
+
#define DEFINED_METHOD INT2FIX(6)
|
98
|
+
#define DEFINED_YIELD INT2FIX(7)
|
99
|
+
#define DEFINED_REF INT2FIX(8)
|
100
|
+
#define DEFINED_ZSUPER INT2FIX(9)
|
101
|
+
#define DEFINED_FUNC INT2FIX(10)
|
102
|
+
|
103
|
+
#endif /* RUBY_COMPILE_H */
|
data/ext/sender/main.c
CHANGED
@@ -1,15 +1,16 @@
|
|
1
1
|
|
2
2
|
#include "rb_Global.h"
|
3
|
+
#include "rb_Kernel.h"
|
3
4
|
|
4
5
|
/*************
|
5
|
-
|
6
|
-
|
6
|
+
* Init *
|
7
|
+
*************/
|
7
8
|
|
8
9
|
// Called from ruby when RPBDB module is initialized
|
9
10
|
void Init_sender() {
|
10
11
|
|
11
|
-
|
12
|
-
|
12
|
+
Init_senderGlobal();
|
13
|
+
Init_senderKernel();
|
13
14
|
|
14
15
|
}
|
15
16
|
|