debase-ruby_core_source 0.7.5 → 0.7.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (49) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +4 -0
  3. data/CONTRIBUTING.md +2 -1
  4. data/Rakefile +3 -2
  5. data/lib/debase/ruby_core_source/ruby-2.2.1/addr2line.h +21 -0
  6. data/lib/debase/ruby_core_source/ruby-2.2.1/ccan/build_assert/build_assert.h +40 -0
  7. data/lib/debase/ruby_core_source/ruby-2.2.1/ccan/check_type/check_type.h +63 -0
  8. data/lib/debase/ruby_core_source/ruby-2.2.1/ccan/container_of/container_of.h +142 -0
  9. data/lib/debase/ruby_core_source/ruby-2.2.1/ccan/list/list.h +635 -0
  10. data/lib/debase/ruby_core_source/ruby-2.2.1/ccan/str/str.h +16 -0
  11. data/lib/debase/ruby_core_source/ruby-2.2.1/constant.h +43 -0
  12. data/lib/debase/ruby_core_source/ruby-2.2.1/dln.h +51 -0
  13. data/lib/debase/ruby_core_source/ruby-2.2.1/eval_intern.h +275 -0
  14. data/lib/debase/ruby_core_source/ruby-2.2.1/gc.h +107 -0
  15. data/lib/debase/ruby_core_source/ruby-2.2.1/id.h +210 -0
  16. data/lib/debase/ruby_core_source/ruby-2.2.1/insns.inc +107 -0
  17. data/lib/debase/ruby_core_source/ruby-2.2.1/insns_info.inc +752 -0
  18. data/lib/debase/ruby_core_source/ruby-2.2.1/internal.h +1185 -0
  19. data/lib/debase/ruby_core_source/ruby-2.2.1/iseq.h +158 -0
  20. data/lib/debase/ruby_core_source/ruby-2.2.1/known_errors.inc +746 -0
  21. data/lib/debase/ruby_core_source/ruby-2.2.1/method.h +144 -0
  22. data/lib/debase/ruby_core_source/ruby-2.2.1/node.h +544 -0
  23. data/lib/debase/ruby_core_source/ruby-2.2.1/node_name.inc +212 -0
  24. data/lib/debase/ruby_core_source/ruby-2.2.1/opt_sc.inc +734 -0
  25. data/lib/debase/ruby_core_source/ruby-2.2.1/optinsn.inc +83 -0
  26. data/lib/debase/ruby_core_source/ruby-2.2.1/optunifs.inc +124 -0
  27. data/lib/debase/ruby_core_source/ruby-2.2.1/parse.h +203 -0
  28. data/lib/debase/ruby_core_source/ruby-2.2.1/probes_helper.h +67 -0
  29. data/lib/debase/ruby_core_source/ruby-2.2.1/regenc.h +234 -0
  30. data/lib/debase/ruby_core_source/ruby-2.2.1/regint.h +972 -0
  31. data/lib/debase/ruby_core_source/ruby-2.2.1/regparse.h +363 -0
  32. data/lib/debase/ruby_core_source/ruby-2.2.1/revision.h +1 -0
  33. data/lib/debase/ruby_core_source/ruby-2.2.1/ruby_atomic.h +170 -0
  34. data/lib/debase/ruby_core_source/ruby-2.2.1/siphash.h +48 -0
  35. data/lib/debase/ruby_core_source/ruby-2.2.1/symbol.h +87 -0
  36. data/lib/debase/ruby_core_source/ruby-2.2.1/thread_pthread.h +54 -0
  37. data/lib/debase/ruby_core_source/ruby-2.2.1/thread_win32.h +36 -0
  38. data/lib/debase/ruby_core_source/ruby-2.2.1/timev.h +42 -0
  39. data/lib/debase/ruby_core_source/ruby-2.2.1/transcode_data.h +123 -0
  40. data/lib/debase/ruby_core_source/ruby-2.2.1/version.h +52 -0
  41. data/lib/debase/ruby_core_source/ruby-2.2.1/vm.inc +3353 -0
  42. data/lib/debase/ruby_core_source/ruby-2.2.1/vm_core.h +1161 -0
  43. data/lib/debase/ruby_core_source/ruby-2.2.1/vm_debug.h +37 -0
  44. data/lib/debase/ruby_core_source/ruby-2.2.1/vm_exec.h +182 -0
  45. data/lib/debase/ruby_core_source/ruby-2.2.1/vm_insnhelper.h +233 -0
  46. data/lib/debase/ruby_core_source/ruby-2.2.1/vm_opts.h +56 -0
  47. data/lib/debase/ruby_core_source/ruby-2.2.1/vmtc.inc +105 -0
  48. data/lib/debase/ruby_core_source/version.rb +1 -1
  49. metadata +45 -2
