debase-ruby_core_source 0.10.7 → 0.10.8
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +4 -0
- data/lib/debase/ruby_core_source.rb +1 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/addr2line.h +21 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/builtin.h +68 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ccan/build_assert/build_assert.h +40 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ccan/check_type/check_type.h +63 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ccan/container_of/container_of.h +142 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ccan/list/list.h +788 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ccan/str/str.h +16 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/constant.h +50 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/debug_counter.h +378 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/dln.h +51 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/encindex.h +69 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/eval_intern.h +311 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/gc.h +129 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/hrtime.h +168 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/id.h +290 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/id_table.h +34 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/insns.inc +253 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/insns_info.inc +9196 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/internal.h +2657 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/iseq.h +311 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/known_errors.inc +791 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/method.h +228 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/mjit.h +175 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/mjit_compile.inc +7782 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/node.h +476 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/node_name.inc +208 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/opt_sc.inc +109 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/optinsn.inc +128 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/optunifs.inc +43 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/parse.h +210 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/probes_helper.h +42 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/regenc.h +254 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/regint.h +938 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/regparse.h +370 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/revision.h +2 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ruby_assert.h +15 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/ruby_atomic.h +244 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/siphash.h +48 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/symbol.h +119 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/thread_pthread.h +75 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/thread_win32.h +36 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/timev.h +56 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/transcode_data.h +139 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/transient_heap.h +62 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/version.h +77 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm.inc +5319 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_call_iseq_optimized.inc +237 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_core.h +1957 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_debug.h +34 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_exec.h +193 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_insnhelper.h +255 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vm_opts.h +72 -0
- data/lib/debase/ruby_core_source/ruby-2.7.0-preview3/vmtc.inc +247 -0
- data/lib/debase/ruby_core_source/version.rb +1 -1
- metadata +55 -2
@@ -0,0 +1,210 @@
|
|
1
|
+
/* A Bison parser, made by GNU Bison 3.0.4. */
|
2
|
+
|
3
|
+
/* Bison interface for Yacc-like parsers in C
|
4
|
+
|
5
|
+
Copyright (C) 1984, 1989-1990, 2000-2015 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
|
+
#ifndef YY_YY_Y_TAB_H_INCLUDED
|
34
|
+
# define YY_YY_Y_TAB_H_INCLUDED
|
35
|
+
/* Debug traces. */
|
36
|
+
#ifndef YYDEBUG
|
37
|
+
# define YYDEBUG 0
|
38
|
+
#endif
|
39
|
+
#if YYDEBUG
|
40
|
+
extern int yydebug;
|
41
|
+
#endif
|
42
|
+
|
43
|
+
/* Token type. */
|
44
|
+
#ifndef YYTOKENTYPE
|
45
|
+
# define YYTOKENTYPE
|
46
|
+
enum yytokentype
|
47
|
+
{
|
48
|
+
END_OF_INPUT = 0,
|
49
|
+
keyword_class = 258,
|
50
|
+
keyword_module = 259,
|
51
|
+
keyword_def = 260,
|
52
|
+
keyword_undef = 261,
|
53
|
+
keyword_begin = 262,
|
54
|
+
keyword_rescue = 263,
|
55
|
+
keyword_ensure = 264,
|
56
|
+
keyword_end = 265,
|
57
|
+
keyword_if = 266,
|
58
|
+
keyword_unless = 267,
|
59
|
+
keyword_then = 268,
|
60
|
+
keyword_elsif = 269,
|
61
|
+
keyword_else = 270,
|
62
|
+
keyword_case = 271,
|
63
|
+
keyword_when = 272,
|
64
|
+
keyword_while = 273,
|
65
|
+
keyword_until = 274,
|
66
|
+
keyword_for = 275,
|
67
|
+
keyword_break = 276,
|
68
|
+
keyword_next = 277,
|
69
|
+
keyword_redo = 278,
|
70
|
+
keyword_retry = 279,
|
71
|
+
keyword_in = 280,
|
72
|
+
keyword_do = 281,
|
73
|
+
keyword_do_cond = 282,
|
74
|
+
keyword_do_block = 283,
|
75
|
+
keyword_do_LAMBDA = 284,
|
76
|
+
keyword_return = 285,
|
77
|
+
keyword_yield = 286,
|
78
|
+
keyword_super = 287,
|
79
|
+
keyword_self = 288,
|
80
|
+
keyword_nil = 289,
|
81
|
+
keyword_true = 290,
|
82
|
+
keyword_false = 291,
|
83
|
+
keyword_and = 292,
|
84
|
+
keyword_or = 293,
|
85
|
+
keyword_not = 294,
|
86
|
+
modifier_if = 295,
|
87
|
+
modifier_unless = 296,
|
88
|
+
modifier_while = 297,
|
89
|
+
modifier_until = 298,
|
90
|
+
modifier_rescue = 299,
|
91
|
+
keyword_alias = 300,
|
92
|
+
keyword_defined = 301,
|
93
|
+
keyword_BEGIN = 302,
|
94
|
+
keyword_END = 303,
|
95
|
+
keyword__LINE__ = 304,
|
96
|
+
keyword__FILE__ = 305,
|
97
|
+
keyword__ENCODING__ = 306,
|
98
|
+
tIDENTIFIER = 307,
|
99
|
+
tFID = 308,
|
100
|
+
tGVAR = 309,
|
101
|
+
tIVAR = 310,
|
102
|
+
tCONSTANT = 311,
|
103
|
+
tCVAR = 312,
|
104
|
+
tLABEL = 313,
|
105
|
+
tINTEGER = 314,
|
106
|
+
tFLOAT = 315,
|
107
|
+
tRATIONAL = 316,
|
108
|
+
tIMAGINARY = 317,
|
109
|
+
tCHAR = 318,
|
110
|
+
tNTH_REF = 319,
|
111
|
+
tBACK_REF = 320,
|
112
|
+
tSTRING_CONTENT = 321,
|
113
|
+
tREGEXP_END = 322,
|
114
|
+
tSP = 323,
|
115
|
+
tUPLUS = 132,
|
116
|
+
tUMINUS = 133,
|
117
|
+
tPOW = 134,
|
118
|
+
tCMP = 135,
|
119
|
+
tEQ = 140,
|
120
|
+
tEQQ = 141,
|
121
|
+
tNEQ = 142,
|
122
|
+
tGEQ = 139,
|
123
|
+
tLEQ = 138,
|
124
|
+
tANDOP = 148,
|
125
|
+
tOROP = 149,
|
126
|
+
tMATCH = 143,
|
127
|
+
tNMATCH = 144,
|
128
|
+
tDOT2 = 128,
|
129
|
+
tDOT3 = 129,
|
130
|
+
tBDOT2 = 130,
|
131
|
+
tBDOT3 = 131,
|
132
|
+
tAREF = 145,
|
133
|
+
tASET = 146,
|
134
|
+
tLSHFT = 136,
|
135
|
+
tRSHFT = 137,
|
136
|
+
tANDDOT = 150,
|
137
|
+
tCOLON2 = 147,
|
138
|
+
tCOLON3 = 324,
|
139
|
+
tOP_ASGN = 325,
|
140
|
+
tASSOC = 326,
|
141
|
+
tLPAREN = 327,
|
142
|
+
tLPAREN_ARG = 328,
|
143
|
+
tRPAREN = 329,
|
144
|
+
tLBRACK = 330,
|
145
|
+
tLBRACE = 331,
|
146
|
+
tLBRACE_ARG = 332,
|
147
|
+
tSTAR = 333,
|
148
|
+
tDSTAR = 334,
|
149
|
+
tAMPER = 335,
|
150
|
+
tLAMBDA = 336,
|
151
|
+
tSYMBEG = 337,
|
152
|
+
tSTRING_BEG = 338,
|
153
|
+
tXSTRING_BEG = 339,
|
154
|
+
tREGEXP_BEG = 340,
|
155
|
+
tWORDS_BEG = 341,
|
156
|
+
tQWORDS_BEG = 342,
|
157
|
+
tSYMBOLS_BEG = 343,
|
158
|
+
tQSYMBOLS_BEG = 344,
|
159
|
+
tSTRING_END = 345,
|
160
|
+
tSTRING_DEND = 346,
|
161
|
+
tSTRING_DBEG = 347,
|
162
|
+
tSTRING_DVAR = 348,
|
163
|
+
tLAMBEG = 349,
|
164
|
+
tLABEL_END = 350,
|
165
|
+
tLOWEST = 351,
|
166
|
+
tUMINUS_NUM = 352,
|
167
|
+
tLAST_TOKEN = 353
|
168
|
+
};
|
169
|
+
#endif
|
170
|
+
|
171
|
+
/* Value type. */
|
172
|
+
#if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
|
173
|
+
|
174
|
+
union YYSTYPE
|
175
|
+
{
|
176
|
+
|
177
|
+
VALUE val;
|
178
|
+
NODE *node;
|
179
|
+
ID id;
|
180
|
+
int num;
|
181
|
+
st_table *tbl;
|
182
|
+
const struct vtable *vars;
|
183
|
+
struct rb_strterm_struct *strterm;
|
184
|
+
|
185
|
+
};
|
186
|
+
|
187
|
+
typedef union YYSTYPE YYSTYPE;
|
188
|
+
# define YYSTYPE_IS_TRIVIAL 1
|
189
|
+
# define YYSTYPE_IS_DECLARED 1
|
190
|
+
#endif
|
191
|
+
|
192
|
+
/* Location type. */
|
193
|
+
#if ! defined YYLTYPE && ! defined YYLTYPE_IS_DECLARED
|
194
|
+
typedef struct YYLTYPE YYLTYPE;
|
195
|
+
struct YYLTYPE
|
196
|
+
{
|
197
|
+
int first_line;
|
198
|
+
int first_column;
|
199
|
+
int last_line;
|
200
|
+
int last_column;
|
201
|
+
};
|
202
|
+
# define YYLTYPE_IS_DECLARED 1
|
203
|
+
# define YYLTYPE_IS_TRIVIAL 1
|
204
|
+
#endif
|
205
|
+
|
206
|
+
|
207
|
+
|
208
|
+
int yyparse (struct parser_params *p);
|
209
|
+
|
210
|
+
#endif /* !YY_YY_Y_TAB_H_INCLUDED */
|
@@ -0,0 +1,42 @@
|
|
1
|
+
#ifndef RUBY_PROBES_HELPER_H
|
2
|
+
#define RUBY_PROBES_HELPER_H
|
3
|
+
|
4
|
+
#include "ruby/ruby.h"
|
5
|
+
|
6
|
+
struct ruby_dtrace_method_hook_args {
|
7
|
+
const char *classname;
|
8
|
+
const char *methodname;
|
9
|
+
const char *filename;
|
10
|
+
int line_no;
|
11
|
+
volatile VALUE klass;
|
12
|
+
volatile VALUE name;
|
13
|
+
};
|
14
|
+
|
15
|
+
NOINLINE(int rb_dtrace_setup(rb_execution_context_t *, VALUE, ID, struct ruby_dtrace_method_hook_args *));
|
16
|
+
|
17
|
+
#define RUBY_DTRACE_METHOD_HOOK(name, ec, klazz, id) \
|
18
|
+
do { \
|
19
|
+
if (UNLIKELY(RUBY_DTRACE_##name##_ENABLED())) { \
|
20
|
+
struct ruby_dtrace_method_hook_args args; \
|
21
|
+
if (rb_dtrace_setup(ec, klazz, id, &args)) { \
|
22
|
+
RUBY_DTRACE_##name(args.classname, \
|
23
|
+
args.methodname, \
|
24
|
+
args.filename, \
|
25
|
+
args.line_no); \
|
26
|
+
} \
|
27
|
+
} \
|
28
|
+
} while (0)
|
29
|
+
|
30
|
+
#define RUBY_DTRACE_METHOD_ENTRY_HOOK(ec, klass, id) \
|
31
|
+
RUBY_DTRACE_METHOD_HOOK(METHOD_ENTRY, ec, klass, id)
|
32
|
+
|
33
|
+
#define RUBY_DTRACE_METHOD_RETURN_HOOK(ec, klass, id) \
|
34
|
+
RUBY_DTRACE_METHOD_HOOK(METHOD_RETURN, ec, klass, id)
|
35
|
+
|
36
|
+
#define RUBY_DTRACE_CMETHOD_ENTRY_HOOK(ec, klass, id) \
|
37
|
+
RUBY_DTRACE_METHOD_HOOK(CMETHOD_ENTRY, ec, klass, id)
|
38
|
+
|
39
|
+
#define RUBY_DTRACE_CMETHOD_RETURN_HOOK(ec, klass, id) \
|
40
|
+
RUBY_DTRACE_METHOD_HOOK(CMETHOD_RETURN, ec, klass, id)
|
41
|
+
|
42
|
+
#endif /* RUBY_PROBES_HELPER_H */
|
@@ -0,0 +1,254 @@
|
|
1
|
+
#ifndef ONIGMO_REGENC_H
|
2
|
+
#define ONIGMO_REGENC_H
|
3
|
+
/**********************************************************************
|
4
|
+
regenc.h - Onigmo (Oniguruma-mod) (regular expression library)
|
5
|
+
**********************************************************************/
|
6
|
+
/*-
|
7
|
+
* Copyright (c) 2002-2008 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
|
8
|
+
* Copyright (c) 2011-2016 K.Takata <kentkt AT csc DOT jp>
|
9
|
+
* All rights reserved.
|
10
|
+
*
|
11
|
+
* Redistribution and use in source and binary forms, with or without
|
12
|
+
* modification, are permitted provided that the following conditions
|
13
|
+
* are met:
|
14
|
+
* 1. Redistributions of source code must retain the above copyright
|
15
|
+
* notice, this list of conditions and the following disclaimer.
|
16
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
17
|
+
* notice, this list of conditions and the following disclaimer in the
|
18
|
+
* documentation and/or other materials provided with the distribution.
|
19
|
+
*
|
20
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
21
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
22
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
23
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
24
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
25
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
26
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
27
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
28
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
29
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
30
|
+
* SUCH DAMAGE.
|
31
|
+
*/
|
32
|
+
|
33
|
+
#if !defined(RUBY) && (defined(RUBY_EXPORT) || defined(ONIG_ENC_REGISTER))
|
34
|
+
# define RUBY
|
35
|
+
#endif
|
36
|
+
#ifdef RUBY
|
37
|
+
# ifndef ONIGMO_REGINT_H
|
38
|
+
# ifndef RUBY_EXTERN
|
39
|
+
# include "ruby/config.h"
|
40
|
+
# include "ruby/defines.h"
|
41
|
+
# endif
|
42
|
+
# endif
|
43
|
+
#else /* RUBY */
|
44
|
+
# ifndef PACKAGE
|
45
|
+
/* PACKAGE is defined in config.h */
|
46
|
+
# include "config.h"
|
47
|
+
# endif
|
48
|
+
#endif /* RUBY */
|
49
|
+
|
50
|
+
#ifdef ONIG_ESCAPE_UCHAR_COLLISION
|
51
|
+
# undef ONIG_ESCAPE_UCHAR_COLLISION
|
52
|
+
#endif
|
53
|
+
|
54
|
+
#ifdef RUBY
|
55
|
+
# include "ruby/onigmo.h"
|
56
|
+
#else
|
57
|
+
# include "onigmo.h"
|
58
|
+
#endif
|
59
|
+
|
60
|
+
RUBY_SYMBOL_EXPORT_BEGIN
|
61
|
+
|
62
|
+
typedef struct {
|
63
|
+
OnigCodePoint from;
|
64
|
+
OnigCodePoint to;
|
65
|
+
} OnigPairCaseFoldCodes;
|
66
|
+
|
67
|
+
|
68
|
+
#ifndef NULL
|
69
|
+
# define NULL ((void* )0)
|
70
|
+
#endif
|
71
|
+
|
72
|
+
#ifndef TRUE
|
73
|
+
# define TRUE 1
|
74
|
+
#endif
|
75
|
+
|
76
|
+
#ifndef FALSE
|
77
|
+
# define FALSE 0
|
78
|
+
#endif
|
79
|
+
|
80
|
+
#ifndef ARG_UNUSED
|
81
|
+
# if defined(__GNUC__)
|
82
|
+
# define ARG_UNUSED __attribute__ ((unused))
|
83
|
+
# else
|
84
|
+
# define ARG_UNUSED
|
85
|
+
# endif
|
86
|
+
#endif
|
87
|
+
|
88
|
+
#define ONIG_IS_NULL(p) (((void*)(p)) == (void*)0)
|
89
|
+
#define ONIG_IS_NOT_NULL(p) (((void*)(p)) != (void*)0)
|
90
|
+
#define ONIG_CHECK_NULL_RETURN(p) if (ONIG_IS_NULL(p)) return NULL
|
91
|
+
#define ONIG_CHECK_NULL_RETURN_VAL(p,val) if (ONIG_IS_NULL(p)) return (val)
|
92
|
+
|
93
|
+
#define enclen(enc,p,e) ((enc->max_enc_len == enc->min_enc_len) ? enc->min_enc_len : ONIGENC_MBC_ENC_LEN(enc,p,e))
|
94
|
+
|
95
|
+
/* character types bit flag */
|
96
|
+
#define BIT_CTYPE_NEWLINE (1<< ONIGENC_CTYPE_NEWLINE)
|
97
|
+
#define BIT_CTYPE_ALPHA (1<< ONIGENC_CTYPE_ALPHA)
|
98
|
+
#define BIT_CTYPE_BLANK (1<< ONIGENC_CTYPE_BLANK)
|
99
|
+
#define BIT_CTYPE_CNTRL (1<< ONIGENC_CTYPE_CNTRL)
|
100
|
+
#define BIT_CTYPE_DIGIT (1<< ONIGENC_CTYPE_DIGIT)
|
101
|
+
#define BIT_CTYPE_GRAPH (1<< ONIGENC_CTYPE_GRAPH)
|
102
|
+
#define BIT_CTYPE_LOWER (1<< ONIGENC_CTYPE_LOWER)
|
103
|
+
#define BIT_CTYPE_PRINT (1<< ONIGENC_CTYPE_PRINT)
|
104
|
+
#define BIT_CTYPE_PUNCT (1<< ONIGENC_CTYPE_PUNCT)
|
105
|
+
#define BIT_CTYPE_SPACE (1<< ONIGENC_CTYPE_SPACE)
|
106
|
+
#define BIT_CTYPE_UPPER (1<< ONIGENC_CTYPE_UPPER)
|
107
|
+
#define BIT_CTYPE_XDIGIT (1<< ONIGENC_CTYPE_XDIGIT)
|
108
|
+
#define BIT_CTYPE_WORD (1<< ONIGENC_CTYPE_WORD)
|
109
|
+
#define BIT_CTYPE_ALNUM (1<< ONIGENC_CTYPE_ALNUM)
|
110
|
+
#define BIT_CTYPE_ASCII (1<< ONIGENC_CTYPE_ASCII)
|
111
|
+
|
112
|
+
#define CTYPE_TO_BIT(ctype) (1<<(ctype))
|
113
|
+
#define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \
|
114
|
+
((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\
|
115
|
+
(ctype) == ONIGENC_CTYPE_PRINT)
|
116
|
+
|
117
|
+
|
118
|
+
typedef struct {
|
119
|
+
short int len;
|
120
|
+
const UChar name[6];
|
121
|
+
int ctype;
|
122
|
+
} PosixBracketEntryType;
|
123
|
+
|
124
|
+
#define POSIX_BRACKET_ENTRY_INIT(name, ctype) \
|
125
|
+
{(short int )(sizeof(name) - 1), name, (ctype)}
|
126
|
+
|
127
|
+
#ifndef numberof
|
128
|
+
# define numberof(array) (int )(sizeof(array) / sizeof((array)[0]))
|
129
|
+
#endif
|
130
|
+
|
131
|
+
|
132
|
+
#define USE_CRNL_AS_LINE_TERMINATOR
|
133
|
+
#define USE_UNICODE_PROPERTIES
|
134
|
+
#define USE_UNICODE_AGE_PROPERTIES
|
135
|
+
/* #define USE_UNICODE_CASE_FOLD_TURKISH_AZERI */
|
136
|
+
/* #define USE_UNICODE_ALL_LINE_TERMINATORS */ /* see Unicode.org UTS #18 */
|
137
|
+
|
138
|
+
|
139
|
+
#define ONIG_ENCODING_INIT_DEFAULT ONIG_ENCODING_ASCII
|
140
|
+
|
141
|
+
/* for encoding system implementation (internal) */
|
142
|
+
ONIG_EXTERN int onigenc_ascii_apply_all_case_fold(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg, OnigEncoding enc);
|
143
|
+
ONIG_EXTERN int onigenc_ascii_get_case_fold_codes_by_str(OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[], OnigEncoding enc);
|
144
|
+
ONIG_EXTERN int onigenc_apply_all_case_fold_with_map(int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg);
|
145
|
+
ONIG_EXTERN int onigenc_get_case_fold_codes_by_str_with_map(int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]);
|
146
|
+
ONIG_EXTERN int onigenc_not_support_get_ctype_code_range(OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[], OnigEncoding enc);
|
147
|
+
ONIG_EXTERN int onigenc_is_mbc_newline_0x0a(const UChar* p, const UChar* end, OnigEncoding enc);
|
148
|
+
ONIG_EXTERN int onigenc_single_byte_ascii_only_case_map(OnigCaseFoldType* flagP, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to, OnigUChar* to_end, const struct OnigEncodingTypeST* enc);
|
149
|
+
|
150
|
+
|
151
|
+
/* methods for single byte encoding */
|
152
|
+
ONIG_EXTERN int onigenc_ascii_mbc_case_fold(OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower, OnigEncoding enc);
|
153
|
+
ONIG_EXTERN int onigenc_single_byte_mbc_enc_len(const UChar* p, const UChar* e, OnigEncoding enc);
|
154
|
+
ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code(const UChar* p, const UChar* end, OnigEncoding enc);
|
155
|
+
ONIG_EXTERN int onigenc_single_byte_code_to_mbclen(OnigCodePoint code, OnigEncoding enc);
|
156
|
+
ONIG_EXTERN int onigenc_single_byte_code_to_mbc(OnigCodePoint code, UChar *buf, OnigEncoding enc);
|
157
|
+
ONIG_EXTERN UChar* onigenc_single_byte_left_adjust_char_head(const UChar* start, const UChar* s, const OnigUChar* end, OnigEncoding enc);
|
158
|
+
ONIG_EXTERN int onigenc_always_true_is_allowed_reverse_match(const UChar* s, const UChar* end, OnigEncoding enc);
|
159
|
+
ONIG_EXTERN int onigenc_always_false_is_allowed_reverse_match(const UChar* s, const UChar* end, OnigEncoding enc);
|
160
|
+
ONIG_EXTERN int onigenc_ascii_is_code_ctype(OnigCodePoint code, unsigned int ctype, OnigEncoding enc);
|
161
|
+
|
162
|
+
/* methods for multi byte encoding */
|
163
|
+
ONIG_EXTERN OnigCodePoint onigenc_mbn_mbc_to_code(OnigEncoding enc, const UChar* p, const UChar* end);
|
164
|
+
ONIG_EXTERN int onigenc_mbn_mbc_case_fold(OnigEncoding enc, OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower);
|
165
|
+
ONIG_EXTERN int onigenc_mb2_code_to_mbclen(OnigCodePoint code, OnigEncoding enc);
|
166
|
+
ONIG_EXTERN int onigenc_mb2_code_to_mbc(OnigEncoding enc, OnigCodePoint code, UChar *buf);
|
167
|
+
ONIG_EXTERN int onigenc_minimum_property_name_to_ctype(OnigEncoding enc, const UChar* p, const UChar* end);
|
168
|
+
ONIG_EXTERN int onigenc_unicode_property_name_to_ctype(OnigEncoding enc, const UChar* p, const UChar* end);
|
169
|
+
ONIG_EXTERN int onigenc_mb2_is_code_ctype(OnigEncoding enc, OnigCodePoint code, unsigned int ctype);
|
170
|
+
ONIG_EXTERN int onigenc_mb4_code_to_mbclen(OnigCodePoint code, OnigEncoding enc);
|
171
|
+
ONIG_EXTERN int onigenc_mb4_code_to_mbc(OnigEncoding enc, OnigCodePoint code, UChar *buf);
|
172
|
+
ONIG_EXTERN int onigenc_mb4_is_code_ctype(OnigEncoding enc, OnigCodePoint code, unsigned int ctype);
|
173
|
+
|
174
|
+
ONIG_EXTERN int onigenc_unicode_case_map(OnigCaseFoldType* flagP, const OnigUChar** pp, const OnigUChar* end, OnigUChar* to, OnigUChar* to_end, const struct OnigEncodingTypeST* enc);
|
175
|
+
|
176
|
+
|
177
|
+
/* in enc/unicode.c */
|
178
|
+
ONIG_EXTERN int onigenc_unicode_is_code_ctype(OnigCodePoint code, unsigned int ctype, OnigEncoding enc);
|
179
|
+
ONIG_EXTERN int onigenc_utf16_32_get_ctype_code_range(OnigCtype ctype, OnigCodePoint *sb_out, const OnigCodePoint* ranges[], OnigEncoding enc);
|
180
|
+
ONIG_EXTERN int onigenc_unicode_ctype_code_range(int ctype, const OnigCodePoint* ranges[]);
|
181
|
+
ONIG_EXTERN int onigenc_unicode_get_case_fold_codes_by_str(OnigEncoding enc, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]);
|
182
|
+
ONIG_EXTERN int onigenc_unicode_mbc_case_fold(OnigEncoding enc, OnigCaseFoldType flag, const UChar** pp, const UChar* end, UChar* fold);
|
183
|
+
ONIG_EXTERN int onigenc_unicode_apply_all_case_fold(OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg, OnigEncoding enc);
|
184
|
+
|
185
|
+
|
186
|
+
#define UTF16_IS_SURROGATE_FIRST(c) (((c) & 0xfc) == 0xd8)
|
187
|
+
#define UTF16_IS_SURROGATE_SECOND(c) (((c) & 0xfc) == 0xdc)
|
188
|
+
#define UTF16_IS_SURROGATE(c) (((c) & 0xf8) == 0xd8)
|
189
|
+
#define UNICODE_VALID_CODEPOINT_P(c) ( \
|
190
|
+
((c) <= 0x10ffff) && \
|
191
|
+
!((c) < 0x10000 && UTF16_IS_SURROGATE((c) >> 8)))
|
192
|
+
|
193
|
+
#define ONIGENC_ISO_8859_1_TO_LOWER_CASE(c) \
|
194
|
+
OnigEncISO_8859_1_ToLowerCaseTable[c]
|
195
|
+
#define ONIGENC_ISO_8859_1_TO_UPPER_CASE(c) \
|
196
|
+
OnigEncISO_8859_1_ToUpperCaseTable[c]
|
197
|
+
|
198
|
+
ONIG_EXTERN const UChar OnigEncISO_8859_1_ToLowerCaseTable[];
|
199
|
+
ONIG_EXTERN const UChar OnigEncISO_8859_1_ToUpperCaseTable[];
|
200
|
+
|
201
|
+
ONIG_EXTERN int
|
202
|
+
onigenc_with_ascii_strncmp(OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n);
|
203
|
+
ONIG_EXTERN int
|
204
|
+
onigenc_with_ascii_strnicmp(OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n);
|
205
|
+
ONIG_EXTERN UChar*
|
206
|
+
onigenc_step(OnigEncoding enc, const UChar* p, const UChar* end, int n);
|
207
|
+
|
208
|
+
/* defined in regexec.c, but used in enc/xxx.c */
|
209
|
+
extern int onig_is_in_code_range(const UChar* p, OnigCodePoint code);
|
210
|
+
|
211
|
+
ONIG_EXTERN OnigEncoding OnigEncDefaultCharEncoding;
|
212
|
+
ONIG_EXTERN const UChar OnigEncAsciiToLowerCaseTable[];
|
213
|
+
ONIG_EXTERN const UChar OnigEncAsciiToUpperCaseTable[];
|
214
|
+
ONIG_EXTERN const unsigned short OnigEncAsciiCtypeTable[];
|
215
|
+
|
216
|
+
#define ONIGENC_IS_ASCII_CODE(code) ((code) < 0x80)
|
217
|
+
#define ONIGENC_ASCII_CODE_TO_LOWER_CASE(c) OnigEncAsciiToLowerCaseTable[c]
|
218
|
+
#define ONIGENC_ASCII_CODE_TO_UPPER_CASE(c) OnigEncAsciiToUpperCaseTable[c]
|
219
|
+
#define ONIGENC_IS_ASCII_CODE_CTYPE(code,ctype) \
|
220
|
+
((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
|
221
|
+
#define ONIGENC_IS_ASCII_CODE_CASE_AMBIG(code) \
|
222
|
+
(ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_UPPER) ||\
|
223
|
+
ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_LOWER))
|
224
|
+
|
225
|
+
/* Check if the code is in the range. (from <= code && code <= to) */
|
226
|
+
#define ONIGENC_IS_IN_RANGE(code, from, to) \
|
227
|
+
((OnigCodePoint )((code) - (from)) <= (OnigCodePoint )((to) - (from)))
|
228
|
+
|
229
|
+
|
230
|
+
#ifdef ONIG_ENC_REGISTER
|
231
|
+
extern int ONIG_ENC_REGISTER(const char *, OnigEncoding);
|
232
|
+
# define OnigEncodingName(n) encoding_##n
|
233
|
+
# define OnigEncodingDeclare(n) static const OnigEncodingType OnigEncodingName(n)
|
234
|
+
# define OnigEncodingDefine(f,n) \
|
235
|
+
OnigEncodingDeclare(n); \
|
236
|
+
void Init_##f(void) { \
|
237
|
+
ONIG_ENC_REGISTER(OnigEncodingName(n).name, \
|
238
|
+
&OnigEncodingName(n)); \
|
239
|
+
} \
|
240
|
+
OnigEncodingDeclare(n)
|
241
|
+
#else
|
242
|
+
# define OnigEncodingName(n) OnigEncoding##n
|
243
|
+
# define OnigEncodingDeclare(n) const OnigEncodingType OnigEncodingName(n)
|
244
|
+
# define OnigEncodingDefine(f,n) OnigEncodingDeclare(n)
|
245
|
+
#endif
|
246
|
+
|
247
|
+
/* macros for define replica encoding and encoding alias */
|
248
|
+
#define ENC_REPLICATE(name, orig)
|
249
|
+
#define ENC_ALIAS(name, orig)
|
250
|
+
#define ENC_DUMMY(name)
|
251
|
+
|
252
|
+
RUBY_SYMBOL_EXPORT_END
|
253
|
+
|
254
|
+
#endif /* ONIGMO_REGENC_H */
|