inpcb: Use netisr_ncpus for listing inpcbs.
[dragonfly.git] / contrib / flex / main.c
blob1e730bf1430b54d837e5f77f721a777f5700d202
1 /* flex - tool to generate fast lexical analyzers */
3 /* Copyright (c) 1990 The Regents of the University of California. */
4 /* All rights reserved. */
6 /* This code is derived from software contributed to Berkeley by */
7 /* Vern Paxson. */
9 /* The United States Government has rights in this work pursuant */
10 /* to contract no. DE-AC03-76SF00098 between the United States */
11 /* Department of Energy and the University of California. */
13 /* This file is part of flex. */
15 /* Redistribution and use in source and binary forms, with or without */
16 /* modification, are permitted provided that the following conditions */
17 /* are met: */
19 /* 1. Redistributions of source code must retain the above copyright */
20 /* notice, this list of conditions and the following disclaimer. */
21 /* 2. Redistributions in binary form must reproduce the above copyright */
22 /* notice, this list of conditions and the following disclaimer in the */
23 /* documentation and/or other materials provided with the distribution. */
25 /* Neither the name of the University nor the names of its contributors */
26 /* may be used to endorse or promote products derived from this software */
27 /* without specific prior written permission. */
29 /* THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR */
30 /* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED */
31 /* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR */
32 /* PURPOSE. */
35 #include "flexdef.h"
36 #include "version.h"
37 #include "options.h"
38 #include "tables.h"
40 static char flex_version[] = FLEX_VERSION;
42 /* declare functions that have forward references */
44 void flexinit PROTO ((int, char **));
45 void readin PROTO ((void));
46 void set_up_initial_allocations PROTO ((void));
47 static char *basename2 PROTO ((char *path, int should_strip_ext));
50 /* these globals are all defined and commented in flexdef.h */
51 int printstats, syntaxerror, eofseen, ddebug, trace, nowarn, spprdflt;
52 int interactive, lex_compat, posix_compat, do_yylineno,
53 useecs, fulltbl, usemecs;
54 int fullspd, gen_line_dirs, performance_report, backing_up_report;
55 int C_plus_plus, long_align, use_read, yytext_is_array, do_yywrap,
56 csize;
57 int reentrant, bison_bridge_lval, bison_bridge_lloc;
58 int yymore_used, reject, real_reject, continued_action, in_rule;
59 int yymore_really_used, reject_really_used;
60 int datapos, dataline, linenum;
61 FILE *skelfile = NULL;
62 int skel_ind = 0;
63 char *action_array;
64 int action_size, defs1_offset, prolog_offset, action_offset,
65 action_index;
66 char *infilename = NULL, *outfilename = NULL, *headerfilename = NULL;
67 int did_outfilename;
68 char *prefix, *yyclass, *extra_type = NULL;
69 int do_stdinit, use_stdout;
70 int onestate[ONE_STACK_SIZE], onesym[ONE_STACK_SIZE];
71 int onenext[ONE_STACK_SIZE], onedef[ONE_STACK_SIZE], onesp;
72 int maximum_mns, current_mns, current_max_rules;
73 int num_rules, num_eof_rules, default_rule, lastnfa;
74 int *firstst, *lastst, *finalst, *transchar, *trans1, *trans2;
75 int *accptnum, *assoc_rule, *state_type;
76 int *rule_type, *rule_linenum, *rule_useful;
77 int current_state_type;
78 int variable_trailing_context_rules;
79 int numtemps, numprots, protprev[MSP], protnext[MSP], prottbl[MSP];
80 int protcomst[MSP], firstprot, lastprot, protsave[PROT_SAVE_SIZE];
81 int numecs, nextecm[CSIZE + 1], ecgroup[CSIZE + 1], nummecs,
82 tecfwd[CSIZE + 1];
83 int tecbck[CSIZE + 1];
84 int lastsc, *scset, *scbol, *scxclu, *sceof;
85 int current_max_scs;
86 char **scname;
87 int current_max_dfa_size, current_max_xpairs;
88 int current_max_template_xpairs, current_max_dfas;
89 int lastdfa, *nxt, *chk, *tnxt;
90 int *base, *def, *nultrans, NUL_ec, tblend, firstfree, **dss, *dfasiz;
91 union dfaacc_union *dfaacc;
92 int *accsiz, *dhash, numas;
93 int numsnpairs, jambase, jamstate;
94 int lastccl, *cclmap, *ccllen, *cclng, cclreuse;
95 int current_maxccls, current_max_ccl_tbl_size;
96 Char *ccltbl;
97 char nmstr[MAXLINE];
98 int sectnum, nummt, hshcol, dfaeql, numeps, eps2, num_reallocs;
99 int tmpuses, totnst, peakpairs, numuniq, numdup, hshsave;
100 int num_backing_up, bol_needed;
101 FILE *backing_up_file;
102 int end_of_buffer_state;
103 char **input_files;
104 int num_input_files;
105 jmp_buf flex_main_jmp_buf;
106 bool *rule_has_nl, *ccl_has_nl;
107 int nlch = '\n';
108 bool ansi_func_defs, ansi_func_protos;
110 bool tablesext, tablesverify, gentables;
111 char *tablesfilename=0,*tablesname=0;
112 struct yytbl_writer tableswr;
114 /* Make sure program_name is initialized so we don't crash if writing
115 * out an error message before getting the program name from argv[0].
117 char *program_name = "flex";
119 #ifndef SHORT_FILE_NAMES
120 static char *outfile_template = "lex.%s.%s";
121 static char *backing_name = "lex.backup";
122 static char *tablesfile_template = "lex.%s.tables";
123 #else
124 static char *outfile_template = "lex%s.%s";
125 static char *backing_name = "lex.bck";
126 static char *tablesfile_template = "lex%s.tbl";
127 #endif
129 #ifdef MS_DOS
130 extern unsigned _stklen = 16384;
131 #endif
133 /* From scan.l */
134 extern FILE* yyout;
136 static char outfile_path[MAXLINE];
137 static int outfile_created = 0;
138 static char *skelname = NULL;
139 static int _stdout_closed = 0; /* flag to prevent double-fclose() on stdout. */
140 const char *escaped_qstart = "[[]]M4_YY_NOOP[M4_YY_NOOP[M4_YY_NOOP[[]]";
141 const char *escaped_qend = "[[]]M4_YY_NOOP]M4_YY_NOOP]M4_YY_NOOP[[]]";
143 /* For debugging. The max number of filters to apply to skeleton. */
144 static int preproc_level = 1000;
146 int flex_main PROTO ((int argc, char *argv[]));
147 int main PROTO ((int argc, char *argv[]));
149 int flex_main (argc, argv)
150 int argc;
151 char *argv[];
153 int i, exit_status, child_status;
155 /* Set a longjmp target. Yes, I know it's a hack, but it gets worse: The
156 * return value of setjmp, if non-zero, is the desired exit code PLUS ONE.
157 * For example, if you want 'main' to return with code '2', then call
158 * longjmp() with an argument of 3. This is because it is invalid to
159 * specify a value of 0 to longjmp. FLEX_EXIT(n) should be used instead of
160 * exit(n);
162 exit_status = setjmp (flex_main_jmp_buf);
163 if (exit_status){
164 if (stdout && !_stdout_closed && !ferror(stdout)){
165 fflush(stdout);
166 fclose(stdout);
168 while (wait(&child_status) > 0){
169 if (!WIFEXITED (child_status)
170 || WEXITSTATUS (child_status) != 0){
171 /* report an error of a child
173 if( exit_status <= 1 )
174 exit_status = 2;
178 return exit_status - 1;
181 flexinit (argc, argv);
183 readin ();
185 ntod ();
187 for (i = 1; i <= num_rules; ++i)
188 if (!rule_useful[i] && i != default_rule)
189 line_warning (_("rule cannot be matched"),
190 rule_linenum[i]);
192 if (spprdflt && !reject && rule_useful[default_rule])
193 line_warning (_
194 ("-s option given but default rule can be matched"),
195 rule_linenum[default_rule]);
197 /* Generate the C state transition tables from the DFA. */
198 make_tables ();
200 /* Note, flexend does not return. It exits with its argument
201 * as status.
203 flexend (0);
205 return 0; /* keep compilers/lint happy */
208 /* Wrapper around flex_main, so flex_main can be built as a library. */
209 int main (argc, argv)
210 int argc;
211 char *argv[];
213 #if ENABLE_NLS
214 #if HAVE_LOCALE_H
215 setlocale (LC_MESSAGES, "");
216 setlocale (LC_CTYPE, "");
217 textdomain (PACKAGE);
218 bindtextdomain (PACKAGE, LOCALEDIR);
219 #endif
220 #endif
222 return flex_main (argc, argv);
225 /* check_options - check user-specified options */
227 void check_options ()
229 int i;
230 const char * m4 = NULL;
232 if (lex_compat) {
233 if (C_plus_plus)
234 flexerror (_("Can't use -+ with -l option"));
236 if (fulltbl || fullspd)
237 flexerror (_("Can't use -f or -F with -l option"));
239 if (reentrant || bison_bridge_lval)
240 flexerror (_
241 ("Can't use --reentrant or --bison-bridge with -l option"));
243 /* Don't rely on detecting use of yymore() and REJECT,
244 * just assume they'll be used.
246 yymore_really_used = reject_really_used = true;
248 yytext_is_array = true;
249 do_yylineno = true;
250 use_read = false;
254 #if 0
255 /* This makes no sense whatsoever. I'm removing it. */
256 if (do_yylineno)
257 /* This should really be "maintain_backup_tables = true" */
258 reject_really_used = true;
259 #endif
261 if (csize == unspecified) {
262 if ((fulltbl || fullspd) && !useecs)
263 csize = DEFAULT_CSIZE;
264 else
265 csize = CSIZE;
268 if (interactive == unspecified) {
269 if (fulltbl || fullspd)
270 interactive = false;
271 else
272 interactive = true;
275 if (fulltbl || fullspd) {
276 if (usemecs)
277 flexerror (_
278 ("-Cf/-CF and -Cm don't make sense together"));
280 if (interactive)
281 flexerror (_("-Cf/-CF and -I are incompatible"));
283 if (lex_compat)
284 flexerror (_
285 ("-Cf/-CF are incompatible with lex-compatibility mode"));
288 if (fulltbl && fullspd)
289 flexerror (_
290 ("-Cf and -CF are mutually exclusive"));
293 if (C_plus_plus && fullspd)
294 flexerror (_("Can't use -+ with -CF option"));
296 if (C_plus_plus && yytext_is_array) {
297 warn (_("%array incompatible with -+ option"));
298 yytext_is_array = false;
301 if (C_plus_plus && (reentrant))
302 flexerror (_("Options -+ and --reentrant are mutually exclusive."));
304 if (C_plus_plus && bison_bridge_lval)
305 flexerror (_("bison bridge not supported for the C++ scanner."));
308 if (useecs) { /* Set up doubly-linked equivalence classes. */
310 /* We loop all the way up to csize, since ecgroup[csize] is
311 * the position used for NUL characters.
313 ecgroup[1] = NIL;
315 for (i = 2; i <= csize; ++i) {
316 ecgroup[i] = i - 1;
317 nextecm[i - 1] = i;
320 nextecm[csize] = NIL;
323 else {
324 /* Put everything in its own equivalence class. */
325 for (i = 1; i <= csize; ++i) {
326 ecgroup[i] = i;
327 nextecm[i] = BAD_SUBSCRIPT; /* to catch errors */
331 if (!ansi_func_defs)
332 buf_m4_define( &m4defs_buf, "M4_YY_NO_ANSI_FUNC_DEFS", NULL);
334 if (!ansi_func_protos)
335 buf_m4_define( &m4defs_buf, "M4_YY_NO_ANSI_FUNC_PROTOS", NULL);
337 if (extra_type)
338 buf_m4_define( &m4defs_buf, "M4_EXTRA_TYPE_DEFS", extra_type);
340 if (!use_stdout) {
341 FILE *prev_stdout;
343 if (!did_outfilename) {
344 char *suffix;
346 if (C_plus_plus)
347 suffix = "cc";
348 else
349 suffix = "c";
351 snprintf (outfile_path, sizeof(outfile_path), outfile_template,
352 prefix, suffix);
354 outfilename = outfile_path;
357 prev_stdout = freopen (outfilename, "w+", stdout);
359 if (prev_stdout == NULL)
360 lerrsf (_("could not create %s"), outfilename);
362 outfile_created = 1;
366 /* Setup the filter chain. */
367 output_chain = filter_create_int(NULL, filter_tee_header, headerfilename);
368 if ( !(m4 = getenv("M4")))
369 m4 = M4;
370 filter_create_ext(output_chain, m4, "-P", 0);
371 filter_create_int(output_chain, filter_fix_linedirs, NULL);
373 /* For debugging, only run the requested number of filters. */
374 if (preproc_level > 0) {
375 filter_truncate(output_chain, preproc_level);
376 filter_apply_chain(output_chain);
378 yyout = stdout;
381 /* always generate the tablesverify flag. */
382 buf_m4_define (&m4defs_buf, "M4_YY_TABLES_VERIFY", tablesverify ? "1" : "0");
383 if (tablesext)
384 gentables = false;
386 if (tablesverify)
387 /* force generation of C tables. */
388 gentables = true;
391 if (tablesext) {
392 FILE *tablesout;
393 struct yytbl_hdr hdr;
394 char *pname = 0;
395 int nbytes = 0;
397 buf_m4_define (&m4defs_buf, "M4_YY_TABLES_EXTERNAL", NULL);
399 if (!tablesfilename) {
400 nbytes = strlen (prefix) + strlen (tablesfile_template) + 2;
401 tablesfilename = pname = (char *) calloc (nbytes, 1);
402 snprintf (pname, nbytes, tablesfile_template, prefix);
405 if ((tablesout = fopen (tablesfilename, "w")) == NULL)
406 lerrsf (_("could not create %s"), tablesfilename);
407 if (pname)
408 free (pname);
409 tablesfilename = 0;
411 yytbl_writer_init (&tableswr, tablesout);
413 nbytes = strlen (prefix) + strlen ("tables") + 2;
414 tablesname = (char *) calloc (nbytes, 1);
415 snprintf (tablesname, nbytes, "%stables", prefix);
416 yytbl_hdr_init (&hdr, flex_version, tablesname);
418 if (yytbl_hdr_fwrite (&tableswr, &hdr) <= 0)
419 flexerror (_("could not write tables header"));
422 if (skelname && (skelfile = fopen (skelname, "r")) == NULL)
423 lerrsf (_("can't open skeleton file %s"), skelname);
425 if (reentrant) {
426 buf_m4_define (&m4defs_buf, "M4_YY_REENTRANT", NULL);
427 if (yytext_is_array)
428 buf_m4_define (&m4defs_buf, "M4_YY_TEXT_IS_ARRAY", NULL);
431 if ( bison_bridge_lval)
432 buf_m4_define (&m4defs_buf, "M4_YY_BISON_LVAL", NULL);
434 if ( bison_bridge_lloc)
435 buf_m4_define (&m4defs_buf, "<M4_YY_BISON_LLOC>", NULL);
437 buf_m4_define(&m4defs_buf, "M4_YY_PREFIX", prefix);
439 if (did_outfilename)
440 line_directive_out (stdout, 0);
442 if (do_yylineno)
443 buf_m4_define (&m4defs_buf, "M4_YY_USE_LINENO", NULL);
445 /* Create the alignment type. */
446 buf_strdefine (&userdef_buf, "YY_INT_ALIGNED",
447 long_align ? "long int" : "short int");
449 /* Define the start condition macros. */
451 struct Buf tmpbuf;
452 buf_init(&tmpbuf, sizeof(char));
453 for (i = 1; i <= lastsc; i++) {
454 char *str, *fmt = "#define %s %d\n";
455 size_t strsz;
457 str = (char*)flex_alloc(strsz = strlen(fmt) + strlen(scname[i]) + (int)(1 + log10(i)) + 2);
458 if (!str)
459 flexfatal(_("allocation of macro definition failed"));
460 snprintf(str, strsz, fmt, scname[i], i - 1);
461 buf_strappend(&tmpbuf, str);
462 free(str);
464 buf_m4_define(&m4defs_buf, "M4_YY_SC_DEFS", tmpbuf.elts);
465 buf_destroy(&tmpbuf);
468 /* This is where we begin writing to the file. */
470 /* Dump the %top code. */
471 if( top_buf.elts)
472 outn((char*) top_buf.elts);
474 /* Dump the m4 definitions. */
475 buf_print_strings(&m4defs_buf, stdout);
476 m4defs_buf.nelts = 0; /* memory leak here. */
478 /* Place a bogus line directive, it will be fixed in the filter. */
479 outn("#line 0 \"M4_YY_OUTFILE_NAME\"\n");
481 /* Dump the user defined preproc directives. */
482 if (userdef_buf.elts)
483 outn ((char *) (userdef_buf.elts));
485 skelout ();
486 /* %% [1.0] */
489 /* flexend - terminate flex
491 * note
492 * This routine does not return.
495 void flexend (exit_status)
496 int exit_status;
499 static int called_before = -1; /* prevent infinite recursion. */
500 int tblsiz;
502 if (++called_before)
503 FLEX_EXIT (exit_status);
505 if (skelfile != NULL) {
506 if (ferror (skelfile))
507 lerrsf (_("input error reading skeleton file %s"),
508 skelname);
510 else if (fclose (skelfile))
511 lerrsf (_("error closing skeleton file %s"),
512 skelname);
515 #if 0
516 fprintf (header_out,
517 "#ifdef YY_HEADER_EXPORT_START_CONDITIONS\n");
518 fprintf (header_out,
519 "/* Beware! Start conditions are not prefixed. */\n");
521 /* Special case for "INITIAL" */
522 fprintf (header_out,
523 "#undef INITIAL\n#define INITIAL 0\n");
524 for (i = 2; i <= lastsc; i++)
525 fprintf (header_out, "#define %s %d\n", scname[i], i - 1);
526 fprintf (header_out,
527 "#endif /* YY_HEADER_EXPORT_START_CONDITIONS */\n\n");
529 /* Kill ALL flex-related macros. This is so the user
530 * can #include more than one generated header file. */
531 fprintf (header_out, "#ifndef YY_HEADER_NO_UNDEFS\n");
532 fprintf (header_out,
533 "/* Undefine all internal macros, etc., that do no belong in the header. */\n\n");
536 const char * undef_list[] = {
538 "BEGIN",
539 "ECHO",
540 "EOB_ACT_CONTINUE_SCAN",
541 "EOB_ACT_END_OF_FILE",
542 "EOB_ACT_LAST_MATCH",
543 "FLEX_SCANNER",
544 "FLEX_STD",
545 "REJECT",
546 "YYFARGS0",
547 "YYFARGS1",
548 "YYFARGS2",
549 "YYFARGS3",
550 "YYLMAX",
551 "YYSTATE",
552 "YY_AT_BOL",
553 "YY_BREAK",
554 "YY_BUFFER_EOF_PENDING",
555 "YY_BUFFER_NEW",
556 "YY_BUFFER_NORMAL",
557 "YY_BUF_SIZE",
558 "M4_YY_CALL_LAST_ARG",
559 "M4_YY_CALL_ONLY_ARG",
560 "YY_CURRENT_BUFFER",
561 "YY_DECL",
562 "M4_YY_DECL_LAST_ARG",
563 "M4_YY_DEF_LAST_ARG",
564 "M4_YY_DEF_ONLY_ARG",
565 "YY_DO_BEFORE_ACTION",
566 "YY_END_OF_BUFFER",
567 "YY_END_OF_BUFFER_CHAR",
568 "YY_EXIT_FAILURE",
569 "YY_EXTRA_TYPE",
570 "YY_FATAL_ERROR",
571 "YY_FLEX_DEFINED_ECHO",
572 "YY_FLEX_LEX_COMPAT",
573 "YY_FLEX_MAJOR_VERSION",
574 "YY_FLEX_MINOR_VERSION",
575 "YY_FLEX_SUBMINOR_VERSION",
576 "YY_FLUSH_BUFFER",
577 "YY_G",
578 "YY_INPUT",
579 "YY_INTERACTIVE",
580 "YY_INT_ALIGNED",
581 "YY_LAST_ARG",
582 "YY_LESS_LINENO",
583 "YY_LEX_ARGS",
584 "YY_LEX_DECLARATION",
585 "YY_LEX_PROTO",
586 "YY_MAIN",
587 "YY_MORE_ADJ",
588 "YY_NEED_STRLEN",
589 "YY_NEW_FILE",
590 "YY_NULL",
591 "YY_NUM_RULES",
592 "YY_ONLY_ARG",
593 "YY_PARAMS",
594 "YY_PROTO",
595 "M4_YY_PROTO_LAST_ARG",
596 "M4_YY_PROTO_ONLY_ARG void",
597 "YY_READ_BUF_SIZE",
598 "YY_REENTRANT",
599 "YY_RESTORE_YY_MORE_OFFSET",
600 "YY_RULE_SETUP",
601 "YY_SC_TO_UI",
602 "YY_SKIP_YYWRAP",
603 "YY_START",
604 "YY_START_STACK_INCR",
605 "YY_STATE_EOF",
606 "YY_STDINIT",
607 "YY_TRAILING_HEAD_MASK",
608 "YY_TRAILING_MASK",
609 "YY_USER_ACTION",
610 "YY_USE_CONST",
611 "YY_USE_PROTOS",
612 "unput",
613 "yyTABLES_NAME",
614 "yy_create_buffer",
615 "yy_delete_buffer",
616 "yy_flex_debug",
617 "yy_flush_buffer",
618 "yy_init_buffer",
619 "yy_load_buffer_state",
620 "yy_new_buffer",
621 "yy_scan_buffer",
622 "yy_scan_bytes",
623 "yy_scan_string",
624 "yy_set_bol",
625 "yy_set_interactive",
626 "yy_switch_to_buffer",
627 "yypush_buffer_state",
628 "yypop_buffer_state",
629 "yyensure_buffer_stack",
630 "yyalloc",
631 "yyconst",
632 "yyextra",
633 "yyfree",
634 "yyget_debug",
635 "yyget_extra",
636 "yyget_in",
637 "yyget_leng",
638 "yyget_lineno",
639 "yyget_lloc",
640 "yyget_lval",
641 "yyget_out",
642 "yyget_text",
643 "yyin",
644 "yyleng",
645 "yyless",
646 "yylex",
647 "yylex_destroy",
648 "yylex_init",
649 "yylex_init_extra",
650 "yylineno",
651 "yylloc",
652 "yylval",
653 "yymore",
654 "yyout",
655 "yyrealloc",
656 "yyrestart",
657 "yyset_debug",
658 "yyset_extra",
659 "yyset_in",
660 "yyset_lineno",
661 "yyset_lloc",
662 "yyset_lval",
663 "yyset_out",
664 "yytables_destroy",
665 "yytables_fload",
666 "yyterminate",
667 "yytext",
668 "yytext_ptr",
669 "yywrap",
671 /* must be null-terminated */
672 NULL};
675 for (i=0; undef_list[i] != NULL; i++)
676 fprintf (header_out, "#undef %s\n", undef_list[i]);
679 /* undef any of the auto-generated symbols. */
680 for (i = 0; i < defs_buf.nelts; i++) {
682 /* don't undef start conditions */
683 if (sclookup (((char **) defs_buf.elts)[i]) > 0)
684 continue;
685 fprintf (header_out, "#undef %s\n",
686 ((char **) defs_buf.elts)[i]);
689 fprintf (header_out,
690 "#endif /* !YY_HEADER_NO_UNDEFS */\n");
691 fprintf (header_out, "\n");
692 fprintf (header_out, "#undef %sIN_HEADER\n", prefix);
693 fprintf (header_out, "#endif /* %sHEADER_H */\n", prefix);
695 if (ferror (header_out))
696 lerrsf (_("error creating header file %s"),
697 headerfilename);
698 fflush (header_out);
699 fclose (header_out);
700 #endif
702 if (exit_status != 0 && outfile_created) {
703 if (ferror (stdout))
704 lerrsf (_("error writing output file %s"),
705 outfilename);
707 else if ((_stdout_closed = 1) && fclose (stdout))
708 lerrsf (_("error closing output file %s"),
709 outfilename);
711 else if (unlink (outfilename))
712 lerrsf (_("error deleting output file %s"),
713 outfilename);
717 if (backing_up_report && backing_up_file) {
718 if (num_backing_up == 0)
719 fprintf (backing_up_file, _("No backing up.\n"));
720 else if (fullspd || fulltbl)
721 fprintf (backing_up_file,
723 ("%d backing up (non-accepting) states.\n"),
724 num_backing_up);
725 else
726 fprintf (backing_up_file,
727 _("Compressed tables always back up.\n"));
729 if (ferror (backing_up_file))
730 lerrsf (_("error writing backup file %s"),
731 backing_name);
733 else if (fclose (backing_up_file))
734 lerrsf (_("error closing backup file %s"),
735 backing_name);
738 if (printstats) {
739 fprintf (stderr, _("%s version %s usage statistics:\n"),
740 program_name, flex_version);
742 fprintf (stderr, _(" scanner options: -"));
744 if (C_plus_plus)
745 putc ('+', stderr);
746 if (backing_up_report)
747 putc ('b', stderr);
748 if (ddebug)
749 putc ('d', stderr);
750 if (sf_case_ins())
751 putc ('i', stderr);
752 if (lex_compat)
753 putc ('l', stderr);
754 if (posix_compat)
755 putc ('X', stderr);
756 if (performance_report > 0)
757 putc ('p', stderr);
758 if (performance_report > 1)
759 putc ('p', stderr);
760 if (spprdflt)
761 putc ('s', stderr);
762 if (reentrant)
763 fputs ("--reentrant", stderr);
764 if (bison_bridge_lval)
765 fputs ("--bison-bridge", stderr);
766 if (bison_bridge_lloc)
767 fputs ("--bison-locations", stderr);
768 if (use_stdout)
769 putc ('t', stderr);
770 if (printstats)
771 putc ('v', stderr); /* always true! */
772 if (nowarn)
773 putc ('w', stderr);
774 if (interactive == false)
775 putc ('B', stderr);
776 if (interactive == true)
777 putc ('I', stderr);
778 if (!gen_line_dirs)
779 putc ('L', stderr);
780 if (trace)
781 putc ('T', stderr);
783 if (csize == unspecified)
784 /* We encountered an error fairly early on, so csize
785 * never got specified. Define it now, to prevent
786 * bogus table sizes being written out below.
788 csize = 256;
790 if (csize == 128)
791 putc ('7', stderr);
792 else
793 putc ('8', stderr);
795 fprintf (stderr, " -C");
797 if (long_align)
798 putc ('a', stderr);
799 if (fulltbl)
800 putc ('f', stderr);
801 if (fullspd)
802 putc ('F', stderr);
803 if (useecs)
804 putc ('e', stderr);
805 if (usemecs)
806 putc ('m', stderr);
807 if (use_read)
808 putc ('r', stderr);
810 if (did_outfilename)
811 fprintf (stderr, " -o%s", outfilename);
813 if (skelname)
814 fprintf (stderr, " -S%s", skelname);
816 if (strcmp (prefix, "yy"))
817 fprintf (stderr, " -P%s", prefix);
819 putc ('\n', stderr);
821 fprintf (stderr, _(" %d/%d NFA states\n"),
822 lastnfa, current_mns);
823 fprintf (stderr, _(" %d/%d DFA states (%d words)\n"),
824 lastdfa, current_max_dfas, totnst);
825 fprintf (stderr, _(" %d rules\n"),
826 num_rules + num_eof_rules -
827 1 /* - 1 for def. rule */ );
829 if (num_backing_up == 0)
830 fprintf (stderr, _(" No backing up\n"));
831 else if (fullspd || fulltbl)
832 fprintf (stderr,
834 (" %d backing-up (non-accepting) states\n"),
835 num_backing_up);
836 else
837 fprintf (stderr,
839 (" Compressed tables always back-up\n"));
841 if (bol_needed)
842 fprintf (stderr,
843 _(" Beginning-of-line patterns used\n"));
845 fprintf (stderr, _(" %d/%d start conditions\n"), lastsc,
846 current_max_scs);
847 fprintf (stderr,
849 (" %d epsilon states, %d double epsilon states\n"),
850 numeps, eps2);
852 if (lastccl == 0)
853 fprintf (stderr, _(" no character classes\n"));
854 else
855 fprintf (stderr,
857 (" %d/%d character classes needed %d/%d words of storage, %d reused\n"),
858 lastccl, current_maxccls,
859 cclmap[lastccl] + ccllen[lastccl],
860 current_max_ccl_tbl_size, cclreuse);
862 fprintf (stderr, _(" %d state/nextstate pairs created\n"),
863 numsnpairs);
864 fprintf (stderr,
865 _(" %d/%d unique/duplicate transitions\n"),
866 numuniq, numdup);
868 if (fulltbl) {
869 tblsiz = lastdfa * numecs;
870 fprintf (stderr, _(" %d table entries\n"),
871 tblsiz);
874 else {
875 tblsiz = 2 * (lastdfa + numtemps) + 2 * tblend;
877 fprintf (stderr,
878 _(" %d/%d base-def entries created\n"),
879 lastdfa + numtemps, current_max_dfas);
880 fprintf (stderr,
882 (" %d/%d (peak %d) nxt-chk entries created\n"),
883 tblend, current_max_xpairs, peakpairs);
884 fprintf (stderr,
886 (" %d/%d (peak %d) template nxt-chk entries created\n"),
887 numtemps * nummecs,
888 current_max_template_xpairs,
889 numtemps * numecs);
890 fprintf (stderr, _(" %d empty table entries\n"),
891 nummt);
892 fprintf (stderr, _(" %d protos created\n"),
893 numprots);
894 fprintf (stderr,
895 _(" %d templates created, %d uses\n"),
896 numtemps, tmpuses);
899 if (useecs) {
900 tblsiz = tblsiz + csize;
901 fprintf (stderr,
903 (" %d/%d equivalence classes created\n"),
904 numecs, csize);
907 if (usemecs) {
908 tblsiz = tblsiz + numecs;
909 fprintf (stderr,
911 (" %d/%d meta-equivalence classes created\n"),
912 nummecs, csize);
915 fprintf (stderr,
917 (" %d (%d saved) hash collisions, %d DFAs equal\n"),
918 hshcol, hshsave, dfaeql);
919 fprintf (stderr, _(" %d sets of reallocations needed\n"),
920 num_reallocs);
921 fprintf (stderr, _(" %d total table entries needed\n"),
922 tblsiz);
925 FLEX_EXIT (exit_status);
929 /* flexinit - initialize flex */
931 void flexinit (argc, argv)
932 int argc;
933 char **argv;
935 int i, sawcmpflag, rv, optind;
936 char *arg;
937 scanopt_t sopt;
939 printstats = syntaxerror = trace = spprdflt = false;
940 lex_compat = posix_compat = C_plus_plus = backing_up_report =
941 ddebug = fulltbl = false;
942 fullspd = long_align = nowarn = yymore_used = continued_action =
943 false;
944 do_yylineno = yytext_is_array = in_rule = reject = do_stdinit =
945 false;
946 yymore_really_used = reject_really_used = unspecified;
947 interactive = csize = unspecified;
948 do_yywrap = gen_line_dirs = usemecs = useecs = true;
949 reentrant = bison_bridge_lval = bison_bridge_lloc = false;
950 performance_report = 0;
951 did_outfilename = 0;
952 prefix = "yy";
953 yyclass = 0;
954 use_read = use_stdout = false;
955 tablesext = tablesverify = false;
956 gentables = true;
957 tablesfilename = tablesname = NULL;
958 ansi_func_defs = ansi_func_protos = true;
960 sawcmpflag = false;
962 /* Initialize dynamic array for holding the rule actions. */
963 action_size = 2048; /* default size of action array in bytes */
964 action_array = allocate_character_array (action_size);
965 defs1_offset = prolog_offset = action_offset = action_index = 0;
966 action_array[0] = '\0';
968 /* Initialize any buffers. */
969 buf_init (&userdef_buf, sizeof (char)); /* one long string */
970 buf_init (&defs_buf, sizeof (char *)); /* list of strings */
971 buf_init (&yydmap_buf, sizeof (char)); /* one long string */
972 buf_init (&top_buf, sizeof (char)); /* one long string */
975 const char * m4defs_init_str[] = {"m4_changequote\n",
976 "m4_changequote([[, ]])\n"};
977 buf_init (&m4defs_buf, sizeof (char *));
978 buf_append (&m4defs_buf, &m4defs_init_str, 2);
981 sf_init ();
983 /* initialize regex lib */
984 flex_init_regex();
986 /* Enable C++ if program name ends with '+'. */
987 program_name = basename2 (argv[0], 0);
989 if (program_name[0] != '\0' &&
990 program_name[strlen (program_name) - 1] == '+')
991 C_plus_plus = true;
993 /* read flags */
994 sopt = scanopt_init (flexopts, argc, argv, 0);
995 if (!sopt) {
996 /* This will only happen when flexopts array is altered. */
997 fprintf (stderr,
998 _("Internal error. flexopts are malformed.\n"));
999 FLEX_EXIT (1);
1002 while ((rv = scanopt (sopt, &arg, &optind)) != 0) {
1004 if (rv < 0) {
1005 /* Scanopt has already printed an option-specific error message. */
1006 fprintf (stderr,
1008 ("Try `%s --help' for more information.\n"),
1009 program_name);
1010 FLEX_EXIT (1);
1013 switch ((enum flexopt_flag_t) rv) {
1014 case OPT_CPLUSPLUS:
1015 C_plus_plus = true;
1016 break;
1018 case OPT_BATCH:
1019 interactive = false;
1020 break;
1022 case OPT_BACKUP:
1023 backing_up_report = true;
1024 break;
1026 case OPT_DONOTHING:
1027 break;
1029 case OPT_COMPRESSION:
1030 if (!sawcmpflag) {
1031 useecs = false;
1032 usemecs = false;
1033 fulltbl = false;
1034 sawcmpflag = true;
1037 for (i = 0; arg && arg[i] != '\0'; i++)
1038 switch (arg[i]) {
1039 case 'a':
1040 long_align = true;
1041 break;
1043 case 'e':
1044 useecs = true;
1045 break;
1047 case 'F':
1048 fullspd = true;
1049 break;
1051 case 'f':
1052 fulltbl = true;
1053 break;
1055 case 'm':
1056 usemecs = true;
1057 break;
1059 case 'r':
1060 use_read = true;
1061 break;
1063 default:
1064 lerrif (_
1065 ("unknown -C option '%c'"),
1066 (int) arg[i]);
1067 break;
1069 break;
1071 case OPT_DEBUG:
1072 ddebug = true;
1073 break;
1075 case OPT_NO_DEBUG:
1076 ddebug = false;
1077 break;
1079 case OPT_FULL:
1080 useecs = usemecs = false;
1081 use_read = fulltbl = true;
1082 break;
1084 case OPT_FAST:
1085 useecs = usemecs = false;
1086 use_read = fullspd = true;
1087 break;
1089 case OPT_HELP:
1090 usage ();
1091 FLEX_EXIT (0);
1093 case OPT_INTERACTIVE:
1094 interactive = true;
1095 break;
1097 case OPT_CASE_INSENSITIVE:
1098 sf_set_case_ins(true);
1099 break;
1101 case OPT_LEX_COMPAT:
1102 lex_compat = true;
1103 break;
1105 case OPT_POSIX_COMPAT:
1106 posix_compat = true;
1107 break;
1109 case OPT_PREPROC_LEVEL:
1110 preproc_level = strtol(arg,NULL,0);
1111 break;
1113 case OPT_MAIN:
1114 buf_strdefine (&userdef_buf, "YY_MAIN", "1");
1115 do_yywrap = false;
1116 break;
1118 case OPT_NO_MAIN:
1119 buf_strdefine (&userdef_buf, "YY_MAIN", "0");
1120 break;
1122 case OPT_NO_LINE:
1123 gen_line_dirs = false;
1124 break;
1126 case OPT_OUTFILE:
1127 outfilename = arg;
1128 did_outfilename = 1;
1129 break;
1131 case OPT_PREFIX:
1132 prefix = arg;
1133 break;
1135 case OPT_PERF_REPORT:
1136 ++performance_report;
1137 break;
1139 case OPT_BISON_BRIDGE:
1140 bison_bridge_lval = true;
1141 break;
1143 case OPT_BISON_BRIDGE_LOCATIONS:
1144 bison_bridge_lval = bison_bridge_lloc = true;
1145 break;
1147 case OPT_REENTRANT:
1148 reentrant = true;
1149 break;
1151 case OPT_NO_REENTRANT:
1152 reentrant = false;
1153 break;
1155 case OPT_SKEL:
1156 skelname = arg;
1157 break;
1159 case OPT_DEFAULT:
1160 spprdflt = false;
1161 break;
1163 case OPT_NO_DEFAULT:
1164 spprdflt = true;
1165 break;
1167 case OPT_STDOUT:
1168 use_stdout = true;
1169 break;
1171 case OPT_NO_UNISTD_H:
1172 //buf_strdefine (&userdef_buf, "YY_NO_UNISTD_H", "1");
1173 buf_m4_define( &m4defs_buf, "M4_YY_NO_UNISTD_H",0);
1174 break;
1176 case OPT_TABLES_FILE:
1177 tablesext = true;
1178 tablesfilename = arg;
1179 break;
1181 case OPT_TABLES_VERIFY:
1182 tablesverify = true;
1183 break;
1185 case OPT_TRACE:
1186 trace = true;
1187 break;
1189 case OPT_VERBOSE:
1190 printstats = true;
1191 break;
1193 case OPT_VERSION:
1194 printf (_("%s %s\n"), program_name, flex_version);
1195 FLEX_EXIT (0);
1197 case OPT_WARN:
1198 nowarn = false;
1199 break;
1201 case OPT_NO_WARN:
1202 nowarn = true;
1203 break;
1205 case OPT_7BIT:
1206 csize = 128;
1207 break;
1209 case OPT_8BIT:
1210 csize = CSIZE;
1211 break;
1213 case OPT_ALIGN:
1214 long_align = true;
1215 break;
1217 case OPT_NO_ALIGN:
1218 long_align = false;
1219 break;
1221 case OPT_ALWAYS_INTERACTIVE:
1222 buf_m4_define (&m4defs_buf, "M4_YY_ALWAYS_INTERACTIVE", 0);
1223 break;
1225 case OPT_NEVER_INTERACTIVE:
1226 buf_m4_define( &m4defs_buf, "M4_YY_NEVER_INTERACTIVE", 0);
1227 break;
1229 case OPT_ARRAY:
1230 yytext_is_array = true;
1231 break;
1233 case OPT_POINTER:
1234 yytext_is_array = false;
1235 break;
1237 case OPT_ECS:
1238 useecs = true;
1239 break;
1241 case OPT_NO_ECS:
1242 useecs = false;
1243 break;
1245 case OPT_HEADER_FILE:
1246 headerfilename = arg;
1247 break;
1249 case OPT_META_ECS:
1250 usemecs = true;
1251 break;
1253 case OPT_NO_META_ECS:
1254 usemecs = false;
1255 break;
1257 case OPT_PREPROCDEFINE:
1259 /* arg is "symbol" or "symbol=definition". */
1260 char *def;
1262 for (def = arg;
1263 *def != '\0' && *def != '='; ++def) ;
1265 buf_strappend (&userdef_buf, "#define ");
1266 if (*def == '\0') {
1267 buf_strappend (&userdef_buf, arg);
1268 buf_strappend (&userdef_buf,
1269 " 1\n");
1271 else {
1272 buf_strnappend (&userdef_buf, arg,
1273 def - arg);
1274 buf_strappend (&userdef_buf, " ");
1275 buf_strappend (&userdef_buf,
1276 def + 1);
1277 buf_strappend (&userdef_buf, "\n");
1280 break;
1282 case OPT_READ:
1283 use_read = true;
1284 break;
1286 case OPT_STACK:
1287 //buf_strdefine (&userdef_buf, "YY_STACK_USED", "1");
1288 buf_m4_define( &m4defs_buf, "M4_YY_STACK_USED",0);
1289 break;
1291 case OPT_STDINIT:
1292 do_stdinit = true;
1293 break;
1295 case OPT_NO_STDINIT:
1296 do_stdinit = false;
1297 break;
1299 case OPT_YYCLASS:
1300 yyclass = arg;
1301 break;
1303 case OPT_YYLINENO:
1304 do_yylineno = true;
1305 break;
1307 case OPT_NO_YYLINENO:
1308 do_yylineno = false;
1309 break;
1311 case OPT_YYWRAP:
1312 do_yywrap = true;
1313 break;
1315 case OPT_NO_YYWRAP:
1316 do_yywrap = false;
1317 break;
1319 case OPT_YYMORE:
1320 yymore_really_used = true;
1321 break;
1323 case OPT_NO_YYMORE:
1324 yymore_really_used = false;
1325 break;
1327 case OPT_REJECT:
1328 reject_really_used = true;
1329 break;
1331 case OPT_NO_REJECT:
1332 reject_really_used = false;
1333 break;
1335 case OPT_NO_ANSI_FUNC_DEFS:
1336 ansi_func_defs = false;
1337 break;
1339 case OPT_NO_ANSI_FUNC_PROTOS:
1340 ansi_func_protos = false;
1341 break;
1343 case OPT_NO_YY_PUSH_STATE:
1344 //buf_strdefine (&userdef_buf, "YY_NO_PUSH_STATE", "1");
1345 buf_m4_define( &m4defs_buf, "M4_YY_NO_PUSH_STATE",0);
1346 break;
1347 case OPT_NO_YY_POP_STATE:
1348 //buf_strdefine (&userdef_buf, "YY_NO_POP_STATE", "1");
1349 buf_m4_define( &m4defs_buf, "M4_YY_NO_POP_STATE",0);
1350 break;
1351 case OPT_NO_YY_TOP_STATE:
1352 //buf_strdefine (&userdef_buf, "YY_NO_TOP_STATE", "1");
1353 buf_m4_define( &m4defs_buf, "M4_YY_NO_TOP_STATE",0);
1354 break;
1355 case OPT_NO_UNPUT:
1356 //buf_strdefine (&userdef_buf, "YY_NO_UNPUT", "1");
1357 buf_m4_define( &m4defs_buf, "M4_YY_NO_UNPUT",0);
1358 break;
1359 case OPT_NO_YY_SCAN_BUFFER:
1360 //buf_strdefine (&userdef_buf, "YY_NO_SCAN_BUFFER", "1");
1361 buf_m4_define( &m4defs_buf, "M4_YY_NO_SCAN_BUFFER",0);
1362 break;
1363 case OPT_NO_YY_SCAN_BYTES:
1364 //buf_strdefine (&userdef_buf, "YY_NO_SCAN_BYTES", "1");
1365 buf_m4_define( &m4defs_buf, "M4_YY_NO_SCAN_BYTES",0);
1366 break;
1367 case OPT_NO_YY_SCAN_STRING:
1368 //buf_strdefine (&userdef_buf, "YY_NO_SCAN_STRING", "1");
1369 buf_m4_define( &m4defs_buf, "M4_YY_NO_SCAN_STRING",0);
1370 break;
1371 case OPT_NO_YYGET_EXTRA:
1372 //buf_strdefine (&userdef_buf, "YY_NO_GET_EXTRA", "1");
1373 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_EXTRA",0);
1374 break;
1375 case OPT_NO_YYSET_EXTRA:
1376 //buf_strdefine (&userdef_buf, "YY_NO_SET_EXTRA", "1");
1377 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_EXTRA",0);
1378 break;
1379 case OPT_NO_YYGET_LENG:
1380 //buf_strdefine (&userdef_buf, "YY_NO_GET_LENG", "1");
1381 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_LENG",0);
1382 break;
1383 case OPT_NO_YYGET_TEXT:
1384 //buf_strdefine (&userdef_buf, "YY_NO_GET_TEXT", "1");
1385 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_TEXT",0);
1386 break;
1387 case OPT_NO_YYGET_LINENO:
1388 //buf_strdefine (&userdef_buf, "YY_NO_GET_LINENO", "1");
1389 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_LINENO",0);
1390 break;
1391 case OPT_NO_YYSET_LINENO:
1392 //buf_strdefine (&userdef_buf, "YY_NO_SET_LINENO", "1");
1393 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_LINENO",0);
1394 break;
1395 case OPT_NO_YYGET_IN:
1396 //buf_strdefine (&userdef_buf, "YY_NO_GET_IN", "1");
1397 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_IN",0);
1398 break;
1399 case OPT_NO_YYSET_IN:
1400 //buf_strdefine (&userdef_buf, "YY_NO_SET_IN", "1");
1401 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_IN",0);
1402 break;
1403 case OPT_NO_YYGET_OUT:
1404 //buf_strdefine (&userdef_buf, "YY_NO_GET_OUT", "1");
1405 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_OUT",0);
1406 break;
1407 case OPT_NO_YYSET_OUT:
1408 //buf_strdefine (&userdef_buf, "YY_NO_SET_OUT", "1");
1409 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_OUT",0);
1410 break;
1411 case OPT_NO_YYGET_LVAL:
1412 //buf_strdefine (&userdef_buf, "YY_NO_GET_LVAL", "1");
1413 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_LVAL",0);
1414 break;
1415 case OPT_NO_YYSET_LVAL:
1416 //buf_strdefine (&userdef_buf, "YY_NO_SET_LVAL", "1");
1417 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_LVAL",0);
1418 break;
1419 case OPT_NO_YYGET_LLOC:
1420 //buf_strdefine (&userdef_buf, "YY_NO_GET_LLOC", "1");
1421 buf_m4_define( &m4defs_buf, "M4_YY_NO_GET_LLOC",0);
1422 break;
1423 case OPT_NO_YYSET_LLOC:
1424 //buf_strdefine (&userdef_buf, "YY_NO_SET_LLOC", "1");
1425 buf_m4_define( &m4defs_buf, "M4_YY_NO_SET_LLOC",0);
1426 break;
1428 } /* switch */
1429 } /* while scanopt() */
1431 scanopt_destroy (sopt);
1433 num_input_files = argc - optind;
1434 input_files = argv + optind;
1435 set_input_file (num_input_files > 0 ? input_files[0] : NULL);
1437 lastccl = lastsc = lastdfa = lastnfa = 0;
1438 num_rules = num_eof_rules = default_rule = 0;
1439 numas = numsnpairs = tmpuses = 0;
1440 numecs = numeps = eps2 = num_reallocs = hshcol = dfaeql = totnst =
1442 numuniq = numdup = hshsave = eofseen = datapos = dataline = 0;
1443 num_backing_up = onesp = numprots = 0;
1444 variable_trailing_context_rules = bol_needed = false;
1446 linenum = sectnum = 1;
1447 firstprot = NIL;
1449 /* Used in mkprot() so that the first proto goes in slot 1
1450 * of the proto queue.
1452 lastprot = 1;
1454 set_up_initial_allocations ();
1458 /* readin - read in the rules section of the input file(s) */
1460 void readin ()
1462 static char yy_stdinit[] = "FILE *yyin = stdin, *yyout = stdout;";
1463 static char yy_nostdinit[] =
1464 "FILE *yyin = (FILE *) 0, *yyout = (FILE *) 0;";
1466 line_directive_out ((FILE *) 0, 1);
1468 if (yyparse ()) {
1469 pinpoint_message (_("fatal parse error"));
1470 flexend (1);
1473 if (syntaxerror)
1474 flexend (1);
1476 /* If the user explicitly requested posix compatibility by specifing the
1477 * posix-compat option, then we check for conflicting options. However, if
1478 * the POSIXLY_CORRECT variable is set, then we quietly make flex as
1479 * posix-compatible as possible. This is the recommended behavior
1480 * according to the GNU Coding Standards.
1482 * Note: The posix option was added to flex to provide the posix behavior
1483 * of the repeat operator in regular expressions, e.g., `ab{3}'
1485 if (posix_compat) {
1486 /* TODO: This is where we try to make flex behave according to
1487 * posiz, AND check for conflicting options. How far should we go
1488 * with this? Should we disable all the neat-o flex features?
1490 /* Update: Estes says no, since other flex features don't violate posix. */
1493 if (getenv ("POSIXLY_CORRECT")) {
1494 posix_compat = true;
1497 if (backing_up_report) {
1498 backing_up_file = fopen (backing_name, "w");
1499 if (backing_up_file == NULL)
1500 lerrsf (_
1501 ("could not create backing-up info file %s"),
1502 backing_name);
1505 else
1506 backing_up_file = NULL;
1508 if (yymore_really_used == true)
1509 yymore_used = true;
1510 else if (yymore_really_used == false)
1511 yymore_used = false;
1513 if (reject_really_used == true)
1514 reject = true;
1515 else if (reject_really_used == false)
1516 reject = false;
1518 if (performance_report > 0) {
1519 if (lex_compat) {
1520 fprintf (stderr,
1522 ("-l AT&T lex compatibility option entails a large performance penalty\n"));
1523 fprintf (stderr,
1525 (" and may be the actual source of other reported performance penalties\n"));
1528 else if (do_yylineno) {
1529 fprintf (stderr,
1531 ("%%option yylineno entails a performance penalty ONLY on rules that can match newline characters\n"));
1534 if (performance_report > 1) {
1535 if (interactive)
1536 fprintf (stderr,
1538 ("-I (interactive) entails a minor performance penalty\n"));
1540 if (yymore_used)
1541 fprintf (stderr,
1543 ("yymore() entails a minor performance penalty\n"));
1546 if (reject)
1547 fprintf (stderr,
1549 ("REJECT entails a large performance penalty\n"));
1551 if (variable_trailing_context_rules)
1552 fprintf (stderr,
1554 ("Variable trailing context rules entail a large performance penalty\n"));
1557 if (reject)
1558 real_reject = true;
1560 if (variable_trailing_context_rules)
1561 reject = true;
1563 if ((fulltbl || fullspd) && reject) {
1564 if (real_reject)
1565 flexerror (_
1566 ("REJECT cannot be used with -f or -F"));
1567 else if (do_yylineno)
1568 flexerror (_
1569 ("%option yylineno cannot be used with REJECT"));
1570 else
1571 flexerror (_
1572 ("variable trailing context rules cannot be used with -f or -F"));
1575 if (reject){
1576 out_m4_define( "M4_YY_USES_REJECT", NULL);
1577 //outn ("\n#define YY_USES_REJECT");
1580 if (!do_yywrap) {
1581 if (!C_plus_plus) {
1582 if (reentrant)
1583 outn ("\n#define yywrap(yyscanner) 1");
1584 else
1585 outn ("\n#define yywrap() 1");
1587 outn ("#define YY_SKIP_YYWRAP");
1590 if (ddebug)
1591 outn ("\n#define FLEX_DEBUG");
1593 OUT_BEGIN_CODE ();
1594 if (csize == 256)
1595 outn ("typedef unsigned char YY_CHAR;");
1596 else
1597 outn ("typedef char YY_CHAR;");
1598 OUT_END_CODE ();
1600 if (C_plus_plus) {
1601 outn ("#define yytext_ptr yytext");
1603 if (interactive)
1604 outn ("#define YY_INTERACTIVE");
1607 else {
1608 OUT_BEGIN_CODE ();
1609 /* In reentrant scanner, stdinit is handled in flex.skl. */
1610 if (do_stdinit) {
1611 if (reentrant){
1612 outn ("#ifdef VMS");
1613 outn ("#ifdef __VMS_POSIX");
1614 outn ("#define YY_STDINIT");
1615 outn ("#endif");
1616 outn ("#else");
1617 outn ("#define YY_STDINIT");
1618 outn ("#endif");
1621 outn ("#ifdef VMS");
1622 outn ("#ifndef __VMS_POSIX");
1623 outn (yy_nostdinit);
1624 outn ("#else");
1625 outn (yy_stdinit);
1626 outn ("#endif");
1627 outn ("#else");
1628 outn (yy_stdinit);
1629 outn ("#endif");
1632 else {
1633 if(!reentrant)
1634 outn (yy_nostdinit);
1636 OUT_END_CODE ();
1639 OUT_BEGIN_CODE ();
1640 if (fullspd)
1641 outn ("typedef yyconst struct yy_trans_info *yy_state_type;");
1642 else if (!C_plus_plus)
1643 outn ("typedef int yy_state_type;");
1644 OUT_END_CODE ();
1646 if (lex_compat)
1647 outn ("#define YY_FLEX_LEX_COMPAT");
1649 if (!C_plus_plus && !reentrant) {
1650 outn ("extern int yylineno;");
1651 OUT_BEGIN_CODE ();
1652 outn ("int yylineno = 1;");
1653 OUT_END_CODE ();
1656 if (C_plus_plus) {
1657 outn ("\n#include <FlexLexer.h>");
1659 if (!do_yywrap) {
1660 outn("\nint yyFlexLexer::yywrap() { return 1; }");
1663 if (yyclass) {
1664 outn ("int yyFlexLexer::yylex()");
1665 outn ("\t{");
1666 outn ("\tLexerError( \"yyFlexLexer::yylex invoked but %option yyclass used\" );");
1667 outn ("\treturn 0;");
1668 outn ("\t}");
1670 out_str ("\n#define YY_DECL int %s::yylex()\n",
1671 yyclass);
1675 else {
1677 /* Watch out: yytext_ptr is a variable when yytext is an array,
1678 * but it's a macro when yytext is a pointer.
1680 if (yytext_is_array) {
1681 if (!reentrant)
1682 outn ("extern char yytext[];\n");
1684 else {
1685 if (reentrant) {
1686 outn ("#define yytext_ptr yytext_r");
1688 else {
1689 outn ("extern char *yytext;");
1690 outn ("#define yytext_ptr yytext");
1694 if (yyclass)
1695 flexerror (_
1696 ("%option yyclass only meaningful for C++ scanners"));
1699 if (useecs)
1700 numecs = cre8ecs (nextecm, ecgroup, csize);
1701 else
1702 numecs = csize;
1704 /* Now map the equivalence class for NUL to its expected place. */
1705 ecgroup[0] = ecgroup[csize];
1706 NUL_ec = ABS (ecgroup[0]);
1708 if (useecs)
1709 ccl2ecl ();
1713 /* set_up_initial_allocations - allocate memory for internal tables */
1715 void set_up_initial_allocations ()
1717 maximum_mns = (long_align ? MAXIMUM_MNS_LONG : MAXIMUM_MNS);
1718 current_mns = INITIAL_MNS;
1719 firstst = allocate_integer_array (current_mns);
1720 lastst = allocate_integer_array (current_mns);
1721 finalst = allocate_integer_array (current_mns);
1722 transchar = allocate_integer_array (current_mns);
1723 trans1 = allocate_integer_array (current_mns);
1724 trans2 = allocate_integer_array (current_mns);
1725 accptnum = allocate_integer_array (current_mns);
1726 assoc_rule = allocate_integer_array (current_mns);
1727 state_type = allocate_integer_array (current_mns);
1729 current_max_rules = INITIAL_MAX_RULES;
1730 rule_type = allocate_integer_array (current_max_rules);
1731 rule_linenum = allocate_integer_array (current_max_rules);
1732 rule_useful = allocate_integer_array (current_max_rules);
1733 rule_has_nl = allocate_bool_array (current_max_rules);
1735 current_max_scs = INITIAL_MAX_SCS;
1736 scset = allocate_integer_array (current_max_scs);
1737 scbol = allocate_integer_array (current_max_scs);
1738 scxclu = allocate_integer_array (current_max_scs);
1739 sceof = allocate_integer_array (current_max_scs);
1740 scname = allocate_char_ptr_array (current_max_scs);
1742 current_maxccls = INITIAL_MAX_CCLS;
1743 cclmap = allocate_integer_array (current_maxccls);
1744 ccllen = allocate_integer_array (current_maxccls);
1745 cclng = allocate_integer_array (current_maxccls);
1746 ccl_has_nl = allocate_bool_array (current_maxccls);
1748 current_max_ccl_tbl_size = INITIAL_MAX_CCL_TBL_SIZE;
1749 ccltbl = allocate_Character_array (current_max_ccl_tbl_size);
1751 current_max_dfa_size = INITIAL_MAX_DFA_SIZE;
1753 current_max_xpairs = INITIAL_MAX_XPAIRS;
1754 nxt = allocate_integer_array (current_max_xpairs);
1755 chk = allocate_integer_array (current_max_xpairs);
1757 current_max_template_xpairs = INITIAL_MAX_TEMPLATE_XPAIRS;
1758 tnxt = allocate_integer_array (current_max_template_xpairs);
1760 current_max_dfas = INITIAL_MAX_DFAS;
1761 base = allocate_integer_array (current_max_dfas);
1762 def = allocate_integer_array (current_max_dfas);
1763 dfasiz = allocate_integer_array (current_max_dfas);
1764 accsiz = allocate_integer_array (current_max_dfas);
1765 dhash = allocate_integer_array (current_max_dfas);
1766 dss = allocate_int_ptr_array (current_max_dfas);
1767 dfaacc = allocate_dfaacc_union (current_max_dfas);
1769 nultrans = (int *) 0;
1773 /* extracts basename from path, optionally stripping the extension "\.*"
1774 * (same concept as /bin/sh `basename`, but different handling of extension). */
1775 static char *basename2 (path, strip_ext)
1776 char *path;
1777 int strip_ext; /* boolean */
1779 char *b, *e = 0;
1781 b = path;
1782 for (b = path; *path; path++)
1783 if (*path == '/')
1784 b = path + 1;
1785 else if (*path == '.')
1786 e = path;
1788 if (strip_ext && e && e > b)
1789 *e = '\0';
1790 return b;
1793 void usage ()
1795 FILE *f = stdout;
1797 if (!did_outfilename) {
1798 snprintf (outfile_path, sizeof(outfile_path), outfile_template,
1799 prefix, C_plus_plus ? "cc" : "c");
1800 outfilename = outfile_path;
1803 fprintf (f, _("Usage: %s [OPTIONS] [FILE]...\n"), program_name);
1804 fprintf (f,
1806 ("Generates programs that perform pattern-matching on text.\n"
1807 "\n" "Table Compression:\n"
1808 " -Ca, --align trade off larger tables for better memory alignment\n"
1809 " -Ce, --ecs construct equivalence classes\n"
1810 " -Cf do not compress tables; use -f representation\n"
1811 " -CF do not compress tables; use -F representation\n"
1812 " -Cm, --meta-ecs construct meta-equivalence classes\n"
1813 " -Cr, --read use read() instead of stdio for scanner input\n"
1814 " -f, --full generate fast, large scanner. Same as -Cfr\n"
1815 " -F, --fast use alternate table representation. Same as -CFr\n"
1816 " -Cem default compression (same as --ecs --meta-ecs)\n"
1817 "\n" "Debugging:\n"
1818 " -d, --debug enable debug mode in scanner\n"
1819 " -b, --backup write backing-up information to %s\n"
1820 " -p, --perf-report write performance report to stderr\n"
1821 " -s, --nodefault suppress default rule to ECHO unmatched text\n"
1822 " -T, --trace %s should run in trace mode\n"
1823 " -w, --nowarn do not generate warnings\n"
1824 " -v, --verbose write summary of scanner statistics to stdout\n"
1825 "\n" "Files:\n"
1826 " -o, --outfile=FILE specify output filename\n"
1827 " -S, --skel=FILE specify skeleton file\n"
1828 " -t, --stdout write scanner on stdout instead of %s\n"
1829 " --yyclass=NAME name of C++ class\n"
1830 " --header-file=FILE create a C header file in addition to the scanner\n"
1831 " --tables-file[=FILE] write tables to FILE\n" "\n"
1832 "Scanner behavior:\n"
1833 " -7, --7bit generate 7-bit scanner\n"
1834 " -8, --8bit generate 8-bit scanner\n"
1835 " -B, --batch generate batch scanner (opposite of -I)\n"
1836 " -i, --case-insensitive ignore case in patterns\n"
1837 " -l, --lex-compat maximal compatibility with original lex\n"
1838 " -X, --posix-compat maximal compatibility with POSIX lex\n"
1839 " -I, --interactive generate interactive scanner (opposite of -B)\n"
1840 " --yylineno track line count in yylineno\n"
1841 "\n" "Generated code:\n"
1842 " -+, --c++ generate C++ scanner class\n"
1843 " -Dmacro[=defn] #define macro defn (default defn is '1')\n"
1844 " -L, --noline suppress #line directives in scanner\n"
1845 " -P, --prefix=STRING use STRING as prefix instead of \"yy\"\n"
1846 " -R, --reentrant generate a reentrant C scanner\n"
1847 " --bison-bridge scanner for bison pure parser.\n"
1848 " --bison-locations include yylloc support.\n"
1849 " --stdinit initialize yyin/yyout to stdin/stdout\n"
1850 " --noansi-definitions old-style function definitions\n"
1851 " --noansi-prototypes empty parameter list in prototypes\n"
1852 " --nounistd do not include <unistd.h>\n"
1853 " --noFUNCTION do not generate a particular FUNCTION\n"
1854 "\n" "Miscellaneous:\n"
1855 " -c do-nothing POSIX option\n"
1856 " -n do-nothing POSIX option\n"
1857 " -?\n"
1858 " -h, --help produce this help message\n"
1859 " -V, --version report %s version\n"),
1860 backing_name, program_name, outfile_path, program_name);