@@ -0,0 +1,54 @@
1
+ /**********************************************************************
2
+
3
+ thread_pthread.h -
4
+
5
+ $Author: normal $
6
+
7
+ Copyright (C) 2004-2007 Koichi Sasada
8
+
9
+ **********************************************************************/
10
+
11
+ #ifndef RUBY_THREAD_PTHREAD_H
12
+ #define RUBY_THREAD_PTHREAD_H
13
+
14
+ #ifdef HAVE_PTHREAD_NP_H
15
+ #include <pthread_np.h>
16
+ #endif
17
+
18
+ #define RB_NATIVETHREAD_LOCK_INIT PTHREAD_MUTEX_INITIALIZER
19
+ #define RB_NATIVETHREAD_COND_INIT { PTHREAD_COND_INITIALIZER, }
20
+
21
+ typedef struct rb_thread_cond_struct {
22
+ pthread_cond_t cond;
23
+ #ifdef HAVE_CLOCKID_T
24
+ clockid_t clockid;
25
+ #endif
26
+ } rb_nativethread_cond_t;
27
+
28
+ typedef struct native_thread_data_struct {
29
+ void *signal_thread_list;
30
+ rb_nativethread_cond_t sleep_cond;
31
+ } native_thread_data_t;
32
+
33
+ #undef except
34
+ #undef try
35
+ #undef leave
36
+ #undef finally
37
+
38
+ typedef struct rb_global_vm_lock_struct {
39
+ /* fast path */
40
+ unsigned long acquired;
41
+ rb_nativethread_lock_t lock;
42
+
43
+ /* slow path */
44
+ volatile unsigned long waiting;
45
+ rb_nativethread_cond_t cond;
46
+
47
+ /* yield */
48
+ rb_nativethread_cond_t switch_cond;
49
+ rb_nativethread_cond_t switch_wait_cond;
50
+ int need_yield;
51
+ int wait_yield;
52
+ } rb_global_vm_lock_t;
53
+
54
+ #endif /* RUBY_THREAD_PTHREAD_H */
@@ -0,0 +1,36 @@
1
+ /**********************************************************************
2
+
3
+ thread_win32.h -
4
+
5
+ $Author: ko1 $
6
+
7
+ Copyright (C) 2004-2007 Koichi Sasada
8
+
9
+ **********************************************************************/
10
+
11
+ /* interface */
12
+ #ifndef RUBY_THREAD_WIN32_H
13
+ #define RUBY_THREAD_WIN32_H
14
+
15
+ # ifdef __CYGWIN__
16
+ # undef _WIN32
17
+ # endif
18
+
19
+ WINBASEAPI BOOL WINAPI
20
+ TryEnterCriticalSection(IN OUT LPCRITICAL_SECTION lpCriticalSection);
21
+
22
+ typedef struct rb_thread_cond_struct {
23
+ struct cond_event_entry *next;
24
+ struct cond_event_entry *prev;
25
+ } rb_nativethread_cond_t;
26
+
27
+ typedef struct native_thread_data_struct {
28
+ HANDLE interrupt_event;
29
+ } native_thread_data_t;
30
+
31
+ typedef struct rb_global_vm_lock_struct {
32
+ HANDLE lock;
33
+ } rb_global_vm_lock_t;
34
+
35
+ #endif /* RUBY_THREAD_WIN32_H */
36
+
@@ -0,0 +1,42 @@
1
+ #ifndef RUBY_TIMEV_H
2
+ #define RUBY_TIMEV_H
3
+
4
+ PACKED_STRUCT_UNALIGNED(struct vtm {
5
+ VALUE year; /* 2000 for example. Integer. */
6
+ VALUE subsecx; /* 0 <= subsecx < TIME_SCALE. possibly Rational. */
7
+ VALUE utc_offset; /* -3600 as -01:00 for example. possibly Rational. */
8
+ const char *zone; /* "JST", "EST", "EDT", etc. */
9
+ uint16_t yday:9; /* 1..366 */
10
+ uint8_t mon:4; /* 1..12 */
11
+ uint8_t mday:5; /* 1..31 */
12
+ uint8_t hour:5; /* 0..23 */
13
+ uint8_t min:6; /* 0..59 */
14
+ uint8_t sec:6; /* 0..60 */
15
+ uint8_t wday:3; /* 0:Sunday, 1:Monday, ..., 6:Saturday 7:init */
16
+ uint8_t isdst:2; /* 0:StandardTime 1:DayLightSavingTime 3:init */
17
+ });
18
+
19
+ #define TIME_SCALE 1000000000
20
+
21
+ #ifndef TYPEOF_TIMEVAL_TV_SEC
22
+ # define TYPEOF_TIMEVAL_TV_SEC time_t
23
+ #endif
24
+ #ifndef TYPEOF_TIMEVAL_TV_USEC
25
+ # if INT_MAX >= 1000000
26
+ # define TYPEOF_TIMEVAL_TV_USEC int
27
+ # else
28
+ # define TYPEOF_TIMEVAL_TV_USEC long
29
+ # endif
30
+ #endif
31
+
32
+ #if SIZEOF_TIME_T == SIZEOF_LONG
33
+ typedef unsigned long unsigned_time_t;
34
+ #elif SIZEOF_TIME_T == SIZEOF_INT
35
+ typedef unsigned int unsigned_time_t;
36
+ #elif SIZEOF_TIME_T == SIZEOF_LONG_LONG
37
+ typedef unsigned LONG_LONG unsigned_time_t;
38
+ #else
39
+ # error cannot find integer type which size is same as time_t.
40
+ #endif
41
+
42
+ #endif
@@ -0,0 +1,123 @@
1
+ /**********************************************************************
2
+
3
+ transcode_data.h -
4
+
5
+ $Author: nobu $
6
+ created at: Mon 10 Dec 2007 14:01:47 JST 2007
7
+
8
+ Copyright (C) 2007 Martin Duerst
9
+
10
+ **********************************************************************/
11
+
12
+ #include "ruby/ruby.h"
13
+
14
+ #ifndef RUBY_TRANSCODE_DATA_H
15
+ #define RUBY_TRANSCODE_DATA_H 1
16
+
17
+ RUBY_SYMBOL_EXPORT_BEGIN
18
+
19
+ #define WORDINDEX_SHIFT_BITS 2
20
+ #define WORDINDEX2INFO(widx) ((widx) << WORDINDEX_SHIFT_BITS)
21
+ #define INFO2WORDINDEX(info) ((info) >> WORDINDEX_SHIFT_BITS)
22
+ #define BYTE_LOOKUP_BASE(bl) ((bl)[0])
23
+ #define BYTE_LOOKUP_INFO(bl) ((bl)[1])
24
+
25
+ #define PType (unsigned int)
26
+
27
+ #define NOMAP (PType 0x01) /* direct map */
28
+ #define ONEbt (0x02) /* one byte payload */
29
+ #define TWObt (0x03) /* two bytes payload */
30
+ #define THREEbt (0x05) /* three bytes payload */
31
+ #define FOURbt (0x06) /* four bytes payload, UTF-8 only, macros start at getBT0 */
32
+ #define INVALID (PType 0x07) /* invalid byte sequence */
33
+ #define UNDEF (PType 0x09) /* legal but undefined */
34
+ #define ZERObt (PType 0x0A) /* zero bytes of payload, i.e. remove */
35
+ #define FUNii (PType 0x0B) /* function from info to info */
36
+ #define FUNsi (PType 0x0D) /* function from start to info */
37
+ #define FUNio (PType 0x0E) /* function from info to output */
38
+ #define FUNso (PType 0x0F) /* function from start to output */
39
+ #define STR1 (PType 0x11) /* string 4 <= len <= 259 bytes: 1byte length + content */
40
+ #define GB4bt (PType 0x12) /* GB18030 four bytes payload */
41
+ #define FUNsio (PType 0x13) /* function from start and info to output */
42
+
43
+ #define STR1_LENGTH(byte_addr) (unsigned int)(*(byte_addr) + 4)
44
+ #define STR1_BYTEINDEX(w) ((w) >> 6)
45
+ #define makeSTR1(bi) (((bi) << 6) | STR1)
46
+ #define makeSTR1LEN(len) ((len)-4)
47
+
48
+ #define o1(b1) (PType((((unsigned char)(b1))<<8)|ONEbt))
49
+ #define o2(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|TWObt))
50
+ #define o3(b1,b2,b3) (PType(((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|(((unsigned int)(unsigned char)(b3))<<24)|THREEbt)&0xffffffffU))
51
+ #define o4(b0,b1,b2,b3) (PType(((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|(((unsigned char)(b3))<<24)|((((unsigned char)(b0))&0x07)<<5)|FOURbt)&0xffffffffU))
52
+ #define g4(b0,b1,b2,b3) (PType(((((unsigned char)(b0))<<8)|(((unsigned char)(b2))<<16)|((((unsigned char)(b1))&0x0f)<<24)|((((unsigned int)(unsigned char)(b3))&0x0f)<<28)|GB4bt)&0xffffffffU))
53
+ #define funsio(diff) (PType((((unsigned int)(diff))<<8)|FUNsio))
54
+
55
+ #define getBT1(a) ((unsigned char)((a)>> 8))
56
+ #define getBT2(a) ((unsigned char)((a)>>16))
57
+ #define getBT3(a) ((unsigned char)((a)>>24))
58
+ #define getBT0(a) (((unsigned char)((a)>> 5)&0x07)|0xF0) /* for UTF-8 only!!! */
59
+
60
+ #define getGB4bt0(a) ((unsigned char)((a)>> 8))
61
+ #define getGB4bt1(a) (((unsigned char)((a)>>24)&0x0F)|0x30)
62
+ #define getGB4bt2(a) ((unsigned char)((a)>>16))
63
+ #define getGB4bt3(a) (((unsigned char)((a)>>28)&0x0F)|0x30)
64
+
65
+ #define o2FUNii(b1,b2) (PType((((unsigned char)(b1))<<8)|(((unsigned char)(b2))<<16)|FUNii))
66
+
67
+ /* do we need these??? maybe not, can be done with simple tables */
68
+ #define ONETRAIL /* legal but undefined if one more trailing UTF-8 */
69
+ #define TWOTRAIL /* legal but undefined if two more trailing UTF-8 */
70
+ #define THREETRAIL /* legal but undefined if three more trailing UTF-8 */
71
+
72
+ typedef enum {
73
+ asciicompat_converter, /* ASCII-compatible -> ASCII-compatible */
74
+ asciicompat_decoder, /* ASCII-incompatible -> ASCII-compatible */
75
+ asciicompat_encoder /* ASCII-compatible -> ASCII-incompatible */
76
+ /* ASCII-incompatible -> ASCII-incompatible is intentionally omitted. */
77
+ } rb_transcoder_asciicompat_type_t;
78
+
79
+ typedef struct rb_transcoder rb_transcoder;
80
+
81
+ /* static structure, one per supported encoding pair */
82
+ struct rb_transcoder {
83
+ const char *src_encoding;
84
+ const char *dst_encoding;
85
+ unsigned int conv_tree_start;
86
+ const unsigned char *byte_array;
87
+ unsigned int byte_array_length;
88
+ const unsigned int *word_array;
89
+ unsigned int word_array_length;
90
+ int word_size;
91
+ int input_unit_length;
92
+ int max_input;
93
+ int max_output;
94
+ rb_transcoder_asciicompat_type_t asciicompat_type;
95
+ size_t state_size;
96
+ int (*state_init_func)(void*); /* ret==0:success ret!=0:failure(errno) */
97
+ int (*state_fini_func)(void*); /* ret==0:success ret!=0:failure(errno) */
98
+ VALUE (*func_ii)(void*, VALUE); /* info -> info */
99
+ VALUE (*func_si)(void*, const unsigned char*, size_t); /* start -> info */
100
+ ssize_t (*func_io)(void*, VALUE, const unsigned char*, size_t); /* info -> output */
101
+ ssize_t (*func_so)(void*, const unsigned char*, size_t, unsigned char*, size_t); /* start -> output */
102
+ ssize_t (*finish_func)(void*, unsigned char*, size_t); /* -> output */
103
+ ssize_t (*resetsize_func)(void*); /* -> len */
104
+ ssize_t (*resetstate_func)(void*, unsigned char*, size_t); /* -> output */
105
+ ssize_t (*func_sio)(void*, const unsigned char*, size_t, VALUE, unsigned char*, size_t); /* start -> output */
106
+ };
107
+
108
+ void rb_declare_transcoder(const char *enc1, const char *enc2, const char *lib);
109
+ void rb_register_transcoder(const rb_transcoder *);
110
+
111
+ /*
112
+ * To get rid of collision of initializer symbols in statically-linked encodings
113
+ * and transcoders
114
+ */
115
+ #if defined(EXTSTATIC) && EXTSTATIC
116
+ # define TRANS_INIT(name) void Init_trans_ ## name(void)
117
+ #else
118
+ # define TRANS_INIT(name) void Init_ ## name(void)
119
+ #endif
120
+
121
+ RUBY_SYMBOL_EXPORT_END
122
+
123
+ #endif /* RUBY_TRANSCODE_DATA_H */
@@ -0,0 +1,52 @@
1
+ #define RUBY_VERSION "2.2.1"
2
+ #define RUBY_RELEASE_DATE "2015-02-26"
3
+ #define RUBY_PATCHLEVEL 85
4
+
5
+ #define RUBY_RELEASE_YEAR 2015
6
+ #define RUBY_RELEASE_MONTH 2
7
+ #define RUBY_RELEASE_DAY 26
8
+
9
+ #include "ruby/version.h"
10
+
11
+ #if !defined RUBY_LIB_VERSION && defined RUBY_LIB_VERSION_STYLE
12
+ # if RUBY_LIB_VERSION_STYLE == 3
13
+ # define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR)"."STRINGIZE(RUBY_API_VERSION_TEENY)
14
+ # elif RUBY_LIB_VERSION_STYLE == 2
15
+ # define RUBY_LIB_VERSION STRINGIZE(RUBY_API_VERSION_MAJOR)"."STRINGIZE(RUBY_API_VERSION_MINOR)
16
+ # endif
17
+ #endif
18
+
19
+ #if RUBY_PATCHLEVEL == -1
20
+ #define RUBY_PATCHLEVEL_STR "dev"
21
+ #else
22
+ #define RUBY_PATCHLEVEL_STR "p"STRINGIZE(RUBY_PATCHLEVEL)
23
+ #endif
24
+
25
+ #ifndef RUBY_REVISION
26
+ # include "revision.h"
27
+ #endif
28
+ #ifndef RUBY_REVISION
29
+ # define RUBY_REVISION 0
30
+ #endif
31
+
32
+ #if RUBY_REVISION
33
+ # ifdef RUBY_BRANCH_NAME
34
+ # define RUBY_REVISION_STR " "RUBY_BRANCH_NAME" "STRINGIZE(RUBY_REVISION)
35
+ # else
36
+ # define RUBY_REVISION_STR " revision "STRINGIZE(RUBY_REVISION)
37
+ # endif
38
+ #else
39
+ # define RUBY_REVISION_STR ""
40
+ #endif
41
+
42
+ # define RUBY_DESCRIPTION \
43
+ "ruby "RUBY_VERSION \
44
+ RUBY_PATCHLEVEL_STR \
45
+ " ("RUBY_RELEASE_DATE \
46
+ RUBY_REVISION_STR") " \
47
+ "["RUBY_PLATFORM"]"
48
+ # define RUBY_COPYRIGHT \
49
+ "ruby - Copyright (C) " \
50
+ STRINGIZE(RUBY_BIRTH_YEAR)"-" \
51
+ STRINGIZE(RUBY_RELEASE_YEAR)" " \
52
+ RUBY_AUTHOR