debugger-ruby_core_source 1.3.7 → 1.3.8

Sign up to get free protection for your applications and to get access to all the features.
Files changed (37) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +3 -0
  3. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/debug.h +36 -0
  4. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/dln.h +41 -0
  5. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/encdb.h +163 -0
  6. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/eval_intern.h +232 -0
  7. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/gc.h +77 -0
  8. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/id.h +170 -0
  9. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/insns.inc +179 -0
  10. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/insns_info.inc +695 -0
  11. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/iseq.h +104 -0
  12. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/known_errors.inc +731 -0
  13. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/method.h +103 -0
  14. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/node.h +483 -0
  15. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/node_name.inc +208 -0
  16. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/opt_sc.inc +670 -0
  17. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/optinsn.inc +30 -0
  18. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/optunifs.inc +116 -0
  19. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/parse.h +205 -0
  20. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/regenc.h +211 -0
  21. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/regint.h +841 -0
  22. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/regparse.h +354 -0
  23. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/revision.h +1 -0
  24. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/thread_pthread.h +27 -0
  25. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/thread_win32.h +33 -0
  26. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/timev.h +21 -0
  27. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/transcode_data.h +109 -0
  28. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/transdb.h +179 -0
  29. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/version.h +55 -0
  30. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vm.inc +3055 -0
  31. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vm_core.h +706 -0
  32. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vm_exec.h +184 -0
  33. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vm_insnhelper.h +208 -0
  34. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vm_opts.h +51 -0
  35. data/lib/debugger/ruby_core_source/ruby-1.9.2-p330/vmtc.inc +97 -0
  36. data/lib/debugger/ruby_core_source/version.rb +1 -1
  37. metadata +36 -3
