1 /* Protoize program - Original version by Ron Guilmette (rfg@segfault.us.com).
2 Copyright (C) 1989, 1992, 1993, 1994, 1995 Free Software Foundation, Inc.
4 This file is part of GNU CC.
6 GNU CC is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation; either version 2, or (at your option)
11 GNU CC is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with GNU CC; see the file COPYING. If not, write to
18 the Free Software Foundation, 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
21 /* Any reasonable C++ compiler should have all of the same features
22 as __STDC__ plus more, so make sure that __STDC__ is defined if
23 __cplusplus is defined. */
25 #if defined(__cplusplus) && !defined(__STDC__)
27 #endif /* defined(__cplusplus) && !defined(__STDC__) */
29 #if defined(__GNUC__) || defined (__GNUG__)
30 #define VOLATILE volatile
43 /* Users are not supposed to use _POSIX_SOURCE to say the
44 system is a POSIX system. That is not what _POSIX_SOURCE means! -- rms */
45 /* If the user asked for POSIX via _POSIX_SOURCE, turn on POSIX code. */
46 #if defined(_POSIX_SOURCE) && !defined(POSIX)
51 #ifdef POSIX /* We should be able to define _POSIX_SOURCE unconditionally,
52 but some systems respond in buggy ways to it,
53 including SunOS 4.1.1. Which we don't classify as POSIX. */
54 /* In case this is a POSIX system with an ANSI C compiler,
55 ask for definition of all POSIX facilities. */
61 /* On some systems stdio.h includes stdarg.h;
62 we must bring in varargs.h first. */
66 #include <sys/types.h>
69 #if defined(POSIX) || defined(CONCURRENT)
77 /* Include getopt.h for the sake of getopt_long.
78 We don't need the declaration of getopt, and it could conflict
79 with something from a system header file, so effectively nullify that. */
80 #define getopt getopt_loser
91 extern const char *const sys_errlist
[];
93 extern char *sys_errlist
[];
96 extern char *strerror();
99 extern char *version_string
;
101 /* Systems which are compatible only with POSIX 1003.1-1988 (but *not*
102 with POSIX 1003.1-1990), e.g. Ultrix 4.2, might not have
103 const qualifiers in the prototypes in the system include files.
104 Unfortunately, this can lead to GCC issuing lots of warnings for
105 calls to the following functions. To eliminate these warnings we
106 provide the following #defines. */
108 #define my_access(file,flag) access((char *)file, flag)
109 #define my_stat(file,pkt) stat((char *)file, pkt)
110 #define my_execvp(prog,argv) execvp((char *)prog, (char **)argv)
111 #define my_link(file1, file2) link((char *)file1, (char *)file2)
112 #define my_unlink(file) unlink((char *)file)
113 #define my_open(file, mode, flag) open((char *)file, mode, flag)
114 #define my_chmod(file, mode) chmod((char *)file, mode)
116 extern char *getpwd ();
118 /* Aliases for pointers to void.
119 These were made to facilitate compilation with old brain-dead DEC C
120 compilers which didn't properly grok `void*' types. */
123 typedef void * pointer_type
;
124 typedef const void * const_pointer_type
;
126 typedef char * pointer_type
;
127 typedef char * const_pointer_type
;
136 #include <sys/wait.h>
138 #else /* !defined(POSIX) */
140 #define R_OK 4 /* Test for Read permission */
141 #define W_OK 2 /* Test for Write permission */
142 #define X_OK 1 /* Test for eXecute permission */
143 #define F_OK 0 /* Test for existence of File */
154 #define WIFSIGNALED(S) (((S) & 0xff) != 0 && ((S) & 0xff) != 0x7f)
157 #define WTERMSIG(S) ((S) & 0x7f)
160 #define WIFEXITED(S) (((S) & 0xff) == 0)
163 #define WEXITSTATUS(S) (((S) & 0xff00) >> 8)
166 /* Declaring stat or __flsbuf with a prototype
167 causes conflicts with system headers on some systems. */
170 typedef void voidfn ();
171 extern VOLATILE voidfn abort
;
177 #if 0 /* These conflict with stdio.h on some systems. */
178 extern int fprintf (FILE *, const char *, ...);
179 extern int printf (const char *, ...);
180 extern int open (const char *, int, ...);
187 extern int fflush ();
193 extern int unlink ();
194 extern int access ();
195 extern int execvp ();
197 #if 0 /* size_t from sys/types.h may fail to match GCC.
198 If so, we would get a warning from this. */
199 extern size_t strlen ()
202 /* Fork is not declared because the declaration caused a conflict
204 #if !(defined (USG) || defined (VMS))
206 #endif /* (defined (USG) || defined (VMS)) */
208 #endif /* !defined (POSIX) */
210 extern char *rindex ();
212 /* Look for these where the `const' qualifier is intentionally cast aside. */
216 /* Define a STRINGIFY macro that's right for ANSI or traditional C. */
219 #define STRINGIFY(STRING) #STRING
221 #define STRINGIFY(STRING) "STRING"
224 /* Define a default place to find the SYSCALLS.X file. */
226 #ifndef STD_PROTO_DIR
227 #define STD_PROTO_DIR "/usr/local/lib"
228 #endif /* !defined (STD_PROTO_DIR) */
230 /* Suffix of aux_info files. */
232 static const char * const aux_info_suffix
= ".X";
234 /* String to attach to filenames for saved versions of original files. */
236 static const char * const save_suffix
= ".save";
240 /* File name of the file which contains descriptions of standard system
241 routines. Note that we never actually do anything with this file per se,
242 but we do read in its corresponding aux_info file. */
244 static const char syscalls_filename
[] = "SYSCALLS.c";
246 /* Default place to find the above file. */
248 static const char * const default_syscalls_dir
= STD_PROTO_DIR
;
250 /* Variable to hold the complete absolutized filename of the SYSCALLS.c.X
253 static char * syscalls_absolute_filename
;
255 #endif /* !defined (UNPROTOIZE) */
257 /* Type of the structure that holds information about macro unexpansions. */
259 struct unexpansion_struct
{
260 const char *expanded
;
261 const char *contracted
;
263 typedef struct unexpansion_struct unexpansion
;
265 /* A table of conversions that may need to be made for some (stupid) older
266 operating systems where these types are preprocessor macros rather than
267 typedefs (as they really ought to be).
269 WARNING: The contracted forms must be as small (or smaller) as the
270 expanded forms, or else havoc will ensue. */
272 static const unexpansion unexpansions
[] = {
273 { "struct _iobuf", "FILE" },
277 /* The number of "primary" slots in the hash tables for filenames and for
278 function names. This can be as big or as small as you like, except that
279 it must be a power of two. */
281 #define HASH_TABLE_SIZE (1 << 9)
283 /* Bit mask to use when computing hash values. */
285 static const int hash_mask
= (HASH_TABLE_SIZE
- 1);
287 /* Make a table of default system include directories
288 just as it is done in cccp.c. */
290 #ifndef STANDARD_INCLUDE_DIR
291 #define STANDARD_INCLUDE_DIR "/usr/include"
294 #ifndef LOCAL_INCLUDE_DIR
295 #define LOCAL_INCLUDE_DIR "/usr/local/include"
298 struct default_include
{ const char *fname
; int x1
, x2
; } include_defaults
[]
299 #ifdef INCLUDE_DEFAULTS
303 /* Pick up GNU C++ specific include files. */
304 { GPLUSPLUS_INCLUDE_DIR
, 1, 1 },
306 /* This is the dir for fixincludes. Put it just before
307 the files that we fix. */
308 { GCC_INCLUDE_DIR
, 0, 0 },
309 /* For cross-compilation, this dir name is generated
310 automatically in Makefile.in. */
311 { CROSS_INCLUDE_DIR
, 0, 0 },
312 /* This is another place that the target system's headers might be. */
313 { TOOL_INCLUDE_DIR
, 0, 0 },
314 #else /* not CROSS_COMPILE */
315 /* This should be /use/local/include and should come before
316 the fixincludes-fixed header files. */
317 { LOCAL_INCLUDE_DIR
, 0, 1 },
318 /* This is here ahead of GCC_INCLUDE_DIR because assert.h goes here.
319 Likewise, behind LOCAL_INCLUDE_DIR, where glibc puts its assert.h. */
320 { TOOL_INCLUDE_DIR
, 0, 0 },
321 /* This is the dir for fixincludes. Put it just before
322 the files that we fix. */
323 { GCC_INCLUDE_DIR
, 0, 0 },
324 /* Some systems have an extra dir of include files. */
325 #ifdef SYSTEM_INCLUDE_DIR
326 { SYSTEM_INCLUDE_DIR
, 0, 0 },
328 { STANDARD_INCLUDE_DIR
, 0, 0},
329 #endif /* not CROSS_COMPILE */
332 #endif /* no INCLUDE_DEFAULTS */
334 /* Datatype for lists of directories or filenames. */
338 struct string_list
*next
;
341 /* List of directories in which files should be converted. */
343 struct string_list
*directory_list
;
345 /* List of file names which should not be converted.
346 A file is excluded if the end of its name, following a /,
347 matches one of the names in this list. */
349 struct string_list
*exclude_list
;
351 /* The name of the other style of variable-number-of-parameters functions
352 (i.e. the style that we want to leave unconverted because we don't yet
353 know how to convert them to this style. This string is used in warning
356 /* Also define here the string that we can search for in the parameter lists
357 taken from the .X files which will unambiguously indicate that we have
358 found a varargs style function. */
361 static const char * const other_var_style
= "stdarg";
362 #else /* !defined (UNPROTOIZE) */
363 static const char * const other_var_style
= "varargs";
364 /* Note that this is a string containing the expansion of va_alist.
365 But in `main' we discard all but the first token. */
366 static const char *varargs_style_indicator
= STRINGIFY (va_alist
);
367 #endif /* !defined (UNPROTOIZE) */
369 /* The following two types are used to create hash tables. In this program,
370 there are two hash tables which are used to store and quickly lookup two
371 different classes of strings. The first type of strings stored in the
372 first hash table are absolute filenames of files which protoize needs to
373 know about. The second type of strings (stored in the second hash table)
374 are function names. It is this second class of strings which really
375 inspired the use of the hash tables, because there may be a lot of them. */
377 typedef struct hash_table_entry_struct hash_table_entry
;
379 /* Do some typedefs so that we don't have to write "struct" so often. */
381 typedef struct def_dec_info_struct def_dec_info
;
382 typedef struct file_info_struct file_info
;
383 typedef struct f_list_chain_item_struct f_list_chain_item
;
385 /* In the struct below, note that the "_info" field has two different uses
386 depending on the type of hash table we are in (i.e. either the filenames
387 hash table or the function names hash table). In the filenames hash table
388 the info fields of the entries point to the file_info struct which is
389 associated with each filename (1 per filename). In the function names
390 hash table, the info field points to the head of a singly linked list of
391 def_dec_info entries which are all defs or decs of the function whose
392 name is pointed to by the "symbol" field. Keeping all of the defs/decs
393 for a given function name on a special list specifically for that function
394 name makes it quick and easy to find out all of the important information
395 about a given (named) function. */
397 struct hash_table_entry_struct
{
398 hash_table_entry
* hash_next
; /* -> to secondary entries */
399 const char * symbol
; /* -> to the hashed string */
401 const def_dec_info
* _ddip
;
405 #define ddip _info._ddip
406 #define fip _info._fip
408 /* Define a type specifically for our two hash tables. */
410 typedef hash_table_entry hash_table
[HASH_TABLE_SIZE
];
412 /* The following struct holds all of the important information about any
413 single filename (e.g. file) which we need to know about. */
415 struct file_info_struct
{
416 const hash_table_entry
* hash_entry
; /* -> to associated hash entry */
417 const def_dec_info
* defs_decs
; /* -> to chain of defs/decs */
418 time_t mtime
; /* Time of last modification. */
421 /* Due to the possibility that functions may return pointers to functions,
422 (which may themselves have their own parameter lists) and due to the
423 fact that returned pointers-to-functions may be of type "pointer-to-
424 function-returning-pointer-to-function" (ad nauseum) we have to keep
425 an entire chain of ANSI style formal parameter lists for each function.
427 Normally, for any given function, there will only be one formals list
428 on the chain, but you never know.
430 Note that the head of each chain of formals lists is pointed to by the
431 `f_list_chain' field of the corresponding def_dec_info record.
433 For any given chain, the item at the head of the chain is the *leftmost*
434 parameter list seen in the actual C language function declaration. If
435 there are other members of the chain, then these are linked in left-to-right
436 order from the head of the chain. */
438 struct f_list_chain_item_struct
{
439 const f_list_chain_item
* chain_next
; /* -> to next item on chain */
440 const char * formals_list
; /* -> to formals list string */
443 /* The following struct holds all of the important information about any
444 single function definition or declaration which we need to know about.
445 Note that for unprotoize we don't need to know very much because we
446 never even create records for stuff that we don't intend to convert
447 (like for instance defs and decs which are already in old K&R format
448 and "implicit" function declarations). */
450 struct def_dec_info_struct
{
451 const def_dec_info
* next_in_file
; /* -> to rest of chain for file */
452 file_info
* file
; /* -> file_info for containing file */
453 int line
; /* source line number of def/dec */
454 const char * ansi_decl
; /* -> left end of ansi decl */
455 hash_table_entry
* hash_entry
; /* -> hash entry for function name */
456 unsigned int is_func_def
; /* = 0 means this is a declaration */
457 const def_dec_info
* next_for_func
; /* -> to rest of chain for func name */
458 unsigned int f_list_count
; /* count of formals lists we expect */
459 char prototyped
; /* = 0 means already prototyped */
461 const f_list_chain_item
* f_list_chain
; /* -> chain of formals lists */
462 const def_dec_info
* definition
; /* -> def/dec containing related def */
463 char is_static
; /* = 0 means visibility is "extern" */
464 char is_implicit
; /* != 0 for implicit func decl's */
465 char written
; /* != 0 means written for implicit */
466 #else /* !defined (UNPROTOIZE) */
467 const char * formal_names
; /* -> to list of names of formals */
468 const char * formal_decls
; /* -> to string of formal declarations */
469 #endif /* !defined (UNPROTOIZE) */
472 /* Pointer to the tail component of the filename by which this program was
473 invoked. Used everywhere in error and warning messages. */
475 static const char *pname
;
477 /* Error counter. Will be non-zero if we should give up at the next convenient
480 static int errors
= 0;
483 /* ??? These comments should say what the flag mean as well as the options
486 /* File name to use for running gcc. Allows GCC 2 to be named
487 something other than gcc. */
488 static const char *compiler_file_name
= "gcc";
490 static int version_flag
= 0; /* Print our version number. */
491 static int quiet_flag
= 0; /* Don't print messages normally. */
492 static int nochange_flag
= 0; /* Don't convert, just say what files
493 we would have converted. */
494 static int nosave_flag
= 0; /* Don't save the old version. */
495 static int keep_flag
= 0; /* Don't delete the .X files. */
496 static const char ** compile_params
= 0; /* Option string for gcc. */
498 static const char *indent_string
= " "; /* Indentation for newly
499 inserted parm decls. */
500 #else /* !defined (UNPROTOIZE) */
501 static int local_flag
= 0; /* Insert new local decls (when?). */
502 static int global_flag
= 0; /* set by -g option */
503 static int cplusplus_flag
= 0; /* Rename converted files to *.C. */
504 static const char* nondefault_syscalls_dir
= 0; /* Dir to look for
506 #endif /* !defined (UNPROTOIZE) */
508 /* An index into the compile_params array where we should insert the source
509 file name when we are ready to exec the C compiler. A zero value indicates
510 that we have not yet called munge_compile_params. */
512 static int input_file_name_index
= 0;
514 /* An index into the compile_params array where we should insert the filename
515 for the aux info file, when we run the C compiler. */
516 static int aux_info_file_name_index
= 0;
518 /* Count of command line arguments which were "filename" arguments. */
520 static int n_base_source_files
= 0;
522 /* Points to a malloc'ed list of pointers to all of the filenames of base
523 source files which were specified on the command line. */
525 static const char **base_source_filenames
;
527 /* Line number of the line within the current aux_info file that we
528 are currently processing. Used for error messages in case the prototypes
529 info file is corrupted somehow. */
531 static int current_aux_info_lineno
;
533 /* Pointer to the name of the source file currently being converted. */
535 static const char *convert_filename
;
537 /* Pointer to relative root string (taken from aux_info file) which indicates
538 where directory the user was in when he did the compilation step that
539 produced the containing aux_info file. */
541 static const char *invocation_filename
;
543 /* Pointer to the base of the input buffer that holds the original text for the
544 source file currently being converted. */
546 static const char *orig_text_base
;
548 /* Pointer to the byte just beyond the end of the input buffer that holds the
549 original text for the source file currently being converted. */
551 static const char *orig_text_limit
;
553 /* Pointer to the base of the input buffer that holds the cleaned text for the
554 source file currently being converted. */
556 static const char *clean_text_base
;
558 /* Pointer to the byte just beyond the end of the input buffer that holds the
559 cleaned text for the source file currently being converted. */
561 static const char *clean_text_limit
;
563 /* Pointer to the last byte in the cleaned text buffer that we have already
564 (virtually) copied to the output buffer (or decided to ignore). */
566 static const char * clean_read_ptr
;
568 /* Pointer to the base of the output buffer that holds the replacement text
569 for the source file currently being converted. */
571 static char *repl_text_base
;
573 /* Pointer to the byte just beyond the end of the output buffer that holds the
574 replacement text for the source file currently being converted. */
576 static char *repl_text_limit
;
578 /* Pointer to the last byte which has been stored into the output buffer.
579 The next byte to be stored should be stored just past where this points
582 static char * repl_write_ptr
;
584 /* Pointer into the cleaned text buffer for the source file we are currently
585 converting. This points to the first character of the line that we last
586 did a "seek_to_line" to (see below). */
588 static const char *last_known_line_start
;
590 /* Number of the line (in the cleaned text buffer) that we last did a
591 "seek_to_line" to. Will be one if we just read a new source file
592 into the cleaned text buffer. */
594 static int last_known_line_number
;
596 /* The filenames hash table. */
598 static hash_table filename_primary
;
600 /* The function names hash table. */
602 static hash_table function_name_primary
;
604 /* The place to keep the recovery address which is used only in cases where
605 we get hopelessly confused by something in the cleaned original text. */
607 static jmp_buf source_confusion_recovery
;
609 /* A pointer to the current directory filename (used by abspath). */
611 static char *cwd_buffer
;
613 /* A place to save the read pointer until we are sure that an individual
614 attempt at editing will succeed. */
616 static const char * saved_clean_read_ptr
;
618 /* A place to save the write pointer until we are sure that an individual
619 attempt at editing will succeed. */
621 static char * saved_repl_write_ptr
;
623 /* Forward declaration. */
625 static const char *shortpath ();
637 static char buffer
[30];
641 if (e
> 0 && e
< sys_nerr
)
642 return sys_errlist
[e
];
644 sprintf (buffer
, "Unknown error %d", e
);
649 /* Allocate some space, but check that the allocation was successful. */
650 /* alloca.c uses this, so don't make it static. */
658 rv
= (pointer_type
) malloc (byte_count
);
661 fprintf (stderr
, "\n%s: virtual memory exceeded\n", pname
);
663 return 0; /* avoid warnings */
669 /* Reallocate some space, but check that the reallocation was successful. */
672 xrealloc (old_space
, byte_count
)
673 pointer_type old_space
;
678 rv
= (pointer_type
) realloc (old_space
, byte_count
);
681 fprintf (stderr
, "\n%s: virtual memory exceeded\n", pname
);
683 return 0; /* avoid warnings */
689 /* Deallocate the area pointed to by an arbitrary pointer, but first, strip
690 the `const' qualifier from it and also make sure that the pointer value
695 const_pointer_type p
;
698 free ((NONCONST pointer_type
) p
);
701 /* Make a copy of a string INPUT with size SIZE. */
704 savestring (input
, size
)
708 char *output
= (char *) xmalloc (size
+ 1);
709 strcpy (output
, input
);
713 /* Make a copy of the concatenation of INPUT1 and INPUT2. */
716 savestring2 (input1
, size1
, input2
, size2
)
722 char *output
= (char *) xmalloc (size1
+ size2
+ 1);
723 strcpy (output
, input1
);
724 strcpy (&output
[size1
], input2
);
728 /* More 'friendly' abort that prints the line and file.
729 config.h can #define abort fancy_abort if you like that sort of thing. */
734 fprintf (stderr
, "%s: internal abort\n", pname
);
738 /* Make a duplicate of the first N bytes of a given string in a newly
746 char *ret_val
= (char *) xmalloc (n
+ 1);
748 strncpy (ret_val
, s
, n
);
753 /* Return a pointer to the first occurrence of s2 within s1 or NULL if s2
754 does not occur within s1. Assume neither s1 nor s2 are null pointers. */
759 const char *const s2
;
767 for (p1
= s1
, p2
= s2
; c
= *p2
; p1
++, p2
++)
777 /* Read LEN bytes at PTR from descriptor DESC, for file FILENAME,
778 retrying if necessary. Return the actual number of bytes read. */
781 safe_read (desc
, ptr
, len
)
788 int nchars
= read (desc
, ptr
, left
);
805 /* Write LEN bytes at PTR to descriptor DESC,
806 retrying if necessary, and treating any real error as fatal. */
809 safe_write (desc
, ptr
, len
, out_fname
)
816 int written
= write (desc
, ptr
, len
);
823 fprintf (stderr
, "%s: error writing file `%s': %s\n",
824 pname
, shortpath (NULL
, out_fname
), my_strerror(errno
));
832 /* Get setup to recover in case the edit we are about to do goes awry. */
837 saved_clean_read_ptr
= clean_read_ptr
;
838 saved_repl_write_ptr
= repl_write_ptr
;
841 /* Call this routine to recover our previous state whenever something looks
842 too confusing in the source code we are trying to edit. */
847 clean_read_ptr
= saved_clean_read_ptr
;
848 repl_write_ptr
= saved_repl_write_ptr
;
851 /* Return true if the given character is a valid identifier character. */
857 return (isalnum (ch
) || (ch
== '_') || (ch
== '$'));
860 /* Give a message indicating the proper way to invoke this program and then
861 exit with non-zero status. */
867 fprintf (stderr
, "%s: usage '%s [ -VqfnkN ] [ -i <istring> ] [ filename ... ]'\n",
869 #else /* !defined (UNPROTOIZE) */
870 fprintf (stderr
, "%s: usage '%s [ -VqfnkNlgC ] [ -B <diname> ] [ filename ... ]'\n",
872 #endif /* !defined (UNPROTOIZE) */
876 /* Return true if the given filename (assumed to be an absolute filename)
877 designates a file residing anywhere beneath any one of the "system"
878 include directories. */
881 in_system_include_dir (path
)
884 struct default_include
*p
;
887 abort (); /* Must be an absolutized filename. */
889 for (p
= include_defaults
; p
->fname
; p
++)
890 if (!strncmp (path
, p
->fname
, strlen (p
->fname
))
891 && path
[strlen (p
->fname
)] == '/')
897 /* Return true if the given filename designates a file that the user has
898 read access to and for which the user has write access to the containing
902 file_could_be_converted (const char *path
)
904 char *const dir_name
= (char *) alloca (strlen (path
) + 1);
906 if (my_access (path
, R_OK
))
910 char *dir_last_slash
;
912 strcpy (dir_name
, path
);
913 dir_last_slash
= rindex (dir_name
, '/');
915 *dir_last_slash
= '\0';
917 abort (); /* Should have been an absolutized filename. */
920 if (my_access (path
, W_OK
))
926 /* Return true if the given filename designates a file that we are allowed
927 to modify. Files which we should not attempt to modify are (a) "system"
928 include files, and (b) files which the user doesn't have write access to,
929 and (c) files which reside in directories which the user doesn't have
930 write access to. Unless requested to be quiet, give warnings about
931 files that we will not try to convert for one reason or another. An
932 exception is made for "system" include files, which we never try to
933 convert and for which we don't issue the usual warnings. */
936 file_normally_convertible (const char *path
)
938 char *const dir_name
= alloca (strlen (path
) + 1);
940 if (in_system_include_dir (path
))
944 char *dir_last_slash
;
946 strcpy (dir_name
, path
);
947 dir_last_slash
= rindex (dir_name
, '/');
949 *dir_last_slash
= '\0';
951 abort (); /* Should have been an absolutized filename. */
954 if (my_access (path
, R_OK
))
957 fprintf (stderr
, "%s: warning: no read access for file `%s'\n",
958 pname
, shortpath (NULL
, path
));
962 if (my_access (path
, W_OK
))
965 fprintf (stderr
, "%s: warning: no write access for file `%s'\n",
966 pname
, shortpath (NULL
, path
));
970 if (my_access (dir_name
, W_OK
))
973 fprintf (stderr
, "%s: warning: no write access for dir containing `%s'\n",
974 pname
, shortpath (NULL
, path
));
984 /* Return true if the given file_info struct refers to the special SYSCALLS.c.X
985 file. Return false otherwise. */
988 is_syscalls_file (fi_p
)
989 const file_info
*fi_p
;
991 char const *f
= fi_p
->hash_entry
->symbol
;
992 size_t fl
= strlen (f
), sysl
= sizeof (syscalls_filename
) - 1;
993 return sysl
<= fl
&& strcmp (f
+ fl
- sysl
, syscalls_filename
) == 0;
996 #endif /* !defined (UNPROTOIZE) */
998 /* Check to see if this file will need to have anything done to it on this
999 run. If there is nothing in the given file which both needs conversion
1000 and for which we have the necessary stuff to do the conversion, return
1001 false. Otherwise, return true.
1003 Note that (for protoize) it is only valid to call this function *after*
1004 the connections between declarations and definitions have all been made
1005 by connect_defs_and_decs. */
1008 needs_to_be_converted (file_p
)
1009 const file_info
*file_p
;
1011 const def_dec_info
*ddp
;
1015 if (is_syscalls_file (file_p
))
1018 #endif /* !defined (UNPROTOIZE) */
1020 for (ddp
= file_p
->defs_decs
; ddp
; ddp
= ddp
->next_in_file
)
1026 /* ... and if we a protoizing and this function is in old style ... */
1028 /* ... and if this a definition or is a decl with an associated def ... */
1029 && (ddp
->is_func_def
|| (!ddp
->is_func_def
&& ddp
->definition
))
1031 #else /* defined (UNPROTOIZE) */
1033 /* ... and if we are unprotoizing and this function is in new style ... */
1036 #endif /* defined (UNPROTOIZE) */
1038 /* ... then the containing file needs converting. */
1043 /* Return 1 if the file name NAME is in a directory
1044 that should be converted. */
1047 directory_specified_p (name
)
1050 struct string_list
*p
;
1052 for (p
= directory_list
; p
; p
= p
->next
)
1053 if (!strncmp (name
, p
->name
, strlen (p
->name
))
1054 && name
[strlen (p
->name
)] == '/')
1056 const char *q
= name
+ strlen (p
->name
) + 1;
1058 /* If there are more slashes, it's in a subdir, so
1059 this match doesn't count. */
1071 /* Return 1 if the file named NAME should be excluded from conversion. */
1074 file_excluded_p (name
)
1077 struct string_list
*p
;
1078 int len
= strlen (name
);
1080 for (p
= exclude_list
; p
; p
= p
->next
)
1081 if (!strcmp (name
+ len
- strlen (p
->name
), p
->name
)
1082 && name
[len
- strlen (p
->name
) - 1] == '/')
1088 /* Construct a new element of a string_list.
1089 STRING is the new element value, and REST holds the remaining elements. */
1091 static struct string_list
*
1092 string_list_cons (string
, rest
)
1094 struct string_list
*rest
;
1096 struct string_list
*temp
1097 = (struct string_list
*) xmalloc (sizeof (struct string_list
));
1100 temp
->name
= string
;
1104 /* ??? The GNU convention for mentioning function args in its comments
1105 is to capitalize them. So change "hash_tab_p" to HASH_TAB_P below.
1106 Likewise for all the other functions. */
1108 /* Given a hash table, apply some function to each node in the table. The
1109 table to traverse is given as the "hash_tab_p" argument, and the
1110 function to be applied to each node in the table is given as "func"
1114 visit_each_hash_node (hash_tab_p
, func
)
1115 const hash_table_entry
*hash_tab_p
;
1118 const hash_table_entry
*primary
;
1120 for (primary
= hash_tab_p
; primary
< &hash_tab_p
[HASH_TABLE_SIZE
]; primary
++)
1121 if (primary
->symbol
)
1123 hash_table_entry
*second
;
1126 for (second
= primary
->hash_next
; second
; second
= second
->hash_next
)
1131 /* Initialize all of the fields of a new hash table entry, pointed
1132 to by the "p" parameter. Note that the space to hold the entry
1133 is assumed to have already been allocated before this routine is
1136 static hash_table_entry
*
1138 hash_table_entry
*p
;
1141 p
->hash_next
= NULL
;
1142 p
->symbol
= savestring (s
, strlen (s
));
1148 /* Look for a particular function name or filename in the particular
1149 hash table indicated by "hash_tab_p". If the name is not in the
1150 given hash table, add it. Either way, return a pointer to the
1151 hash table entry for the given name. */
1153 static hash_table_entry
*
1154 lookup (hash_tab_p
, search_symbol
)
1155 hash_table_entry
*hash_tab_p
;
1156 const char *search_symbol
;
1159 const char *search_symbol_char_p
= search_symbol
;
1160 hash_table_entry
*p
;
1162 while (*search_symbol_char_p
)
1163 hash_value
+= *search_symbol_char_p
++;
1164 hash_value
&= hash_mask
;
1165 p
= &hash_tab_p
[hash_value
];
1167 return add_symbol (p
, search_symbol
);
1168 if (!strcmp (p
->symbol
, search_symbol
))
1170 while (p
->hash_next
)
1173 if (!strcmp (p
->symbol
, search_symbol
))
1176 p
->hash_next
= (hash_table_entry
*) xmalloc (sizeof (hash_table_entry
));
1178 return add_symbol (p
, search_symbol
);
1181 /* Throw a def/dec record on the junk heap.
1183 Also, since we are not using this record anymore, free up all of the
1184 stuff it pointed to. */
1190 xfree (p
->ansi_decl
);
1194 const f_list_chain_item
* curr
;
1195 const f_list_chain_item
* next
;
1197 for (curr
= p
->f_list_chain
; curr
; curr
= next
)
1199 next
= curr
->chain_next
;
1203 #endif /* !defined (UNPROTOIZE) */
1208 /* Unexpand as many macro symbol as we can find.
1210 If the given line must be unexpanded, make a copy of it in the heap and
1211 return a pointer to the unexpanded copy. Otherwise return NULL. */
1214 unexpand_if_needed (aux_info_line
)
1215 const char *aux_info_line
;
1217 static char *line_buf
= 0;
1218 static int line_buf_size
= 0;
1219 const unexpansion
* unexp_p
;
1220 int got_unexpanded
= 0;
1222 char *copy_p
= line_buf
;
1226 line_buf_size
= 1024;
1227 line_buf
= (char *) xmalloc (line_buf_size
);
1232 /* Make a copy of the input string in line_buf, expanding as necessary. */
1234 for (s
= aux_info_line
; *s
!= '\n'; )
1236 for (unexp_p
= unexpansions
; unexp_p
->expanded
; unexp_p
++)
1238 const char *in_p
= unexp_p
->expanded
;
1239 size_t len
= strlen (in_p
);
1241 if (*s
== *in_p
&& !strncmp (s
, in_p
, len
) && !is_id_char (s
[len
]))
1243 int size
= strlen (unexp_p
->contracted
);
1245 if (copy_p
+ size
- line_buf
>= line_buf_size
)
1247 int offset
= copy_p
- line_buf
;
1249 line_buf_size
+= size
;
1250 line_buf
= (char *) xrealloc (line_buf
, line_buf_size
);
1251 copy_p
= line_buf
+ offset
;
1253 strcpy (copy_p
, unexp_p
->contracted
);
1256 /* Assume the there will not be another replacement required
1257 within the text just replaced. */
1260 goto continue_outer
;
1263 if (copy_p
- line_buf
== line_buf_size
)
1265 int offset
= copy_p
- line_buf
;
1267 line_buf
= (char *) xrealloc (line_buf
, line_buf_size
);
1268 copy_p
= line_buf
+ offset
;
1273 if (copy_p
+ 2 - line_buf
>= line_buf_size
)
1275 int offset
= copy_p
- line_buf
;
1277 line_buf
= (char *) xrealloc (line_buf
, line_buf_size
);
1278 copy_p
= line_buf
+ offset
;
1283 return (got_unexpanded
? savestring (line_buf
, copy_p
- line_buf
) : 0);
1286 /* Return the absolutized filename for the given relative
1287 filename. Note that if that filename is already absolute, it may
1288 still be returned in a modified form because this routine also
1289 eliminates redundant slashes and single dots and eliminates double
1290 dots to get a shortest possible filename from the given input
1291 filename. The absolutization of relative filenames is made by
1292 assuming that the given filename is to be taken as relative to
1293 the first argument (cwd) or to the current directory if cwd is
1297 abspath (cwd
, rel_filename
)
1299 const char *rel_filename
;
1301 /* Setup the current working directory as needed. */
1302 const char *cwd2
= (cwd
) ? cwd
: cwd_buffer
;
1303 char *const abs_buffer
1304 = (char *) alloca (strlen (cwd2
) + strlen (rel_filename
) + 2);
1305 char *endp
= abs_buffer
;
1308 /* Copy the filename (possibly preceded by the current working
1309 directory name) into the absolutization buffer. */
1314 if (rel_filename
[0] != '/')
1317 while (*endp
++ = *src_p
++)
1319 *(endp
-1) = '/'; /* overwrite null */
1321 src_p
= rel_filename
;
1322 while (*endp
++ = *src_p
++)
1326 /* Now make a copy of abs_buffer into abs_buffer, shortening the
1327 filename (by taking out slashes and dots) as we go. */
1329 outp
= inp
= abs_buffer
;
1330 *outp
++ = *inp
++; /* copy first slash */
1333 *outp
++ = *inp
++; /* copy second slash */
1339 else if (inp
[0] == '/' && outp
[-1] == '/')
1344 else if (inp
[0] == '.' && outp
[-1] == '/')
1348 else if (inp
[1] == '/')
1353 else if ((inp
[1] == '.') && (inp
[2] == 0 || inp
[2] == '/'))
1355 inp
+= (inp
[2] == '/') ? 3 : 2;
1357 while (outp
>= abs_buffer
&& *outp
!= '/')
1359 if (outp
< abs_buffer
)
1361 /* Catch cases like /.. where we try to backup to a
1362 point above the absolute root of the logical file
1365 fprintf (stderr
, "%s: invalid file name: %s\n",
1366 pname
, rel_filename
);
1376 /* On exit, make sure that there is a trailing null, and make sure that
1377 the last character of the returned string is *not* a slash. */
1380 if (outp
[-1] == '/')
1383 /* Make a copy (in the heap) of the stuff left in the absolutization
1384 buffer and return a pointer to the copy. */
1386 return savestring (abs_buffer
, outp
- abs_buffer
);
1389 /* Given a filename (and possibly a directory name from which the filename
1390 is relative) return a string which is the shortest possible
1391 equivalent for the corresponding full (absolutized) filename. The
1392 shortest possible equivalent may be constructed by converting the
1393 absolutized filename to be a relative filename (i.e. relative to
1394 the actual current working directory). However if a relative filename
1395 is longer, then the full absolute filename is returned.
1399 Note that "simple-minded" conversion of any given type of filename (either
1400 relative or absolute) may not result in a valid equivalent filename if any
1401 subpart of the original filename is actually a symbolic link. */
1404 shortpath (cwd
, filename
)
1406 const char *filename
;
1410 char *cwd_p
= cwd_buffer
;
1412 int unmatched_slash_count
= 0;
1413 size_t filename_len
= strlen (filename
);
1415 path_p
= abspath (cwd
, filename
);
1416 rel_buf_p
= rel_buffer
= (char *) xmalloc (filename_len
);
1418 while (*cwd_p
&& (*cwd_p
== *path_p
))
1423 if (!*cwd_p
&& (!*path_p
|| *path_p
== '/')) /* whole pwd matched */
1425 if (!*path_p
) /* input *is* the current path! */
1436 while (*cwd_p
!= '/') /* backup to last slash */
1443 unmatched_slash_count
++;
1446 /* Find out how many directory levels in cwd were *not* matched. */
1448 if (*cwd_p
++ == '/')
1449 unmatched_slash_count
++;
1451 /* Now we know how long the "short name" will be.
1452 Reject it if longer than the input. */
1453 if (unmatched_slash_count
* 3 + strlen (path_p
) >= filename_len
)
1456 /* For each of them, put a `../' at the beginning of the short name. */
1457 while (unmatched_slash_count
--)
1459 /* Give up if the result gets to be longer
1460 than the absolute path name. */
1461 if (rel_buffer
+ filename_len
<= rel_buf_p
+ 3)
1468 /* Then tack on the unmatched part of the desired file's name. */
1471 if (rel_buffer
+ filename_len
<= rel_buf_p
)
1474 while (*rel_buf_p
++ = *path_p
++);
1477 if (*(rel_buf_p
-1) == '/')
1478 *--rel_buf_p
= '\0';
1483 /* Lookup the given filename in the hash table for filenames. If it is a
1484 new one, then the hash table info pointer will be null. In this case,
1485 we create a new file_info record to go with the filename, and we initialize
1486 that record with some reasonable values. */
1488 /* FILENAME was const, but that causes a warning on AIX when calling stat.
1489 That is probably a bug in AIX, but might as well avoid the warning. */
1492 find_file (filename
, do_not_stat
)
1496 hash_table_entry
*hash_entry_p
;
1498 hash_entry_p
= lookup (filename_primary
, filename
);
1499 if (hash_entry_p
->fip
)
1500 return hash_entry_p
->fip
;
1503 struct stat stat_buf
;
1504 file_info
*file_p
= (file_info
*) xmalloc (sizeof (file_info
));
1506 /* If we cannot get status on any given source file, give a warning
1507 and then just set its time of last modification to infinity. */
1510 stat_buf
.st_mtime
= (time_t) 0;
1513 if (my_stat (filename
, &stat_buf
) == -1)
1515 fprintf (stderr
, "%s: %s: can't get status: %s\n",
1516 pname
, shortpath (NULL
, filename
), my_strerror(errno
));
1517 stat_buf
.st_mtime
= (time_t) -1;
1521 hash_entry_p
->fip
= file_p
;
1522 file_p
->hash_entry
= hash_entry_p
;
1523 file_p
->defs_decs
= NULL
;
1524 file_p
->mtime
= stat_buf
.st_mtime
;
1529 /* Generate a fatal error because some part of the aux_info file is
1533 aux_info_corrupted ()
1535 fprintf (stderr
, "\n%s: fatal error: aux info file corrupted at line %d\n",
1536 pname
, current_aux_info_lineno
);
1540 /* ??? This comment is vague. Say what the condition is for. */
1541 /* Check to see that a condition is true. This is kind of like an assert. */
1544 check_aux_info (cond
)
1548 aux_info_corrupted ();
1551 /* Given a pointer to the closing right parenthesis for a particular formals
1552 list (in an aux_info file) find the corresponding left parenthesis and
1553 return a pointer to it. */
1556 find_corresponding_lparen (p
)
1562 for (paren_depth
= 1, q
= p
-1; paren_depth
; q
--)
1577 /* Given a line from an aux info file, and a time at which the aux info
1578 file it came from was created, check to see if the item described in
1579 the line comes from a file which has been modified since the aux info
1580 file was created. If so, return non-zero, else return zero. */
1583 referenced_file_is_newer (l
, aux_info_mtime
)
1585 time_t aux_info_mtime
;
1591 check_aux_info (l
[0] == '/');
1592 check_aux_info (l
[1] == '*');
1593 check_aux_info (l
[2] == ' ');
1596 const char *filename_start
= p
= l
+ 3;
1600 filename
= (char *) alloca ((size_t) (p
- filename_start
) + 1);
1601 strncpy (filename
, filename_start
, (size_t) (p
- filename_start
));
1602 filename
[p
-filename_start
] = '\0';
1605 /* Call find_file to find the file_info record associated with the file
1606 which contained this particular def or dec item. Note that this call
1607 may cause a new file_info record to be created if this is the first time
1608 that we have ever known about this particular file. */
1610 fi_p
= find_file (abspath (invocation_filename
, filename
), 0);
1612 return (fi_p
->mtime
> aux_info_mtime
);
1615 /* Given a line of info from the aux_info file, create a new
1616 def_dec_info record to remember all of the important information about
1617 a function definition or declaration.
1619 Link this record onto the list of such records for the particular file in
1620 which it occurred in proper (descending) line number order (for now).
1622 If there is an identical record already on the list for the file, throw
1623 this one away. Doing so takes care of the (useless and troublesome)
1624 duplicates which are bound to crop up due to multiple inclusions of any
1625 given individual header file.
1627 Finally, link the new def_dec record onto the list of such records
1628 pertaining to this particular function name. */
1631 save_def_or_dec (l
, is_syscalls
)
1636 const char *semicolon_p
;
1637 def_dec_info
*def_dec_p
= (def_dec_info
*) xmalloc (sizeof (def_dec_info
));
1640 def_dec_p
->written
= 0;
1641 #endif /* !defined (UNPROTOIZE) */
1643 /* Start processing the line by picking off 5 pieces of information from
1644 the left hand end of the line. These are filename, line number,
1645 new/old/implicit flag (new = ANSI prototype format), definition or
1646 declaration flag, and extern/static flag). */
1648 check_aux_info (l
[0] == '/');
1649 check_aux_info (l
[1] == '*');
1650 check_aux_info (l
[2] == ' ');
1653 const char *filename_start
= p
= l
+ 3;
1658 filename
= (char *) alloca ((size_t) (p
- filename_start
) + 1);
1659 strncpy (filename
, filename_start
, (size_t) (p
- filename_start
));
1660 filename
[p
-filename_start
] = '\0';
1662 /* Call find_file to find the file_info record associated with the file
1663 which contained this particular def or dec item. Note that this call
1664 may cause a new file_info record to be created if this is the first time
1665 that we have ever known about this particular file.
1667 Note that we started out by forcing all of the base source file names
1668 (i.e. the names of the aux_info files with the .X stripped off) into the
1669 filenames hash table, and we simultaneously setup file_info records for
1670 all of these base file names (even if they may be useless later).
1671 The file_info records for all of these "base" file names (properly)
1672 act as file_info records for the "original" (i.e. un-included) files
1673 which were submitted to gcc for compilation (when the -aux-info
1674 option was used). */
1676 def_dec_p
->file
= find_file (abspath (invocation_filename
, filename
), is_syscalls
);
1680 const char *line_number_start
= ++p
;
1681 char line_number
[10];
1685 strncpy (line_number
, line_number_start
, (size_t) (p
- line_number_start
));
1686 line_number
[p
-line_number_start
] = '\0';
1687 def_dec_p
->line
= atoi (line_number
);
1690 /* Check that this record describes a new-style, old-style, or implicit
1691 definition or declaration. */
1693 p
++; /* Skip over the `:'. */
1694 check_aux_info ((*p
== 'N') || (*p
== 'O') || (*p
== 'I'));
1696 /* Is this a new style (ANSI prototyped) definition or declaration? */
1698 def_dec_p
->prototyped
= (*p
== 'N');
1702 /* Is this an implicit declaration? */
1704 def_dec_p
->is_implicit
= (*p
== 'I');
1706 #endif /* !defined (UNPROTOIZE) */
1710 check_aux_info ((*p
== 'C') || (*p
== 'F'));
1712 /* Is this item a function definition (F) or a declaration (C). Note that
1713 we treat item taken from the syscalls file as though they were function
1714 definitions regardless of what the stuff in the file says. */
1716 def_dec_p
->is_func_def
= ((*p
++ == 'F') || is_syscalls
);
1719 def_dec_p
->definition
= 0; /* Fill this in later if protoizing. */
1720 #endif /* !defined (UNPROTOIZE) */
1722 check_aux_info (*p
++ == ' ');
1723 check_aux_info (*p
++ == '*');
1724 check_aux_info (*p
++ == '/');
1725 check_aux_info (*p
++ == ' ');
1728 check_aux_info ((!strncmp (p
, "static", 6)) || (!strncmp (p
, "extern", 6)));
1729 #else /* !defined (UNPROTOIZE) */
1730 if (!strncmp (p
, "static", 6))
1731 def_dec_p
->is_static
= -1;
1732 else if (!strncmp (p
, "extern", 6))
1733 def_dec_p
->is_static
= 0;
1735 check_aux_info (0); /* Didn't find either `extern' or `static'. */
1736 #endif /* !defined (UNPROTOIZE) */
1739 const char *ansi_start
= p
;
1741 p
+= 6; /* Pass over the "static" or "extern". */
1743 /* We are now past the initial stuff. Search forward from here to find
1744 the terminating semicolon that should immediately follow the entire
1745 ANSI format function declaration. */
1752 /* Make a copy of the ansi declaration part of the line from the aux_info
1755 def_dec_p
->ansi_decl
1756 = dupnstr (ansi_start
, (size_t) ((semicolon_p
+1) - ansi_start
));
1758 /* Backup and point at the final right paren of the final argument list. */
1763 def_dec_p
->f_list_chain
= NULL
;
1764 #endif /* !defined (UNPROTOIZE) */
1766 while (p
!= ansi_start
&& (p
[-1] == ' ' || p
[-1] == '\t')) p
--;
1769 free_def_dec (def_dec_p
);
1774 /* Now isolate a whole set of formal argument lists, one-by-one. Normally,
1775 there will only be one list to isolate, but there could be more. */
1777 def_dec_p
->f_list_count
= 0;
1781 const char *left_paren_p
= find_corresponding_lparen (p
);
1784 f_list_chain_item
*cip
=
1785 (f_list_chain_item
*) xmalloc (sizeof (f_list_chain_item
));
1788 = dupnstr (left_paren_p
+ 1, (size_t) (p
- (left_paren_p
+1)));
1790 /* Add the new chain item at the head of the current list. */
1792 cip
->chain_next
= def_dec_p
->f_list_chain
;
1793 def_dec_p
->f_list_chain
= cip
;
1795 #endif /* !defined (UNPROTOIZE) */
1796 def_dec_p
->f_list_count
++;
1798 p
= left_paren_p
- 2;
1800 /* p must now point either to another right paren, or to the last
1801 character of the name of the function that was declared/defined.
1802 If p points to another right paren, then this indicates that we
1803 are dealing with multiple formals lists. In that case, there
1804 really should be another right paren preceding this right paren. */
1809 check_aux_info (*--p
== ')');
1814 const char *past_fn
= p
+ 1;
1816 check_aux_info (*past_fn
== ' ');
1818 /* Scan leftwards over the identifier that names the function. */
1820 while (is_id_char (*p
))
1824 /* p now points to the leftmost character of the function name. */
1827 char *fn_string
= (char *) alloca (past_fn
- p
+ 1);
1829 strncpy (fn_string
, p
, (size_t) (past_fn
- p
));
1830 fn_string
[past_fn
-p
] = '\0';
1831 def_dec_p
->hash_entry
= lookup (function_name_primary
, fn_string
);
1835 /* Look at all of the defs and decs for this function name that we have
1836 collected so far. If there is already one which is at the same
1837 line number in the same file, then we can discard this new def_dec_info
1840 As an extra assurance that any such pair of (nominally) identical
1841 function declarations are in fact identical, we also compare the
1842 ansi_decl parts of the lines from the aux_info files just to be on
1845 This comparison will fail if (for instance) the user was playing
1846 messy games with the preprocessor which ultimately causes one
1847 function declaration in one header file to look differently when
1848 that file is included by two (or more) other files. */
1851 const def_dec_info
*other
;
1853 for (other
= def_dec_p
->hash_entry
->ddip
; other
; other
= other
->next_for_func
)
1855 if (def_dec_p
->line
== other
->line
&& def_dec_p
->file
== other
->file
)
1857 if (strcmp (def_dec_p
->ansi_decl
, other
->ansi_decl
))
1859 fprintf (stderr
, "%s:%d: declaration of function `%s' takes different forms\n",
1860 def_dec_p
->file
->hash_entry
->symbol
,
1862 def_dec_p
->hash_entry
->symbol
);
1865 free_def_dec (def_dec_p
);
1873 /* If we are doing unprotoizing, we must now setup the pointers that will
1874 point to the K&R name list and to the K&R argument declarations list.
1876 Note that if this is only a function declaration, then we should not
1877 expect to find any K&R style formals list following the ANSI-style
1878 formals list. This is because GCC knows that such information is
1879 useless in the case of function declarations (function definitions
1880 are a different story however).
1882 Since we are unprotoizing, we don't need any such lists anyway.
1883 All we plan to do is to delete all characters between ()'s in any
1886 def_dec_p
->formal_names
= NULL
;
1887 def_dec_p
->formal_decls
= NULL
;
1889 if (def_dec_p
->is_func_def
)
1892 check_aux_info (*++p
== ' ');
1893 check_aux_info (*++p
== '/');
1894 check_aux_info (*++p
== '*');
1895 check_aux_info (*++p
== ' ');
1896 check_aux_info (*++p
== '(');
1899 const char *kr_names_start
= ++p
; /* Point just inside '('. */
1903 p
--; /* point to closing right paren */
1905 /* Make a copy of the K&R parameter names list. */
1907 def_dec_p
->formal_names
1908 = dupnstr (kr_names_start
, (size_t) (p
- kr_names_start
));
1911 check_aux_info (*++p
== ' ');
1914 /* p now points to the first character of the K&R style declarations
1915 list (if there is one) or to the star-slash combination that ends
1916 the comment in which such lists get embedded. */
1918 /* Make a copy of the K&R formal decls list and set the def_dec record
1921 if (*p
== '*') /* Are there no K&R declarations? */
1923 check_aux_info (*++p
== '/');
1924 def_dec_p
->formal_decls
= "";
1928 const char *kr_decls_start
= p
;
1930 while (p
[0] != '*' || p
[1] != '/')
1934 check_aux_info (*p
== ' ');
1936 def_dec_p
->formal_decls
1937 = dupnstr (kr_decls_start
, (size_t) (p
- kr_decls_start
));
1940 /* Handle a special case. If we have a function definition marked as
1941 being in "old" style, and if it's formal names list is empty, then
1942 it may actually have the string "void" in its real formals list
1943 in the original source code. Just to make sure, we will get setup
1944 to convert such things anyway.
1946 This kludge only needs to be here because of an insurmountable
1947 problem with generating .X files. */
1949 if (!def_dec_p
->prototyped
&& !*def_dec_p
->formal_names
)
1950 def_dec_p
->prototyped
= 1;
1953 /* Since we are unprotoizing, if this item is already in old (K&R) style,
1954 we can just ignore it. If that is true, throw away the itme now. */
1956 if (!def_dec_p
->prototyped
)
1958 free_def_dec (def_dec_p
);
1962 #endif /* defined (UNPROTOIZE) */
1964 /* Add this record to the head of the list of records pertaining to this
1965 particular function name. */
1967 def_dec_p
->next_for_func
= def_dec_p
->hash_entry
->ddip
;
1968 def_dec_p
->hash_entry
->ddip
= def_dec_p
;
1970 /* Add this new def_dec_info record to the sorted list of def_dec_info
1971 records for this file. Note that we don't have to worry about duplicates
1972 (caused by multiple inclusions of header files) here because we have
1973 already eliminated duplicates above. */
1975 if (!def_dec_p
->file
->defs_decs
)
1977 def_dec_p
->file
->defs_decs
= def_dec_p
;
1978 def_dec_p
->next_in_file
= NULL
;
1982 int line
= def_dec_p
->line
;
1983 const def_dec_info
*prev
= NULL
;
1984 const def_dec_info
*curr
= def_dec_p
->file
->defs_decs
;
1985 const def_dec_info
*next
= curr
->next_in_file
;
1987 while (next
&& (line
< curr
->line
))
1991 next
= next
->next_in_file
;
1993 if (line
>= curr
->line
)
1995 def_dec_p
->next_in_file
= curr
;
1997 ((NONCONST def_dec_info
*) prev
)->next_in_file
= def_dec_p
;
1999 def_dec_p
->file
->defs_decs
= def_dec_p
;
2001 else /* assert (next == NULL); */
2003 ((NONCONST def_dec_info
*) curr
)->next_in_file
= def_dec_p
;
2004 /* assert (next == NULL); */
2005 def_dec_p
->next_in_file
= next
;
2010 /* Set up the vector COMPILE_PARAMS which is the argument list for running GCC.
2011 Also set input_file_name_index and aux_info_file_name_index
2012 to the indices of the slots where the file names should go. */
2014 /* We initialize the vector by removing -g, -O, -S, -c, and -o options,
2015 and adding '-aux-info AUXFILE -S -o /dev/null INFILE' at the end. */
2018 munge_compile_params (params_list
)
2019 const char *params_list
;
2021 /* Build up the contents in a temporary vector
2022 that is so big that to has to be big enough. */
2023 const char **temp_params
2024 = (const char **) alloca ((strlen (params_list
) + 8) * sizeof (char *));
2025 int param_count
= 0;
2028 temp_params
[param_count
++] = compiler_file_name
;
2031 while (isspace (*params_list
))
2035 param
= params_list
;
2036 while (*params_list
&& !isspace (*params_list
))
2038 if (param
[0] != '-')
2039 temp_params
[param_count
++]
2040 = dupnstr (param
, (size_t) (params_list
- param
));
2049 break; /* Don't copy these. */
2051 while (isspace (*params_list
))
2053 while (*params_list
&& !isspace (*params_list
))
2057 temp_params
[param_count
++]
2058 = dupnstr (param
, (size_t) (params_list
- param
));
2064 temp_params
[param_count
++] = "-aux-info";
2066 /* Leave room for the aux-info file name argument. */
2067 aux_info_file_name_index
= param_count
;
2068 temp_params
[param_count
++] = NULL
;
2070 temp_params
[param_count
++] = "-S";
2071 temp_params
[param_count
++] = "-o";
2072 temp_params
[param_count
++] = "/dev/null";
2074 /* Leave room for the input file name argument. */
2075 input_file_name_index
= param_count
;
2076 temp_params
[param_count
++] = NULL
;
2077 /* Terminate the list. */
2078 temp_params
[param_count
++] = NULL
;
2080 /* Make a copy of the compile_params in heap space. */
2083 = (const char **) xmalloc (sizeof (char *) * (param_count
+1));
2084 memcpy (compile_params
, temp_params
, sizeof (char *) * param_count
);
2087 /* Do a recompilation for the express purpose of generating a new aux_info
2088 file to go with a specific base source file. */
2091 gen_aux_info_file (base_filename
)
2092 const char *base_filename
;
2096 if (!input_file_name_index
)
2097 munge_compile_params ("");
2099 /* Store the full source file name in the argument vector. */
2100 compile_params
[input_file_name_index
] = shortpath (NULL
, base_filename
);
2101 /* Add .X to source file name to get aux-info file name. */
2102 compile_params
[aux_info_file_name_index
]
2103 = savestring2 (compile_params
[input_file_name_index
],
2104 strlen (compile_params
[input_file_name_index
]),
2109 fprintf (stderr
, "%s: compiling `%s'\n",
2110 pname
, compile_params
[input_file_name_index
]);
2112 if (child_pid
= fork ())
2114 if (child_pid
== -1)
2116 fprintf (stderr
, "%s: could not fork process: %s\n",
2117 pname
, my_strerror(errno
));
2122 /* Print out the command line that the other process is now executing. */
2128 fputs ("\t", stderr
);
2129 for (arg
= compile_params
; *arg
; arg
++)
2131 fputs (*arg
, stderr
);
2132 fputc (' ', stderr
);
2134 fputc ('\n', stderr
);
2142 if (wait (&wait_status
) == -1)
2144 fprintf (stderr
, "%s: wait failed: %s\n",
2145 pname
, my_strerror(errno
));
2148 if (WIFSIGNALED (wait_status
))
2150 fprintf (stderr
, "%s: subprocess got fatal signal %d",
2151 pname
, WTERMSIG (wait_status
));
2154 if (WIFEXITED (wait_status
) && WEXITSTATUS (wait_status
) != 0)
2156 fprintf (stderr
, "%s: %s exited with status %d\n",
2157 pname
, base_filename
, WEXITSTATUS (wait_status
));
2165 if (my_execvp (compile_params
[0], (char *const *) compile_params
))
2167 int e
= errno
, f
= fileno (stderr
);
2168 write (f
, pname
, strlen (pname
));
2170 write (f
, compile_params
[0], strlen (compile_params
[0]));
2172 #ifdef HAVE_STRERROR
2174 char *p
= strerror(e
);
2175 write (f
, p
, strlen (p
));
2178 write (f
, sys_errlist
[e
], strlen (sys_errlist
[e
]));
2183 return 1; /* Never executed. */
2187 /* Read in all of the information contained in a single aux_info file.
2188 Save all of the important stuff for later. */
2191 process_aux_info_file (base_source_filename
, keep_it
, is_syscalls
)
2192 const char *base_source_filename
;
2196 size_t base_len
= strlen (base_source_filename
);
2197 char * aux_info_filename
2198 = (char *) alloca (base_len
+ strlen (aux_info_suffix
) + 1);
2199 char *aux_info_base
;
2200 char *aux_info_limit
;
2201 char *aux_info_relocated_name
;
2202 const char *aux_info_second_line
;
2203 time_t aux_info_mtime
;
2204 size_t aux_info_size
;
2207 /* Construct the aux_info filename from the base source filename. */
2209 strcpy (aux_info_filename
, base_source_filename
);
2210 strcat (aux_info_filename
, aux_info_suffix
);
2212 /* Check that the aux_info file exists and is readable. If it does not
2213 exist, try to create it (once only). */
2215 /* If file doesn't exist, set must_create.
2216 Likewise if it exists and we can read it but it is obsolete.
2217 Otherwise, report an error. */
2220 /* Come here with must_create set to 1 if file is out of date. */
2223 if (my_access (aux_info_filename
, R_OK
) == -1)
2225 if (errno
== ENOENT
)
2229 fprintf (stderr
, "%s: warning: missing SYSCALLS file `%s'\n",
2230 pname
, aux_info_filename
);
2237 fprintf (stderr
, "%s: can't read aux info file `%s': %s\n",
2238 pname
, shortpath (NULL
, aux_info_filename
),
2239 my_strerror(errno
));
2244 #if 0 /* There is code farther down to take care of this. */
2248 stat (aux_info_file_name
, &s1
);
2249 stat (base_source_file_name
, &s2
);
2250 if (s2
.st_mtime
> s1
.st_mtime
)
2255 /* If we need a .X file, create it, and verify we can read it. */
2258 if (!gen_aux_info_file (base_source_filename
))
2263 if (my_access (aux_info_filename
, R_OK
) == -1)
2265 fprintf (stderr
, "%s: can't read aux info file `%s': %s\n",
2266 pname
, shortpath (NULL
, aux_info_filename
),
2267 my_strerror(errno
));
2274 struct stat stat_buf
;
2276 /* Get some status information about this aux_info file. */
2278 if (my_stat (aux_info_filename
, &stat_buf
) == -1)
2280 fprintf (stderr
, "%s: can't get status of aux info file `%s': %s\n",
2281 pname
, shortpath (NULL
, aux_info_filename
),
2282 my_strerror(errno
));
2287 /* Check on whether or not this aux_info file is zero length. If it is,
2288 then just ignore it and return. */
2290 if ((aux_info_size
= stat_buf
.st_size
) == 0)
2293 /* Get the date/time of last modification for this aux_info file and
2294 remember it. We will have to check that any source files that it
2295 contains information about are at least this old or older. */
2297 aux_info_mtime
= stat_buf
.st_mtime
;
2301 /* Compare mod time with the .c file; update .X file if obsolete.
2302 The code later on can fail to check the .c file
2303 if it did not directly define any functions. */
2305 if (my_stat (base_source_filename
, &stat_buf
) == -1)
2307 fprintf (stderr
, "%s: can't get status of aux info file `%s': %s\n",
2308 pname
, shortpath (NULL
, base_source_filename
),
2309 my_strerror(errno
));
2313 if (stat_buf
.st_mtime
> aux_info_mtime
)
2324 /* Open the aux_info file. */
2326 if ((aux_info_file
= my_open (aux_info_filename
, O_RDONLY
, 0444 )) == -1)
2328 fprintf (stderr
, "%s: can't open aux info file `%s' for reading: %s\n",
2329 pname
, shortpath (NULL
, aux_info_filename
),
2330 my_strerror(errno
));
2334 /* Allocate space to hold the aux_info file in memory. */
2336 aux_info_base
= xmalloc (aux_info_size
+ 1);
2337 aux_info_limit
= aux_info_base
+ aux_info_size
;
2338 *aux_info_limit
= '\0';
2340 /* Read the aux_info file into memory. */
2342 if (safe_read (aux_info_file
, aux_info_base
, aux_info_size
) != aux_info_size
)
2344 fprintf (stderr
, "%s: error reading aux info file `%s': %s\n",
2345 pname
, shortpath (NULL
, aux_info_filename
),
2346 my_strerror(errno
));
2347 free (aux_info_base
);
2348 close (aux_info_file
);
2352 /* Close the aux info file. */
2354 if (close (aux_info_file
))
2356 fprintf (stderr
, "%s: error closing aux info file `%s': %s\n",
2357 pname
, shortpath (NULL
, aux_info_filename
),
2358 my_strerror(errno
));
2359 free (aux_info_base
);
2360 close (aux_info_file
);
2365 /* Delete the aux_info file (unless requested not to). If the deletion
2366 fails for some reason, don't even worry about it. */
2368 if (must_create
&& !keep_it
)
2369 if (my_unlink (aux_info_filename
) == -1)
2370 fprintf (stderr
, "%s: can't delete aux info file `%s': %s\n",
2371 pname
, shortpath (NULL
, aux_info_filename
),
2372 my_strerror(errno
));
2374 /* Save a pointer into the first line of the aux_info file which
2375 contains the filename of the directory from which the compiler
2376 was invoked when the associated source file was compiled.
2377 This information is used later to help create complete
2378 filenames out of the (potentially) relative filenames in
2379 the aux_info file. */
2382 char *p
= aux_info_base
;
2389 invocation_filename
= p
; /* Save a pointer to first byte of path. */
2394 while (*p
++ != '\n')
2396 aux_info_second_line
= p
;
2397 aux_info_relocated_name
= 0;
2398 if (invocation_filename
[0] != '/')
2400 /* INVOCATION_FILENAME is relative;
2401 append it to BASE_SOURCE_FILENAME's dir. */
2403 aux_info_relocated_name
= xmalloc (base_len
+ (p
-invocation_filename
));
2404 strcpy (aux_info_relocated_name
, base_source_filename
);
2405 dir_end
= rindex (aux_info_relocated_name
, '/');
2409 dir_end
= aux_info_relocated_name
;
2410 strcpy (dir_end
, invocation_filename
);
2411 invocation_filename
= aux_info_relocated_name
;
2417 const char *aux_info_p
;
2419 /* Do a pre-pass on the lines in the aux_info file, making sure that all
2420 of the source files referenced in there are at least as old as this
2421 aux_info file itself. If not, go back and regenerate the aux_info
2422 file anew. Don't do any of this for the syscalls file. */
2426 current_aux_info_lineno
= 2;
2428 for (aux_info_p
= aux_info_second_line
; *aux_info_p
; )
2430 if (referenced_file_is_newer (aux_info_p
, aux_info_mtime
))
2432 free (aux_info_base
);
2433 xfree (aux_info_relocated_name
);
2434 if (keep_it
&& my_unlink (aux_info_filename
) == -1)
2436 fprintf (stderr
, "%s: can't delete file `%s': %s\n",
2437 pname
, shortpath (NULL
, aux_info_filename
),
2438 my_strerror(errno
));
2445 /* Skip over the rest of this line to start of next line. */
2447 while (*aux_info_p
!= '\n')
2450 current_aux_info_lineno
++;
2454 /* Now do the real pass on the aux_info lines. Save their information in
2455 the in-core data base. */
2457 current_aux_info_lineno
= 2;
2459 for (aux_info_p
= aux_info_second_line
; *aux_info_p
;)
2461 char *unexpanded_line
= unexpand_if_needed (aux_info_p
);
2463 if (unexpanded_line
)
2465 save_def_or_dec (unexpanded_line
, is_syscalls
);
2466 free (unexpanded_line
);
2469 save_def_or_dec (aux_info_p
, is_syscalls
);
2471 /* Skip over the rest of this line and get to start of next line. */
2473 while (*aux_info_p
!= '\n')
2476 current_aux_info_lineno
++;
2480 free (aux_info_base
);
2481 xfree (aux_info_relocated_name
);
2486 /* Check an individual filename for a .c suffix. If the filename has this
2487 suffix, rename the file such that its suffix is changed to .C. This
2488 function implements the -C option. */
2492 const hash_table_entry
*hp
;
2494 const char *filename
= hp
->symbol
;
2495 int last_char_index
= strlen (filename
) - 1;
2496 char *const new_filename
= (char *) alloca (strlen (filename
) + 1);
2498 /* Note that we don't care here if the given file was converted or not. It
2499 is possible that the given file was *not* converted, simply because there
2500 was nothing in it which actually required conversion. Even in this case,
2501 we want to do the renaming. Note that we only rename files with the .c
2504 if (filename
[last_char_index
] != 'c' || filename
[last_char_index
-1] != '.')
2507 strcpy (new_filename
, filename
);
2508 new_filename
[last_char_index
] = 'C';
2510 if (my_link (filename
, new_filename
) == -1)
2512 fprintf (stderr
, "%s: warning: can't link file `%s' to `%s': %s\n",
2513 pname
, shortpath (NULL
, filename
),
2514 shortpath (NULL
, new_filename
), my_strerror(errno
));
2519 if (my_unlink (filename
) == -1)
2521 fprintf (stderr
, "%s: warning: can't delete file `%s': %s\n",
2522 pname
, shortpath (NULL
, filename
), my_strerror(errno
));
2528 #endif /* !defined (UNPROTOIZE) */
2530 /* Take the list of definitions and declarations attached to a particular
2531 file_info node and reverse the order of the list. This should get the
2532 list into an order such that the item with the lowest associated line
2533 number is nearest the head of the list. When these lists are originally
2534 built, they are in the opposite order. We want to traverse them in
2535 normal line number order later (i.e. lowest to highest) so reverse the
2539 reverse_def_dec_list (hp
)
2540 const hash_table_entry
*hp
;
2542 file_info
*file_p
= hp
->fip
;
2543 def_dec_info
*prev
= NULL
;
2544 def_dec_info
*current
= (def_dec_info
*)file_p
->defs_decs
;
2547 return; /* no list to reverse */
2550 if (! (current
= (def_dec_info
*)current
->next_in_file
))
2551 return; /* can't reverse a single list element */
2553 prev
->next_in_file
= NULL
;
2557 def_dec_info
*next
= (def_dec_info
*)current
->next_in_file
;
2559 current
->next_in_file
= prev
;
2564 file_p
->defs_decs
= prev
;
2569 /* Find the (only?) extern definition for a particular function name, starting
2570 from the head of the linked list of entries for the given name. If we
2571 cannot find an extern definition for the given function name, issue a
2572 warning and scrounge around for the next best thing, i.e. an extern
2573 function declaration with a prototype attached to it. Note that we only
2574 allow such substitutions for extern declarations and never for static
2575 declarations. That's because the only reason we allow them at all is
2576 to let un-prototyped function declarations for system-supplied library
2577 functions get their prototypes from our own extra SYSCALLS.c.X file which
2578 contains all of the correct prototypes for system functions. */
2580 static const def_dec_info
*
2581 find_extern_def (head
, user
)
2582 const def_dec_info
*head
;
2583 const def_dec_info
*user
;
2585 const def_dec_info
*dd_p
;
2586 const def_dec_info
*extern_def_p
= NULL
;
2587 int conflict_noted
= 0;
2589 /* Don't act too stupid here. Somebody may try to convert an entire system
2590 in one swell fwoop (rather than one program at a time, as should be done)
2591 and in that case, we may find that there are multiple extern definitions
2592 of a given function name in the entire set of source files that we are
2593 converting. If however one of these definitions resides in exactly the
2594 same source file as the reference we are trying to satisfy then in that
2595 case it would be stupid for us to fail to realize that this one definition
2596 *must* be the precise one we are looking for.
2598 To make sure that we don't miss an opportunity to make this "same file"
2599 leap of faith, we do a prescan of the list of records relating to the
2600 given function name, and we look (on this first scan) *only* for a
2601 definition of the function which is in the same file as the reference
2602 we are currently trying to satisfy. */
2604 for (dd_p
= head
; dd_p
; dd_p
= dd_p
->next_for_func
)
2605 if (dd_p
->is_func_def
&& !dd_p
->is_static
&& dd_p
->file
== user
->file
)
2608 /* Now, since we have not found a definition in the same file as the
2609 reference, we scan the list again and consider all possibilities from
2610 all files. Here we may get conflicts with the things listed in the
2611 SYSCALLS.c.X file, but if that happens it only means that the source
2612 code being converted contains its own definition of a function which
2613 could have been supplied by libc.a. In such cases, we should avoid
2614 issuing the normal warning, and defer to the definition given in the
2617 for (dd_p
= head
; dd_p
; dd_p
= dd_p
->next_for_func
)
2618 if (dd_p
->is_func_def
&& !dd_p
->is_static
)
2620 if (!extern_def_p
) /* Previous definition? */
2621 extern_def_p
= dd_p
; /* Remember the first definition found. */
2624 /* Ignore definition just found if it came from SYSCALLS.c.X. */
2626 if (is_syscalls_file (dd_p
->file
))
2629 /* Quietly replace the definition previously found with the one
2630 just found if the previous one was from SYSCALLS.c.X. */
2632 if (is_syscalls_file (extern_def_p
->file
))
2634 extern_def_p
= dd_p
;
2638 /* If we get here, then there is a conflict between two function
2639 declarations for the same function, both of which came from the
2642 if (!conflict_noted
) /* first time we noticed? */
2645 fprintf (stderr
, "%s: conflicting extern definitions of '%s'\n",
2646 pname
, head
->hash_entry
->symbol
);
2649 fprintf (stderr
, "%s: declarations of '%s' will not be converted\n",
2650 pname
, head
->hash_entry
->symbol
);
2651 fprintf (stderr
, "%s: conflict list for '%s' follows:\n",
2652 pname
, head
->hash_entry
->symbol
);
2653 fprintf (stderr
, "%s: %s(%d): %s\n",
2655 shortpath (NULL
, extern_def_p
->file
->hash_entry
->symbol
),
2656 extern_def_p
->line
, extern_def_p
->ansi_decl
);
2660 fprintf (stderr
, "%s: %s(%d): %s\n",
2662 shortpath (NULL
, dd_p
->file
->hash_entry
->symbol
),
2663 dd_p
->line
, dd_p
->ansi_decl
);
2667 /* We want to err on the side of caution, so if we found multiple conflicting
2668 definitions for the same function, treat this as being that same as if we
2669 had found no definitions (i.e. return NULL). */
2676 /* We have no definitions for this function so do the next best thing.
2677 Search for an extern declaration already in prototype form. */
2679 for (dd_p
= head
; dd_p
; dd_p
= dd_p
->next_for_func
)
2680 if (!dd_p
->is_func_def
&& !dd_p
->is_static
&& dd_p
->prototyped
)
2682 extern_def_p
= dd_p
; /* save a pointer to the definition */
2684 fprintf (stderr
, "%s: warning: using formals list from %s(%d) for function `%s'\n",
2686 shortpath (NULL
, dd_p
->file
->hash_entry
->symbol
),
2687 dd_p
->line
, dd_p
->hash_entry
->symbol
);
2691 /* Gripe about unprototyped function declarations that we found no
2692 corresponding definition (or other source of prototype information)
2695 Gripe even if the unprototyped declaration we are worried about
2696 exists in a file in one of the "system" include directories. We
2697 can gripe about these because we should have at least found a
2698 corresponding (pseudo) definition in the SYSCALLS.c.X file. If we
2699 didn't, then that means that the SYSCALLS.c.X file is missing some
2700 needed prototypes for this particular system. That is worth telling
2705 const char *file
= user
->file
->hash_entry
->symbol
;
2708 if (in_system_include_dir (file
))
2710 /* Why copy this string into `needed' at all?
2711 Why not just use user->ansi_decl without copying? */
2712 char *needed
= (char *) alloca (strlen (user
->ansi_decl
) + 1);
2715 strcpy (needed
, user
->ansi_decl
);
2716 p
= (NONCONST
char *) substr (needed
, user
->hash_entry
->symbol
)
2717 + strlen (user
->hash_entry
->symbol
) + 2;
2718 /* Avoid having ??? in the string. */
2724 fprintf (stderr
, "%s: %d: `%s' used but missing from SYSCALLS\n",
2725 shortpath (NULL
, file
), user
->line
,
2726 needed
+7); /* Don't print "extern " */
2730 fprintf (stderr
, "%s: %d: warning: no extern definition for `%s'\n",
2731 shortpath (NULL
, file
), user
->line
,
2732 user
->hash_entry
->symbol
);
2736 return extern_def_p
;
2739 /* Find the (only?) static definition for a particular function name in a
2740 given file. Here we get the function-name and the file info indirectly
2741 from the def_dec_info record pointer which is passed in. */
2743 static const def_dec_info
*
2744 find_static_definition (user
)
2745 const def_dec_info
*user
;
2747 const def_dec_info
*head
= user
->hash_entry
->ddip
;
2748 const def_dec_info
*dd_p
;
2749 int num_static_defs
= 0;
2750 const def_dec_info
*static_def_p
= NULL
;
2752 for (dd_p
= head
; dd_p
; dd_p
= dd_p
->next_for_func
)
2753 if (dd_p
->is_func_def
&& dd_p
->is_static
&& (dd_p
->file
== user
->file
))
2755 static_def_p
= dd_p
; /* save a pointer to the definition */
2758 if (num_static_defs
== 0)
2761 fprintf (stderr
, "%s: warning: no static definition for `%s' in file `%s'\n",
2762 pname
, head
->hash_entry
->symbol
,
2763 shortpath (NULL
, user
->file
->hash_entry
->symbol
));
2765 else if (num_static_defs
> 1)
2767 fprintf (stderr
, "%s: multiple static defs of `%s' in file `%s'\n",
2768 pname
, head
->hash_entry
->symbol
,
2769 shortpath (NULL
, user
->file
->hash_entry
->symbol
));
2772 return static_def_p
;
2775 /* Find good prototype style formal argument lists for all of the function
2776 declarations which didn't have them before now.
2778 To do this we consider each function name one at a time. For each function
2779 name, we look at the items on the linked list of def_dec_info records for
2780 that particular name.
2782 Somewhere on this list we should find one (and only one) def_dec_info
2783 record which represents the actual function definition, and this record
2784 should have a nice formal argument list already associated with it.
2786 Thus, all we have to do is to connect up all of the other def_dec_info
2787 records for this particular function name to the special one which has
2788 the full-blown formals list.
2790 Of course it is a little more complicated than just that. See below for
2794 connect_defs_and_decs (hp
)
2795 const hash_table_entry
*hp
;
2797 const def_dec_info
*dd_p
;
2798 const def_dec_info
*extern_def_p
= NULL
;
2799 int first_extern_reference
= 1;
2801 /* Traverse the list of definitions and declarations for this particular
2802 function name. For each item on the list, if it is a function
2803 definition (either old style or new style) then GCC has already been
2804 kind enough to produce a prototype for us, and it is associated with
2805 the item already, so declare the item as its own associated "definition".
2807 Also, for each item which is only a function declaration, but which
2808 nonetheless has its own prototype already (obviously supplied by the user)
2809 declare the item as it's own definition.
2811 Note that when/if there are multiple user-supplied prototypes already
2812 present for multiple declarations of any given function, these multiple
2813 prototypes *should* all match exactly with one another and with the
2814 prototype for the actual function definition. We don't check for this
2815 here however, since we assume that the compiler must have already done
2816 this consistency checking when it was creating the .X files. */
2818 for (dd_p
= hp
->ddip
; dd_p
; dd_p
= dd_p
->next_for_func
)
2819 if (dd_p
->prototyped
)
2820 ((NONCONST def_dec_info
*) dd_p
)->definition
= dd_p
;
2822 /* Traverse the list of definitions and declarations for this particular
2823 function name. For each item on the list, if it is an extern function
2824 declaration and if it has no associated definition yet, go try to find
2825 the matching extern definition for the declaration.
2827 When looking for the matching function definition, warn the user if we
2830 If we find more that one function definition also issue a warning.
2832 Do the search for the matching definition only once per unique function
2833 name (and only when absolutely needed) so that we can avoid putting out
2834 redundant warning messages, and so that we will only put out warning
2835 messages when there is actually a reference (i.e. a declaration) for
2836 which we need to find a matching definition. */
2838 for (dd_p
= hp
->ddip
; dd_p
; dd_p
= dd_p
->next_for_func
)
2839 if (!dd_p
->is_func_def
&& !dd_p
->is_static
&& !dd_p
->definition
)
2841 if (first_extern_reference
)
2843 extern_def_p
= find_extern_def (hp
->ddip
, dd_p
);
2844 first_extern_reference
= 0;
2846 ((NONCONST def_dec_info
*) dd_p
)->definition
= extern_def_p
;
2849 /* Traverse the list of definitions and declarations for this particular
2850 function name. For each item on the list, if it is a static function
2851 declaration and if it has no associated definition yet, go try to find
2852 the matching static definition for the declaration within the same file.
2854 When looking for the matching function definition, warn the user if we
2855 fail to find one in the same file with the declaration, and refuse to
2856 convert this kind of cross-file static function declaration. After all,
2857 this is stupid practice and should be discouraged.
2859 We don't have to worry about the possibility that there is more than one
2860 matching function definition in the given file because that would have
2861 been flagged as an error by the compiler.
2863 Do the search for the matching definition only once per unique
2864 function-name/source-file pair (and only when absolutely needed) so that
2865 we can avoid putting out redundant warning messages, and so that we will
2866 only put out warning messages when there is actually a reference (i.e. a
2867 declaration) for which we actually need to find a matching definition. */
2869 for (dd_p
= hp
->ddip
; dd_p
; dd_p
= dd_p
->next_for_func
)
2870 if (!dd_p
->is_func_def
&& dd_p
->is_static
&& !dd_p
->definition
)
2872 const def_dec_info
*dd_p2
;
2873 const def_dec_info
*static_def
;
2875 /* We have now found a single static declaration for which we need to
2876 find a matching definition. We want to minimize the work (and the
2877 number of warnings), so we will find an appropriate (matching)
2878 static definition for this declaration, and then distribute it
2879 (as the definition for) any and all other static declarations
2880 for this function name which occur within the same file, and which
2881 do not already have definitions.
2883 Note that a trick is used here to prevent subsequent attempts to
2884 call find_static_definition for a given function-name & file
2885 if the first such call returns NULL. Essentially, we convert
2886 these NULL return values to -1, and put the -1 into the definition
2887 field for each other static declaration from the same file which
2888 does not already have an associated definition.
2889 This makes these other static declarations look like they are
2890 actually defined already when the outer loop here revisits them
2891 later on. Thus, the outer loop will skip over them. Later, we
2892 turn the -1's back to NULL's. */
2894 ((NONCONST def_dec_info
*) dd_p
)->definition
=
2895 (static_def
= find_static_definition (dd_p
))
2897 : (const def_dec_info
*) -1;
2899 for (dd_p2
= dd_p
->next_for_func
; dd_p2
; dd_p2
= dd_p2
->next_for_func
)
2900 if (!dd_p2
->is_func_def
&& dd_p2
->is_static
2901 && !dd_p2
->definition
&& (dd_p2
->file
== dd_p
->file
))
2902 ((NONCONST def_dec_info
*)dd_p2
)->definition
= dd_p
->definition
;
2905 /* Convert any dummy (-1) definitions we created in the step above back to
2906 NULL's (as they should be). */
2908 for (dd_p
= hp
->ddip
; dd_p
; dd_p
= dd_p
->next_for_func
)
2909 if (dd_p
->definition
== (def_dec_info
*) -1)
2910 ((NONCONST def_dec_info
*) dd_p
)->definition
= NULL
;
2913 #endif /* !defined (UNPROTOIZE) */
2915 /* Give a pointer into the clean text buffer, return a number which is the
2916 original source line number that the given pointer points into. */
2919 identify_lineno (clean_p
)
2920 const char *clean_p
;
2925 for (scan_p
= clean_text_base
; scan_p
<= clean_p
; scan_p
++)
2926 if (*scan_p
== '\n')
2931 /* Issue an error message and give up on doing this particular edit. */
2934 declare_source_confusing (clean_p
)
2935 const char *clean_p
;
2940 fprintf (stderr
, "%s: %d: warning: source too confusing\n",
2941 shortpath (NULL
, convert_filename
), last_known_line_number
);
2943 fprintf (stderr
, "%s: %d: warning: source too confusing\n",
2944 shortpath (NULL
, convert_filename
),
2945 identify_lineno (clean_p
));
2947 longjmp (source_confusion_recovery
, 1);
2950 /* Check that a condition which is expected to be true in the original source
2951 code is in fact true. If not, issue an error message and give up on
2952 converting this particular source file. */
2955 check_source (cond
, clean_p
)
2957 const char *clean_p
;
2960 declare_source_confusing (clean_p
);
2963 /* If we think of the in-core cleaned text buffer as a memory mapped
2964 file (with the variable last_known_line_start acting as sort of a
2965 file pointer) then we can imagine doing "seeks" on the buffer. The
2966 following routine implements a kind of "seek" operation for the in-core
2967 (cleaned) copy of the source file. When finished, it returns a pointer to
2968 the start of a given (numbered) line in the cleaned text buffer.
2970 Note that protoize only has to "seek" in the forward direction on the
2971 in-core cleaned text file buffers, and it never needs to back up.
2973 This routine is made a little bit faster by remembering the line number
2974 (and pointer value) supplied (and returned) from the previous "seek".
2975 This prevents us from always having to start all over back at the top
2976 of the in-core cleaned buffer again. */
2982 if (n
< last_known_line_number
)
2985 while (n
> last_known_line_number
)
2987 while (*last_known_line_start
!= '\n')
2988 check_source (++last_known_line_start
< clean_text_limit
, 0);
2989 last_known_line_start
++;
2990 last_known_line_number
++;
2992 return last_known_line_start
;
2995 /* Given a pointer to a character in the cleaned text buffer, return a pointer
2996 to the next non-whitespace character which follows it. */
2999 forward_to_next_token_char (ptr
)
3002 for (++ptr
; isspace (*ptr
); check_source (++ptr
< clean_text_limit
, 0))
3007 /* Copy a chunk of text of length `len' and starting at `str' to the current
3008 output buffer. Note that all attempts to add stuff to the current output
3009 buffer ultimately go through here. */
3012 output_bytes (str
, len
)
3016 if ((repl_write_ptr
+ 1) + len
>= repl_text_limit
)
3018 size_t new_size
= (repl_text_limit
- repl_text_base
) << 1;
3019 char *new_buf
= (char *) xrealloc (repl_text_base
, new_size
);
3021 repl_write_ptr
= new_buf
+ (repl_write_ptr
- repl_text_base
);
3022 repl_text_base
= new_buf
;
3023 repl_text_limit
= new_buf
+ new_size
;
3025 memcpy (repl_write_ptr
+ 1, str
, len
);
3026 repl_write_ptr
+= len
;
3029 /* Copy all bytes (except the trailing null) of a null terminated string to
3030 the current output buffer. */
3036 output_bytes (str
, strlen (str
));
3039 /* Copy some characters from the original text buffer to the current output
3042 This routine takes a pointer argument `p' which is assumed to be a pointer
3043 into the cleaned text buffer. The bytes which are copied are the `original'
3044 equivalents for the set of bytes between the last value of `clean_read_ptr'
3045 and the argument value `p'.
3047 The set of bytes copied however, comes *not* from the cleaned text buffer,
3048 but rather from the direct counterparts of these bytes within the original
3051 Thus, when this function is called, some bytes from the original text
3052 buffer (which may include original comments and preprocessing directives)
3053 will be copied into the output buffer.
3055 Note that the request implied when this routine is called includes the
3056 byte pointed to by the argument pointer `p'. */
3062 size_t copy_length
= (size_t) (p
- clean_read_ptr
);
3063 const char *copy_start
= orig_text_base
+(clean_read_ptr
-clean_text_base
)+1;
3065 if (copy_length
== 0)
3068 output_bytes (copy_start
, copy_length
);
3072 /* Given a pointer to a def_dec_info record which represents some form of
3073 definition of a function (perhaps a real definition, or in lieu of that
3074 perhaps just a declaration with a full prototype) return true if this
3075 function is one which we should avoid converting. Return false
3079 other_variable_style_function (ansi_header
)
3080 const char *ansi_header
;
3084 /* See if we have a stdarg function, or a function which has stdarg style
3085 parameters or a stdarg style return type. */
3087 return substr (ansi_header
, "...") != 0;
3089 #else /* !defined (UNPROTOIZE) */
3091 /* See if we have a varargs function, or a function which has varargs style
3092 parameters or a varargs style return type. */
3095 int len
= strlen (varargs_style_indicator
);
3097 for (p
= ansi_header
; p
; )
3099 const char *candidate
;
3101 if ((candidate
= substr (p
, varargs_style_indicator
)) == 0)
3104 if (!is_id_char (candidate
[-1]) && !is_id_char (candidate
[len
]))
3110 #endif /* !defined (UNPROTOIZE) */
3113 /* Do the editing operation specifically for a function "declaration". Note
3114 that editing for function "definitions" are handled in a separate routine
3118 edit_fn_declaration (def_dec_p
, clean_text_p
)
3119 const def_dec_info
*def_dec_p
;
3120 const char *volatile clean_text_p
;
3122 const char *start_formals
;
3123 const char *end_formals
;
3124 const char *function_to_edit
= def_dec_p
->hash_entry
->symbol
;
3125 size_t func_name_len
= strlen (function_to_edit
);
3126 const char *end_of_fn_name
;
3130 const f_list_chain_item
*this_f_list_chain_item
;
3131 const def_dec_info
*definition
= def_dec_p
->definition
;
3133 /* If we are protoizing, and if we found no corresponding definition for
3134 this particular function declaration, then just leave this declaration
3135 exactly as it is. */
3140 /* If we are protoizing, and if the corresponding definition that we found
3141 for this particular function declaration defined an old style varargs
3142 function, then we want to issue a warning and just leave this function
3143 declaration unconverted. */
3145 if (other_variable_style_function (definition
->ansi_decl
))
3148 fprintf (stderr
, "%s: %d: warning: varargs function declaration not converted\n",
3149 shortpath (NULL
, def_dec_p
->file
->hash_entry
->symbol
),
3154 #endif /* !defined (UNPROTOIZE) */
3156 /* Setup here to recover from confusing source code detected during this
3157 particular "edit". */
3160 if (setjmp (source_confusion_recovery
))
3162 restore_pointers ();
3163 fprintf (stderr
, "%s: declaration of function `%s' not converted\n",
3164 pname
, function_to_edit
);
3168 /* We are editing a function declaration. The line number we did a seek to
3169 contains the comma or semicolon which follows the declaration. Our job
3170 now is to scan backwards looking for the function name. This name *must*
3171 be followed by open paren (ignoring whitespace, of course). We need to
3172 replace everything between that open paren and the corresponding closing
3173 paren. If we are protoizing, we need to insert the prototype-style
3174 formals lists. If we are unprotoizing, we need to just delete everything
3175 between the pairs of opening and closing parens. */
3177 /* First move up to the end of the line. */
3179 while (*clean_text_p
!= '\n')
3180 check_source (++clean_text_p
< clean_text_limit
, 0);
3181 clean_text_p
--; /* Point to just before the newline character. */
3183 /* Now we can scan backwards for the function name. */
3189 /* Scan leftwards until we find some character which can be
3190 part of an identifier. */
3192 while (!is_id_char (*clean_text_p
))
3193 check_source (--clean_text_p
> clean_read_ptr
, 0);
3195 /* Scan backwards until we find a char that cannot be part of an
3198 while (is_id_char (*clean_text_p
))
3199 check_source (--clean_text_p
> clean_read_ptr
, 0);
3201 /* Having found an "id break", see if the following id is the one
3202 that we are looking for. If so, then exit from this loop. */
3204 if (!strncmp (clean_text_p
+1, function_to_edit
, func_name_len
))
3206 char ch
= *(clean_text_p
+ 1 + func_name_len
);
3208 /* Must also check to see that the name in the source text
3209 ends where it should (in order to prevent bogus matches
3210 on similar but longer identifiers. */
3212 if (! is_id_char (ch
))
3213 break; /* exit from loop */
3217 /* We have now found the first perfect match for the function name in
3218 our backward search. This may or may not be the actual function
3219 name at the start of the actual function declaration (i.e. we could
3220 have easily been mislead). We will try to avoid getting fooled too
3221 often by looking forward for the open paren which should follow the
3222 identifier we just found. We ignore whitespace while hunting. If
3223 the next non-whitespace byte we see is *not* an open left paren,
3224 then we must assume that we have been fooled and we start over
3225 again accordingly. Note that there is no guarantee, that even if
3226 we do see the open paren, that we are in the right place.
3227 Programmers do the strangest things sometimes! */
3229 end_of_fn_name
= clean_text_p
+ strlen (def_dec_p
->hash_entry
->symbol
);
3230 start_formals
= forward_to_next_token_char (end_of_fn_name
);
3232 while (*start_formals
!= '(');
3234 /* start_of_formals now points to the opening left paren which immediately
3235 follows the name of the function. */
3237 /* Note that there may be several formals lists which need to be modified
3238 due to the possibility that the return type of this function is a
3239 pointer-to-function type. If there are several formals lists, we
3240 convert them in left-to-right order here. */
3243 this_f_list_chain_item
= definition
->f_list_chain
;
3244 #endif /* !defined (UNPROTOIZE) */
3251 end_formals
= start_formals
+ 1;
3253 for (; depth
; check_source (++end_formals
< clean_text_limit
, 0))
3255 switch (*end_formals
)
3268 /* end_formals now points to the closing right paren of the formals
3269 list whose left paren is pointed to by start_formals. */
3271 /* Now, if we are protoizing, we insert the new ANSI-style formals list
3272 attached to the associated definition of this function. If however
3273 we are unprotoizing, then we simply delete any formals list which
3276 output_up_to (start_formals
);
3278 if (this_f_list_chain_item
)
3280 output_string (this_f_list_chain_item
->formals_list
);
3281 this_f_list_chain_item
= this_f_list_chain_item
->chain_next
;
3286 fprintf (stderr
, "%s: warning: too many parameter lists in declaration of `%s'\n",
3287 pname
, def_dec_p
->hash_entry
->symbol
);
3288 check_source (0, end_formals
); /* leave the declaration intact */
3290 #endif /* !defined (UNPROTOIZE) */
3291 clean_read_ptr
= end_formals
- 1;
3293 /* Now see if it looks like there may be another formals list associated
3294 with the function declaration that we are converting (following the
3295 formals list that we just converted. */
3298 const char *another_r_paren
= forward_to_next_token_char (end_formals
);
3300 if ((*another_r_paren
!= ')')
3301 || (*(start_formals
= forward_to_next_token_char (another_r_paren
)) != '('))
3304 if (this_f_list_chain_item
)
3307 fprintf (stderr
, "\n%s: warning: too few parameter lists in declaration of `%s'\n",
3308 pname
, def_dec_p
->hash_entry
->symbol
);
3309 check_source (0, start_formals
); /* leave the decl intact */
3311 #endif /* !defined (UNPROTOIZE) */
3317 /* There does appear to be yet another formals list, so loop around
3318 again, and convert it also. */
3322 /* Edit a whole group of formals lists, starting with the rightmost one
3323 from some set of formals lists. This routine is called once (from the
3324 outside) for each function declaration which is converted. It is
3325 recursive however, and it calls itself once for each remaining formal
3326 list that lies to the left of the one it was originally called to work
3327 on. Thus, a whole set gets done in right-to-left order.
3329 This routine returns non-zero if it thinks that it should not be trying
3330 to convert this particular function definition (because the name of the
3331 function doesn't match the one expected). */
3334 edit_formals_lists (end_formals
, f_list_count
, def_dec_p
)
3335 const char *end_formals
;
3336 unsigned int f_list_count
;
3337 const def_dec_info
*def_dec_p
;
3339 const char *start_formals
;
3342 start_formals
= end_formals
- 1;
3344 for (; depth
; check_source (--start_formals
> clean_read_ptr
, 0))
3346 switch (*start_formals
)
3358 /* start_formals now points to the opening left paren of the formals list. */
3364 const char *next_end
;
3366 /* There should be more formal lists to the left of here. */
3368 next_end
= start_formals
- 1;
3369 check_source (next_end
> clean_read_ptr
, 0);
3370 while (isspace (*next_end
))
3371 check_source (--next_end
> clean_read_ptr
, 0);
3372 check_source (*next_end
== ')', next_end
);
3373 check_source (--next_end
> clean_read_ptr
, 0);
3374 check_source (*next_end
== ')', next_end
);
3375 if (edit_formals_lists (next_end
, f_list_count
, def_dec_p
))
3379 /* Check that the function name in the header we are working on is the same
3380 as the one we would expect to find. If not, issue a warning and return
3383 if (f_list_count
== 0)
3385 const char *expected
= def_dec_p
->hash_entry
->symbol
;
3386 const char *func_name_start
;
3387 const char *func_name_limit
;
3388 size_t func_name_len
;
3390 for (func_name_limit
= start_formals
-1; isspace (*func_name_limit
); )
3391 check_source (--func_name_limit
> clean_read_ptr
, 0);
3393 for (func_name_start
= func_name_limit
++;
3394 is_id_char (*func_name_start
);
3396 check_source (func_name_start
> clean_read_ptr
, 0);
3398 func_name_len
= func_name_limit
- func_name_start
;
3399 if (func_name_len
== 0)
3400 check_source (0, func_name_start
);
3401 if (func_name_len
!= strlen (expected
)
3402 || strncmp (func_name_start
, expected
, func_name_len
))
3404 fprintf (stderr
, "%s: %d: warning: found `%s' but expected `%s'\n",
3405 shortpath (NULL
, def_dec_p
->file
->hash_entry
->symbol
),
3406 identify_lineno (func_name_start
),
3407 dupnstr (func_name_start
, func_name_len
),
3413 output_up_to (start_formals
);
3416 if (f_list_count
== 0)
3417 output_string (def_dec_p
->formal_names
);
3418 #else /* !defined (UNPROTOIZE) */
3420 unsigned f_list_depth
;
3421 const f_list_chain_item
*flci_p
= def_dec_p
->f_list_chain
;
3423 /* At this point, the current value of f_list count says how many
3424 links we have to follow through the f_list_chain to get to the
3425 particular formals list that we need to output next. */
3427 for (f_list_depth
= 0; f_list_depth
< f_list_count
; f_list_depth
++)
3428 flci_p
= flci_p
->chain_next
;
3429 output_string (flci_p
->formals_list
);
3431 #endif /* !defined (UNPROTOIZE) */
3433 clean_read_ptr
= end_formals
- 1;
3437 /* Given a pointer to a byte in the clean text buffer which points to the
3438 beginning of a line that contains a "follower" token for a function
3439 definition header, do whatever is necessary to find the right closing
3440 paren for the rightmost formals list of the function definition header.
3444 find_rightmost_formals_list (clean_text_p
)
3445 const char *clean_text_p
;
3447 const char *end_formals
;
3449 /* We are editing a function definition. The line number we did a seek
3450 to contains the first token which immediately follows the entire set of
3451 formals lists which are part of this particular function definition
3454 Our job now is to scan leftwards in the clean text looking for the
3455 right-paren which is at the end of the function header's rightmost
3458 If we ignore whitespace, this right paren should be the first one we
3459 see which is (ignoring whitespace) immediately followed either by the
3460 open curly-brace beginning the function body or by an alphabetic
3461 character (in the case where the function definition is in old (K&R)
3462 style and there are some declarations of formal parameters). */
3464 /* It is possible that the right paren we are looking for is on the
3465 current line (together with its following token). Just in case that
3466 might be true, we start out here by skipping down to the right end of
3467 the current line before starting our scan. */
3469 for (end_formals
= clean_text_p
; *end_formals
!= '\n'; end_formals
++)
3475 /* Now scan backwards while looking for the right end of the rightmost
3476 formals list associated with this function definition. */
3480 const char *l_brace_p
;
3482 /* Look leftward and try to find a right-paren. */
3484 while (*end_formals
!= ')')
3486 if (isspace (*end_formals
))
3487 while (isspace (*end_formals
))
3488 check_source (--end_formals
> clean_read_ptr
, 0);
3490 check_source (--end_formals
> clean_read_ptr
, 0);
3493 ch
= *(l_brace_p
= forward_to_next_token_char (end_formals
));
3494 /* Since we are unprotoizing an ANSI-style (prototyped) function
3495 definition, there had better not be anything (except whitespace)
3496 between the end of the ANSI formals list and the beginning of the
3497 function body (i.e. the '{'). */
3499 check_source (ch
== '{', l_brace_p
);
3502 #else /* !defined (UNPROTOIZE) */
3504 /* Now scan backwards while looking for the right end of the rightmost
3505 formals list associated with this function definition. */
3510 const char *l_brace_p
;
3512 /* Look leftward and try to find a right-paren. */
3514 while (*end_formals
!= ')')
3516 if (isspace (*end_formals
))
3517 while (isspace (*end_formals
))
3518 check_source (--end_formals
> clean_read_ptr
, 0);
3520 check_source (--end_formals
> clean_read_ptr
, 0);
3523 ch
= *(l_brace_p
= forward_to_next_token_char (end_formals
));
3525 /* Since it is possible that we found a right paren before the starting
3526 '{' of the body which IS NOT the one at the end of the real K&R
3527 formals list (say for instance, we found one embedded inside one of
3528 the old K&R formal parameter declarations) we have to check to be
3529 sure that this is in fact the right paren that we were looking for.
3531 The one we were looking for *must* be followed by either a '{' or
3532 by an alphabetic character, while others *cannot* validly be followed
3533 by such characters. */
3535 if ((ch
== '{') || isalpha (ch
))
3538 /* At this point, we have found a right paren, but we know that it is
3539 not the one we were looking for, so backup one character and keep
3542 check_source (--end_formals
> clean_read_ptr
, 0);
3545 #endif /* !defined (UNPROTOIZE) */
3552 /* Insert into the output file a totally new declaration for a function
3553 which (up until now) was being called from within the current block
3554 without having been declared at any point such that the declaration
3555 was visible (i.e. in scope) at the point of the call.
3557 We need to add in explicit declarations for all such function calls
3558 in order to get the full benefit of prototype-based function call
3559 parameter type checking. */
3562 add_local_decl (def_dec_p
, clean_text_p
)
3563 const def_dec_info
*def_dec_p
;
3564 const char *clean_text_p
;
3566 const char *start_of_block
;
3567 const char *function_to_edit
= def_dec_p
->hash_entry
->symbol
;
3569 /* Don't insert new local explicit declarations unless explicitly requested
3575 /* Setup here to recover from confusing source code detected during this
3576 particular "edit". */
3579 if (setjmp (source_confusion_recovery
))
3581 restore_pointers ();
3582 fprintf (stderr
, "%s: local declaration for function `%s' not inserted\n",
3583 pname
, function_to_edit
);
3587 /* We have already done a seek to the start of the line which should
3588 contain *the* open curly brace which begins the block in which we need
3589 to insert an explicit function declaration (to replace the implicit one).
3591 Now we scan that line, starting from the left, until we find the
3592 open curly brace we are looking for. Note that there may actually be
3593 multiple open curly braces on the given line, but we will be happy
3594 with the leftmost one no matter what. */
3596 start_of_block
= clean_text_p
;
3597 while (*start_of_block
!= '{' && *start_of_block
!= '\n')
3598 check_source (++start_of_block
< clean_text_limit
, 0);
3600 /* Note that the line from the original source could possibly
3601 contain *no* open curly braces! This happens if the line contains
3602 a macro call which expands into a chunk of text which includes a
3603 block (and that block's associated open and close curly braces).
3604 In cases like this, we give up, issue a warning, and do nothing. */
3606 if (*start_of_block
!= '{')
3610 "\n%s: %d: warning: can't add declaration of `%s' into macro call\n",
3611 def_dec_p
->file
->hash_entry
->symbol
, def_dec_p
->line
,
3612 def_dec_p
->hash_entry
->symbol
);
3616 /* Figure out what a nice (pretty) indentation would be for the new
3617 declaration we are adding. In order to do this, we must scan forward
3618 from the '{' until we find the first line which starts with some
3619 non-whitespace characters (i.e. real "token" material). */
3622 const char *ep
= forward_to_next_token_char (start_of_block
) - 1;
3625 /* Now we have ep pointing at the rightmost byte of some existing indent
3626 stuff. At least that is the hope.
3628 We can now just scan backwards and find the left end of the existing
3629 indentation string, and then copy it to the output buffer. */
3631 for (sp
= ep
; isspace (*sp
) && *sp
!= '\n'; sp
--)
3634 /* Now write out the open { which began this block, and any following
3635 trash up to and including the last byte of the existing indent that
3640 /* Now we go ahead and insert the new declaration at this point.
3642 If the definition of the given function is in the same file that we
3643 are currently editing, and if its full ANSI declaration normally
3644 would start with the keyword `extern', suppress the `extern'. */
3647 const char *decl
= def_dec_p
->definition
->ansi_decl
;
3649 if ((*decl
== 'e') && (def_dec_p
->file
== def_dec_p
->definition
->file
))
3651 output_string (decl
);
3654 /* Finally, write out a new indent string, just like the preceding one
3655 that we found. This will typically include a newline as the first
3656 character of the indent string. */
3658 output_bytes (sp
, (size_t) (ep
- sp
) + 1);
3662 /* Given a pointer to a file_info record, and a pointer to the beginning
3663 of a line (in the clean text buffer) which is assumed to contain the
3664 first "follower" token for the first function definition header in the
3665 given file, find a good place to insert some new global function
3666 declarations (which will replace scattered and imprecise implicit ones)
3667 and then insert the new explicit declaration at that point in the file. */
3670 add_global_decls (file_p
, clean_text_p
)
3671 const file_info
*file_p
;
3672 const char *clean_text_p
;
3674 const def_dec_info
*dd_p
;
3677 /* Setup here to recover from confusing source code detected during this
3678 particular "edit". */
3681 if (setjmp (source_confusion_recovery
))
3683 restore_pointers ();
3684 fprintf (stderr
, "%s: global declarations for file `%s' not inserted\n",
3685 pname
, shortpath (NULL
, file_p
->hash_entry
->symbol
));
3689 /* Start by finding a good location for adding the new explicit function
3690 declarations. To do this, we scan backwards, ignoring whitespace
3691 and comments and other junk until we find either a semicolon, or until
3692 we hit the beginning of the file. */
3694 scan_p
= find_rightmost_formals_list (clean_text_p
);
3697 if (scan_p
< clean_text_base
)
3699 check_source (scan_p
> clean_read_ptr
, 0);
3704 /* scan_p now points either to a semicolon, or to just before the start
3705 of the whole file. */
3707 /* Now scan forward for the first non-whitespace character. In theory,
3708 this should be the first character of the following function definition
3709 header. We will put in the added declarations just prior to that. */
3712 while (isspace (*scan_p
))
3716 output_up_to (scan_p
);
3718 /* Now write out full prototypes for all of the things that had been
3719 implicitly declared in this file (but only those for which we were
3720 actually able to find unique matching definitions). Avoid duplicates
3721 by marking things that we write out as we go. */
3724 int some_decls_added
= 0;
3726 for (dd_p
= file_p
->defs_decs
; dd_p
; dd_p
= dd_p
->next_in_file
)
3727 if (dd_p
->is_implicit
&& dd_p
->definition
&& !dd_p
->definition
->written
)
3729 const char *decl
= dd_p
->definition
->ansi_decl
;
3731 /* If the function for which we are inserting a declaration is
3732 actually defined later in the same file, then suppress the
3733 leading `extern' keyword (if there is one). */
3735 if (*decl
== 'e' && (dd_p
->file
== dd_p
->definition
->file
))
3738 output_string ("\n");
3739 output_string (decl
);
3740 some_decls_added
= 1;
3741 ((NONCONST def_dec_info
*) dd_p
->definition
)->written
= 1;
3743 if (some_decls_added
)
3744 output_string ("\n\n");
3747 /* Unmark all of the definitions that we just marked. */
3749 for (dd_p
= file_p
->defs_decs
; dd_p
; dd_p
= dd_p
->next_in_file
)
3750 if (dd_p
->definition
)
3751 ((NONCONST def_dec_info
*) dd_p
->definition
)->written
= 0;
3754 #endif /* !defined (UNPROTOIZE) */
3756 /* Do the editing operation specifically for a function "definition". Note
3757 that editing operations for function "declarations" are handled by a
3758 separate routine above. */
3761 edit_fn_definition (def_dec_p
, clean_text_p
)
3762 const def_dec_info
*def_dec_p
;
3763 const char *clean_text_p
;
3765 const char *end_formals
;
3766 const char *function_to_edit
= def_dec_p
->hash_entry
->symbol
;
3768 /* Setup here to recover from confusing source code detected during this
3769 particular "edit". */
3772 if (setjmp (source_confusion_recovery
))
3774 restore_pointers ();
3775 fprintf (stderr
, "%s: definition of function `%s' not converted\n",
3776 pname
, function_to_edit
);
3780 end_formals
= find_rightmost_formals_list (clean_text_p
);
3782 /* end_of_formals now points to the closing right paren of the rightmost
3783 formals list which is actually part of the `header' of the function
3784 definition that we are converting. */
3786 /* If the header of this function definition looks like it declares a
3787 function with a variable number of arguments, and if the way it does
3788 that is different from that way we would like it (i.e. varargs vs.
3789 stdarg) then issue a warning and leave the header unconverted. */
3791 if (other_variable_style_function (def_dec_p
->ansi_decl
))
3794 fprintf (stderr
, "%s: %d: warning: definition of %s not converted\n",
3795 shortpath (NULL
, def_dec_p
->file
->hash_entry
->symbol
),
3796 identify_lineno (end_formals
),
3798 output_up_to (end_formals
);
3802 if (edit_formals_lists (end_formals
, def_dec_p
->f_list_count
, def_dec_p
))
3804 restore_pointers ();
3805 fprintf (stderr
, "%s: definition of function `%s' not converted\n",
3806 pname
, function_to_edit
);
3810 /* Have to output the last right paren because this never gets flushed by
3811 edit_formals_list. */
3813 output_up_to (end_formals
);
3818 const char *semicolon_p
;
3819 const char *limit_p
;
3821 int had_newlines
= 0;
3823 /* Now write out the K&R style formal declarations, one per line. */
3825 decl_p
= def_dec_p
->formal_decls
;
3826 limit_p
= decl_p
+ strlen (decl_p
);
3827 for (;decl_p
< limit_p
; decl_p
= semicolon_p
+ 2)
3829 for (semicolon_p
= decl_p
; *semicolon_p
!= ';'; semicolon_p
++)
3831 output_string ("\n");
3832 output_string (indent_string
);
3833 output_bytes (decl_p
, (size_t) ((semicolon_p
+ 1) - decl_p
));
3836 /* If there are no newlines between the end of the formals list and the
3837 start of the body, we should insert one now. */
3839 for (scan_p
= end_formals
+1; *scan_p
!= '{'; )
3841 if (*scan_p
== '\n')
3846 check_source (++scan_p
< clean_text_limit
, 0);
3849 output_string ("\n");
3851 #else /* !defined (UNPROTOIZE) */
3852 /* If we are protoizing, there may be some flotsam & jetsam (like comments
3853 and preprocessing directives) after the old formals list but before
3854 the following { and we would like to preserve that stuff while effectively
3855 deleting the existing K&R formal parameter declarations. We do so here
3856 in a rather tricky way. Basically, we white out any stuff *except*
3857 the comments/pp-directives in the original text buffer, then, if there
3858 is anything in this area *other* than whitespace, we output it. */
3860 const char *end_formals_orig
;
3861 const char *start_body
;
3862 const char *start_body_orig
;
3864 const char *scan_orig
;
3865 int have_flotsam
= 0;
3866 int have_newlines
= 0;
3868 for (start_body
= end_formals
+ 1; *start_body
!= '{';)
3869 check_source (++start_body
< clean_text_limit
, 0);
3871 end_formals_orig
= orig_text_base
+ (end_formals
- clean_text_base
);
3872 start_body_orig
= orig_text_base
+ (start_body
- clean_text_base
);
3873 scan
= end_formals
+ 1;
3874 scan_orig
= end_formals_orig
+ 1;
3875 for (; scan
< start_body
; scan
++, scan_orig
++)
3877 if (*scan
== *scan_orig
)
3879 have_newlines
|= (*scan_orig
== '\n');
3880 /* Leave identical whitespace alone. */
3881 if (!isspace (*scan_orig
))
3882 *((NONCONST
char *)scan_orig
) = ' '; /* identical - so whiteout */
3888 output_bytes (end_formals_orig
+ 1,
3889 (size_t) (start_body_orig
- end_formals_orig
) - 1);
3892 output_string ("\n");
3894 output_string (" ");
3895 clean_read_ptr
= start_body
- 1;
3897 #endif /* !defined (UNPROTOIZE) */
3900 /* Clean up the clean text buffer. Do this by converting comments and
3901 preprocessing directives into spaces. Also convert line continuations
3902 into whitespace. Also, whiteout string and character literals. */
3905 do_cleaning (new_clean_text_base
, new_clean_text_limit
)
3906 char *new_clean_text_base
;
3907 char *new_clean_text_limit
;
3910 int non_whitespace_since_newline
= 0;
3912 for (scan_p
= new_clean_text_base
; scan_p
< new_clean_text_limit
; scan_p
++)
3916 case '/': /* Handle comments. */
3917 if (scan_p
[1] != '*')
3919 non_whitespace_since_newline
= 1;
3923 while (scan_p
[1] != '/' || scan_p
[0] != '*')
3925 if (!isspace (*scan_p
))
3927 if (++scan_p
>= new_clean_text_limit
)
3934 case '#': /* Handle pp directives. */
3935 if (non_whitespace_since_newline
)
3938 while (scan_p
[1] != '\n' || scan_p
[0] == '\\')
3940 if (!isspace (*scan_p
))
3942 if (++scan_p
>= new_clean_text_limit
)
3948 case '\'': /* Handle character literals. */
3949 non_whitespace_since_newline
= 1;
3950 while (scan_p
[1] != '\'' || scan_p
[0] == '\\')
3952 if (scan_p
[0] == '\\' && !isspace (scan_p
[1]))
3954 if (!isspace (*scan_p
))
3956 if (++scan_p
>= new_clean_text_limit
)
3962 case '"': /* Handle string literals. */
3963 non_whitespace_since_newline
= 1;
3964 while (scan_p
[1] != '"' || scan_p
[0] == '\\')
3966 if (scan_p
[0] == '\\' && !isspace (scan_p
[1]))
3968 if (!isspace (*scan_p
))
3970 if (++scan_p
>= new_clean_text_limit
)
3973 if (!isspace (*scan_p
))
3978 case '\\': /* Handle line continuations. */
3979 if (scan_p
[1] != '\n')
3985 non_whitespace_since_newline
= 0; /* Reset. */
3994 break; /* Whitespace characters. */
3998 non_whitespace_since_newline
= 1;
4004 /* Given a pointer to the closing right parenthesis for a particular formals
4005 list (in the clean text buffer) find the corresponding left parenthesis
4006 and return a pointer to it. */
4009 careful_find_l_paren (p
)
4015 for (paren_depth
= 1, q
= p
-1; paren_depth
; check_source (--q
>= clean_text_base
, 0))
4030 /* Scan the clean text buffer for cases of function definitions that we
4031 don't really know about because they were preprocessed out when the
4032 aux info files were created.
4034 In this version of protoize/unprotoize we just give a warning for each
4035 one found. A later version may be able to at least unprotoize such
4038 Note that we may easily find all function definitions simply by
4039 looking for places where there is a left paren which is (ignoring
4040 whitespace) immediately followed by either a left-brace or by an
4041 upper or lower case letter. Whenever we find this combination, we
4042 have also found a function definition header.
4044 Finding function *declarations* using syntactic clues is much harder.
4045 I will probably try to do this in a later version though. */
4048 scan_for_missed_items (file_p
)
4049 const file_info
*file_p
;
4051 static const char *scan_p
;
4052 const char *limit
= clean_text_limit
- 3;
4053 static const char *backup_limit
;
4055 backup_limit
= clean_text_base
- 1;
4057 for (scan_p
= clean_text_base
; scan_p
< limit
; scan_p
++)
4061 static const char *last_r_paren
;
4062 const char *ahead_p
;
4064 last_r_paren
= scan_p
;
4066 for (ahead_p
= scan_p
+ 1; isspace (*ahead_p
); )
4067 check_source (++ahead_p
< limit
, limit
);
4069 scan_p
= ahead_p
- 1;
4071 if (isalpha (*ahead_p
) || *ahead_p
== '{')
4073 const char *last_l_paren
;
4074 const int lineno
= identify_lineno (ahead_p
);
4076 if (setjmp (source_confusion_recovery
))
4079 /* We know we have a function definition header. Now skip
4080 leftwards over all of its associated formals lists. */
4084 last_l_paren
= careful_find_l_paren (last_r_paren
);
4085 for (last_r_paren
= last_l_paren
-1; isspace (*last_r_paren
); )
4086 check_source (--last_r_paren
>= backup_limit
, backup_limit
);
4088 while (*last_r_paren
== ')');
4090 if (is_id_char (*last_r_paren
))
4092 const char *id_limit
= last_r_paren
+ 1;
4093 const char *id_start
;
4095 const def_dec_info
*dd_p
;
4097 for (id_start
= id_limit
-1; is_id_char (*id_start
); )
4098 check_source (--id_start
>= backup_limit
, backup_limit
);
4100 backup_limit
= id_start
;
4101 if ((id_length
= (size_t) (id_limit
- id_start
)) == 0)
4105 char *func_name
= (char *) alloca (id_length
+ 1);
4106 static const char * const stmt_keywords
[]
4107 = { "if", "else", "do", "while", "for", "switch", "case", "return", 0 };
4108 const char * const *stmt_keyword
;
4110 strncpy (func_name
, id_start
, id_length
);
4111 func_name
[id_length
] = '\0';
4113 /* We must check here to see if we are actually looking at
4114 a statement rather than an actual function call. */
4116 for (stmt_keyword
= stmt_keywords
; *stmt_keyword
; stmt_keyword
++)
4117 if (!strcmp (func_name
, *stmt_keyword
))
4121 fprintf (stderr
, "%s: found definition of `%s' at %s(%d)\n",
4124 shortpath (NULL
, file_p
->hash_entry
->symbol
),
4125 identify_lineno (id_start
));
4127 /* We really should check for a match of the function name
4128 here also, but why bother. */
4130 for (dd_p
= file_p
->defs_decs
; dd_p
; dd_p
= dd_p
->next_in_file
)
4131 if (dd_p
->is_func_def
&& dd_p
->line
== lineno
)
4134 /* If we make it here, then we did not know about this
4135 function definition. */
4137 fprintf (stderr
, "%s: %d: warning: `%s' excluded by preprocessing\n",
4138 shortpath (NULL
, file_p
->hash_entry
->symbol
),
4139 identify_lineno (id_start
), func_name
);
4140 fprintf (stderr
, "%s: function definition not converted\n",
4150 /* Do all editing operations for a single source file (either a "base" file
4151 or an "include" file). To do this we read the file into memory, keep a
4152 virgin copy there, make another cleaned in-core copy of the original file
4153 (i.e. one in which all of the comments and preprocessing directives have
4154 been replaced with whitespace), then use these two in-core copies of the
4155 file to make a new edited in-core copy of the file. Finally, rename the
4156 original file (as a way of saving it), and then write the edited version
4157 of the file from core to a disk file of the same name as the original.
4159 Note that the trick of making a copy of the original sans comments &
4160 preprocessing directives make the editing a whole lot easier. */
4164 const hash_table_entry
*hp
;
4166 struct stat stat_buf
;
4167 const file_info
*file_p
= hp
->fip
;
4168 char *new_orig_text_base
;
4169 char *new_orig_text_limit
;
4170 char *new_clean_text_base
;
4171 char *new_clean_text_limit
;
4174 int first_definition_in_file
;
4176 /* If we are not supposed to be converting this file, or if there is
4177 nothing in there which needs converting, just skip this file. */
4179 if (!needs_to_be_converted (file_p
))
4182 convert_filename
= file_p
->hash_entry
->symbol
;
4184 /* Convert a file if it is in a directory where we want conversion
4185 and the file is not excluded. */
4187 if (!directory_specified_p (convert_filename
)
4188 || file_excluded_p (convert_filename
))
4192 /* Don't even mention "system" include files unless we are
4193 protoizing. If we are protoizing, we mention these as a
4194 gentle way of prodding the user to convert his "system"
4195 include files to prototype format. */
4196 && !in_system_include_dir (convert_filename
)
4197 #endif /* defined (UNPROTOIZE) */
4199 fprintf (stderr
, "%s: `%s' not converted\n",
4200 pname
, shortpath (NULL
, convert_filename
));
4204 /* Let the user know what we are up to. */
4207 fprintf (stderr
, "%s: would convert file `%s'\n",
4208 pname
, shortpath (NULL
, convert_filename
));
4210 fprintf (stderr
, "%s: converting file `%s'\n",
4211 pname
, shortpath (NULL
, convert_filename
));
4214 /* Find out the size (in bytes) of the original file. */
4216 /* The cast avoids an erroneous warning on AIX. */
4217 if (my_stat ((char *)convert_filename
, &stat_buf
) == -1)
4219 fprintf (stderr
, "%s: can't get status for file `%s': %s\n",
4220 pname
, shortpath (NULL
, convert_filename
), my_strerror(errno
));
4223 orig_size
= stat_buf
.st_size
;
4225 /* Allocate a buffer to hold the original text. */
4227 orig_text_base
= new_orig_text_base
= (char *) xmalloc (orig_size
+ 2);
4228 orig_text_limit
= new_orig_text_limit
= new_orig_text_base
+ orig_size
;
4230 /* Allocate a buffer to hold the cleaned-up version of the original text. */
4232 clean_text_base
= new_clean_text_base
= (char *) xmalloc (orig_size
+ 2);
4233 clean_text_limit
= new_clean_text_limit
= new_clean_text_base
+ orig_size
;
4234 clean_read_ptr
= clean_text_base
- 1;
4236 /* Allocate a buffer that will hopefully be large enough to hold the entire
4237 converted output text. As an initial guess for the maximum size of the
4238 output buffer, use 125% of the size of the original + some extra. This
4239 buffer can be expanded later as needed. */
4241 repl_size
= orig_size
+ (orig_size
>> 2) + 4096;
4242 repl_text_base
= (char *) xmalloc (repl_size
+ 2);
4243 repl_text_limit
= repl_text_base
+ repl_size
- 1;
4244 repl_write_ptr
= repl_text_base
- 1;
4249 /* Open the file to be converted in READ ONLY mode. */
4251 if ((input_file
= my_open (convert_filename
, O_RDONLY
, 0444)) == -1)
4253 fprintf (stderr
, "%s: can't open file `%s' for reading: %s\n",
4254 pname
, shortpath (NULL
, convert_filename
),
4255 my_strerror(errno
));
4259 /* Read the entire original source text file into the original text buffer
4260 in one swell fwoop. Then figure out where the end of the text is and
4261 make sure that it ends with a newline followed by a null. */
4263 if (safe_read (input_file
, new_orig_text_base
, orig_size
) != orig_size
)
4266 fprintf (stderr
, "\n%s: error reading input file `%s': %s\n",
4267 pname
, shortpath (NULL
, convert_filename
),
4268 my_strerror(errno
));
4275 if (orig_size
== 0 || orig_text_limit
[-1] != '\n')
4277 *new_orig_text_limit
++ = '\n';
4281 /* Create the cleaned up copy of the original text. */
4283 memcpy (new_clean_text_base
, orig_text_base
,
4284 (size_t) (orig_text_limit
- orig_text_base
));
4285 do_cleaning (new_clean_text_base
, new_clean_text_limit
);
4290 size_t clean_size
= orig_text_limit
- orig_text_base
;
4291 char *const clean_filename
= (char *) alloca (strlen (convert_filename
) + 6 + 1);
4293 /* Open (and create) the clean file. */
4295 strcpy (clean_filename
, convert_filename
);
4296 strcat (clean_filename
, ".clean");
4297 if ((clean_file
= creat (clean_filename
, 0666)) == -1)
4299 fprintf (stderr
, "%s: can't create/open clean file `%s': %s\n",
4300 pname
, shortpath (NULL
, clean_filename
),
4301 my_strerror(errno
));
4305 /* Write the clean file. */
4307 safe_write (clean_file
, new_clean_text_base
, clean_size
, clean_filename
);
4313 /* Do a simplified scan of the input looking for things that were not
4314 mentioned in the aux info files because of the fact that they were
4315 in a region of the source which was preprocessed-out (via #if or
4318 scan_for_missed_items (file_p
);
4320 /* Setup to do line-oriented forward seeking in the clean text buffer. */
4322 last_known_line_number
= 1;
4323 last_known_line_start
= clean_text_base
;
4325 /* Now get down to business and make all of the necessary edits. */
4328 const def_dec_info
*def_dec_p
;
4330 first_definition_in_file
= 1;
4331 def_dec_p
= file_p
->defs_decs
;
4332 for (; def_dec_p
; def_dec_p
= def_dec_p
->next_in_file
)
4334 const char *clean_text_p
= seek_to_line (def_dec_p
->line
);
4336 /* clean_text_p now points to the first character of the line which
4337 contains the `terminator' for the declaration or definition that
4338 we are about to process. */
4342 if (global_flag
&& def_dec_p
->is_func_def
&& first_definition_in_file
)
4344 add_global_decls (def_dec_p
->file
, clean_text_p
);
4345 first_definition_in_file
= 0;
4348 /* Don't edit this item if it is already in prototype format or if it
4349 is a function declaration and we have found no corresponding
4352 if (def_dec_p
->prototyped
4353 || (!def_dec_p
->is_func_def
&& !def_dec_p
->definition
))
4356 #endif /* !defined (UNPROTOIZE) */
4358 if (def_dec_p
->is_func_def
)
4359 edit_fn_definition (def_dec_p
, clean_text_p
);
4362 if (def_dec_p
->is_implicit
)
4363 add_local_decl (def_dec_p
, clean_text_p
);
4365 #endif /* !defined (UNPROTOIZE) */
4366 edit_fn_declaration (def_dec_p
, clean_text_p
);
4370 /* Finalize things. Output the last trailing part of the original text. */
4372 output_up_to (clean_text_limit
- 1);
4374 /* If this is just a test run, stop now and just deallocate the buffers. */
4378 free (new_orig_text_base
);
4379 free (new_clean_text_base
);
4380 free (repl_text_base
);
4384 /* Change the name of the original input file. This is just a quick way of
4385 saving the original file. */
4389 char *new_filename
=
4390 (char *) xmalloc (strlen (convert_filename
) + strlen (save_suffix
) + 2);
4392 strcpy (new_filename
, convert_filename
);
4393 strcat (new_filename
, save_suffix
);
4394 if (my_link (convert_filename
, new_filename
) == -1)
4396 if (errno
== EEXIST
)
4399 fprintf (stderr
, "%s: warning: file `%s' already saved in `%s'\n",
4401 shortpath (NULL
, convert_filename
),
4402 shortpath (NULL
, new_filename
));
4406 fprintf (stderr
, "%s: can't link file `%s' to `%s': %s\n",
4408 shortpath (NULL
, convert_filename
),
4409 shortpath (NULL
, new_filename
),
4410 my_strerror(errno
));
4416 if (my_unlink (convert_filename
) == -1)
4418 fprintf (stderr
, "%s: can't delete file `%s': %s\n",
4419 pname
, shortpath (NULL
, convert_filename
), my_strerror(errno
));
4426 /* Open (and create) the output file. */
4428 if ((output_file
= creat (convert_filename
, 0666)) == -1)
4430 fprintf (stderr
, "%s: can't create/open output file `%s': %s\n",
4431 pname
, shortpath (NULL
, convert_filename
),
4432 my_strerror(errno
));
4436 /* Write the output file. */
4439 unsigned int out_size
= (repl_write_ptr
+ 1) - repl_text_base
;
4441 safe_write (output_file
, repl_text_base
, out_size
, convert_filename
);
4444 close (output_file
);
4447 /* Deallocate the conversion buffers. */
4449 free (new_orig_text_base
);
4450 free (new_clean_text_base
);
4451 free (repl_text_base
);
4453 /* Change the mode of the output file to match the original file. */
4455 /* The cast avoids an erroneous warning on AIX. */
4456 if (my_chmod ((char *)convert_filename
, stat_buf
.st_mode
) == -1)
4457 fprintf (stderr
, "%s: can't change mode of file `%s': %s\n",
4458 pname
, shortpath (NULL
, convert_filename
), my_strerror(errno
));
4460 /* Note: We would try to change the owner and group of the output file
4461 to match those of the input file here, except that may not be a good
4462 thing to do because it might be misleading. Also, it might not even
4463 be possible to do that (on BSD systems with quotas for instance). */
4466 /* Do all of the individual steps needed to do the protoization (or
4467 unprotoization) of the files referenced in the aux_info files given
4468 in the command line. */
4473 const char * const *base_pp
;
4474 const char * const * const end_pps
4475 = &base_source_filenames
[n_base_source_files
];
4479 #endif /* !defined (UNPROTOIZE) */
4481 /* One-by-one, check (and create if necessary), open, and read all of the
4482 stuff in each aux_info file. After reading each aux_info file, the
4483 aux_info_file just read will be automatically deleted unless the
4484 keep_flag is set. */
4486 for (base_pp
= base_source_filenames
; base_pp
< end_pps
; base_pp
++)
4487 process_aux_info_file (*base_pp
, keep_flag
, 0);
4491 /* Also open and read the special SYSCALLS.c aux_info file which gives us
4492 the prototypes for all of the standard system-supplied functions. */
4494 if (nondefault_syscalls_dir
)
4496 syscalls_absolute_filename
4497 = (char *) xmalloc (strlen (nondefault_syscalls_dir
)
4498 + sizeof (syscalls_filename
) + 1);
4499 strcpy (syscalls_absolute_filename
, nondefault_syscalls_dir
);
4503 syscalls_absolute_filename
4504 = (char *) xmalloc (strlen (default_syscalls_dir
)
4505 + sizeof (syscalls_filename
) + 1);
4506 strcpy (syscalls_absolute_filename
, default_syscalls_dir
);
4509 syscalls_len
= strlen (syscalls_absolute_filename
);
4510 if (*(syscalls_absolute_filename
+ syscalls_len
- 1) != '/')
4512 *(syscalls_absolute_filename
+ syscalls_len
++) = '/';
4513 *(syscalls_absolute_filename
+ syscalls_len
) = '\0';
4515 strcat (syscalls_absolute_filename
, syscalls_filename
);
4517 /* Call process_aux_info_file in such a way that it does not try to
4518 delete the SYSCALLS aux_info file. */
4520 process_aux_info_file (syscalls_absolute_filename
, 1, 1);
4522 #endif /* !defined (UNPROTOIZE) */
4524 /* When we first read in all of the information from the aux_info files
4525 we saved in it descending line number order, because that was likely to
4526 be faster. Now however, we want the chains of def & dec records to
4527 appear in ascending line number order as we get further away from the
4528 file_info record that they hang from. The following line causes all of
4529 these lists to be rearranged into ascending line number order. */
4531 visit_each_hash_node (filename_primary
, reverse_def_dec_list
);
4535 /* Now do the "real" work. The following line causes each declaration record
4536 to be "visited". For each of these nodes, an attempt is made to match
4537 up the function declaration with a corresponding function definition,
4538 which should have a full prototype-format formals list with it. Once
4539 these match-ups are made, the conversion of the function declarations
4540 to prototype format can be made. */
4542 visit_each_hash_node (function_name_primary
, connect_defs_and_decs
);
4544 #endif /* !defined (UNPROTOIZE) */
4546 /* Now convert each file that can be converted (and needs to be). */
4548 visit_each_hash_node (filename_primary
, edit_file
);
4552 /* If we are working in cplusplus mode, try to rename all .c files to .C
4553 files. Don't panic if some of the renames don't work. */
4555 if (cplusplus_flag
&& !nochange_flag
)
4556 visit_each_hash_node (filename_primary
, rename_c_file
);
4558 #endif /* !defined (UNPROTOIZE) */
4561 static struct option longopts
[] =
4563 {"version", 0, 0, 'V'},
4564 {"file_name", 0, 0, 'p'},
4565 {"quiet", 0, 0, 'q'},
4566 {"silent", 0, 0, 'q'},
4567 {"force", 0, 0, 'f'},
4568 {"keep", 0, 0, 'k'},
4569 {"nosave", 0, 0, 'N'},
4570 {"nochange", 0, 0, 'n'},
4571 {"compiler-options", 1, 0, 'c'},
4572 {"exclude", 1, 0, 'x'},
4573 {"directory", 1, 0, 'd'},
4575 {"indent", 1, 0, 'i'},
4577 {"local", 0, 0, 'l'},
4578 {"global", 0, 0, 'g'},
4580 {"syscalls-dir", 1, 0, 'B'},
4592 const char *params
= "";
4594 pname
= rindex (argv
[0], '/');
4595 pname
= pname
? pname
+1 : argv
[0];
4597 cwd_buffer
= getpwd ();
4600 fprintf (stderr
, "%s: cannot get working directory: %s\n",
4601 pname
, my_strerror(errno
));
4605 /* By default, convert the files in the current directory. */
4606 directory_list
= string_list_cons (cwd_buffer
, NULL
);
4608 while ((c
= getopt_long (argc
, argv
,
4612 "B:c:Cd:gklnNp:qvVx:",
4614 longopts
, &longind
)) != EOF
)
4616 if (c
== 0) /* Long option. */
4617 c
= longopts
[longind
].val
;
4621 compiler_file_name
= optarg
;
4625 = string_list_cons (abspath (NULL
, optarg
), directory_list
);
4628 exclude_list
= string_list_cons (optarg
, exclude_list
);
4658 indent_string
= optarg
;
4660 #else /* !defined (UNPROTOIZE) */
4671 nondefault_syscalls_dir
= optarg
;
4673 #endif /* !defined (UNPROTOIZE) */
4679 /* Set up compile_params based on -p and -c options. */
4680 munge_compile_params (params
);
4682 n_base_source_files
= argc
- optind
;
4684 /* Now actually make a list of the base source filenames. */
4686 base_source_filenames
=
4687 (const char **) xmalloc ((n_base_source_files
+ 1) * sizeof (char *));
4688 n_base_source_files
= 0;
4689 for (; optind
< argc
; optind
++)
4691 const char *path
= abspath (NULL
, argv
[optind
]);
4692 int len
= strlen (path
);
4694 if (path
[len
-1] == 'c' && path
[len
-2] == '.')
4695 base_source_filenames
[n_base_source_files
++] = path
;
4698 fprintf (stderr
, "%s: input file names must have .c suffixes: %s\n",
4699 pname
, shortpath (NULL
, path
));
4705 /* We are only interested in the very first identifier token in the
4706 definition of `va_list', so if there is more junk after that first
4707 identifier token, delete it from the `varargs_style_indicator'. */
4711 for (cp
= varargs_style_indicator
; isalnum (*cp
) || *cp
== '_'; cp
++)
4714 varargs_style_indicator
= savestring (varargs_style_indicator
,
4715 cp
- varargs_style_indicator
);
4717 #endif /* !defined (UNPROTOIZE) */
4724 fprintf (stderr
, "%s: %s\n", pname
, version_string
);