2007-03-01 Paul Brook <paul@codesourcery.com>
[official-gcc.git] / fixincludes / fixfixes.c
blobfa8dc545b0a3b22ebff9cdab706e2288aec43bd3
2 /*
4 Test to see if a particular fix should be applied to a header file.
6 Copyright (C) 1997, 1998, 1999, 2000, 2001, 2003, 2004
7 Free Software Foundation, Inc.
9 = = = = = = = = = = = = = = = = = = = = = = = = =
11 NOTE TO DEVELOPERS
13 The routines you write here must work closely with fixincl.c.
15 Here are the rules:
17 1. Every test procedure name must be suffixed with "_fix".
18 These routines will be referenced from inclhack.def, sans the suffix.
20 2. Use the "FIX_PROC_HEAD()" macro _with_ the "_fix" suffix
21 (I cannot use the ## magic from ANSI C) for defining your entry point.
23 3. Put your test name into the FIXUP_TABLE.
25 4. Do not read anything from stdin. It is closed.
27 5. Write to stderr only in the event of a reportable error
28 In such an event, call "exit (EXIT_FAILURE)".
30 6. You have access to the fixDescList entry for the fix in question.
31 This may be useful, for example, if there are interesting strings
32 or pre-compiled regular expressions stored there.
34 = = = = = = = = = = = = = = = = = = = = = = = = =
36 This file is part of GCC.
38 GCC is free software; you can redistribute it and/or modify
39 it under the terms of the GNU General Public License as published by
40 the Free Software Foundation; either version 2, or (at your option)
41 any later version.
43 GCC is distributed in the hope that it will be useful,
44 but WITHOUT ANY WARRANTY; without even the implied warranty of
45 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
46 GNU General Public License for more details.
48 You should have received a copy of the GNU General Public License
49 along with GCC; see the file COPYING. If not, write to
50 the Free Software Foundation, 51 Franklin Street, Fifth Floor,
51 Boston, MA 02110-1301, USA. */
53 #include "fixlib.h"
54 #define GTYPE_SE_CT 1
56 #ifdef SEPARATE_FIX_PROC
57 #include "fixincl.x"
58 #endif
60 tSCC zNeedsArg[] = "fixincl error: `%s' needs %s argument (c_fix_arg[%d])\n";
62 typedef void t_fix_proc (const char *, const char *, tFixDesc *) ;
63 typedef struct {
64 const char* fix_name;
65 t_fix_proc* fix_proc;
66 } fix_entry_t;
68 #define FIXUP_TABLE \
69 _FT_( "char_macro_def", char_macro_def_fix ) \
70 _FT_( "char_macro_use", char_macro_use_fix ) \
71 _FT_( "format", format_fix ) \
72 _FT_( "machine_name", machine_name_fix ) \
73 _FT_( "wrap", wrap_fix ) \
74 _FT_( "gnu_type", gnu_type_fix )
77 #define FIX_PROC_HEAD( fix ) \
78 static void fix (const char* filname ATTRIBUTE_UNUSED , \
79 const char* text ATTRIBUTE_UNUSED , \
80 tFixDesc* p_fixd ATTRIBUTE_UNUSED )
82 #ifdef NEED_PRINT_QUOTE
84 * Skip over a quoted string. Single quote strings may
85 * contain multiple characters if the first character is
86 * a backslash. Especially a backslash followed by octal digits.
87 * We are not doing a correctness syntax check here.
89 static char*
90 print_quote(char q, char* text )
92 fputc( q, stdout );
94 for (;;)
96 char ch = *(text++);
97 fputc( ch, stdout );
99 switch (ch)
101 case '\\':
102 if (*text == NUL)
103 goto quote_done;
105 fputc( *(text++), stdout );
106 break;
108 case '"':
109 case '\'':
110 if (ch != q)
111 break;
112 /*FALLTHROUGH*/
114 case '\n':
115 case NUL:
116 goto quote_done;
118 } quote_done:;
120 return text;
122 #endif /* NEED_PRINT_QUOTE */
126 * Emit the GNU standard type wrapped up in such a way that
127 * this thing can be encountered countless times during a compile
128 * and not cause even a warning.
130 static const char*
131 emit_gnu_type (const char* text, regmatch_t* rm )
133 char z_TYPE[ 64 ];
134 char z_type[ 64 ];
136 fwrite (text, rm[0].rm_so, 1, stdout);
139 const char* ps = text + rm[1].rm_so;
140 const char* pe = text + rm[1].rm_eo;
141 char* pd = z_type;
142 char* pD = z_TYPE;
144 while (ps < pe)
145 *(pD++) = TOUPPER( *(pd++) = *(ps++) );
147 *pD = *pd = NUL;
151 * Now print out the reformed typedef,
152 * with a C++ guard for WCHAR
155 tSCC z_fmt[] = "\
156 #if !defined(_GCC_%s_T)%s\n\
157 #define _GCC_%s_T\n\
158 typedef __%s_TYPE__ %s_t;\n\
159 #endif\n";
161 const char *const pz_guard = (strcmp (z_type, "wchar") == 0)
162 ? " && ! defined(__cplusplus)" : "";
164 printf (z_fmt, z_TYPE, pz_guard, z_TYPE, z_TYPE, z_type);
167 return text += rm[0].rm_eo;
172 * Copy the `format' string to std out, replacing `%n' expressions
173 * with the matched text from a regular expression evaluation.
174 * Doubled '%' characters will be replaced with a single copy.
175 * '%' characters in other contexts and all other characters are
176 * copied out verbatim.
178 static void
179 format_write (tCC* format, tCC* text, regmatch_t av[] )
181 int c;
183 while ((c = (unsigned)*(format++)) != NUL) {
185 if (c != '%')
187 putchar(c);
188 continue;
191 c = (unsigned)*(format++);
194 * IF the character following a '%' is not a digit,
195 * THEN we will always emit a '%' and we may or may
196 * not emit the following character. We will end on
197 * a NUL and we will emit only one of a pair of '%'.
199 if (! ISDIGIT ( c ))
201 putchar( '%' );
202 switch (c) {
203 case NUL:
204 return;
205 case '%':
206 break;
207 default:
208 putchar(c);
213 * Emit the matched subexpression numbered 'c'.
214 * IF, of course, there was such a match...
216 else {
217 regmatch_t* pRM = av + (c - (unsigned)'0');
218 size_t len;
220 if (pRM->rm_so < 0)
221 continue;
223 len = pRM->rm_eo - pRM->rm_so;
224 if (len > 0)
225 fwrite(text + pRM->rm_so, len, 1, stdout);
232 * Search for multiple copies of a regular expression. Each block
233 * of matched text is replaced with the format string, as described
234 * above in `format_write'.
236 FIX_PROC_HEAD( format_fix )
238 tCC* pz_pat = p_fixd->patch_args[2];
239 tCC* pz_fmt = p_fixd->patch_args[1];
240 regex_t re;
241 regmatch_t rm[10];
242 IGNORE_ARG(filname);
245 * We must have a format
247 if (pz_fmt == (tCC*)NULL)
249 fprintf( stderr, zNeedsArg, p_fixd->fix_name, "replacement format", 0 );
250 exit (EXIT_BROKEN);
254 * IF we don't have a search text, then go find the first
255 * regular expression among the tests.
257 if (pz_pat == (tCC*)NULL)
259 tTestDesc* pTD = p_fixd->p_test_desc;
260 int ct = p_fixd->test_ct;
261 for (;;)
263 if (ct-- <= 0)
265 fprintf( stderr, zNeedsArg, p_fixd->fix_name, "search text", 1 );
266 exit (EXIT_BROKEN);
269 if (pTD->type == TT_EGREP)
271 pz_pat = pTD->pz_test_text;
272 break;
275 pTD++;
280 * Replace every copy of the text we find
282 compile_re (pz_pat, &re, 1, "format search-text", "format_fix" );
283 while (xregexec (&re, text, 10, rm, 0) == 0)
285 fwrite( text, rm[0].rm_so, 1, stdout );
286 format_write( pz_fmt, text, rm );
287 text += rm[0].rm_eo;
291 * Dump out the rest of the file
293 fputs (text, stdout);
297 /* Scan the input file for all occurrences of text like this:
299 #define TIOCCONS _IO(T, 12)
301 and change them to read like this:
303 #define TIOCCONS _IO('T', 12)
305 which is the required syntax per the C standard. (The definition of
306 _IO also has to be tweaked - see below.) 'IO' is actually whatever you
307 provide as the `c_fix_arg' argument. */
309 FIX_PROC_HEAD( char_macro_use_fix )
311 /* This regexp looks for a traditional-syntax #define (# in column 1)
312 of an object-like macro. */
313 static const char pat[] =
314 "^#[ \t]*define[ \t]+[_A-Za-z][_A-Za-z0-9]*[ \t]+";
315 static regex_t re;
317 const char* str = p_fixd->patch_args[1];
318 regmatch_t rm[1];
319 const char *p, *limit;
320 size_t len;
321 IGNORE_ARG(filname);
323 if (str == NULL)
325 fprintf (stderr, zNeedsArg, p_fixd->fix_name, "ioctl type", 0);
326 exit (EXIT_BROKEN);
329 len = strlen (str);
330 compile_re (pat, &re, 1, "macro pattern", "char_macro_use_fix");
332 for (p = text;
333 xregexec (&re, p, 1, rm, 0) == 0;
334 p = limit + 1)
336 /* p + rm[0].rm_eo is the first character of the macro replacement.
337 Find the end of the macro replacement, and the STR we were
338 sent to look for within the replacement. */
339 p += rm[0].rm_eo;
340 limit = p - 1;
343 limit = strchr (limit + 1, '\n');
344 if (!limit)
345 goto done;
347 while (limit[-1] == '\\');
351 if (*p == str[0] && !strncmp (p+1, str+1, len-1))
352 goto found;
354 while (++p < limit - len);
355 /* Hit end of line. */
356 continue;
358 found:
359 /* Found STR on this line. If the macro needs fixing,
360 the next few chars will be whitespace or uppercase,
361 then an open paren, then a single letter. */
362 while ((ISSPACE (*p) || ISUPPER (*p)) && p < limit) p++;
363 if (*p++ != '(')
364 continue;
365 if (!ISALPHA (*p))
366 continue;
367 if (ISIDNUM (p[1]))
368 continue;
370 /* Splat all preceding text into the output buffer,
371 quote the character at p, then proceed. */
372 fwrite (text, 1, p - text, stdout);
373 putchar ('\'');
374 putchar (*p);
375 putchar ('\'');
376 text = p + 1;
378 done:
379 fputs (text, stdout);
383 /* Scan the input file for all occurrences of text like this:
385 #define xxxIOxx(x, y) (....'x'<<16....)
387 and change them to read like this:
389 #define xxxIOxx(x, y) (....x<<16....)
391 which is the required syntax per the C standard. (The uses of _IO
392 also has to be tweaked - see above.) 'IO' is actually whatever
393 you provide as the `c_fix_arg' argument. */
394 FIX_PROC_HEAD( char_macro_def_fix )
396 /* This regexp looks for any traditional-syntax #define (# in column 1). */
397 static const char pat[] =
398 "^#[ \t]*define[ \t]+";
399 static regex_t re;
401 const char* str = p_fixd->patch_args[1];
402 regmatch_t rm[1];
403 const char *p, *limit;
404 char arg;
405 size_t len;
406 IGNORE_ARG(filname);
408 if (str == NULL)
410 fprintf (stderr, zNeedsArg, p_fixd->fix_name, "ioctl type", 0);
411 exit (EXIT_BROKEN);
414 len = strlen (str);
415 compile_re (pat, &re, 1, "macro pattern", "fix_char_macro_defines");
417 for (p = text;
418 xregexec (&re, p, 1, rm, 0) == 0;
419 p = limit + 1)
421 /* p + rm[0].rm_eo is the first character of the macro name.
422 Find the end of the macro replacement, and the STR we were
423 sent to look for within the name. */
424 p += rm[0].rm_eo;
425 limit = p - 1;
428 limit = strchr (limit + 1, '\n');
429 if (!limit)
430 goto done;
432 while (limit[-1] == '\\');
436 if (*p == str[0] && !strncmp (p+1, str+1, len-1))
437 goto found;
438 p++;
440 while (ISIDNUM (*p));
441 /* Hit end of macro name without finding the string. */
442 continue;
444 found:
445 /* Found STR in this macro name. If the macro needs fixing,
446 there may be a few uppercase letters, then there will be an
447 open paren with _no_ intervening whitespace, and then a
448 single letter. */
449 while (ISUPPER (*p) && p < limit) p++;
450 if (*p++ != '(')
451 continue;
452 if (!ISALPHA (*p))
453 continue;
454 if (ISIDNUM (p[1]))
455 continue;
457 /* The character at P is the one to look for in the following
458 text. */
459 arg = *p;
460 p += 2;
462 while (p < limit)
464 if (p[-1] == '\'' && p[0] == arg && p[1] == '\'')
466 /* Remove the quotes from this use of ARG. */
467 p--;
468 fwrite (text, 1, p - text, stdout);
469 putchar (arg);
470 p += 3;
471 text = p;
473 else
474 p++;
477 done:
478 fputs (text, stdout);
481 /* Fix for machine name #ifdefs that are not in the namespace reserved
482 by the C standard. They won't be defined if compiling with -ansi,
483 and the headers will break. We go to some trouble to only change
484 #ifdefs where the macro is defined by GCC in non-ansi mode; this
485 minimizes the number of headers touched. */
487 #define SCRATCHSZ 64 /* hopefully long enough */
489 FIX_PROC_HEAD( machine_name_fix )
491 regmatch_t match[2];
492 const char *line, *base, *limit, *p, *q;
493 regex_t *label_re, *name_re;
494 char scratch[SCRATCHSZ];
495 size_t len;
496 IGNORE_ARG(filname);
497 IGNORE_ARG(p_fixd);
499 if (!mn_get_regexps (&label_re, &name_re, "machine_name_fix"))
501 fputs( "The target machine has no needed machine name fixes\n", stderr );
502 goto done;
505 scratch[0] = '_';
506 scratch[1] = '_';
508 for (base = text;
509 xregexec (label_re, base, 2, match, 0) == 0;
510 base = limit)
512 base += match[0].rm_eo;
513 /* We're looking at an #if or #ifdef. Scan forward for the
514 next non-escaped newline. */
515 line = limit = base;
518 limit++;
519 limit = strchr (limit, '\n');
520 if (!limit)
521 goto done;
523 while (limit[-1] == '\\');
525 /* If the 'name_pat' matches in between base and limit, we have
526 a bogon. It is not worth the hassle of excluding comments
527 because comments on #if/#ifdef lines are rare, and strings on
528 such lines are illegal.
530 REG_NOTBOL means 'base' is not at the beginning of a line, which
531 shouldn't matter since the name_re has no ^ anchor, but let's
532 be accurate anyway. */
534 for (;;)
536 again:
537 if (base == limit)
538 break;
540 if (xregexec (name_re, base, 1, match, REG_NOTBOL))
541 goto done; /* No remaining match in this file */
543 /* Match; is it on the line? */
544 if (match[0].rm_eo > limit - base)
545 break;
547 p = base + match[0].rm_so;
548 base += match[0].rm_eo;
550 /* One more test: if on the same line we have the same string
551 with the appropriate underscores, then leave it alone.
552 We want exactly two leading and trailing underscores. */
553 if (*p == '_')
555 len = base - p - ((*base == '_') ? 2 : 1);
556 q = p + 1;
558 else
560 len = base - p - ((*base == '_') ? 1 : 0);
561 q = p;
563 if (len + 4 > SCRATCHSZ)
564 abort ();
565 memcpy (&scratch[2], q, len);
566 len += 2;
567 scratch[len++] = '_';
568 scratch[len++] = '_';
570 for (q = line; q <= limit - len; q++)
571 if (*q == '_' && !strncmp (q, scratch, len))
572 goto again;
574 fwrite (text, 1, p - text, stdout);
575 fwrite (scratch, 1, len, stdout);
577 text = base;
580 done:
581 fputs (text, stdout);
585 FIX_PROC_HEAD( wrap_fix )
587 tSCC z_no_wrap_pat[] = "^#if.*__need_";
588 static regex_t no_wrapping_re; /* assume zeroed data */
590 tCC* pz_name = NULL;
592 if (no_wrapping_re.allocated == 0)
593 compile_re( z_no_wrap_pat, &no_wrapping_re, 0, "no-wrap pattern",
594 "wrap-fix" );
597 * IF we do *not* match the no-wrap re, then we have a double negative.
598 * A double negative means YES.
600 if (xregexec( &no_wrapping_re, text, 0, NULL, 0 ) != 0)
603 * A single file can get wrapped more than once by different fixes.
604 * A single fix can wrap multiple files. Therefore, guard with
605 * *both* the fix name and the file name.
607 size_t ln = strlen( filname ) + strlen( p_fixd->fix_name ) + 14;
608 char* pz = XNEWVEC (char, ln);
609 pz_name = pz;
610 sprintf( pz, "FIXINC_WRAP_%s-%s", filname, p_fixd->fix_name );
612 for (pz += 12; 1; pz++) {
613 char ch = *pz;
615 if (ch == NUL)
616 break;
618 if (! ISALNUM( ch )) {
619 *pz = '_';
621 else {
622 *pz = TOUPPER( ch );
626 printf( "#ifndef %s\n", pz_name );
627 printf( "#define %s 1\n\n", pz_name );
630 if (p_fixd->patch_args[1] == (tCC*)NULL)
631 fputs( text, stdout );
633 else {
634 fputs( p_fixd->patch_args[1], stdout );
635 fputs( text, stdout );
636 if (p_fixd->patch_args[2] != (tCC*)NULL)
637 fputs( p_fixd->patch_args[2], stdout );
640 if (pz_name != NULL) {
641 printf( "\n#endif /* %s */\n", pz_name );
642 free( (void*)pz_name );
648 * Search for multiple copies of a regular expression. Each block
649 * of matched text is replaced with the format string, as described
650 * above in `format_write'.
652 FIX_PROC_HEAD( gnu_type_fix )
654 const char* pz_pat;
655 regex_t re;
656 regmatch_t rm[GTYPE_SE_CT+1];
657 IGNORE_ARG(filname);
660 tTestDesc* pTD = p_fixd->p_test_desc;
661 int ct = p_fixd->test_ct;
662 for (;;)
664 if (ct-- <= 0)
666 fprintf (stderr, zNeedsArg, p_fixd->fix_name, "search text", 1);
667 exit (EXIT_BROKEN);
670 if (pTD->type == TT_EGREP)
672 pz_pat = pTD->pz_test_text;
673 break;
676 pTD++;
680 compile_re (pz_pat, &re, 1, "gnu type typedef", "gnu_type_fix");
682 while (xregexec (&re, text, GTYPE_SE_CT+1, rm, 0) == 0)
684 text = emit_gnu_type (text, rm);
688 * Dump out the rest of the file
690 fputs (text, stdout);
694 /* = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = = =
696 test for fix selector
698 THIS IS THE ONLY EXPORTED ROUTINE
701 void
702 apply_fix( tFixDesc* p_fixd, tCC* filname )
704 #define _FT_(n,p) { n, p },
705 static fix_entry_t fix_table[] = { FIXUP_TABLE { NULL, NULL }};
706 #undef _FT_
707 #define FIX_TABLE_CT (ARRAY_SIZE (fix_table)-1)
709 tCC* fixname = p_fixd->patch_args[0];
710 char* buf;
711 int ct = FIX_TABLE_CT;
712 fix_entry_t* pfe = fix_table;
714 for (;;)
716 if (strcmp (pfe->fix_name, fixname) == 0)
717 break;
718 if (--ct <= 0)
720 fprintf (stderr, "fixincl error: the `%s' fix is unknown\n",
721 fixname );
722 exit (EXIT_BROKEN);
724 pfe++;
727 buf = load_file_data (stdin);
728 (*pfe->fix_proc)( filname, buf, p_fixd );
731 #ifdef SEPARATE_FIX_PROC
732 tSCC z_usage[] =
733 "USAGE: applyfix <fix-name> <file-to-fix> <file-source> <file-destination>\n";
734 tSCC z_reopen[] =
735 "FS error %d (%s) reopening %s as std%s\n";
738 main( int argc, char** argv )
740 tFixDesc* pFix;
741 char* pz_tmptmp;
742 char* pz_tmp_base;
743 char* pz_tmp_dot;
745 if (argc != 5)
747 usage_failure:
748 fputs (z_usage, stderr);
749 return EXIT_FAILURE;
752 initialize_opts ();
755 char* pz = argv[1];
756 long idx;
758 if (! ISDIGIT ( *pz ))
759 goto usage_failure;
761 idx = strtol (pz, &pz, 10);
762 if ((*pz != NUL) || ((unsigned)idx >= FIX_COUNT))
763 goto usage_failure;
764 pFix = fixDescList + idx;
767 if (freopen (argv[3], "r", stdin) != stdin)
769 fprintf (stderr, z_reopen, errno, strerror( errno ), argv[3], "in");
770 return EXIT_FAILURE;
773 pz_tmptmp = XNEWVEC (char, strlen (argv[4]) + 5);
774 strcpy( pz_tmptmp, argv[4] );
776 /* Don't lose because "12345678" and "12345678X" map to the same
777 file under DOS restricted 8+3 file namespace. Note that DOS
778 doesn't allow more than one dot in the trunk of a file name. */
779 pz_tmp_base = basename( pz_tmptmp );
780 pz_tmp_dot = strchr( pz_tmp_base, '.' );
781 #ifdef _PC_NAME_MAX
782 if (pathconf( pz_tmptmp, _PC_NAME_MAX ) <= 12 /* is this DOS or Windows9X? */
783 && pz_tmp_dot != (char*)NULL)
784 strcpy (pz_tmp_dot+1, "X"); /* nuke the original extension */
785 else
786 #endif /* _PC_NAME_MAX */
787 strcat (pz_tmptmp, ".X");
788 if (freopen (pz_tmptmp, "w", stdout) != stdout)
790 fprintf (stderr, z_reopen, errno, strerror( errno ), pz_tmptmp, "out");
791 return EXIT_FAILURE;
794 apply_fix (pFix, argv[1]);
795 fclose (stdout);
796 fclose (stdin);
797 unlink (argv[4]);
798 if (rename (pz_tmptmp, argv[4]) != 0)
800 fprintf (stderr, "error %d (%s) renaming %s to %s\n", errno,
801 strerror( errno ), pz_tmptmp, argv[4]);
802 return EXIT_FAILURE;
805 return EXIT_SUCCESS;
807 #endif