1 #ifndef RUBY_RUBYPARSER_H
2 #define RUBY_RUBYPARSER_H 1
4 * This is a header file for librubyparser interface
7 #include <stdarg.h> /* for va_list */
10 #ifdef UNIVERSAL_PARSER
12 #define rb_encoding const void
13 #define OnigCodePoint unsigned int
14 #include "parser_st.h"
16 #include "parser_value.h"
21 #include "ruby/encoding.h"
26 /* From internal/compilers.h */
27 /* A macro for defining a flexible array, like: VALUE ary[FLEX_ARY_LEN]; */
28 #if defined(__STDC_VERSION__) && (__STDC_VERSION__ >= 199901L)
29 # define FLEX_ARY_LEN /* VALUE ary[]; */
30 #elif defined(__GNUC__) && !defined(__STRICT_ANSI__)
31 # define FLEX_ARY_LEN 0 /* VALUE ary[0]; */
33 # define FLEX_ARY_LEN 1 /* VALUE ary[1]; */
38 # if defined(__MINGW_PRINTF_FORMAT)
39 # define RUBYPARSER_ATTRIBUTE_FORMAT(string_index, argument_index) __attribute__((format(__MINGW_PRINTF_FORMAT, string_index, argument_index)))
41 # define RUBYPARSER_ATTRIBUTE_FORMAT(string_index, argument_index) __attribute__((format(printf, string_index, argument_index)))
43 #elif defined(__clang__)
44 # define RUBYPARSER_ATTRIBUTE_FORMAT(string_index, argument_index) __attribute__((__format__(__printf__, string_index, argument_index)))
46 # define RUBYPARSER_ATTRIBUTE_FORMAT(string_index, argument_index)
52 enum rb_parser_string_coderange_type
{
53 /** The object's coderange is unclear yet. */
54 RB_PARSER_ENC_CODERANGE_UNKNOWN
= 0,
55 RB_PARSER_ENC_CODERANGE_7BIT
= 1,
56 RB_PARSER_ENC_CODERANGE_VALID
= 2,
57 RB_PARSER_ENC_CODERANGE_BROKEN
= 3
60 typedef struct rb_parser_string
{
61 enum rb_parser_string_coderange_type coderange
;
63 /* Length of the string, not including terminating NUL character. */
65 /* Pointer to the contents of the string. */
69 enum rb_parser_shareability
{
70 rb_parser_shareable_none
,
71 rb_parser_shareable_literal
,
72 rb_parser_shareable_copy
,
73 rb_parser_shareable_everything
,
76 typedef void* rb_parser_input_data
;
197 typedef struct rb_ast_id_table
{
199 ID ids
[FLEX_ARY_LEN
];
202 typedef struct rb_code_position_struct
{
205 } rb_code_position_t
;
207 typedef struct rb_code_location_struct
{
208 rb_code_position_t beg_pos
;
209 rb_code_position_t end_pos
;
210 } rb_code_location_t
;
211 #define YYLTYPE rb_code_location_t
212 #define YYLTYPE_IS_DECLARED 1
214 typedef struct rb_parser_ast_token
{
216 const char *type_name
;
217 rb_parser_string_t
*str
;
218 rb_code_location_t loc
;
219 } rb_parser_ast_token_t
;
222 * Array-like object for parser
224 typedef void* rb_parser_ary_data
;
226 enum rb_parser_ary_data_type
{
227 PARSER_ARY_DATA_AST_TOKEN
,
228 PARSER_ARY_DATA_SCRIPT_LINE
231 typedef struct rb_parser_ary
{
232 enum rb_parser_ary_data_type data_type
;
233 rb_parser_ary_data
*data
;
234 long len
; // current size
235 long capa
; // capacity
238 /* Header part of AST Node */
239 typedef struct RNode
{
241 rb_code_location_t nd_loc
;
245 typedef struct RNode_SCOPE
{
248 rb_ast_id_table_t
*nd_tbl
;
249 struct RNode
*nd_body
;
250 struct RNode_ARGS
*nd_args
;
253 typedef struct RNode_BLOCK
{
256 struct RNode
*nd_head
;
257 struct RNode
*nd_end
;
258 struct RNode
*nd_next
;
261 typedef struct RNode_IF
{
264 struct RNode
*nd_cond
;
265 struct RNode
*nd_body
;
266 struct RNode
*nd_else
;
269 typedef struct RNode_UNLESS
{
272 struct RNode
*nd_cond
;
273 struct RNode
*nd_body
;
274 struct RNode
*nd_else
;
277 typedef struct RNode_CASE
{
280 struct RNode
*nd_head
;
281 struct RNode
*nd_body
;
284 typedef struct RNode_CASE2
{
287 struct RNode
*nd_head
;
288 struct RNode
*nd_body
;
291 typedef struct RNode_CASE3
{
294 struct RNode
*nd_head
;
295 struct RNode
*nd_body
;
298 typedef struct RNode_WHEN
{
301 struct RNode
*nd_head
;
302 struct RNode
*nd_body
;
303 struct RNode
*nd_next
;
306 typedef struct RNode_IN
{
309 struct RNode
*nd_head
;
310 struct RNode
*nd_body
;
311 struct RNode
*nd_next
;
314 /* RNode_WHILE and RNode_UNTIL should be same structure */
315 typedef struct RNode_WHILE
{
318 struct RNode
*nd_cond
;
319 struct RNode
*nd_body
;
323 typedef struct RNode_UNTIL
{
326 struct RNode
*nd_cond
;
327 struct RNode
*nd_body
;
331 /* RNode_ITER and RNode_FOR should be same structure */
332 typedef struct RNode_ITER
{
335 struct RNode
*nd_body
;
336 struct RNode
*nd_iter
;
339 typedef struct RNode_FOR
{
342 struct RNode
*nd_body
;
343 struct RNode
*nd_iter
;
346 typedef struct RNode_FOR_MASGN
{
349 struct RNode
*nd_var
;
350 } rb_node_for_masgn_t
;
352 /* RNode_BREAK, RNode_NEXT and RNode_REDO should be same structure */
353 typedef struct RNode_BREAK
{
356 struct RNode
*nd_chain
;
357 struct RNode
*nd_stts
;
360 typedef struct RNode_NEXT
{
363 struct RNode
*nd_chain
;
364 struct RNode
*nd_stts
;
367 typedef struct RNode_REDO
{
370 struct RNode
*nd_chain
;
373 typedef struct RNode_RETRY
{
377 typedef struct RNode_BEGIN
{
380 struct RNode
*nd_body
;
383 typedef struct RNode_RESCUE
{
386 struct RNode
*nd_head
;
387 struct RNode
*nd_resq
;
388 struct RNode
*nd_else
;
391 typedef struct RNode_RESBODY
{
394 struct RNode
*nd_args
;
395 struct RNode
*nd_body
;
396 struct RNode
*nd_next
;
399 typedef struct RNode_ENSURE
{
402 struct RNode
*nd_head
;
403 struct RNode
*nd_ensr
;
406 /* RNode_AND and RNode_OR should be same structure */
407 typedef struct RNode_AND
{
410 struct RNode
*nd_1st
;
411 struct RNode
*nd_2nd
;
414 typedef struct RNode_OR
{
417 struct RNode
*nd_1st
;
418 struct RNode
*nd_2nd
;
421 typedef struct RNode_MASGN
{
424 struct RNode
*nd_head
;
425 struct RNode
*nd_value
;
426 struct RNode
*nd_args
;
429 typedef struct RNode_LASGN
{
433 struct RNode
*nd_value
;
436 typedef struct RNode_DASGN
{
440 struct RNode
*nd_value
;
443 typedef struct RNode_GASGN
{
447 struct RNode
*nd_value
;
450 typedef struct RNode_IASGN
{
454 struct RNode
*nd_value
;
457 typedef struct RNode_CDECL
{
461 struct RNode
*nd_value
;
462 struct RNode
*nd_else
;
463 enum rb_parser_shareability shareability
;
466 typedef struct RNode_CVASGN
{
470 struct RNode
*nd_value
;
473 typedef struct RNode_OP_ASGN1
{
476 struct RNode
*nd_recv
;
478 struct RNode
*nd_index
;
479 struct RNode
*nd_rvalue
;
480 } rb_node_op_asgn1_t
;
482 typedef struct RNode_OP_ASGN2
{
485 struct RNode
*nd_recv
;
486 struct RNode
*nd_value
;
490 } rb_node_op_asgn2_t
;
492 typedef struct RNode_OP_ASGN_AND
{
495 struct RNode
*nd_head
;
496 struct RNode
*nd_value
;
497 } rb_node_op_asgn_and_t
;
499 typedef struct RNode_OP_ASGN_OR
{
502 struct RNode
*nd_head
;
503 struct RNode
*nd_value
;
504 } rb_node_op_asgn_or_t
;
506 typedef struct RNode_OP_CDECL
{
509 struct RNode
*nd_head
;
510 struct RNode
*nd_value
;
512 enum rb_parser_shareability shareability
;
513 } rb_node_op_cdecl_t
;
515 typedef struct RNode_CALL
{
518 struct RNode
*nd_recv
;
520 struct RNode
*nd_args
;
523 typedef struct RNode_OPCALL
{
526 struct RNode
*nd_recv
;
528 struct RNode
*nd_args
;
531 typedef struct RNode_FCALL
{
535 struct RNode
*nd_args
;
538 typedef struct RNode_VCALL
{
544 typedef struct RNode_QCALL
{
547 struct RNode
*nd_recv
;
549 struct RNode
*nd_args
;
552 typedef struct RNode_SUPER
{
555 struct RNode
*nd_args
;
558 typedef struct RNode_ZSUPER
{
567 * head --> element | * head
568 * alen (length of list) | * nd_end (point to the last LIST)
569 * next -----------------+ * next
572 RNode_LIST and RNode_VALUES should be same structure
574 typedef struct RNode_LIST
{
577 struct RNode
*nd_head
; /* element */
580 struct RNode
*nd_end
; /* Second list node has this structure */
582 struct RNode
*nd_next
; /* next list node */
585 typedef struct RNode_ZLIST
{
589 typedef struct RNode_VALUES
{
592 struct RNode
*nd_head
;
594 struct RNode
*nd_next
;
597 typedef struct RNode_HASH
{
600 struct RNode
*nd_head
;
604 typedef struct RNode_RETURN
{
607 struct RNode
*nd_stts
;
610 typedef struct RNode_YIELD
{
613 struct RNode
*nd_head
;
616 typedef struct RNode_LVAR
{
622 typedef struct RNode_DVAR
{
628 typedef struct RNode_GVAR
{
634 typedef struct RNode_IVAR
{
640 typedef struct RNode_CONST
{
646 typedef struct RNode_CVAR
{
652 typedef struct RNode_NTH_REF
{
658 typedef struct RNode_BACK_REF
{
662 } rb_node_back_ref_t
;
664 /* RNode_MATCH and RNode_REGX should be same structure */
665 typedef struct RNode_MATCH
{
668 struct rb_parser_string
*string
;
672 typedef struct RNode_MATCH2
{
675 struct RNode
*nd_recv
;
676 struct RNode
*nd_value
;
677 struct RNode
*nd_args
;
680 typedef struct RNode_MATCH3
{
683 struct RNode
*nd_recv
;
684 struct RNode
*nd_value
;
687 typedef struct RNode_INTEGER
{
695 typedef struct RNode_FLOAT
{
702 typedef struct RNode_RATIONAL
{
709 } rb_node_rational_t
;
711 enum rb_numeric_type
{
717 typedef struct RNode_IMAGINARY
{
724 enum rb_numeric_type type
;
725 } rb_node_imaginary_t
;
727 /* RNode_STR and RNode_XSTR should be same structure */
728 typedef struct RNode_STR
{
731 struct rb_parser_string
*string
;
734 /* RNode_DSTR, RNode_DXSTR and RNode_DSYM should be same structure */
735 typedef struct RNode_DSTR
{
738 struct rb_parser_string
*string
;
741 struct RNode
*nd_end
; /* Second dstr node has this structure. See also RNode_LIST */
743 struct RNode_LIST
*nd_next
;
746 typedef struct RNode_XSTR
{
749 struct rb_parser_string
*string
;
752 typedef struct RNode_DXSTR
{
755 struct rb_parser_string
*string
;
757 struct RNode_LIST
*nd_next
;
760 typedef struct RNode_EVSTR
{
763 struct RNode
*nd_body
;
766 typedef struct RNode_REGX
{
769 struct rb_parser_string
*string
;
773 typedef struct RNode_DREGX
{
776 struct rb_parser_string
*string
;
778 struct RNode_LIST
*nd_next
;
781 typedef struct RNode_ONCE
{
784 struct RNode
*nd_body
;
787 struct rb_args_info
{
791 int pre_args_num
; /* count of mandatory pre-arguments */
792 int post_args_num
; /* count of mandatory post-arguments */
799 struct RNode_KW_ARG
*kw_args
;
802 struct RNode_OPT_ARG
*opt_args
;
803 unsigned int no_kwarg
: 1;
804 unsigned int ruby2_keywords
: 1;
805 unsigned int forwarding
: 1;
808 typedef struct RNode_ARGS
{
811 struct rb_args_info nd_ainfo
;
814 typedef struct RNode_ARGS_AUX
{
819 struct RNode
*nd_next
;
820 } rb_node_args_aux_t
;
822 typedef struct RNode_OPT_ARG
{
825 struct RNode
*nd_body
;
826 struct RNode_OPT_ARG
*nd_next
;
829 typedef struct RNode_KW_ARG
{
832 struct RNode
*nd_body
;
833 struct RNode_KW_ARG
*nd_next
;
836 typedef struct RNode_POSTARG
{
839 struct RNode
*nd_1st
;
840 struct RNode
*nd_2nd
;
843 typedef struct RNode_ARGSCAT
{
846 struct RNode
*nd_head
;
847 struct RNode
*nd_body
;
850 typedef struct RNode_ARGSPUSH
{
853 struct RNode
*nd_head
;
854 struct RNode
*nd_body
;
855 } rb_node_argspush_t
;
857 typedef struct RNode_SPLAT
{
860 struct RNode
*nd_head
;
863 typedef struct RNode_BLOCK_PASS
{
866 struct RNode
*nd_head
;
867 struct RNode
*nd_body
;
868 } rb_node_block_pass_t
;
870 typedef struct RNode_DEFN
{
874 struct RNode
*nd_defn
;
877 typedef struct RNode_DEFS
{
880 struct RNode
*nd_recv
;
882 struct RNode
*nd_defn
;
885 typedef struct RNode_ALIAS
{
888 struct RNode
*nd_1st
;
889 struct RNode
*nd_2nd
;
892 typedef struct RNode_VALIAS
{
899 typedef struct RNode_UNDEF
{
902 struct RNode
*nd_undef
;
905 typedef struct RNode_CLASS
{
908 struct RNode
*nd_cpath
;
909 struct RNode
*nd_body
;
910 struct RNode
*nd_super
;
913 typedef struct RNode_MODULE
{
916 struct RNode
*nd_cpath
;
917 struct RNode
*nd_body
;
920 typedef struct RNode_SCLASS
{
923 struct RNode
*nd_recv
;
924 struct RNode
*nd_body
;
927 typedef struct RNode_COLON2
{
930 struct RNode
*nd_head
;
934 typedef struct RNode_COLON3
{
940 /* RNode_DOT2, RNode_DOT3, RNode_FLIP2 and RNode_FLIP3 should be same structure */
941 typedef struct RNode_DOT2
{
944 struct RNode
*nd_beg
;
945 struct RNode
*nd_end
;
948 typedef struct RNode_DOT3
{
951 struct RNode
*nd_beg
;
952 struct RNode
*nd_end
;
955 typedef struct RNode_FLIP2
{
958 struct RNode
*nd_beg
;
959 struct RNode
*nd_end
;
962 typedef struct RNode_FLIP3
{
965 struct RNode
*nd_beg
;
966 struct RNode
*nd_end
;
969 typedef struct RNode_SELF
{
972 long nd_state
; /* Default 1. See NEW_SELF. */
975 typedef struct RNode_NIL
{
979 typedef struct RNode_TRUE
{
983 typedef struct RNode_FALSE
{
987 typedef struct RNode_ERRINFO
{
991 typedef struct RNode_DEFINED
{
994 struct RNode
*nd_head
;
997 typedef struct RNode_POSTEXE
{
1000 struct RNode
*nd_body
;
1001 } rb_node_postexe_t
;
1003 typedef struct RNode_SYM
{
1006 struct rb_parser_string
*string
;
1009 typedef struct RNode_DSYM
{
1012 struct rb_parser_string
*string
;
1014 struct RNode_LIST
*nd_next
;
1017 typedef struct RNode_ATTRASGN
{
1020 struct RNode
*nd_recv
;
1022 struct RNode
*nd_args
;
1023 } rb_node_attrasgn_t
;
1025 typedef struct RNode_LAMBDA
{
1028 struct RNode
*nd_body
;
1031 typedef struct RNode_ARYPTN
{
1034 struct RNode
*nd_pconst
;
1040 typedef struct RNode_HSHPTN
{
1043 struct RNode
*nd_pconst
;
1044 struct RNode
*nd_pkwargs
;
1045 struct RNode
*nd_pkwrestarg
;
1048 typedef struct RNode_FNDPTN
{
1051 struct RNode
*nd_pconst
;
1054 NODE
*post_rest_arg
;
1057 typedef struct RNode_LINE
{
1061 typedef struct RNode_FILE
{
1064 struct rb_parser_string
*path
;
1067 typedef struct RNode_ENCODING
{
1070 } rb_node_encoding_t
;
1072 typedef struct RNode_ERROR
{
1076 #define RNODE(obj) ((struct RNode *)(obj))
1078 #define RNODE_SCOPE(node) ((struct RNode_SCOPE *)(node))
1079 #define RNODE_BLOCK(node) ((struct RNode_BLOCK *)(node))
1080 #define RNODE_IF(node) ((struct RNode_IF *)(node))
1081 #define RNODE_UNLESS(node) ((struct RNode_UNLESS *)(node))
1082 #define RNODE_CASE(node) ((struct RNode_CASE *)(node))
1083 #define RNODE_CASE2(node) ((struct RNode_CASE2 *)(node))
1084 #define RNODE_CASE3(node) ((struct RNode_CASE3 *)(node))
1085 #define RNODE_WHEN(node) ((struct RNode_WHEN *)(node))
1086 #define RNODE_IN(node) ((struct RNode_IN *)(node))
1087 #define RNODE_WHILE(node) ((struct RNode_WHILE *)(node))
1088 #define RNODE_UNTIL(node) ((struct RNode_UNTIL *)(node))
1089 #define RNODE_ITER(node) ((struct RNode_ITER *)(node))
1090 #define RNODE_FOR(node) ((struct RNode_FOR *)(node))
1091 #define RNODE_FOR_MASGN(node) ((struct RNode_FOR_MASGN *)(node))
1092 #define RNODE_BREAK(node) ((struct RNode_BREAK *)(node))
1093 #define RNODE_NEXT(node) ((struct RNode_NEXT *)(node))
1094 #define RNODE_REDO(node) ((struct RNode_REDO *)(node))
1095 #define RNODE_RETRY(node) ((struct RNode_RETRY *)(node))
1096 #define RNODE_BEGIN(node) ((struct RNode_BEGIN *)(node))
1097 #define RNODE_RESCUE(node) ((struct RNode_RESCUE *)(node))
1098 #define RNODE_RESBODY(node) ((struct RNode_RESBODY *)(node))
1099 #define RNODE_ENSURE(node) ((struct RNode_ENSURE *)(node))
1100 #define RNODE_AND(node) ((struct RNode_AND *)(node))
1101 #define RNODE_OR(node) ((struct RNode_OR *)(node))
1102 #define RNODE_MASGN(node) ((struct RNode_MASGN *)(node))
1103 #define RNODE_LASGN(node) ((struct RNode_LASGN *)(node))
1104 #define RNODE_DASGN(node) ((struct RNode_DASGN *)(node))
1105 #define RNODE_GASGN(node) ((struct RNode_GASGN *)(node))
1106 #define RNODE_IASGN(node) ((struct RNode_IASGN *)(node))
1107 #define RNODE_CDECL(node) ((struct RNode_CDECL *)(node))
1108 #define RNODE_CVASGN(node) ((struct RNode_CVASGN *)(node))
1109 #define RNODE_OP_ASGN1(node) ((struct RNode_OP_ASGN1 *)(node))
1110 #define RNODE_OP_ASGN2(node) ((struct RNode_OP_ASGN2 *)(node))
1111 #define RNODE_OP_ASGN_AND(node) ((struct RNode_OP_ASGN_AND *)(node))
1112 #define RNODE_OP_ASGN_OR(node) ((struct RNode_OP_ASGN_OR *)(node))
1113 #define RNODE_OP_CDECL(node) ((struct RNode_OP_CDECL *)(node))
1114 #define RNODE_CALL(node) ((struct RNode_CALL *)(node))
1115 #define RNODE_OPCALL(node) ((struct RNode_OPCALL *)(node))
1116 #define RNODE_FCALL(node) ((struct RNode_FCALL *)(node))
1117 #define RNODE_VCALL(node) ((struct RNode_VCALL *)(node))
1118 #define RNODE_QCALL(node) ((struct RNode_QCALL *)(node))
1119 #define RNODE_SUPER(node) ((struct RNode_SUPER *)(node))
1120 #define RNODE_ZSUPER(node) ((struct RNode_ZSUPER *)(node))
1121 #define RNODE_LIST(node) ((struct RNode_LIST *)(node))
1122 #define RNODE_ZLIST(node) ((struct RNode_ZLIST *)(node))
1123 #define RNODE_HASH(node) ((struct RNode_HASH *)(node))
1124 #define RNODE_RETURN(node) ((struct RNode_RETURN *)(node))
1125 #define RNODE_YIELD(node) ((struct RNode_YIELD *)(node))
1126 #define RNODE_LVAR(node) ((struct RNode_LVAR *)(node))
1127 #define RNODE_DVAR(node) ((struct RNode_DVAR *)(node))
1128 #define RNODE_GVAR(node) ((struct RNode_GVAR *)(node))
1129 #define RNODE_IVAR(node) ((struct RNode_IVAR *)(node))
1130 #define RNODE_CONST(node) ((struct RNode_CONST *)(node))
1131 #define RNODE_CVAR(node) ((struct RNode_CVAR *)(node))
1132 #define RNODE_NTH_REF(node) ((struct RNode_NTH_REF *)(node))
1133 #define RNODE_BACK_REF(node) ((struct RNode_BACK_REF *)(node))
1134 #define RNODE_MATCH(node) ((struct RNode_MATCH *)(node))
1135 #define RNODE_MATCH2(node) ((struct RNode_MATCH2 *)(node))
1136 #define RNODE_MATCH3(node) ((struct RNode_MATCH3 *)(node))
1137 #define RNODE_INTEGER(node) ((struct RNode_INTEGER *)(node))
1138 #define RNODE_FLOAT(node) ((struct RNode_FLOAT *)(node))
1139 #define RNODE_RATIONAL(node) ((struct RNode_RATIONAL *)(node))
1140 #define RNODE_IMAGINARY(node) ((struct RNode_IMAGINARY *)(node))
1141 #define RNODE_STR(node) ((struct RNode_STR *)(node))
1142 #define RNODE_DSTR(node) ((struct RNode_DSTR *)(node))
1143 #define RNODE_XSTR(node) ((struct RNode_XSTR *)(node))
1144 #define RNODE_DXSTR(node) ((struct RNode_DXSTR *)(node))
1145 #define RNODE_EVSTR(node) ((struct RNode_EVSTR *)(node))
1146 #define RNODE_REGX(node) ((struct RNode_REGX *)(node))
1147 #define RNODE_DREGX(node) ((struct RNode_DREGX *)(node))
1148 #define RNODE_ONCE(node) ((struct RNode_ONCE *)(node))
1149 #define RNODE_ARGS(node) ((struct RNode_ARGS *)(node))
1150 #define RNODE_ARGS_AUX(node) ((struct RNode_ARGS_AUX *)(node))
1151 #define RNODE_OPT_ARG(node) ((struct RNode_OPT_ARG *)(node))
1152 #define RNODE_KW_ARG(node) ((struct RNode_KW_ARG *)(node))
1153 #define RNODE_POSTARG(node) ((struct RNode_POSTARG *)(node))
1154 #define RNODE_ARGSCAT(node) ((struct RNode_ARGSCAT *)(node))
1155 #define RNODE_ARGSPUSH(node) ((struct RNode_ARGSPUSH *)(node))
1156 #define RNODE_SPLAT(node) ((struct RNode_SPLAT *)(node))
1157 #define RNODE_BLOCK_PASS(node) ((struct RNode_BLOCK_PASS *)(node))
1158 #define RNODE_DEFN(node) ((struct RNode_DEFN *)(node))
1159 #define RNODE_DEFS(node) ((struct RNode_DEFS *)(node))
1160 #define RNODE_ALIAS(node) ((struct RNode_ALIAS *)(node))
1161 #define RNODE_VALIAS(node) ((struct RNode_VALIAS *)(node))
1162 #define RNODE_UNDEF(node) ((struct RNode_UNDEF *)(node))
1163 #define RNODE_CLASS(node) ((struct RNode_CLASS *)(node))
1164 #define RNODE_MODULE(node) ((struct RNode_MODULE *)(node))
1165 #define RNODE_SCLASS(node) ((struct RNode_SCLASS *)(node))
1166 #define RNODE_COLON2(node) ((struct RNode_COLON2 *)(node))
1167 #define RNODE_COLON3(node) ((struct RNode_COLON3 *)(node))
1168 #define RNODE_DOT2(node) ((struct RNode_DOT2 *)(node))
1169 #define RNODE_DOT3(node) ((struct RNode_DOT3 *)(node))
1170 #define RNODE_FLIP2(node) ((struct RNode_FLIP2 *)(node))
1171 #define RNODE_FLIP3(node) ((struct RNode_FLIP3 *)(node))
1172 #define RNODE_SELF(node) ((struct RNode_SELF *)(node))
1173 #define RNODE_NIL(node) ((struct RNode_NIL *)(node))
1174 #define RNODE_TRUE(node) ((struct RNode_TRUE *)(node))
1175 #define RNODE_FALSE(node) ((struct RNode_FALSE *)(node))
1176 #define RNODE_ERRINFO(node) ((struct RNode_ERRINFO *)(node))
1177 #define RNODE_DEFINED(node) ((struct RNode_DEFINED *)(node))
1178 #define RNODE_POSTEXE(node) ((struct RNode_POSTEXE *)(node))
1179 #define RNODE_SYM(node) ((struct RNode_SYM *)(node))
1180 #define RNODE_DSYM(node) ((struct RNode_DSYM *)(node))
1181 #define RNODE_ATTRASGN(node) ((struct RNode_ATTRASGN *)(node))
1182 #define RNODE_LAMBDA(node) ((struct RNode_LAMBDA *)(node))
1183 #define RNODE_ARYPTN(node) ((struct RNode_ARYPTN *)(node))
1184 #define RNODE_HSHPTN(node) ((struct RNode_HSHPTN *)(node))
1185 #define RNODE_FNDPTN(node) ((struct RNode_FNDPTN *)(node))
1186 #define RNODE_LINE(node) ((struct RNode_LINE *)(node))
1187 #define RNODE_FILE(node) ((struct RNode_FILE *)(node))
1188 #define RNODE_ENCODING(node) ((struct RNode_ENCODING *)(node))
1190 /* FL : 0..4: T_TYPES, 5: KEEP_WB, 6: PROMOTED, 7: FINALIZE, 8: UNUSED, 9: UNUSED, 10: EXIVAR, 11: FREEZE */
1191 /* NODE_FL: 0..4: UNUSED, 5: UNUSED, 6: UNUSED, 7: NODE_FL_NEWLINE,
1195 #define NODE_FL_NEWLINE (((VALUE)1)<<7)
1197 #define NODE_TYPESHIFT 8
1198 #define NODE_TYPEMASK (((VALUE)0x7f)<<NODE_TYPESHIFT)
1200 #define nd_fl_newline(n) (n)->flags & NODE_FL_NEWLINE
1201 #define nd_set_fl_newline(n) (n)->flags |= NODE_FL_NEWLINE
1202 #define nd_unset_fl_newline(n) (n)->flags &= ~NODE_FL_NEWLINE
1204 #define nd_type(n) ((int) ((RNODE(n)->flags & NODE_TYPEMASK)>>NODE_TYPESHIFT))
1205 #define nd_set_type(n,t) \
1206 rb_node_set_type(n, t)
1207 #define nd_init_type(n,t) \
1208 (n)->flags=(((n)->flags&~NODE_TYPEMASK)|((((unsigned long)(t))<<NODE_TYPESHIFT)&NODE_TYPEMASK))
1210 typedef struct node_buffer_struct node_buffer_t
;
1212 #ifdef UNIVERSAL_PARSER
1213 typedef struct rb_parser_config_struct rb_parser_config_t
;
1216 typedef struct rb_ast_body_struct
{
1218 rb_parser_ary_t
*script_lines
;
1220 signed int frozen_string_literal
:2; /* -1: not specified, 0: false, 1: true */
1221 signed int coverage_enabled
:2; /* -1: not specified, 0: false, 1: true */
1223 typedef struct rb_ast_struct
{
1224 node_buffer_t
*node_buffer
;
1226 #ifdef UNIVERSAL_PARSER
1227 const rb_parser_config_t
*config
;
1238 typedef struct parser_params rb_parser_t
;
1239 #ifndef INTERNAL_IMEMO_H
1240 typedef struct rb_imemo_tmpbuf_struct rb_imemo_tmpbuf_t
;
1243 #ifdef UNIVERSAL_PARSER
1244 typedef struct rb_parser_config_struct
{
1246 void *(*malloc
)(size_t size
);
1247 void *(*calloc
)(size_t number
, size_t size
);
1248 void *(*realloc
)(void *ptr
, size_t newsiz
);
1249 void (*free
)(void *ptr
);
1250 void *(*alloc_n
)(size_t nelems
, size_t elemsiz
);
1251 void *(*alloc
)(size_t elemsiz
);
1252 void *(*realloc_n
)(void *ptr
, size_t newelems
, size_t newsiz
);
1253 void *(*zalloc
)(size_t elemsiz
);
1254 void *(*rb_memmove
)(void *dest
, const void *src
, size_t t
, size_t n
);
1255 void *(*nonempty_memcpy
)(void *dest
, const void *src
, size_t t
, size_t n
);
1256 void *(*xmalloc_mul_add
)(size_t x
, size_t y
, size_t z
);
1258 // VALUE rb_suppress_tracing(VALUE (*func)(VALUE), VALUE arg);
1259 VALUE (*compile_callback
)(VALUE (*func
)(VALUE
), VALUE arg
);
1260 NODE
*(*reg_named_capture_assign
)(struct parser_params
* p
, VALUE regexp
, const rb_code_location_t
*loc
);
1263 VALUE (*attr_get
)(VALUE obj
, ID id
);
1266 VALUE (*ary_new
)(void);
1267 VALUE (*ary_push
)(VALUE ary
, VALUE elem
);
1268 VALUE (*ary_new_from_args
)(long n
, ...);
1269 VALUE (*ary_unshift
)(VALUE ary
, VALUE item
);
1272 ID (*make_temporary_id
)(size_t n
);
1273 int (*is_local_id
)(ID
);
1274 int (*is_attrset_id
)(ID
);
1275 int (*is_global_name_punct
)(const int c
);
1276 int (*id_type
)(ID id
);
1277 ID (*id_attrset
)(ID
);
1278 ID (*intern
)(const char *name
);
1279 ID (*intern2
)(const char *name
, long len
);
1280 ID (*intern3
)(const char *name
, long len
, rb_encoding
*enc
);
1281 ID (*intern_str
)(VALUE str
);
1282 int (*is_notop_id
)(ID
);
1283 int (*enc_symname_type
)(const char *name
, long len
, rb_encoding
*enc
, unsigned int allowed_attrset
);
1284 const char *(*id2name
)(ID id
);
1285 VALUE (*id2str
)(ID id
);
1286 VALUE (*id2sym
)(ID x
);
1287 ID (*sym2id
)(VALUE sym
);
1290 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT
, 2, 3)
1291 VALUE (*str_catf
)(VALUE str
, const char *format
, ...);
1292 VALUE (*str_cat_cstr
)(VALUE str
, const char *ptr
);
1293 void (*str_modify
)(VALUE str
);
1294 void (*str_set_len
)(VALUE str
, long len
);
1295 VALUE (*str_cat
)(VALUE str
, const char *ptr
, long len
);
1296 VALUE (*str_resize
)(VALUE str
, long len
);
1297 VALUE (*str_new
)(const char *ptr
, long len
);
1298 VALUE (*str_new_cstr
)(const char *ptr
);
1299 VALUE (*str_to_interned_str
)(VALUE
);
1300 int (*is_ascii_string
)(VALUE str
);
1301 VALUE (*enc_str_new
)(const char *ptr
, long len
, rb_encoding
*enc
);
1302 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT
, 2, 0)
1303 VALUE (*str_vcatf
)(VALUE str
, const char *fmt
, va_list ap
);
1304 char *(*string_value_cstr
)(volatile VALUE
*ptr
);
1305 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT
, 1, 2)
1306 VALUE (*rb_sprintf
)(const char *format
, ...);
1307 char *(*rstring_ptr
)(VALUE str
);
1308 char *(*rstring_end
)(VALUE str
);
1309 long (*rstring_len
)(VALUE str
);
1310 VALUE (*obj_as_string
)(VALUE
);
1313 VALUE (*int2num
)(int v
);
1316 int (*stderr_tty_p
)(void);
1317 void (*write_error_str
)(VALUE mesg
);
1318 VALUE (*io_write
)(VALUE io
, VALUE str
);
1319 VALUE (*io_flush
)(VALUE io
);
1320 VALUE (*io_puts
)(int argc
, const VALUE
*argv
, VALUE out
);
1323 VALUE (*debug_output_stdout
)(void);
1324 VALUE (*debug_output_stderr
)(void);
1327 int (*is_usascii_enc
)(rb_encoding
*enc
);
1328 int (*enc_isalnum
)(OnigCodePoint c
, rb_encoding
*enc
);
1329 int (*enc_precise_mbclen
)(const char *p
, const char *e
, rb_encoding
*enc
);
1330 int (*mbclen_charfound_p
)(int len
);
1331 int (*mbclen_charfound_len
)(int len
);
1332 const char *(*enc_name
)(rb_encoding
*enc
);
1333 char *(*enc_prev_char
)(const char *s
, const char *p
, const char *e
, rb_encoding
*enc
);
1334 rb_encoding
* (*enc_get
)(VALUE obj
);
1335 int (*enc_asciicompat
)(rb_encoding
*enc
);
1336 rb_encoding
*(*utf8_encoding
)(void);
1337 VALUE (*enc_associate
)(VALUE obj
, rb_encoding
*enc
);
1338 rb_encoding
*(*ascii8bit_encoding
)(void);
1339 int (*enc_codelen
)(int c
, rb_encoding
*enc
);
1340 int (*enc_mbcput
)(unsigned int c
, void *buf
, rb_encoding
*enc
);
1341 int (*enc_mbclen
)(const char *p
, const char *e
, rb_encoding
*enc
);
1342 int (*enc_find_index
)(const char *name
);
1343 rb_encoding
*(*enc_from_index
)(int idx
);
1344 int (*enc_isspace
)(OnigCodePoint c
, rb_encoding
*enc
);
1345 rb_encoding
*(*usascii_encoding
)(void);
1346 int enc_coderange_broken
;
1347 int (*enc_mbminlen
)(rb_encoding
*enc
);
1348 bool (*enc_isascii
)(OnigCodePoint c
, rb_encoding
*enc
);
1349 OnigCodePoint (*enc_mbc_to_codepoint
)(const char *p
, const char *e
, rb_encoding
*enc
);
1352 // int rb_local_defined(ID id, const rb_iseq_t *iseq);
1353 int (*local_defined
)(ID
, const void*);
1354 // int rb_dvar_defined(ID id, const rb_iseq_t *iseq);
1355 int (*dvar_defined
)(ID
, const void*);
1357 /* Error (Exception) */
1358 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT
, 6, 0)
1359 VALUE (*syntax_error_append
)(VALUE
, VALUE
, int, int, rb_encoding
*, const char*, va_list);
1360 RBIMPL_ATTR_FORMAT(RBIMPL_PRINTF_FORMAT
, 2, 3)
1361 void (*raise
)(VALUE exc
, const char *fmt
, ...);
1362 VALUE (*syntax_error_new
)(void);
1365 VALUE (*errinfo
)(void);
1366 void (*set_errinfo
)(VALUE err
);
1367 void (*exc_raise
)(VALUE mesg
);
1368 VALUE (*make_exception
)(int argc
, const VALUE
*argv
);
1371 void (*sized_xfree
)(void *x
, size_t size
);
1372 void *(*sized_realloc_n
)(void *ptr
, size_t new_count
, size_t element_size
, size_t old_count
);
1373 void (*gc_guard
)(VALUE
);
1374 void (*gc_mark
)(VALUE
);
1377 VALUE (*reg_compile
)(VALUE str
, int options
, const char *sourcefile
, int sourceline
);
1378 VALUE (*reg_check_preprocess
)(VALUE str
);
1379 int (*memcicmp
)(const void *x
, const void *y
, long len
);
1382 void (*compile_warn
)(const char *file
, int line
, const char *fmt
, ...) RUBYPARSER_ATTRIBUTE_FORMAT(3, 4);
1383 void (*compile_warning
)(const char *file
, int line
, const char *fmt
, ...) RUBYPARSER_ATTRIBUTE_FORMAT(3, 4);
1384 void (*bug
)(const char *fmt
, ...) RUBYPARSER_ATTRIBUTE_FORMAT(1, 2);
1385 void (*fatal
)(const char *fmt
, ...) RUBYPARSER_ATTRIBUTE_FORMAT(1, 2);
1386 VALUE (*verbose
)(void);
1387 int *(*errno_ptr
)(void);
1390 VALUE (*make_backtrace
)(void);
1393 unsigned long (*scan_hex
)(const char *start
, size_t len
, size_t *retlen
);
1394 unsigned long (*scan_oct
)(const char *start
, size_t len
, size_t *retlen
);
1395 unsigned long (*scan_digits
)(const char *str
, ssize_t len
, int base
, size_t *retlen
, int *overflow
);
1396 double (*strtod
)(const char *s00
, char **se
);
1399 int (*rtest
)(VALUE obj
);
1400 int (*nil_p
)(VALUE obj
);
1403 VALUE (*eArgError
)(void);
1404 int (*long2int
)(long);
1407 int enc_coderange_7bit
;
1408 int enc_coderange_unknown
;
1409 VALUE (*static_id2sym
)(ID id
);
1410 long (*str_coderange_scan_restartable
)(const char *s
, const char *e
, rb_encoding
*enc
, int *cr
);
1411 } rb_parser_config_t
;
1414 #undef OnigCodePoint
1415 #endif /* UNIVERSAL_PARSER */
1417 RUBY_SYMBOL_EXPORT_BEGIN
1418 void rb_ruby_parser_free(void *ptr
);
1420 #ifdef UNIVERSAL_PARSER
1421 rb_parser_t
*rb_ruby_parser_allocate(const rb_parser_config_t
*config
);
1422 rb_parser_t
*rb_ruby_parser_new(const rb_parser_config_t
*config
);
1425 long rb_parser_string_length(rb_parser_string_t
*str
);
1426 char *rb_parser_string_pointer(rb_parser_string_t
*str
);
1428 RUBY_SYMBOL_EXPORT_END
1430 #endif /* RUBY_RUBYPARSER_H */