@@ -0,0 +1,30 @@
1
+ /* -*-c-*- *********************************************************/
2
+ /*******************************************************************/
3
+ /*******************************************************************/
4
+ /**
5
+ This file is for threaded code.
6
+
7
+ ----
8
+ This file is auto generated by insns2vm.rb
9
+ DO NOT TOUCH!
10
+
11
+ If you want to fix something, you must edit 'template/optinsn.inc.tmpl'
12
+ or rb/insns2vm.rb
13
+ */
14
+
15
+ static INSN *
16
+ insn_operands_unification(INSN *insnobj){
17
+ #ifdef OPT_OPERANDS_UNIFICATION
18
+ /* optimize rule */
19
+ switch(insnobj->insn_id){
20
+
21
+
22
+
23
+ default:
24
+ /* do nothing */;
25
+ break;
26
+ }
27
+ #endif
28
+ return insnobj;
29
+ }
30
+
@@ -0,0 +1,116 @@
1
+ /* -*-c-*- *********************************************************/
2
+ /*******************************************************************/
3
+ /*******************************************************************/
4
+ /**
5
+ This file is for threaded code.
6
+
7
+ ----
8
+ This file is auto generated by insns2vm.rb
9
+ DO NOT TOUCH!
10
+
11
+ If you want to fix something, you must edit 'template/optunifs.inc.tmpl'
12
+ or rb/insns2vm.rb
13
+ */
14
+
15
+ /*
16
+ static const int UNIFIED_insn_name_1[] = {id, size, ...};
17
+ static const int UNIFIED_insn_name_2[] = {id, size, ...};
18
+ ...
19
+
20
+ static const int *const UNIFIED_insn_name[] = {size,
21
+ UNIFIED_insn_name_1,
22
+ UNIFIED_insn_name_2, ...};
23
+ ...
24
+
25
+ static const int *const *const unified_insns_data[] = {
26
+ UNIFIED_insn_nameA,
27
+ UNIFIED_insn_nameB, ...};
28
+ */
29
+
30
+
31
+
32
+ static const int *const *const unified_insns_data[] = {
33
+ 0,
34
+ 0,
35
+ 0,
36
+ 0,
37
+ 0,
38
+ 0,
39
+ 0,
40
+ 0,
41
+ 0,
42
+ 0,
43
+ 0,
44
+ 0,
45
+ 0,
46
+ 0,
47
+ 0,
48
+ 0,
49
+ 0,
50
+ 0,
51
+ 0,
52
+ 0,
53
+ 0,
54
+ 0,
55
+ 0,
56
+ 0,
57
+ 0,
58
+ 0,
59
+ 0,
60
+ 0,
61
+ 0,
62
+ 0,
63
+ 0,
64
+ 0,
65
+ 0,
66
+ 0,
67
+ 0,
68
+ 0,
69
+ 0,
70
+ 0,
71
+ 0,
72
+ 0,
73
+ 0,
74
+ 0,
75
+ 0,
76
+ 0,
77
+ 0,
78
+ 0,
79
+ 0,
80
+ 0,
81
+ 0,
82
+ 0,
83
+ 0,
84
+ 0,
85
+ 0,
86
+ 0,
87
+ 0,
88
+ 0,
89
+ 0,
90
+ 0,
91
+ 0,
92
+ 0,
93
+ 0,
94
+ 0,
95
+ 0,
96
+ 0,
97
+ 0,
98
+ 0,
99
+ 0,
100
+ 0,
101
+ 0,
102
+ 0,
103
+ 0,
104
+ 0,
105
+ 0,
106
+ 0,
107
+ 0,
108
+ 0,
109
+ 0,
110
+ 0,
111
+ 0,
112
+ 0};
113
+
114
+
115
+ #undef GET_INSN_NAME
116
+
@@ -0,0 +1,205 @@
1
+ /* A Bison parser, made by GNU Bison 2.7. */
2
+
3
+ /* Bison interface for Yacc-like parsers in C
4
+
5
+ Copyright (C) 1984, 1989-1990, 2000-2012 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
+ /* Enabling traces. */
36
+ #ifndef YYDEBUG
37
+ # define YYDEBUG 0
38
+ #endif
39
+ #if YYDEBUG
40
+ extern int yydebug;
41
+ #endif
42
+
43
+ /* Tokens. */
44
+ #ifndef YYTOKENTYPE
45
+ # define YYTOKENTYPE
46
+ /* Put the tokens into the symbol table, so that GDB and other debuggers
47
+ know about them. */
48
+ enum yytokentype {
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
+ tSTRING_CONTENT = 316,
108
+ tCHAR = 317,
109
+ tNTH_REF = 318,
110
+ tBACK_REF = 319,
111
+ tREGEXP_END = 320,
112
+ tUPLUS = 321,
113
+ tUMINUS = 322,
114
+ tPOW = 323,
115
+ tCMP = 324,
116
+ tEQ = 325,
117
+ tEQQ = 326,
118
+ tNEQ = 327,
119
+ tGEQ = 328,
120
+ tLEQ = 329,
121
+ tANDOP = 330,
122
+ tOROP = 331,
123
+ tMATCH = 332,
124
+ tNMATCH = 333,
125
+ tDOT2 = 334,
126
+ tDOT3 = 335,
127
+ tAREF = 336,
128
+ tASET = 337,
129
+ tLSHFT = 338,
130
+ tRSHFT = 339,
131
+ tCOLON2 = 340,
132
+ tCOLON3 = 341,
133
+ tOP_ASGN = 342,
134
+ tASSOC = 343,
135
+ tLPAREN = 344,
136
+ tLPAREN_ARG = 345,
137
+ tRPAREN = 346,
138
+ tLBRACK = 347,
139
+ tLBRACE = 348,
140
+ tLBRACE_ARG = 349,
141
+ tSTAR = 350,
142
+ tAMPER = 351,
143
+ tLAMBDA = 352,
144
+ tSYMBEG = 353,
145
+ tSTRING_BEG = 354,
146
+ tXSTRING_BEG = 355,
147
+ tREGEXP_BEG = 356,
148
+ tWORDS_BEG = 357,
149
+ tQWORDS_BEG = 358,
150
+ tSTRING_DBEG = 359,
151
+ tSTRING_DVAR = 360,
152
+ tSTRING_END = 361,
153
+ tLAMBEG = 362,
154
+ tLOWEST = 363,
155
+ tUMINUS_NUM = 364,
156
+ idNULL = 365,
157
+ idRespond_to = 366,
158
+ idIFUNC = 367,
159
+ idCFUNC = 368,
160
+ id_core_set_method_alias = 369,
161
+ id_core_set_variable_alias = 370,
162
+ id_core_undef_method = 371,
163
+ id_core_define_method = 372,
164
+ id_core_define_singleton_method = 373,
165
+ id_core_set_postexe = 374,
166
+ tLAST_TOKEN = 375
167
+ };
168
+ #endif
169
+
170
+
171
+ #if ! defined YYSTYPE && ! defined YYSTYPE_IS_DECLARED
172
+ typedef union YYSTYPE
173
+ {
174
+ /* Line 2058 of yacc.c */
175
+
176
+ VALUE val;
177
+ NODE *node;
178
+ ID id;
179
+ int num;
180
+ const struct vtable *vars;
181
+
182
+
183
+ /* Line 2058 of yacc.c */
184
+ } YYSTYPE;
185
+ # define YYSTYPE_IS_TRIVIAL 1
186
+ # define yystype YYSTYPE /* obsolescent; will be withdrawn */
187
+ # define YYSTYPE_IS_DECLARED 1
188
+ #endif
189
+
190
+
191
+ #ifdef YYPARSE_PARAM
192
+ #if defined __STDC__ || defined __cplusplus
193
+ int yyparse (void *YYPARSE_PARAM);
194
+ #else
195
+ int yyparse ();
196
+ #endif
197
+ #else /* ! YYPARSE_PARAM */
198
+ #if defined __STDC__ || defined __cplusplus
199
+ int yyparse (struct parser_params *parser);
200
+ #else
201
+ int yyparse ();
202
+ #endif
203
+ #endif /* ! YYPARSE_PARAM */
204
+
205
+ #endif /* !YY_YY_Y_TAB_H_INCLUDED */
@@ -0,0 +1,211 @@
1
+ #ifndef ONIGURUMA_REGENC_H
2
+ #define ONIGURUMA_REGENC_H
3
+ /**********************************************************************
4
+ regenc.h - Oniguruma (regular expression library)
5
+ **********************************************************************/
6
+ /*-
7
+ * Copyright (c) 2002-2008 K.Kosako <sndgk393 AT ybb DOT ne DOT jp>
8
+ * All rights reserved.
9
+ *
10
+ * Redistribution and use in source and binary forms, with or without
11
+ * modification, are permitted provided that the following conditions
12
+ * are met:
13
+ * 1. Redistributions of source code must retain the above copyright
14
+ * notice, this list of conditions and the following disclaimer.
15
+ * 2. Redistributions in binary form must reproduce the above copyright
16
+ * notice, this list of conditions and the following disclaimer in the
17
+ * documentation and/or other materials provided with the distribution.
18
+ *
19
+ * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
20
+ * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21
+ * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22
+ * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
23
+ * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27
+ * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28
+ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29
+ * SUCH DAMAGE.
30
+ */
31
+ #ifndef REGINT_H
32
+ #ifndef RUBY_EXTERN
33
+ #include "ruby/config.h"
34
+ #include "ruby/defines.h"
35
+ #endif
36
+ #ifdef ONIG_ESCAPE_UCHAR_COLLISION
37
+ #undef ONIG_ESCAPE_UCHAR_COLLISION
38
+ #endif
39
+ #endif
40
+ #include "ruby/oniguruma.h"
41
+
42
+ typedef struct {
43
+ OnigCodePoint from;
44
+ OnigCodePoint to;
45
+ } OnigPairCaseFoldCodes;
46
+
47
+
48
+ #ifndef NULL
49
+ #define NULL ((void* )0)
50
+ #endif
51
+
52
+ #ifndef TRUE
53
+ #define TRUE 1
54
+ #endif
55
+
56
+ #ifndef FALSE
57
+ #define FALSE 0
58
+ #endif
59
+
60
+ #ifndef ARG_UNUSED
61
+ #if defined(__GNUC__)
62
+ # define ARG_UNUSED __attribute__ ((unused))
63
+ #else
64
+ # define ARG_UNUSED
65
+ #endif
66
+ #endif
67
+
68
+ #define ONIG_IS_NULL(p) (((void*)(p)) == (void*)0)
69
+ #define ONIG_IS_NOT_NULL(p) (((void*)(p)) != (void*)0)
70
+ #define ONIG_CHECK_NULL_RETURN(p) if (ONIG_IS_NULL(p)) return NULL
71
+ #define ONIG_CHECK_NULL_RETURN_VAL(p,val) if (ONIG_IS_NULL(p)) return (val)
72
+
73
+ #define enclen(enc,p,e) ((enc->max_enc_len == enc->min_enc_len) ? enc->min_enc_len : ONIGENC_MBC_ENC_LEN(enc,p,e))
74
+
75
+ /* character types bit flag */
76
+ #define BIT_CTYPE_NEWLINE (1<< ONIGENC_CTYPE_NEWLINE)
77
+ #define BIT_CTYPE_ALPHA (1<< ONIGENC_CTYPE_ALPHA)
78
+ #define BIT_CTYPE_BLANK (1<< ONIGENC_CTYPE_BLANK)
79
+ #define BIT_CTYPE_CNTRL (1<< ONIGENC_CTYPE_CNTRL)
80
+ #define BIT_CTYPE_DIGIT (1<< ONIGENC_CTYPE_DIGIT)
81
+ #define BIT_CTYPE_GRAPH (1<< ONIGENC_CTYPE_GRAPH)
82
+ #define BIT_CTYPE_LOWER (1<< ONIGENC_CTYPE_LOWER)
83
+ #define BIT_CTYPE_PRINT (1<< ONIGENC_CTYPE_PRINT)
84
+ #define BIT_CTYPE_PUNCT (1<< ONIGENC_CTYPE_PUNCT)
85
+ #define BIT_CTYPE_SPACE (1<< ONIGENC_CTYPE_SPACE)
86
+ #define BIT_CTYPE_UPPER (1<< ONIGENC_CTYPE_UPPER)
87
+ #define BIT_CTYPE_XDIGIT (1<< ONIGENC_CTYPE_XDIGIT)
88
+ #define BIT_CTYPE_WORD (1<< ONIGENC_CTYPE_WORD)
89
+ #define BIT_CTYPE_ALNUM (1<< ONIGENC_CTYPE_ALNUM)
90
+ #define BIT_CTYPE_ASCII (1<< ONIGENC_CTYPE_ASCII)
91
+
92
+ #define CTYPE_TO_BIT(ctype) (1<<(ctype))
93
+ #define CTYPE_IS_WORD_GRAPH_PRINT(ctype) \
94
+ ((ctype) == ONIGENC_CTYPE_WORD || (ctype) == ONIGENC_CTYPE_GRAPH ||\
95
+ (ctype) == ONIGENC_CTYPE_PRINT)
96
+
97
+
98
+ typedef struct {
99
+ const UChar *name;
100
+ int ctype;
101
+ short int len;
102
+ } PosixBracketEntryType;
103
+
104
+ #define PosixBracketEntryInit(name, ctype) {(const UChar *)name, ctype, (short int)(sizeof(name) - 1)}
105
+
106
+ /* #define USE_CRNL_AS_LINE_TERMINATOR */
107
+ #define USE_UNICODE_PROPERTIES
108
+ /* #define USE_UNICODE_CASE_FOLD_TURKISH_AZERI */
109
+ /* #define USE_UNICODE_ALL_LINE_TERMINATORS */ /* see Unicode.org UTF#18 */
110
+
111
+
112
+ #define ONIG_ENCODING_INIT_DEFAULT ONIG_ENCODING_ASCII
113
+
114
+ /* for encoding system implementation (internal) */
115
+ ONIG_EXTERN int onigenc_ascii_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg, OnigEncoding enc));
116
+ ONIG_EXTERN int onigenc_ascii_get_case_fold_codes_by_str P_((OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[], OnigEncoding enc));
117
+ ONIG_EXTERN int onigenc_apply_all_case_fold_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg));
118
+ ONIG_EXTERN int onigenc_get_case_fold_codes_by_str_with_map P_((int map_size, const OnigPairCaseFoldCodes map[], int ess_tsett_flag, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));
119
+ ONIG_EXTERN int onigenc_not_support_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint* sb_out, const OnigCodePoint* ranges[], OnigEncoding enc));
120
+ ONIG_EXTERN int onigenc_is_mbc_newline_0x0a P_((const UChar* p, const UChar* end, OnigEncoding enc));
121
+
122
+
123
+ /* methods for single byte encoding */
124
+ ONIG_EXTERN int onigenc_ascii_mbc_case_fold P_((OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower, OnigEncoding enc));
125
+ ONIG_EXTERN int onigenc_single_byte_mbc_enc_len P_((const UChar* p, const UChar* e, OnigEncoding enc));
126
+ ONIG_EXTERN OnigCodePoint onigenc_single_byte_mbc_to_code P_((const UChar* p, const UChar* end, OnigEncoding enc));
127
+ ONIG_EXTERN int onigenc_single_byte_code_to_mbclen P_((OnigCodePoint code, OnigEncoding enc));
128
+ ONIG_EXTERN int onigenc_single_byte_code_to_mbc P_((OnigCodePoint code, UChar *buf, OnigEncoding enc));
129
+ ONIG_EXTERN UChar* onigenc_single_byte_left_adjust_char_head P_((const UChar* start, const UChar* s, const OnigUChar* end, OnigEncoding enc));
130
+ ONIG_EXTERN int onigenc_always_true_is_allowed_reverse_match P_((const UChar* s, const UChar* end, OnigEncoding enc));
131
+ ONIG_EXTERN int onigenc_always_false_is_allowed_reverse_match P_((const UChar* s, const UChar* end, OnigEncoding enc));
132
+ ONIG_EXTERN int onigenc_ascii_is_code_ctype P_((OnigCodePoint code, unsigned int ctype, OnigEncoding enc));
133
+
134
+ /* methods for multi byte encoding */
135
+ ONIG_EXTERN OnigCodePoint onigenc_mbn_mbc_to_code P_((OnigEncoding enc, const UChar* p, const UChar* end));
136
+ ONIG_EXTERN int onigenc_mbn_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** p, const UChar* end, UChar* lower));
137
+ ONIG_EXTERN int onigenc_mb2_code_to_mbclen P_((OnigCodePoint code, OnigEncoding enc));
138
+ ONIG_EXTERN int onigenc_mb2_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
139
+ ONIG_EXTERN int onigenc_minimum_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));
140
+ ONIG_EXTERN int onigenc_unicode_property_name_to_ctype P_((OnigEncoding enc, UChar* p, UChar* end));
141
+ ONIG_EXTERN int onigenc_mb2_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
142
+ ONIG_EXTERN int onigenc_mb4_code_to_mbclen P_((OnigCodePoint code, OnigEncoding enc));
143
+ ONIG_EXTERN int onigenc_mb4_code_to_mbc P_((OnigEncoding enc, OnigCodePoint code, UChar *buf));
144
+ ONIG_EXTERN int onigenc_mb4_is_code_ctype P_((OnigEncoding enc, OnigCodePoint code, unsigned int ctype));
145
+
146
+
147
+ /* in enc/unicode.c */
148
+ ONIG_EXTERN int onigenc_unicode_is_code_ctype P_((OnigCodePoint code, unsigned int ctype, OnigEncoding enc));
149
+ ONIG_EXTERN int onigenc_utf16_32_get_ctype_code_range P_((OnigCtype ctype, OnigCodePoint *sb_out, const OnigCodePoint* ranges[], OnigEncoding enc));
150
+ ONIG_EXTERN int onigenc_unicode_ctype_code_range P_((int ctype, const OnigCodePoint* ranges[]));
151
+ ONIG_EXTERN int onigenc_unicode_get_case_fold_codes_by_str P_((OnigEncoding enc, OnigCaseFoldType flag, const OnigUChar* p, const OnigUChar* end, OnigCaseFoldCodeItem items[]));
152
+ ONIG_EXTERN int onigenc_unicode_mbc_case_fold P_((OnigEncoding enc, OnigCaseFoldType flag, const UChar** pp, const UChar* end, UChar* fold));
153
+ ONIG_EXTERN int onigenc_unicode_apply_all_case_fold P_((OnigCaseFoldType flag, OnigApplyAllCaseFoldFunc f, void* arg, OnigEncoding enc));
154
+
155
+
156
+ #define UTF16_IS_SURROGATE_FIRST(c) (((c) & 0xfc) == 0xd8)
157
+ #define UTF16_IS_SURROGATE_SECOND(c) (((c) & 0xfc) == 0xdc)
158
+
159
+ #define ONIGENC_ISO_8859_1_TO_LOWER_CASE(c) \
160
+ OnigEncISO_8859_1_ToLowerCaseTable[c]
161
+ #define ONIGENC_ISO_8859_1_TO_UPPER_CASE(c) \
162
+ OnigEncISO_8859_1_ToUpperCaseTable[c]
163
+
164
+ ONIG_EXTERN const UChar OnigEncISO_8859_1_ToLowerCaseTable[];
165
+ ONIG_EXTERN const UChar OnigEncISO_8859_1_ToUpperCaseTable[];
166
+
167
+ ONIG_EXTERN int
168
+ onigenc_with_ascii_strncmp P_((OnigEncoding enc, const UChar* p, const UChar* end, const UChar* sascii /* ascii */, int n));
169
+ ONIG_EXTERN UChar*
170
+ onigenc_step P_((OnigEncoding enc, const UChar* p, const UChar* end, int n));
171
+
172
+ /* defined in regexec.c, but used in enc/xxx.c */
173
+ extern int onig_is_in_code_range P_((const UChar* p, OnigCodePoint code));
174
+
175
+ ONIG_EXTERN OnigEncoding OnigEncDefaultCharEncoding;
176
+ ONIG_EXTERN const UChar OnigEncAsciiToLowerCaseTable[];
177
+ ONIG_EXTERN const UChar OnigEncAsciiToUpperCaseTable[];
178
+ ONIG_EXTERN const unsigned short OnigEncAsciiCtypeTable[];
179
+
180
+ #define ONIGENC_IS_ASCII_CODE(code) ((code) < 0x80)
181
+ #define ONIGENC_ASCII_CODE_TO_LOWER_CASE(c) OnigEncAsciiToLowerCaseTable[c]
182
+ #define ONIGENC_ASCII_CODE_TO_UPPER_CASE(c) OnigEncAsciiToUpperCaseTable[c]
183
+ #define ONIGENC_IS_ASCII_CODE_CTYPE(code,ctype) \
184
+ ((OnigEncAsciiCtypeTable[code] & CTYPE_TO_BIT(ctype)) != 0)
185
+ #define ONIGENC_IS_ASCII_CODE_CASE_AMBIG(code) \
186
+ (ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_UPPER) ||\
187
+ ONIGENC_IS_ASCII_CODE_CTYPE(code, ONIGENC_CTYPE_LOWER))
188
+
189
+ #ifdef ONIG_ENC_REGISTER
190
+ extern int ONIG_ENC_REGISTER(const char *, OnigEncodingType*);
191
+ #define OnigEncodingName(n) encoding_##n
192
+ #define OnigEncodingDeclare(n) static OnigEncodingType OnigEncodingName(n)
193
+ #define OnigEncodingDefine(f,n) \
194
+ OnigEncodingDeclare(n); \
195
+ void Init_##f(void) { \
196
+ ONIG_ENC_REGISTER(OnigEncodingName(n).name, \
197
+ &OnigEncodingName(n)); \
198
+ } \
199
+ OnigEncodingDeclare(n)
200
+ #else
201
+ #define OnigEncodingName(n) OnigEncoding##n
202
+ #define OnigEncodingDeclare(n) OnigEncodingType OnigEncodingName(n)
203
+ #define OnigEncodingDefine(f,n) OnigEncodingDeclare(n)
204
+ #endif
205
+
206
+ /* macros for define replica encoding and encoding alias */
207
+ #define ENC_REPLICATE(name, orig)
208
+ #define ENC_ALIAS(name, orig)
209
+ #define ENC_DUMMY(name)
210
+
211
+ #endif /* ONIGURUMA_REGENC_H */