1 /* gen - actual generation (writing) of flex scanners */
4 * Copyright (c) 1990 The Regents of the University of California.
7 * This code is derived from software contributed to Berkeley by
10 * The United States Government has rights in this work pursuant
11 * to contract no. DE-AC03-76SF00098 between the United States
12 * Department of Energy and the University of California.
14 * Redistribution and use in source and binary forms are permitted provided
15 * that: (1) source distributions retain this entire copyright notice and
16 * comment, and (2) distributions including binaries display the following
17 * acknowledgement: ``This product includes software developed by the
18 * University of California, Berkeley and its contributors'' in the
19 * documentation or other materials provided with the distribution and in
20 * all advertising materials mentioning features or use of this software.
21 * Neither the name of the University nor the names of its contributors may
22 * be used to endorse or promote products derived from this software without
23 * specific prior written permission.
24 * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
25 * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
26 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
29 /* $Header: /home/daffy/u0/vern/flex/RCS/gen.c,v 2.56 96/05/25 20:43:38 vern Exp $ */
30 /* $FreeBSD: src/usr.bin/lex/gen.c,v 1.5 1999/10/27 07:56:44 obrien Exp $ */
31 /* $DragonFly: src/usr.bin/lex/gen.c,v 1.6 2008/10/16 01:52:32 swildner Exp $ */
36 /* declare functions that have forward references */
38 void gen_next_state
PROTO((int));
39 void genecs
PROTO((void));
40 void indent_put2s
PROTO((char [], char []));
41 void indent_puts
PROTO((char []));
44 static int indent_level
= 0; /* each level is 8 spaces */
46 #define indent_up() (++indent_level)
47 #define indent_down() (--indent_level)
48 #define set_indent(indent_val) indent_level = indent_val
50 /* Almost everything is done in terms of arrays starting at 1, so provide
51 * a null entry for the zero element of all C arrays. (The exception
52 * to this is that the fast table representation generally uses the
53 * 0 elements of its arrays, too.)
55 static char C_int_decl
[] = "static yyconst int %s[%d] =\n { 0,\n";
56 static char C_short_decl
[] = "static yyconst short int %s[%d] =\n { 0,\n";
57 static char C_long_decl
[] = "static yyconst long int %s[%d] =\n { 0,\n";
58 static char C_state_decl
[] =
59 "static yyconst yy_state_type %s[%d] =\n { 0,\n";
62 /* Indent to the current level. */
66 int i
= indent_level
* 8;
82 /* Generate the code to keep backing-up information. */
84 void gen_backing_up(void)
86 if ( reject
|| num_backing_up
== 0 )
90 indent_puts( "if ( yy_current_state[-1].yy_nxt )" );
92 indent_puts( "if ( yy_accept[yy_current_state] )" );
96 indent_puts( "yy_last_accepting_state = yy_current_state;" );
97 indent_puts( "yy_last_accepting_cpos = yy_cp;" );
103 /* Generate the code to perform the backing up. */
105 void gen_bu_action(void)
107 if ( reject
|| num_backing_up
== 0 )
112 indent_puts( "case 0: /* must back up */" );
113 indent_puts( "/* undo the effects of YY_DO_BEFORE_ACTION */" );
114 indent_puts( "*yy_cp = yy_hold_char;" );
116 if ( fullspd
|| fulltbl
)
117 indent_puts( "yy_cp = yy_last_accepting_cpos + 1;" );
119 /* Backing-up info for compressed tables is taken \after/
120 * yy_cp has been incremented for the next state.
122 indent_puts( "yy_cp = yy_last_accepting_cpos;" );
124 indent_puts( "yy_current_state = yy_last_accepting_state;" );
125 indent_puts( "goto yy_find_action;" );
132 /* genctbl - generates full speed compressed transition table */
137 int end_of_buffer_action
= num_rules
+ 1;
139 /* Table of verify for transition and offset to next state. */
140 out_dec( "static yyconst struct yy_trans_info yy_transition[%d] =\n",
141 tblend
+ numecs
+ 1 );
144 /* We want the transition to be represented as the offset to the
145 * next state, not the actual state number, which is what it currently
146 * is. The offset is base[nxt[i]] - (base of current state)]. That's
147 * just the difference between the starting points of the two involved
148 * states (to - from).
150 * First, though, we need to find some way to put in our end-of-buffer
151 * flags and states. We do this by making a state with absolutely no
152 * transitions. We put it at the end of the table.
155 /* We need to have room in nxt/chk for two more slots: One for the
156 * action and one for the end-of-buffer transition. We now *assume*
157 * that we're guaranteed the only character we'll try to index this
158 * nxt/chk pair with is EOB, i.e., 0, so we don't have to make sure
159 * there's room for jam entries for other characters.
162 while ( tblend
+ 2 >= current_max_xpairs
)
165 while ( lastdfa
+ 1 >= current_max_dfas
)
168 base
[lastdfa
+ 1] = tblend
+ 2;
169 nxt
[tblend
+ 1] = end_of_buffer_action
;
170 chk
[tblend
+ 1] = numecs
+ 1;
171 chk
[tblend
+ 2] = 1; /* anything but EOB */
173 /* So that "make test" won't show arb. differences. */
176 /* Make sure every state has an end-of-buffer transition and an
179 for ( i
= 0; i
<= lastdfa
; ++i
)
181 int anum
= dfaacc
[i
].dfaacc_state
;
182 int offset
= base
[i
];
184 chk
[offset
] = EOB_POSITION
;
185 chk
[offset
- 1] = ACTION_POSITION
;
186 nxt
[offset
- 1] = anum
; /* action number */
189 for ( i
= 0; i
<= tblend
; ++i
)
191 if ( chk
[i
] == EOB_POSITION
)
192 transition_struct_out( 0, base
[lastdfa
+ 1] - i
);
194 else if ( chk
[i
] == ACTION_POSITION
)
195 transition_struct_out( 0, nxt
[i
] );
197 else if ( chk
[i
] > numecs
|| chk
[i
] == 0 )
198 transition_struct_out( 0, 0 ); /* unused slot */
200 else /* verify, transition */
201 transition_struct_out( chk
[i
],
202 base
[nxt
[i
]] - (i
- chk
[i
]) );
206 /* Here's the final, end-of-buffer state. */
207 transition_struct_out( chk
[tblend
+ 1], nxt
[tblend
+ 1] );
208 transition_struct_out( chk
[tblend
+ 2], nxt
[tblend
+ 2] );
212 /* Table of pointers to start states. */
214 "static yyconst struct yy_trans_info *yy_start_state_list[%d] =\n",
216 outn( " {" ); /* } so vi doesn't get confused */
218 for ( i
= 0; i
<= lastsc
* 2; ++i
)
219 out_dec( " &yy_transition[%d],\n", base
[i
] );
228 /* Generate equivalence-class tables. */
235 out_str_dec( C_int_decl
, "yy_ec", csize
);
237 for ( i
= 1; i
< csize
; ++i
)
239 if ( caseins
&& (i
>= 'A') && (i
<= 'Z') )
240 ecgroup
[i
] = ecgroup
[clower( i
)];
242 ecgroup
[i
] = ABS( ecgroup
[i
] );
243 mkdata( ecgroup
[i
] );
250 fputs( _( "\n\nEquivalence Classes:\n\n" ), stderr
);
254 for ( j
= 0; j
< numrows
; ++j
)
256 for ( i
= j
; i
< csize
; i
= i
+ numrows
)
258 fprintf( stderr
, "%4s = %-2d",
259 readable_form( i
), ecgroup
[i
] );
264 putc( '\n', stderr
);
270 /* Generate the code to find the action number. */
272 void gen_find_action(void)
275 indent_puts( "yy_act = yy_current_state[-1].yy_nxt;" );
278 indent_puts( "yy_act = yy_accept[yy_current_state];" );
282 indent_puts( "yy_current_state = *--yy_state_ptr;" );
283 indent_puts( "yy_lp = yy_accept[yy_current_state];" );
286 "goto find_rule; /* avoid `defined but not used' warning */");
288 "find_rule: /* we branch to this label when backing up */" );
291 "for ( ; ; ) /* until we find what rule we matched */" );
298 "if ( yy_lp && yy_lp < yy_accept[yy_current_state + 1] )" );
301 indent_puts( "yy_act = yy_acclist[yy_lp];" );
303 if ( variable_trailing_context_rules
)
305 indent_puts( "if ( yy_act & YY_TRAILING_HEAD_MASK ||" );
306 indent_puts( " yy_looking_for_trail_begin )" );
311 "if ( yy_act == yy_looking_for_trail_begin )" );
314 indent_puts( "yy_looking_for_trail_begin = 0;" );
315 indent_puts( "yy_act &= ~YY_TRAILING_HEAD_MASK;" );
316 indent_puts( "break;" );
323 indent_puts( "else if ( yy_act & YY_TRAILING_MASK )" );
327 "yy_looking_for_trail_begin = yy_act & ~YY_TRAILING_MASK;" );
329 "yy_looking_for_trail_begin |= YY_TRAILING_HEAD_MASK;" );
333 /* Remember matched text in case we back up
336 indent_puts( "yy_full_match = yy_cp;" );
337 indent_puts( "yy_full_state = yy_state_ptr;" );
338 indent_puts( "yy_full_lp = yy_lp;" );
344 indent_puts( "else" );
347 indent_puts( "yy_full_match = yy_cp;" );
348 indent_puts( "yy_full_state = yy_state_ptr;" );
349 indent_puts( "yy_full_lp = yy_lp;" );
350 indent_puts( "break;" );
354 indent_puts( "++yy_lp;" );
355 indent_puts( "goto find_rule;" );
360 /* Remember matched text in case we back up due to
361 * trailing context plus REJECT.
365 indent_puts( "yy_full_match = yy_cp;" );
366 indent_puts( "break;" );
374 indent_puts( "--yy_cp;" );
376 /* We could consolidate the following two lines with those at
377 * the beginning, but at the cost of complaints that we're
378 * branching inside a loop.
380 indent_puts( "yy_current_state = *--yy_state_ptr;" );
381 indent_puts( "yy_lp = yy_accept[yy_current_state];" );
390 indent_puts( "yy_act = yy_accept[yy_current_state];" );
392 if ( interactive
&& ! reject
)
394 /* Do the guaranteed-needed backing up to figure out
397 indent_puts( "if ( yy_act == 0 )" );
399 indent_puts( "{ /* have to back up */" );
400 indent_puts( "yy_cp = yy_last_accepting_cpos;" );
402 "yy_current_state = yy_last_accepting_state;" );
403 indent_puts( "yy_act = yy_accept[yy_current_state];" );
411 /* genftbl - generate full transition table */
416 int end_of_buffer_action
= num_rules
+ 1;
418 out_str_dec( long_align
? C_long_decl
: C_short_decl
,
419 "yy_accept", lastdfa
+ 1 );
421 dfaacc
[end_of_buffer_state
].dfaacc_state
= end_of_buffer_action
;
423 for ( i
= 1; i
<= lastdfa
; ++i
)
425 int anum
= dfaacc
[i
].dfaacc_state
;
430 fprintf( stderr
, _( "state # %d accepts: [%d]\n" ),
439 /* Don't have to dump the actual full table entries - they were
440 * created on-the-fly.
445 /* Generate the code to find the next compressed-table state. */
447 void gen_next_compressed_state(char *char_map
)
449 indent_put2s( "YY_CHAR yy_c = %s;", char_map
);
451 /* Save the backing-up info \before/ computing the next state
452 * because we always compute one more state than needed - we
453 * always proceed until we reach a jam state
458 "while ( yy_chk[yy_base[yy_current_state] + yy_c] != yy_current_state )" );
461 indent_puts( "yy_current_state = (int) yy_def[yy_current_state];" );
465 /* We've arrange it so that templates are never chained
466 * to one another. This means we can afford to make a
467 * very simple test to see if we need to convert to
468 * yy_c's meta-equivalence class without worrying
469 * about erroneously looking up the meta-equivalence
474 /* lastdfa + 2 is the beginning of the templates */
475 out_dec( "if ( yy_current_state >= %d )\n", lastdfa
+ 2 );
478 indent_puts( "yy_c = yy_meta[(unsigned int) yy_c];" );
486 "yy_current_state = yy_nxt[yy_base[yy_current_state] + (unsigned int) yy_c];" );
490 /* Generate the code to find the next match. */
492 void gen_next_match(void)
494 /* NOTE - changes in here should be reflected in gen_next_state() and
497 char *char_map
= useecs
?
498 "yy_ec[YY_SC_TO_UI(*yy_cp)]" :
499 "YY_SC_TO_UI(*yy_cp)";
501 char *char_map_2
= useecs
?
502 "yy_ec[YY_SC_TO_UI(*++yy_cp)]" :
503 "YY_SC_TO_UI(*++yy_cp)";
508 "while ( (yy_current_state = yy_nxt[yy_current_state][%s]) > 0 )",
513 if ( num_backing_up
> 0 )
515 indent_puts( "{" ); /* } for vi */
520 indent_puts( "++yy_cp;" );
522 if ( num_backing_up
> 0 )
529 indent_puts( "yy_current_state = -yy_current_state;" );
534 indent_puts( "{" ); /* } for vi */
536 "yyconst struct yy_trans_info *yy_trans_info;\n" );
537 indent_puts( "YY_CHAR yy_c;\n" );
538 indent_put2s( "for ( yy_c = %s;", char_map
);
540 " (yy_trans_info = &yy_current_state[(unsigned int) yy_c])->" );
541 indent_puts( "yy_verify == yy_c;" );
542 indent_put2s( " yy_c = %s )", char_map_2
);
546 if ( num_backing_up
> 0 )
547 indent_puts( "{" ); /* } for vi */
549 indent_puts( "yy_current_state += yy_trans_info->yy_nxt;" );
551 if ( num_backing_up
> 0 )
554 gen_backing_up(); /* { for vi */
558 indent_down(); /* { for vi */
567 indent_puts( "{" ); /* } for vi */
569 gen_next_state( false );
571 indent_puts( "++yy_cp;" );
580 out_dec( "while ( yy_base[yy_current_state] != %d );\n",
583 out_dec( "while ( yy_current_state != %d );\n",
586 if ( ! reject
&& ! interactive
)
588 /* Do the guaranteed-needed backing up to figure out
591 indent_puts( "yy_cp = yy_last_accepting_cpos;" );
593 "yy_current_state = yy_last_accepting_state;" );
599 /* Generate the code to find the next state. */
601 void gen_next_state(int worry_about_NULs
)
602 { /* NOTE - changes in here should be reflected in gen_next_match() */
605 if ( worry_about_NULs
&& ! nultrans
)
608 (void) sprintf( char_map
,
609 "(*yy_cp ? yy_ec[YY_SC_TO_UI(*yy_cp)] : %d)",
612 (void) sprintf( char_map
,
613 "(*yy_cp ? YY_SC_TO_UI(*yy_cp) : %d)", NUL_ec
);
617 strcpy( char_map
, useecs
?
618 "yy_ec[YY_SC_TO_UI(*yy_cp)]" : "YY_SC_TO_UI(*yy_cp)" );
620 if ( worry_about_NULs
&& nultrans
)
622 if ( ! fulltbl
&& ! fullspd
)
623 /* Compressed tables back up *before* they match. */
626 indent_puts( "if ( *yy_cp )" );
628 indent_puts( "{" ); /* } for vi */
633 "yy_current_state = yy_nxt[yy_current_state][%s];",
638 "yy_current_state += yy_current_state[%s].yy_nxt;",
642 gen_next_compressed_state( char_map
);
644 if ( worry_about_NULs
&& nultrans
)
649 indent_puts( "else" );
652 "yy_current_state = yy_NUL_trans[yy_current_state];" );
656 if ( fullspd
|| fulltbl
)
660 indent_puts( "*yy_state_ptr++ = yy_current_state;" );
664 /* Generate the code to make a NUL transition. */
666 void gen_NUL_trans(void)
667 { /* NOTE - changes in here should be reflected in gen_next_match() */
668 /* Only generate a definition for "yy_cp" if we'll generate code
669 * that uses it. Otherwise lint and the like complain.
671 int need_backing_up
= (num_backing_up
> 0 && ! reject
);
673 if ( need_backing_up
&& (! nultrans
|| fullspd
|| fulltbl
) )
674 /* We're going to need yy_cp lying around for the call
675 * below to gen_backing_up().
677 indent_puts( "char *yy_cp = yy_c_buf_p;" );
684 "yy_current_state = yy_NUL_trans[yy_current_state];" );
685 indent_puts( "yy_is_jam = (yy_current_state == 0);" );
691 out_dec( "yy_current_state = yy_nxt[yy_current_state][%d];\n",
693 indent_puts( "yy_is_jam = (yy_current_state <= 0);" );
699 out_dec( "int yy_c = %d;\n", NUL_ec
);
702 "yyconst struct yy_trans_info *yy_trans_info;\n" );
704 "yy_trans_info = &yy_current_state[(unsigned int) yy_c];" );
705 indent_puts( "yy_current_state += yy_trans_info->yy_nxt;" );
708 "yy_is_jam = (yy_trans_info->yy_verify != yy_c);" );
715 (void) sprintf( NUL_ec_str
, "%d", NUL_ec
);
716 gen_next_compressed_state( NUL_ec_str
);
719 out_dec( "yy_is_jam = (yy_current_state == %d);\n", jamstate
);
723 /* Only stack this state if it's a transition we
724 * actually make. If we stack it on a jam, then
725 * the state stack and yy_c_buf_p get out of sync.
727 indent_puts( "if ( ! yy_is_jam )" );
729 indent_puts( "*yy_state_ptr++ = yy_current_state;" );
734 /* If we've entered an accepting state, back up; note that
735 * compressed tables have *already* done such backing up, so
736 * we needn't bother with it again.
738 if ( need_backing_up
&& (fullspd
|| fulltbl
) )
741 indent_puts( "if ( ! yy_is_jam )" );
751 /* Generate the code to find the start state. */
753 void gen_start_state(void)
760 "yy_current_state = yy_start_state_list[yy_start + YY_AT_BOL()];" );
764 "yy_current_state = yy_start_state_list[yy_start];" );
769 indent_puts( "yy_current_state = yy_start;" );
772 indent_puts( "yy_current_state += YY_AT_BOL();" );
776 /* Set up for storing up states. */
777 indent_puts( "yy_state_ptr = yy_state_buf;" );
778 indent_puts( "*yy_state_ptr++ = yy_current_state;" );
784 /* gentabs - generate data statements for the transition tables */
788 int i
, j
, k
, *accset
, nacc
, *acc_array
, total_states
;
789 int end_of_buffer_action
= num_rules
+ 1;
791 acc_array
= allocate_integer_array( current_max_dfas
);
794 /* The compressed table format jams by entering the "jam state",
795 * losing information about the previous state in the process.
796 * In order to recover the previous state, we effectively need
797 * to keep backing-up information.
803 /* Write out accepting list and pointer list.
805 * First we generate the "yy_acclist" array. In the process,
806 * we compute the indices that will go into the "yy_accept"
807 * array, and save the indices in the dfaacc array.
809 int EOB_accepting_list
[2];
811 /* Set up accepting structures for the End Of Buffer state. */
812 EOB_accepting_list
[0] = 0;
813 EOB_accepting_list
[1] = end_of_buffer_action
;
814 accsiz
[end_of_buffer_state
] = 1;
815 dfaacc
[end_of_buffer_state
].dfaacc_set
= EOB_accepting_list
;
817 out_str_dec( long_align
? C_long_decl
: C_short_decl
,
818 "yy_acclist", MAX( numas
, 1 ) + 1 );
820 j
= 1; /* index into "yy_acclist" array */
822 for ( i
= 1; i
<= lastdfa
; ++i
)
826 if ( accsiz
[i
] != 0 )
828 accset
= dfaacc
[i
].dfaacc_set
;
833 _( "state # %d accepts: " ),
836 for ( k
= 1; k
<= nacc
; ++k
)
838 int accnum
= accset
[k
];
842 if ( variable_trailing_context_rules
&&
843 ! (accnum
& YY_TRAILING_HEAD_MASK
) &&
844 accnum
> 0 && accnum
<= num_rules
&&
845 rule_type
[accnum
] == RULE_VARIABLE
)
847 /* Special hack to flag
848 * accepting number as part
849 * of trailing context rule.
851 accnum
|= YY_TRAILING_MASK
;
858 fprintf( stderr
, "[%d]",
862 fputs( ", ", stderr
);
864 putc( '\n', stderr
);
870 /* add accepting number for the "jam" state */
878 dfaacc
[end_of_buffer_state
].dfaacc_state
= end_of_buffer_action
;
880 for ( i
= 1; i
<= lastdfa
; ++i
)
881 acc_array
[i
] = dfaacc
[i
].dfaacc_state
;
883 /* add accepting number for jam state */
887 /* Spit out "yy_accept" array. If we're doing "reject", it'll be
888 * pointers into the "yy_acclist" array. Otherwise it's actual
889 * accepting numbers. In either case, we just dump the numbers.
892 /* "lastdfa + 2" is the size of "yy_accept"; includes room for C arrays
893 * beginning at 0 and for "jam" state.
898 /* We put a "cap" on the table associating lists of accepting
899 * numbers with state numbers. This is needed because we tell
900 * where the end of an accepting list is by looking at where
901 * the list for the next state starts.
905 out_str_dec( long_align
? C_long_decl
: C_short_decl
, "yy_accept", k
);
907 for ( i
= 1; i
<= lastdfa
; ++i
)
909 mkdata( acc_array
[i
] );
911 if ( ! reject
&& trace
&& acc_array
[i
] )
912 fprintf( stderr
, _( "state # %d accepts: [%d]\n" ),
916 /* Add entry for "jam" state. */
917 mkdata( acc_array
[i
] );
920 /* Add "cap" for the list. */
921 mkdata( acc_array
[i
] );
930 /* Write out meta-equivalence classes (used to index
935 fputs( _( "\n\nMeta-Equivalence Classes:\n" ),
938 out_str_dec( C_int_decl
, "yy_meta", numecs
+ 1 );
940 for ( i
= 1; i
<= numecs
; ++i
)
943 fprintf( stderr
, "%d = %d\n",
944 i
, ABS( tecbck
[i
] ) );
946 mkdata( ABS( tecbck
[i
] ) );
952 total_states
= lastdfa
+ numtemps
;
954 out_str_dec( (tblend
>= MAX_SHORT
|| long_align
) ?
955 C_long_decl
: C_short_decl
,
956 "yy_base", total_states
+ 1 );
958 for ( i
= 1; i
<= lastdfa
; ++i
)
962 if ( base
[i
] == JAMSTATE
)
970 /* Template reference. */
972 def
[i
] = lastdfa
- d
+ 1;
978 /* Generate jam state's base index. */
981 for ( ++i
/* skip jam state */; i
<= total_states
; ++i
)
989 out_str_dec( (total_states
>= MAX_SHORT
|| long_align
) ?
990 C_long_decl
: C_short_decl
,
991 "yy_def", total_states
+ 1 );
993 for ( i
= 1; i
<= total_states
; ++i
)
998 out_str_dec( (total_states
>= MAX_SHORT
|| long_align
) ?
999 C_long_decl
: C_short_decl
,
1000 "yy_nxt", tblend
+ 1 );
1002 for ( i
= 1; i
<= tblend
; ++i
)
1004 /* Note, the order of the following test is important.
1005 * If chk[i] is 0, then nxt[i] is undefined.
1007 if ( chk
[i
] == 0 || nxt
[i
] == 0 )
1008 nxt
[i
] = jamstate
; /* new state is the JAM state */
1015 out_str_dec( (total_states
>= MAX_SHORT
|| long_align
) ?
1016 C_long_decl
: C_short_decl
,
1017 "yy_chk", tblend
+ 1 );
1019 for ( i
= 1; i
<= tblend
; ++i
)
1031 /* Write out a formatted string (with a secondary string argument) at the
1032 * current indentation level, adding a final newline.
1035 void indent_put2s(char *fmt
, char *arg
)
1038 out_str( fmt
, arg
);
1043 /* Write out a string at the current indentation level, adding a final
1047 void indent_puts(char *str
)
1054 /* make_tables - generate transition tables and finishes generating output file
1057 void make_tables(void)
1060 int did_eof_rule
= false;
1064 /* First, take care of YY_DO_BEFORE_ACTION depending on yymore
1069 if ( yymore_used
&& ! yytext_is_array
)
1071 indent_puts( "yytext_ptr -= yy_more_len; \\" );
1072 indent_puts( "yyleng = (int) (yy_cp - yytext_ptr); \\" );
1076 indent_puts( "yyleng = (int) (yy_cp - yy_bp); \\" );
1078 /* Now also deal with copying yytext_ptr to yytext if needed. */
1080 if ( yytext_is_array
)
1084 "if ( yyleng + yy_more_offset >= YYLMAX ) \\" );
1086 indent_puts( "if ( yyleng >= YYLMAX ) \\" );
1090 "YY_FATAL_ERROR( \"token too large, exceeds YYLMAX\" ); \\" );
1096 "yy_flex_strncpy( &yytext[yy_more_offset], yytext_ptr, yyleng + 1 ); \\" );
1097 indent_puts( "yyleng += yy_more_offset; \\" );
1099 "yy_prev_more_offset = yy_more_offset; \\" );
1100 indent_puts( "yy_more_offset = 0; \\" );
1105 "yy_flex_strncpy( yytext, yytext_ptr, yyleng + 1 ); \\" );
1114 out_dec( "#define YY_NUM_RULES %d\n", num_rules
);
1115 out_dec( "#define YY_END_OF_BUFFER %d\n", num_rules
+ 1 );
1119 /* Need to define the transet type as a size large
1120 * enough to hold the biggest offset.
1122 int total_table_size
= tblend
+ numecs
+ 1;
1123 char *trans_offset_type
=
1124 (total_table_size
>= MAX_SHORT
|| long_align
) ?
1128 indent_puts( "struct yy_trans_info" );
1130 indent_puts( "{" ); /* } for vi */
1133 indent_puts( "long yy_verify;" );
1135 indent_puts( "short yy_verify;" );
1137 /* In cases where its sister yy_verify *is* a "yes, there is
1138 * a transition", yy_nxt is the offset (in records) to the
1139 * next state. In most cases where there is no transition,
1140 * the value of yy_nxt is irrelevant. If yy_nxt is the -1th
1141 * record of a state, though, then yy_nxt is the action number
1145 indent_put2s( "%s yy_nxt;", trans_offset_type
);
1146 indent_puts( "};" );
1157 /* Definitions for backing up. We don't need them if REJECT
1158 * is being used because then we use an alternative backin-up
1159 * technique instead.
1161 if ( num_backing_up
> 0 && ! reject
)
1163 if ( ! C_plus_plus
)
1166 "static yy_state_type yy_last_accepting_state;" );
1168 "static char *yy_last_accepting_cpos;\n" );
1174 out_str_dec( C_state_decl
, "yy_NUL_trans", lastdfa
+ 1 );
1176 for ( i
= 1; i
<= lastdfa
; ++i
)
1179 out_dec( " &yy_transition[%d],\n", base
[i
] );
1181 mkdata( nultrans
[i
] );
1188 { /* Spit out table mapping rules to line numbers. */
1189 if ( ! C_plus_plus
)
1191 indent_puts( "extern int yy_flex_debug;" );
1192 indent_puts( "int yy_flex_debug = 1;\n" );
1195 out_str_dec( long_align
? C_long_decl
: C_short_decl
,
1196 "yy_rule_linenum", num_rules
);
1197 for ( i
= 1; i
< num_rules
; ++i
)
1198 mkdata( rule_linenum
[i
] );
1204 /* Declare state buffer variables. */
1205 if ( ! C_plus_plus
)
1208 "static yy_state_type yy_state_buf[YY_BUF_SIZE + 2], *yy_state_ptr;" );
1209 outn( "static char *yy_full_match;" );
1210 outn( "static int yy_lp;" );
1213 if ( variable_trailing_context_rules
)
1215 if ( ! C_plus_plus
)
1218 "static int yy_looking_for_trail_begin = 0;" );
1219 outn( "static int yy_full_lp;" );
1220 outn( "static int *yy_full_state;" );
1223 out_hex( "#define YY_TRAILING_MASK 0x%x\n",
1224 (unsigned int) YY_TRAILING_MASK
);
1225 out_hex( "#define YY_TRAILING_HEAD_MASK 0x%x\n",
1226 (unsigned int) YY_TRAILING_HEAD_MASK
);
1229 outn( "#define REJECT \\" );
1230 outn( "{ \\" ); /* } for vi */
1232 "*yy_cp = yy_hold_char; /* undo effects of setting up yytext */ \\" );
1234 "yy_cp = yy_full_match; /* restore poss. backed-over text */ \\" );
1236 if ( variable_trailing_context_rules
)
1239 "yy_lp = yy_full_lp; /* restore orig. accepting pos. */ \\" );
1241 "yy_state_ptr = yy_full_state; /* restore orig. state */ \\" );
1243 "yy_current_state = *yy_state_ptr; /* restore curr. state */ \\" );
1246 outn( "++yy_lp; \\" );
1247 outn( "goto find_rule; \\" );
1255 "/* The intent behind this definition is that it'll catch" );
1256 outn( " * any uses of REJECT which flex missed." );
1258 outn( "#define REJECT reject_used_but_not_detected" );
1263 if ( ! C_plus_plus
)
1265 if ( yytext_is_array
)
1267 indent_puts( "static int yy_more_offset = 0;" );
1269 "static int yy_prev_more_offset = 0;" );
1273 indent_puts( "static int yy_more_flag = 0;" );
1274 indent_puts( "static int yy_more_len = 0;" );
1278 if ( yytext_is_array
)
1281 "#define yymore() (yy_more_offset = yy_flex_strlen( yytext ))" );
1282 indent_puts( "#define YY_NEED_STRLEN" );
1283 indent_puts( "#define YY_MORE_ADJ 0" );
1284 indent_puts( "#define YY_RESTORE_YY_MORE_OFFSET \\" );
1286 indent_puts( "{ \\" );
1287 indent_puts( "yy_more_offset = yy_prev_more_offset; \\" );
1288 indent_puts( "yyleng -= yy_more_offset; \\" );
1294 indent_puts( "#define yymore() (yy_more_flag = 1)" );
1295 indent_puts( "#define YY_MORE_ADJ yy_more_len" );
1296 indent_puts( "#define YY_RESTORE_YY_MORE_OFFSET" );
1302 indent_puts( "#define yymore() yymore_used_but_not_detected" );
1303 indent_puts( "#define YY_MORE_ADJ 0" );
1304 indent_puts( "#define YY_RESTORE_YY_MORE_OFFSET" );
1307 if ( ! C_plus_plus
)
1309 if ( yytext_is_array
)
1311 outn( "#ifndef YYLMAX" );
1312 outn( "#define YYLMAX 8192" );
1314 outn( "char yytext[YYLMAX];" );
1315 outn( "char *yytext_ptr;" );
1319 outn( "char *yytext;" );
1322 out( &action_array
[defs1_offset
] );
1324 line_directive_out( stdout
, 0 );
1328 if ( ! C_plus_plus
)
1333 "\tif ( (result = read( fileno(yyin), (char *) buf, max_size )) < 0 ) \\" );
1335 "\t\tYY_FATAL_ERROR( \"input in flex scanner failed\" );" );
1341 "\tif ( yy_current_buffer->yy_is_interactive ) \\" );
1343 outn( "\t\tint c = '*', n; \\" );
1344 outn( "\t\tfor ( n = 0; n < max_size && \\" );
1345 outn( "\t\t\t (c = getc( yyin )) != EOF && c != '\\n'; ++n ) \\" );
1346 outn( "\t\t\tbuf[n] = (char) c; \\" );
1347 outn( "\t\tif ( c == '\\n' ) \\" );
1348 outn( "\t\t\tbuf[n++] = (char) c; \\" );
1349 outn( "\t\tif ( c == EOF && ferror( yyin ) ) \\" );
1351 "\t\t\tYY_FATAL_ERROR( \"input in flex scanner failed\" ); \\" );
1352 outn( "\t\tresult = n; \\" );
1355 "\telse if ( ((result = fread( buf, 1, max_size, yyin )) == 0) \\" );
1356 outn( "\t\t && ferror( yyin ) ) \\" );
1358 "\t\tYY_FATAL_ERROR( \"input in flex scanner failed\" );" );
1364 indent_puts( "#define YY_RULE_SETUP \\" );
1368 indent_puts( "if ( yyleng > 0 ) \\" );
1370 indent_puts( "yy_current_buffer->yy_at_bol = \\" );
1371 indent_puts( "\t\t(yytext[yyleng - 1] == '\\n'); \\" );
1374 indent_puts( "YY_USER_ACTION" );
1379 /* Copy prolog to output file. */
1380 out( &action_array
[prolog_offset
] );
1382 line_directive_out( stdout
, 0 );
1388 if ( yymore_used
&& ! yytext_is_array
)
1390 indent_puts( "yy_more_len = 0;" );
1391 indent_puts( "if ( yy_more_flag )" );
1394 indent_puts( "yy_more_len = yy_c_buf_p - yytext_ptr;" );
1395 indent_puts( "yy_more_flag = 0;" );
1404 /* Note, don't use any indentation. */
1405 outn( "yy_match:" );
1415 indent_puts( "if ( yy_act != YY_END_OF_BUFFER )" );
1418 indent_puts( "int yyl;" );
1419 indent_puts( "for ( yyl = 0; yyl < yyleng; ++yyl )" );
1421 indent_puts( "if ( yytext[yyl] == '\\n' )" );
1423 indent_puts( "++yylineno;" );
1433 indent_puts( "if ( yy_flex_debug )" );
1437 indent_puts( "if ( yy_act == 0 )" );
1439 indent_puts( C_plus_plus
?
1440 "cerr << \"--scanner backing up\\n\";" :
1441 "fprintf( stderr, \"--scanner backing up\\n\" );" );
1445 out_dec( "else if ( yy_act < %d )\n", num_rules
);
1451 "cerr << \"--accepting rule at line \" << yy_rule_linenum[yy_act] <<" );
1453 " \"(\\\"\" << yytext << \"\\\")\\n\";" );
1458 "fprintf( stderr, \"--accepting rule at line %d (\\\"%s\\\")\\n\"," );
1461 " yy_rule_linenum[yy_act], yytext );" );
1467 out_dec( "else if ( yy_act == %d )\n", num_rules
);
1473 "cerr << \"--accepting default rule (\\\"\" << yytext << \"\\\")\\n\";" );
1478 "fprintf( stderr, \"--accepting default rule (\\\"%s\\\")\\n\"," );
1479 indent_puts( " yytext );" );
1485 out_dec( "else if ( yy_act == %d )\n", num_rules
+ 1 );
1488 indent_puts( C_plus_plus
?
1489 "cerr << \"--(end of buffer or a NUL)\\n\";" :
1490 "fprintf( stderr, \"--(end of buffer or a NUL)\\n\" );" );
1501 "cerr << \"--EOF (start condition \" << YY_START << \")\\n\";" );
1506 "fprintf( stderr, \"--EOF (start condition %d)\\n\", YY_START );" );
1515 /* Copy actions to output file. */
1519 out( &action_array
[action_offset
] );
1521 line_directive_out( stdout
, 0 );
1523 /* generate cases for any missing EOF rules */
1524 for ( i
= 1; i
<= lastsc
; ++i
)
1528 out_str( "case YY_STATE_EOF(%s):\n", scname
[i
] );
1529 did_eof_rule
= true;
1535 indent_puts( "yyterminate();" );
1540 /* Generate code for handling NUL's, if needed. */
1542 /* First, deal with backing up and setting up yy_cp if the scanner
1543 * finds that it should JAM on the NUL.
1548 if ( fullspd
|| fulltbl
)
1549 indent_puts( "yy_cp = yy_c_buf_p;" );
1552 { /* compressed table */
1553 if ( ! reject
&& ! interactive
)
1555 /* Do the guaranteed-needed backing up to figure
1558 indent_puts( "yy_cp = yy_last_accepting_cpos;" );
1560 "yy_current_state = yy_last_accepting_state;" );
1564 /* Still need to initialize yy_cp, though
1565 * yy_current_state was set up by
1566 * yy_get_previous_state().
1568 indent_puts( "yy_cp = yy_c_buf_p;" );
1572 /* Generate code for yy_get_previous_state(). */
1580 gen_next_state( true );
1588 { /* update yylineno inside of unput() */
1589 indent_puts( "if ( c == '\\n' )" );
1591 indent_puts( "--yylineno;" );
1596 /* Update BOL and yylineno inside of input(). */
1599 indent_puts( "yy_current_buffer->yy_at_bol = (c == '\\n');" );
1602 indent_puts( "if ( yy_current_buffer->yy_at_bol )" );
1604 indent_puts( "++yylineno;" );
1609 else if ( do_yylineno
)
1611 indent_puts( "if ( c == '\\n' )" );
1613 indent_puts( "++yylineno;" );
1619 /* Copy remainder of input to output. */
1621 line_directive_out( stdout
, 1 );
1624 (void) flexscan(); /* copy remainder of input to output */