46#define USE_MATCH_CACHE
48#if defined(ONIG_DEBUG_PARSE_TREE) || defined(ONIG_DEBUG_MATCH) || \
49 defined(ONIG_DEBUG_SEARCH) || defined(ONIG_DEBUG_COMPILE) || \
50 defined(ONIG_DEBUG_STATISTICS) || defined(ONIG_DEBUG_MEMLEAK)
57#ifndef UNALIGNED_WORD_ACCESS
58# if defined(__i386) || defined(__i386__) || defined(_M_IX86) || \
59 defined(__x86_64) || defined(__x86_64__) || defined(_M_AMD64) || \
60 defined(__powerpc64__) || defined(__POWERPC__) || defined(__aarch64__) || \
62# define UNALIGNED_WORD_ACCESS 1
64# define UNALIGNED_WORD_ACCESS 0
68#if UNALIGNED_WORD_ACCESS
69# define PLATFORM_UNALIGNED_WORD_ACCESS
74#define USE_NAMED_GROUP
75#define USE_SUBEXP_CALL
76#define USE_PERL_SUBEXP_CALL
77#define USE_CAPITAL_P_NAMED_GROUP
78#define USE_BACKREF_WITH_LEVEL
79#define USE_MONOMANIAC_CHECK_CAPTURES_IN_ENDLESS_REPEAT
80#define USE_NEWLINE_AT_END_OF_STRING_HAS_EMPTY_LINE
81#define USE_WARNING_REDUNDANT_NESTED_REPEAT_OPERATOR
83#define USE_NO_INVALID_QUANTIFIER
87#define USE_QTFR_PEEK_NEXT
89#define USE_SUNDAY_QUICK_SEARCH
91#define INIT_MATCH_STACK_SIZE 160
92#define DEFAULT_MATCH_STACK_LIMIT_SIZE 0
93#define DEFAULT_PARSE_DEPTH_LIMIT 4096
95#define OPT_EXACT_MAXLEN 24
98#if defined(USE_PERL_SUBEXP_CALL) || defined(USE_CAPITAL_P_NAMED_GROUP)
99# if !defined(USE_NAMED_GROUP) || !defined(USE_SUBEXP_CALL)
100# error USE_NAMED_GROUP and USE_SUBEXP_CALL must be defined.
105# define ARG_UNUSED __attribute__ ((unused))
110#if !defined(RUBY) && defined(RUBY_EXPORT)
114# ifndef RUBY_DEFINES_H
123# if SIZEOF_LONG_LONG > 0
124# define LONG_LONG long long
132#ifdef ONIG_ESCAPE_UCHAR_COLLISION
133# undef ONIG_ESCAPE_UCHAR_COLLISION
136#define USE_WORD_BEGIN_END
138# undef USE_CAPTURE_HISTORY
140# define USE_CAPTURE_HISTORY
142#define USE_VARIABLE_META_CHARS
143#define USE_FIND_LONGEST_SEARCH_ALL_OF_RANGE
148# define xmalloc malloc
149# define xrealloc realloc
150# define xcalloc calloc
156# define CHECK_INTERRUPT_IN_MATCH_AT do { \
158 if (msa->counter >= 128) { \
160 if (rb_reg_timeout_p(reg, &msa->end_time)) { \
163 rb_thread_check_ints(); \
166# define HANDLE_REG_TIMEOUT_IN_MATCH_AT do { \
167 rb_reg_raise_timeout(); \
169# define onig_st_init_table st_init_table
170# define onig_st_init_table_with_size st_init_table_with_size
171# define onig_st_init_numtable st_init_numtable
172# define onig_st_init_numtable_with_size st_init_numtable_with_size
173# define onig_st_init_strtable st_init_strtable
174# define onig_st_init_strtable_with_size st_init_strtable_with_size
175# define onig_st_delete st_delete
176# define onig_st_delete_safe st_delete_safe
177# define onig_st_insert st_insert
178# define onig_st_lookup st_lookup
179# define onig_st_foreach st_foreach
180# define onig_st_add_direct st_add_direct
181# define onig_st_free_table st_free_table
182# define onig_st_cleanup_safe st_cleanup_safe
183# define onig_st_copy st_copy
184# define onig_st_nothing_key_clone st_nothing_key_clone
185# define onig_st_nothing_key_free st_nothing_key_free
186# define onig_st_is_member st_is_member
188# define USE_UPPER_CASE_TABLE
191# define CHECK_INTERRUPT_IN_MATCH_AT
193# define st_init_table onig_st_init_table
194# define st_init_table_with_size onig_st_init_table_with_size
195# define st_init_numtable onig_st_init_numtable
196# define st_init_numtable_with_size onig_st_init_numtable_with_size
197# define st_init_strtable onig_st_init_strtable
198# define st_init_strtable_with_size onig_st_init_strtable_with_size
199# define st_delete onig_st_delete
200# define st_delete_safe onig_st_delete_safe
201# define st_insert onig_st_insert
202# define st_lookup onig_st_lookup
203# define st_foreach onig_st_foreach
204# define st_add_direct onig_st_add_direct
205# define st_free_table onig_st_free_table
206# define st_cleanup_safe onig_st_cleanup_safe
207# define st_copy onig_st_copy
208# define st_nothing_key_clone onig_st_nothing_key_clone
209# define st_nothing_key_free onig_st_nothing_key_free
211# define onig_st_is_member st_is_member
215#define STATE_CHECK_STRING_THRESHOLD_LEN 7
216#define STATE_CHECK_BUFF_MAX_SIZE 0x4000
218#define xmemset memset
219#define xmemcpy memcpy
220#define xmemmove memmove
222#if ((defined(RUBY_MSVCRT_VERSION) && RUBY_MSVCRT_VERSION >= 90) \
223 || (!defined(RUBY_MSVCRT_VERSION) && defined(_WIN32))) \
224 && !defined(__GNUC__)
225# define xalloca _alloca
226# define xvsnprintf(buf,size,fmt,args) _vsnprintf_s(buf,size,_TRUNCATE,fmt,args)
227# define xsnprintf sprintf_s
228# define xstrcat(dest,src,size) strcat_s(dest,size,src)
230# define xalloca alloca
231# define xvsnprintf vsnprintf
232# define xsnprintf snprintf
233# define xstrcat(dest,src,size) strcat(dest,src)
236#if defined(ONIG_DEBUG_MEMLEAK) && defined(_MSC_VER)
237# define _CRTDBG_MAP_ALLOC
244#if defined(HAVE_ALLOCA_H) && (defined(_AIX) || !defined(__GNUC__))
251#ifdef HAVE_SYS_TYPES_H
252# include <sys/types.h>
259#ifdef HAVE_INTTYPES_H
260# include <inttypes.h>
274# if defined(_MSC_VER) && (_MSC_VER < 1300)
275# ifndef _INTPTR_T_DEFINED
276# define _INTPTR_T_DEFINED
279# ifndef _UINTPTR_T_DEFINED
280# define _UINTPTR_T_DEFINED
281typedef unsigned int uintptr_t;
288# define PRIdPTR "I64d"
289# define PRIuPTR "I64u"
290# define PRIxPTR "I64x"
299# define PRIdPTRDIFF PRIdPTR
304RUBY_SYMBOL_EXPORT_BEGIN
312#define MIN(a,b) (((a)>(b))?(b):(a))
313#define MAX(a,b) (((a)<(b))?(b):(a))
315#define IS_NULL(p) (((void*)(p)) == (void*)0)
316#define IS_NOT_NULL(p) (((void*)(p)) != (void*)0)
317#define CHECK_NULL_RETURN(p) if (IS_NULL(p)) return NULL
318#define CHECK_NULL_RETURN_MEMERR(p) if (IS_NULL(p)) return ONIGERR_MEMORY
319#define NULL_UCHARP ((UChar* )0)
321#define ONIG_LAST_CODE_POINT (~((OnigCodePoint )0))
323#define PLATFORM_GET_INC_ARGUMENTS_ASSERT(val, type) \
324 ((void)sizeof(char[2 * (sizeof(val) == sizeof(type)) - 1]))
326#ifdef PLATFORM_UNALIGNED_WORD_ACCESS
328# define PLATFORM_GET_INC(val,p,type) do{\
329 PLATFORM_GET_INC_ARGUMENTS_ASSERT(val, type);\
331 (p) += sizeof(type);\
336# define PLATFORM_GET_INC(val,p,type) do{\
337 PLATFORM_GET_INC_ARGUMENTS_ASSERT(val, type);\
338 type platform_get_value;\
339 xmemcpy(&platform_get_value, (p), sizeof(type));\
340 val = platform_get_value;\
341 (p) += sizeof(type);\
345# define WORD_ALIGNMENT_SIZE SIZEOF_LONG
347# define GET_ALIGNMENT_PAD_SIZE(addr,pad_size) do {\
348 (pad_size) = WORD_ALIGNMENT_SIZE \
349 - ((uintptr_t )(addr) % WORD_ALIGNMENT_SIZE);\
350 if ((pad_size) == WORD_ALIGNMENT_SIZE) (pad_size) = 0;\
353# define ALIGNMENT_RIGHT(addr) do {\
354 (addr) += (WORD_ALIGNMENT_SIZE - 1);\
355 (addr) -= ((uintptr_t )(addr) % WORD_ALIGNMENT_SIZE);\
361#define STACK_POP_LEVEL_FREE 0
362#define STACK_POP_LEVEL_MEM_START 1
363#define STACK_POP_LEVEL_ALL 2
366#define ONIG_OPTIMIZE_NONE 0
367#define ONIG_OPTIMIZE_EXACT 1
368#define ONIG_OPTIMIZE_EXACT_BM 2
369#define ONIG_OPTIMIZE_EXACT_BM_NOT_REV 3
370#define ONIG_OPTIMIZE_EXACT_IC 4
371#define ONIG_OPTIMIZE_MAP 5
372#define ONIG_OPTIMIZE_EXACT_BM_IC 6
373#define ONIG_OPTIMIZE_EXACT_BM_NOT_REV_IC 7
376typedef unsigned int BitStatusType;
378#define BIT_STATUS_BITS_NUM (sizeof(BitStatusType) * 8)
379#define BIT_STATUS_CLEAR(stats) (stats) = 0
380#define BIT_STATUS_ON_ALL(stats) (stats) = ~((BitStatusType )0)
381#define BIT_STATUS_AT(stats,n) \
382 ((n) < (int )BIT_STATUS_BITS_NUM ? ((stats) & ((BitStatusType )1 << n)) : ((stats) & 1))
384#define BIT_STATUS_ON_AT(stats,n) do {\
385 if ((n) < (int )BIT_STATUS_BITS_NUM)\
386 (stats) |= (1 << (n));\
391#define BIT_STATUS_ON_AT_SIMPLE(stats,n) do {\
392 if ((n) < (int )BIT_STATUS_BITS_NUM)\
393 (stats) |= (1 << (n));\
397#define INT_MAX_LIMIT ((1UL << (SIZEOF_INT * 8 - 1)) - 1)
398#define LONG_MAX_LIMIT ((1UL << (SIZEOF_LONG * 8 - 1)) - 1)
400#define DIGITVAL(code) ((code) - '0')
401#define ODIGITVAL(code) DIGITVAL(code)
402#define XDIGITVAL(enc,code) \
403 (ONIGENC_IS_CODE_DIGIT(enc,code) ? DIGITVAL(code) \
404 : (ONIGENC_IS_CODE_UPPER(enc,code) ? (code) - 'A' + 10 : (code) - 'a' + 10))
406#define IS_SINGLELINE(option) ((option) & ONIG_OPTION_SINGLELINE)
407#define IS_MULTILINE(option) ((option) & ONIG_OPTION_MULTILINE)
408#define IS_IGNORECASE(option) ((option) & ONIG_OPTION_IGNORECASE)
409#define IS_EXTEND(option) ((option) & ONIG_OPTION_EXTEND)
410#define IS_FIND_LONGEST(option) ((option) & ONIG_OPTION_FIND_LONGEST)
411#define IS_FIND_NOT_EMPTY(option) ((option) & ONIG_OPTION_FIND_NOT_EMPTY)
412#define IS_FIND_CONDITION(option) ((option) & \
413 (ONIG_OPTION_FIND_LONGEST | ONIG_OPTION_FIND_NOT_EMPTY))
414#define IS_NOTBOL(option) ((option) & ONIG_OPTION_NOTBOL)
415#define IS_NOTEOL(option) ((option) & ONIG_OPTION_NOTEOL)
416#define IS_NOTBOS(option) ((option) & ONIG_OPTION_NOTBOS)
417#define IS_NOTEOS(option) ((option) & ONIG_OPTION_NOTEOS)
418#define IS_ASCII_RANGE(option) ((option) & ONIG_OPTION_ASCII_RANGE)
419#define IS_POSIX_BRACKET_ALL_RANGE(option) ((option) & ONIG_OPTION_POSIX_BRACKET_ALL_RANGE)
420#define IS_WORD_BOUND_ALL_RANGE(option) ((option) & ONIG_OPTION_WORD_BOUND_ALL_RANGE)
421#define IS_NEWLINE_CRLF(option) ((option) & ONIG_OPTION_NEWLINE_CRLF)
428#define IS_DYNAMIC_OPTION(option) 0
430#define DISABLE_CASE_FOLD_MULTI_CHAR(case_fold_flag) \
431 ((case_fold_flag) & ~INTERNAL_ONIGENC_CASE_FOLD_MULTI_CHAR)
433#define REPEAT_INFINITE -1
434#define IS_REPEAT_INFINITE(n) ((n) == REPEAT_INFINITE)
437#define BITS_PER_BYTE 8
438#define SINGLE_BYTE_SIZE (1 << BITS_PER_BYTE)
439#define BITS_IN_ROOM ((int )sizeof(Bits) * BITS_PER_BYTE)
440#define BITSET_SIZE (SINGLE_BYTE_SIZE / BITS_IN_ROOM)
442#ifdef PLATFORM_UNALIGNED_WORD_ACCESS
443typedef unsigned int Bits;
445typedef unsigned char Bits;
447typedef Bits BitSet[BITSET_SIZE];
448typedef Bits* BitSetRef;
450#define SIZE_BITSET (int )sizeof(BitSet)
452#define BITSET_CLEAR(bs) do {\
454 for (i = 0; i < BITSET_SIZE; i++) { (bs)[i] = 0; } \
457#define BS_ROOM(bs,pos) (bs)[(int )(pos) / BITS_IN_ROOM]
458#define BS_BIT(pos) (1U << ((int )(pos) % BITS_IN_ROOM))
460#define BITSET_AT(bs, pos) (BS_ROOM(bs,pos) & BS_BIT(pos))
461#define BITSET_SET_BIT(bs, pos) BS_ROOM(bs,pos) |= BS_BIT(pos)
462#define BITSET_CLEAR_BIT(bs, pos) BS_ROOM(bs,pos) &= ~(BS_BIT(pos))
463#define BITSET_INVERT_BIT(bs, pos) BS_ROOM(bs,pos) ^= BS_BIT(pos)
472#define BBUF_INIT(buf,size) onig_bbuf_init((BBuf* )(buf), (size))
474#define BBUF_SIZE_INC(buf,inc) do{\
476 (buf)->alloc += (inc);\
477 tmp = (UChar* )xrealloc((buf)->p, (buf)->alloc);\
478 if (IS_NULL(tmp)) return(ONIGERR_MEMORY);\
482#define BBUF_EXPAND(buf,low) do{\
484 do { (buf)->alloc *= 2; } while ((buf)->alloc < (unsigned int )low);\
485 tmp = (UChar* )xrealloc((buf)->p, (buf)->alloc);\
486 if (IS_NULL(tmp)) return(ONIGERR_MEMORY);\
490#define BBUF_ENSURE_SIZE(buf,size) do{\
491 unsigned int new_alloc = (buf)->alloc;\
492 while (new_alloc < (unsigned int )(size)) { new_alloc *= 2; }\
493 if ((buf)->alloc != new_alloc) {\
495 tmp = (UChar* )xrealloc((buf)->p, new_alloc);\
496 if (IS_NULL(tmp)) return(ONIGERR_MEMORY);\
498 (buf)->alloc = new_alloc;\
502#define BBUF_WRITE(buf,pos,bytes,n) do{\
503 int used = (pos) + (int )(n);\
504 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\
505 xmemcpy((buf)->p + (pos), (bytes), (n));\
506 if ((buf)->used < (unsigned int )used) (buf)->used = used;\
509#define BBUF_WRITE1(buf,pos,byte) do{\
510 int used = (pos) + 1;\
511 if ((buf)->alloc < (unsigned int )used) BBUF_EXPAND((buf),used);\
512 (buf)->p[(pos)] = (UChar )(byte);\
513 if ((buf)->used < (unsigned int )used) (buf)->used = used;\
516#define BBUF_ADD(buf,bytes,n) BBUF_WRITE((buf),(buf)->used,(bytes),(n))
517#define BBUF_ADD1(buf,byte) BBUF_WRITE1((buf),(buf)->used,(byte))
518#define BBUF_GET_ADD_ADDRESS(buf) ((buf)->p + (buf)->used)
519#define BBUF_GET_OFFSET_POS(buf) ((buf)->used)
522#define BBUF_MOVE_RIGHT(buf,from,to,n) do {\
523 if ((unsigned int )((to)+(n)) > (buf)->alloc) BBUF_EXPAND((buf),(to) + (n));\
524 xmemmove((buf)->p + (to), (buf)->p + (from), (n));\
525 if ((unsigned int )((to)+(n)) > (buf)->used) (buf)->used = (to) + (n);\
529#define BBUF_MOVE_LEFT(buf,from,to,n) do {\
530 xmemmove((buf)->p + (to), (buf)->p + (from), (n));\
534#define BBUF_MOVE_LEFT_REDUCE(buf,from,to) do {\
535 xmemmove((buf)->p + (to), (buf)->p + (from), (buf)->used - (from));\
536 (buf)->used -= (from - to);\
539#define BBUF_INSERT(buf,pos,bytes,n) do {\
540 if (pos >= (buf)->used) {\
541 BBUF_WRITE(buf,pos,bytes,n);\
544 BBUF_MOVE_RIGHT((buf),(pos),(pos) + (n),((buf)->used - (pos)));\
545 xmemcpy((buf)->p + (pos), (bytes), (n));\
549#define BBUF_GET_BYTE(buf, pos) (buf)->p[(pos)]
552#define ANCHOR_BEGIN_BUF (1<<0)
553#define ANCHOR_BEGIN_LINE (1<<1)
554#define ANCHOR_BEGIN_POSITION (1<<2)
555#define ANCHOR_END_BUF (1<<3)
556#define ANCHOR_SEMI_END_BUF (1<<4)
557#define ANCHOR_END_LINE (1<<5)
559#define ANCHOR_WORD_BOUND (1<<6)
560#define ANCHOR_NOT_WORD_BOUND (1<<7)
561#define ANCHOR_WORD_BEGIN (1<<8)
562#define ANCHOR_WORD_END (1<<9)
563#define ANCHOR_PREC_READ (1<<10)
564#define ANCHOR_PREC_READ_NOT (1<<11)
565#define ANCHOR_LOOK_BEHIND (1<<12)
566#define ANCHOR_LOOK_BEHIND_NOT (1<<13)
568#define ANCHOR_ANYCHAR_STAR (1<<14)
569#define ANCHOR_ANYCHAR_STAR_ML (1<<15)
571#define ANCHOR_KEEP (1<<16)
605 OP_ANYCHAR_STAR_PEEK_NEXT,
606 OP_ANYCHAR_ML_STAR_PEEK_NEXT,
618 OP_NOT_ASCII_WORD_BOUND,
635 OP_BACKREF_WITH_LEVEL,
638 OP_MEMORY_START_PUSH,
640 OP_MEMORY_END_PUSH_REC,
650 OP_PUSH_OR_JUMP_EXACT1,
651 OP_PUSH_IF_PEEK_NEXT,
660 OP_NULL_CHECK_END_MEMST,
661 OP_NULL_CHECK_END_MEMST_PUSH,
670 OP_PUSH_LOOK_BEHIND_NOT,
671 OP_FAIL_LOOK_BEHIND_NOT,
682 OP_STATE_CHECK_PUSH_OR_JUMP,
684 OP_STATE_CHECK_ANYCHAR_STAR,
685 OP_STATE_CHECK_ANYCHAR_ML_STAR,
692typedef int RelAddrType;
693typedef int AbsAddrType;
694typedef int LengthType;
695typedef int RepeatNumType;
696typedef short int MemNumType;
697typedef short int StateCheckNumType;
698typedef void* PointerType;
701#define SIZE_RELADDR (int )sizeof(RelAddrType)
702#define SIZE_ABSADDR (int )sizeof(AbsAddrType)
703#define SIZE_LENGTH (int )sizeof(LengthType)
704#define SIZE_MEMNUM (int )sizeof(MemNumType)
705#define SIZE_STATE_CHECK_NUM (int )sizeof(StateCheckNumType)
706#define SIZE_REPEATNUM (int )sizeof(RepeatNumType)
707#define SIZE_OPTION (int )sizeof(OnigOptionType)
708#define SIZE_CODE_POINT (int )sizeof(OnigCodePoint)
709#define SIZE_POINTER (int )sizeof(PointerType)
712#define GET_RELADDR_INC(addr,p) PLATFORM_GET_INC(addr, p, RelAddrType)
713#define GET_ABSADDR_INC(addr,p) PLATFORM_GET_INC(addr, p, AbsAddrType)
714#define GET_LENGTH_INC(len,p) PLATFORM_GET_INC(len, p, LengthType)
715#define GET_MEMNUM_INC(num,p) PLATFORM_GET_INC(num, p, MemNumType)
716#define GET_REPEATNUM_INC(num,p) PLATFORM_GET_INC(num, p, RepeatNumType)
717#define GET_OPTION_INC(option,p) PLATFORM_GET_INC(option, p, OnigOptionType)
718#define GET_POINTER_INC(ptr,p) PLATFORM_GET_INC(ptr, p, PointerType)
719#define GET_STATE_CHECK_NUM_INC(num,p) PLATFORM_GET_INC(num, p, StateCheckNumType)
722#define GET_CODE_POINT(code,p) code = *((OnigCodePoint* )(p))
723#define GET_BYTE_INC(byte,p) do{\
730#define SIZE_OP_ANYCHAR_STAR SIZE_OPCODE
731#define SIZE_OP_ANYCHAR_STAR_PEEK_NEXT (SIZE_OPCODE + 1)
732#define SIZE_OP_JUMP (SIZE_OPCODE + SIZE_RELADDR)
733#define SIZE_OP_PUSH (SIZE_OPCODE + SIZE_RELADDR)
734#define SIZE_OP_POP SIZE_OPCODE
735#define SIZE_OP_PUSH_OR_JUMP_EXACT1 (SIZE_OPCODE + SIZE_RELADDR + 1)
736#define SIZE_OP_PUSH_IF_PEEK_NEXT (SIZE_OPCODE + SIZE_RELADDR + 1)
737#define SIZE_OP_REPEAT_INC (SIZE_OPCODE + SIZE_MEMNUM)
738#define SIZE_OP_REPEAT_INC_NG (SIZE_OPCODE + SIZE_MEMNUM)
739#define SIZE_OP_PUSH_POS SIZE_OPCODE
740#define SIZE_OP_PUSH_POS_NOT (SIZE_OPCODE + SIZE_RELADDR)
741#define SIZE_OP_POP_POS SIZE_OPCODE
742#define SIZE_OP_FAIL_POS SIZE_OPCODE
743#define SIZE_OP_SET_OPTION (SIZE_OPCODE + SIZE_OPTION)
744#define SIZE_OP_SET_OPTION_PUSH (SIZE_OPCODE + SIZE_OPTION)
745#define SIZE_OP_FAIL SIZE_OPCODE
746#define SIZE_OP_MEMORY_START (SIZE_OPCODE + SIZE_MEMNUM)
747#define SIZE_OP_MEMORY_START_PUSH (SIZE_OPCODE + SIZE_MEMNUM)
748#define SIZE_OP_MEMORY_END_PUSH (SIZE_OPCODE + SIZE_MEMNUM)
749#define SIZE_OP_MEMORY_END_PUSH_REC (SIZE_OPCODE + SIZE_MEMNUM)
750#define SIZE_OP_MEMORY_END (SIZE_OPCODE + SIZE_MEMNUM)
751#define SIZE_OP_MEMORY_END_REC (SIZE_OPCODE + SIZE_MEMNUM)
752#define SIZE_OP_PUSH_STOP_BT SIZE_OPCODE
753#define SIZE_OP_POP_STOP_BT SIZE_OPCODE
754#define SIZE_OP_NULL_CHECK_START (SIZE_OPCODE + SIZE_MEMNUM)
755#define SIZE_OP_NULL_CHECK_END (SIZE_OPCODE + SIZE_MEMNUM)
756#define SIZE_OP_LOOK_BEHIND (SIZE_OPCODE + SIZE_LENGTH)
757#define SIZE_OP_PUSH_LOOK_BEHIND_NOT (SIZE_OPCODE + SIZE_RELADDR + SIZE_LENGTH)
758#define SIZE_OP_FAIL_LOOK_BEHIND_NOT SIZE_OPCODE
759#define SIZE_OP_CALL (SIZE_OPCODE + SIZE_ABSADDR)
760#define SIZE_OP_RETURN SIZE_OPCODE
761#define SIZE_OP_CONDITION (SIZE_OPCODE + SIZE_MEMNUM + SIZE_RELADDR)
762#define SIZE_OP_PUSH_ABSENT_POS SIZE_OPCODE
763#define SIZE_OP_ABSENT (SIZE_OPCODE + SIZE_RELADDR)
764#define SIZE_OP_ABSENT_END SIZE_OPCODE
766#ifdef USE_COMBINATION_EXPLOSION_CHECK
767# define SIZE_OP_STATE_CHECK (SIZE_OPCODE + SIZE_STATE_CHECK_NUM)
768# define SIZE_OP_STATE_CHECK_PUSH (SIZE_OPCODE + SIZE_STATE_CHECK_NUM + SIZE_RELADDR)
769# define SIZE_OP_STATE_CHECK_PUSH_OR_JUMP (SIZE_OPCODE + SIZE_STATE_CHECK_NUM + SIZE_RELADDR)
770# define SIZE_OP_STATE_CHECK_ANYCHAR_STAR (SIZE_OPCODE + SIZE_STATE_CHECK_NUM)
773#define MC_ESC(syn) (syn)->meta_char_table.esc
774#define MC_ANYCHAR(syn) (syn)->meta_char_table.anychar
775#define MC_ANYTIME(syn) (syn)->meta_char_table.anytime
776#define MC_ZERO_OR_ONE_TIME(syn) (syn)->meta_char_table.zero_or_one_time
777#define MC_ONE_OR_MORE_TIME(syn) (syn)->meta_char_table.one_or_more_time
778#define MC_ANYCHAR_ANYTIME(syn) (syn)->meta_char_table.anychar_anytime
780#define IS_MC_ESC_CODE(code, syn) \
781 ((code) == MC_ESC(syn) && \
782 !IS_SYNTAX_OP2((syn), ONIG_SYN_OP2_INEFFECTIVE_ESCAPE))
785#define SYN_POSIX_COMMON_OP \
786 ( ONIG_SYN_OP_DOT_ANYCHAR | ONIG_SYN_OP_POSIX_BRACKET | \
787 ONIG_SYN_OP_DECIMAL_BACKREF | \
788 ONIG_SYN_OP_BRACKET_CC | ONIG_SYN_OP_ASTERISK_ZERO_INF | \
789 ONIG_SYN_OP_LINE_ANCHOR | \
790 ONIG_SYN_OP_ESC_CONTROL_CHARS )
792#define SYN_GNU_REGEX_OP \
793 ( ONIG_SYN_OP_DOT_ANYCHAR | ONIG_SYN_OP_BRACKET_CC | \
794 ONIG_SYN_OP_POSIX_BRACKET | ONIG_SYN_OP_DECIMAL_BACKREF | \
795 ONIG_SYN_OP_BRACE_INTERVAL | ONIG_SYN_OP_LPAREN_SUBEXP | \
796 ONIG_SYN_OP_VBAR_ALT | \
797 ONIG_SYN_OP_ASTERISK_ZERO_INF | ONIG_SYN_OP_PLUS_ONE_INF | \
798 ONIG_SYN_OP_QMARK_ZERO_ONE | \
799 ONIG_SYN_OP_ESC_AZ_BUF_ANCHOR | ONIG_SYN_OP_ESC_CAPITAL_G_BEGIN_ANCHOR | \
800 ONIG_SYN_OP_ESC_W_WORD | \
801 ONIG_SYN_OP_ESC_B_WORD_BOUND | ONIG_SYN_OP_ESC_LTGT_WORD_BEGIN_END | \
802 ONIG_SYN_OP_ESC_S_WHITE_SPACE | ONIG_SYN_OP_ESC_D_DIGIT | \
803 ONIG_SYN_OP_LINE_ANCHOR )
805#define SYN_GNU_REGEX_BV \
806 ( ONIG_SYN_CONTEXT_INDEP_ANCHORS | ONIG_SYN_CONTEXT_INDEP_REPEAT_OPS | \
807 ONIG_SYN_CONTEXT_INVALID_REPEAT_OPS | ONIG_SYN_ALLOW_INVALID_INTERVAL | \
808 ONIG_SYN_BACKSLASH_ESCAPE_IN_CC | ONIG_SYN_ALLOW_DOUBLE_RANGE_OP_IN_CC )
811#define NCCLASS_FLAGS(cc) ((cc)->flags)
812#define NCCLASS_FLAG_SET(cc,flag) (NCCLASS_FLAGS(cc) |= (flag))
813#define NCCLASS_FLAG_CLEAR(cc,flag) (NCCLASS_FLAGS(cc) &= ~(flag))
814#define IS_NCCLASS_FLAG_ON(cc,flag) ((NCCLASS_FLAGS(cc) & (flag)) != 0)
817#define FLAG_NCCLASS_NOT (1<<0)
819#define NCCLASS_SET_NOT(nd) NCCLASS_FLAG_SET(nd, FLAG_NCCLASS_NOT)
820#define NCCLASS_CLEAR_NOT(nd) NCCLASS_FLAG_CLEAR(nd, FLAG_NCCLASS_NOT)
821#define IS_NCCLASS_NOT(nd) IS_NCCLASS_FLAG_ON(nd, FLAG_NCCLASS_NOT)
836typedef intptr_t OnigStackIndex;
840 OnigStackIndex null_check;
846#ifdef USE_COMBINATION_EXPLOSION_CHECK
847 unsigned int state_check;
863 OnigStackIndex start;
870#ifdef USE_SUBEXP_CALL
879 const UChar *end_pstr;
881#ifdef USE_MATCH_CACHE
890#ifdef USE_MATCH_CACHE
894 int outer_repeat_mem;
895 long num_cache_points_at_outer_repeat;
896 long num_cache_points_in_outer_repeat;
897 int lookaround_nesting;
905 OnigOptionType options;
909#ifdef USE_FIND_LONGEST_SEARCH_ALL_OF_RANGE
910 OnigPosition best_len;
913#ifdef USE_COMBINATION_EXPLOSION_CHECK
914 void* state_check_buff;
915 int state_check_buff_size;
919#ifdef MY_RUBY_BUILD_MAY_TIME_TRAVEL
924#ifdef USE_MATCH_CACHE
925 int match_cache_status;
927 long num_cache_opcodes;
929 long num_cache_points;
930 uint8_t* match_cache_buf;
934#define NUM_CACHE_OPCODES_UNINIT 1
935#define NUM_CACHE_OPCODES_IMPOSSIBLE -1
937#define MATCH_CACHE_STATUS_UNINIT 1
938#define MATCH_CACHE_STATUS_INIT 2
939#define MATCH_CACHE_STATUS_DISABLED -1
940#define MATCH_CACHE_STATUS_ENABLED 0
942#define IS_CODE_SB_WORD(enc,code) \
943 (ONIGENC_IS_CODE_ASCII(code) && ONIGENC_IS_CODE_WORD(enc,code))
950extern void onig_add_end_call(
void (*func)(
void));
961extern OnigOpInfoType OnigOpInfo[];
964extern void onig_print_compiled_byte_code(
FILE* f, UChar* bp, UChar* bpend, UChar** nextp,
OnigEncoding enc);
966# ifdef ONIG_DEBUG_STATISTICS
967extern void onig_statistics_init(
void);
968extern void onig_print_statistics(
FILE* f);
973#define PRINTF_ARGS(func, fmt, vargs) func
976extern UChar* onig_error_code_to_format(OnigPosition code);
977PRINTF_ARGS(
extern void onig_vsnprintf_with_pattern(UChar buf[],
int bufsize,
OnigEncoding enc, UChar* pat, UChar* pat_end,
const char *fmt, va_list args), 6, 0);
978PRINTF_ARGS(
extern void onig_snprintf_with_pattern(UChar buf[],
int bufsize,
OnigEncoding enc, UChar* pat, UChar* pat_end,
const char *fmt, ...), 6, 7);
979extern int onig_bbuf_init(
BBuf* buf, OnigDistance size);
980extern int onig_compile(
regex_t* reg,
const UChar* pattern,
const UChar* pattern_end,
OnigErrorInfo* einfo);
982extern int onig_compile_ruby(
regex_t* reg,
const UChar* pattern,
const UChar* pattern_end,
OnigErrorInfo* einfo,
const char *sourcefile,
int sourceline);
986extern int onig_is_code_in_cc_len(
int enclen, OnigCodePoint code,
CClassNode* cc);
989typedef void hash_table_type;
995typedef st_data_t hash_data_type;
997extern hash_table_type* onig_st_init_strend_table_with_size(st_index_t size);
998extern int onig_st_lookup_strend(hash_table_type* table,
const UChar* str_key,
const UChar* end_key, hash_data_type *value);
999extern int onig_st_insert_strend(hash_table_type* table,
const UChar* str_key,
const UChar* end_key, hash_data_type value);
1002extern size_t onig_memsize(
const regex_t *reg);
1003extern size_t onig_region_memsize(
const struct re_registers *regs);
1004bool rb_reg_timeout_p(
regex_t *reg,
void *end_time);
1005NORETURN(
void rb_reg_raise_timeout(
void));
1008RUBY_SYMBOL_EXPORT_END