1 /* Process source files and output type information.
2 Copyright (C) 2002-2024 Free Software Foundation, Inc.
4 This file is part of GCC.
6 GCC is free software; you can redistribute it and/or modify it under
7 the terms of the GNU General Public License as published by the Free
8 Software Foundation; either version 3, or (at your option) any later
11 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
12 WARRANTY; without even the implied warranty of MERCHANTABILITY or
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
16 You should have received a copy of the GNU General Public License
17 along with GCC; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
20 #ifdef HOST_GENERATOR_FILE
22 #define GENERATOR_FILE 1
27 #include "errors.h" /* for fatal */
29 #include "version.h" /* for version_string & pkgversion_string. */
33 #include "filenames.h"
35 /* Data types, macros, etc. used only in this file. */
38 /* The list of output files. */
41 /* The output header file that is included into pretty much every
46 /* The name of the file containing the list of input files. */
47 static char *inputlist
;
49 /* The plugin input files and their number; in that case only
50 a single file is produced. */
51 static input_file
**plugin_files
;
52 static size_t nb_plugin_files
;
54 /* The generated plugin output file and name. */
55 static outf_p plugin_output
;
56 static char *plugin_output_filename
;
58 /* Our source directory and its length. */
62 /* Variables used for reading and writing the state. */
63 const char *read_state_filename
;
64 const char *write_state_filename
;
66 /* Variables to help debugging. */
70 /* Level for verbose messages. */
73 /* We have a type count and use it to set the state_number of newly
74 allocated types to some unique negative number. */
75 static int type_count
;
77 /* The backup directory should be in the same file system as the
78 generated files, otherwise the rename(2) system call would fail.
79 If NULL, no backup is made when overwriting a generated file. */
80 static const char* backup_dir
; /* (-B) program option. */
83 static outf_p
create_file (const char *, const char *);
85 static const char *get_file_basename (const input_file
*);
86 static const char *get_file_realbasename (const input_file
*);
88 static int get_prefix_langdir_index (const char *);
89 static const char *get_file_langdir (const input_file
*);
91 static void dump_pair (int indent
, pair_p p
);
92 static void dump_type (int indent
, type_p p
);
93 static void dump_type_list (int indent
, type_p p
);
96 /* Nonzero iff an error has occurred. */
97 bool hit_error
= false;
99 static void gen_rtx_next (void);
100 static void write_rtx_next (void);
101 static void open_base_files (void);
102 static void close_output_files (void);
104 /* Report an error at POS, printing MSG. */
107 error_at_line (const struct fileloc
*pos
, const char *msg
, ...)
111 gcc_assert (pos
!= NULL
&& pos
->file
!= NULL
);
114 fprintf (stderr
, "%s:%d: ", get_input_file_name (pos
->file
), pos
->line
);
115 vfprintf (stderr
, msg
, ap
);
116 fputc ('\n', stderr
);
122 /* Locate the ultimate base class of struct S. */
125 get_ultimate_base_class (const_type_p s
)
127 while (s
->u
.s
.base_class
)
128 s
= s
->u
.s
.base_class
;
133 get_ultimate_base_class (type_p s
)
135 while (s
->u
.s
.base_class
)
136 s
= s
->u
.s
.base_class
;
140 /* Input file handling. */
142 /* Table of all input files. */
143 const input_file
**gt_files
;
146 /* Table of headers to be included in gtype-desc.cc that are generated
147 during the build. These are identified as "./<filename>.h". */
148 const char **build_headers
;
149 size_t num_build_headers
;
151 /* A number of places use the name of this "gengtype.cc" file for a
152 location for things that we can't rely on the source to define.
153 Make sure we can still use pointer comparison on filenames. */
154 input_file
* this_file
;
155 /* The "system.h" file is likewise specially useful. */
156 input_file
* system_h_file
;
158 /* Vector of per-language directories. */
159 const char **lang_dir_names
;
160 size_t num_lang_dirs
;
162 /* An array of output files suitable for definitions. There is one
163 BASE_FILES entry for each language. */
164 static outf_p
*base_files
;
166 /* Utility debugging function, printing the various type counts within
167 a list of types. Called through the DBGPRINT_COUNT_TYPE macro. */
169 dbgprint_count_type_at (const char *fil
, int lin
, const char *msg
, type_p t
)
171 int nb_types
= 0, nb_scalar
= 0, nb_string
= 0;
172 int nb_struct
= 0, nb_union
= 0, nb_array
= 0, nb_pointer
= 0;
173 int nb_lang_struct
= 0;
174 int nb_user_struct
= 0, nb_undefined
= 0;
177 for (p
= t
; p
; p
= p
->next
)
194 case TYPE_USER_STRUCT
:
209 case TYPE_LANG_STRUCT
:
216 fprintf (stderr
, "\n" "%s:%d: %s: @@%%@@ %d types ::\n",
217 lbasename (fil
), lin
, msg
, nb_types
);
218 if (nb_scalar
> 0 || nb_string
> 0)
219 fprintf (stderr
, "@@%%@@ %d scalars, %d strings\n", nb_scalar
, nb_string
);
220 if (nb_struct
> 0 || nb_union
> 0)
221 fprintf (stderr
, "@@%%@@ %d structs, %d unions\n", nb_struct
, nb_union
);
222 if (nb_pointer
> 0 || nb_array
> 0)
223 fprintf (stderr
, "@@%%@@ %d pointers, %d arrays\n", nb_pointer
, nb_array
);
225 fprintf (stderr
, "@@%%@@ %d callbacks\n", nb_callback
);
226 if (nb_lang_struct
> 0)
227 fprintf (stderr
, "@@%%@@ %d lang_structs\n", nb_lang_struct
);
228 if (nb_user_struct
> 0)
229 fprintf (stderr
, "@@%%@@ %d user_structs\n", nb_user_struct
);
230 if (nb_undefined
> 0)
231 fprintf (stderr
, "@@%%@@ %d undefined types\n", nb_undefined
);
232 fprintf (stderr
, "\n");
235 /* Scan the input file, LIST, and determine how much space we need to
236 store strings in. Also, count the number of language directories
237 and files. The numbers returned are overestimates as they does not
238 consider repeated files. */
240 measure_input_list (FILE *list
)
246 num_gt_files
= plugin_files
? nb_plugin_files
: 0;
247 while ((c
= getc (list
)) != EOF
)
256 /* Add space for a lang_bitmap before the input file name. */
257 n
+= sizeof (lang_bitmap
);
271 /* Read one input line from LIST to HEREP (which is updated). A
272 pointer to the string is returned via LINEP. If it was a language
273 subdirectory in square brackets, strip off the square brackets and
274 return true. Otherwise, leave space before the string for a
275 lang_bitmap, and return false. At EOF, returns false, does not
276 touch *HEREP, and sets *LINEP to NULL. POS is used for
279 read_input_line (FILE *list
, char **herep
, char **linep
, struct fileloc
*pos
)
285 /* Read over whitespace. */
286 while (c
== '\n' || c
== ' ')
296 /* No space for a lang_bitmap is necessary. Discard the '['. */
299 while (c
!= ']' && c
!= '\n' && c
!= EOF
)
308 c
= getc (list
); /* eat what should be a newline */
309 if (c
!= '\n' && c
!= EOF
)
310 error_at_line (pos
, "junk on line after language tag [%s]", line
);
313 error_at_line (pos
, "missing close bracket for language tag [%s",
322 /* Leave space for a lang_bitmap. */
323 memset (here
, 0, sizeof (lang_bitmap
));
324 here
+= sizeof (lang_bitmap
);
331 while (c
!= EOF
&& c
!= '\n');
339 /* Read the list of input files from LIST and compute all of the
340 relevant tables. There is one file per line of the list. At
341 first, all the files on the list are language-generic, but
342 eventually a line will appear which is the name of a language
343 subdirectory in square brackets, like this: [cp]. All subsequent
344 files are specific to that language, until another language
345 subdirectory tag appears. Files can appear more than once, if
346 they apply to more than one language. */
348 read_input_list (const char *listname
)
350 FILE *list
= fopen (listname
, "r");
352 fatal ("cannot open %s: %s", listname
, xstrerror (errno
));
356 size_t bufsz
= measure_input_list (list
);
357 char *buf
= XNEWVEC (char, bufsz
);
359 char *committed
= buf
;
360 char *limit
= buf
+ bufsz
;
365 lang_bitmap curlangs
= (1 << num_lang_dirs
) - 1;
367 epos
.file
= input_file_by_name (listname
);
370 lang_dir_names
= XNEWVEC (const char *, num_lang_dirs
);
371 gt_files
= XNEWVEC (const input_file
*, num_gt_files
);
378 is_language
= read_input_line (list
, &here
, &line
, &epos
);
379 gcc_assert (here
<= limit
);
382 else if (is_language
)
385 gcc_assert (langno
<= num_lang_dirs
);
386 for (i
= 0; i
< langno
; i
++)
387 if (strcmp (lang_dir_names
[i
], line
) == 0)
389 error_at_line (&epos
, "duplicate language tag [%s]",
396 curlangs
= 1 << langno
;
397 lang_dir_names
[langno
++] = line
;
402 input_file
*inpf
= input_file_by_name (line
);
403 gcc_assert (nfiles
<= num_gt_files
);
404 for (i
= 0; i
< nfiles
; i
++)
405 /* Since the input_file-s are uniquely hash-consed, we
406 can just compare pointers! */
407 if (gt_files
[i
] == inpf
)
409 /* Throw away the string we just read, and add the
410 current language to the existing string's bitmap. */
411 lang_bitmap bmap
= get_lang_bitmap (inpf
);
413 error_at_line (&epos
,
414 "file %s specified more than once "
415 "for language %s", line
,
417 0 ? "(all)" : lang_dir_names
[langno
-
421 set_lang_bitmap (inpf
, bmap
);
426 set_lang_bitmap (inpf
, curlangs
);
427 gt_files
[nfiles
++] = inpf
;
430 /* Update the global counts now that we know accurately how many
431 things there are. (We do not bother resizing the arrays down.) */
432 num_lang_dirs
= langno
;
433 /* Add the plugin files if provided. */
437 for (i
= 0; i
< nb_plugin_files
; i
++)
438 gt_files
[nfiles
++] = plugin_files
[i
];
440 num_gt_files
= nfiles
;
443 /* Sanity check: any file that resides in a language subdirectory
444 (e.g. 'cp') ought to belong to the corresponding language.
445 ??? Still true if for instance ObjC++ is enabled and C++ isn't?
446 (Can you even do that? Should you be allowed to?) */
449 for (f
= 0; f
< num_gt_files
; f
++)
451 lang_bitmap bitmap
= get_lang_bitmap (gt_files
[f
]);
452 const char *basename
= get_file_basename (gt_files
[f
]);
453 const char *slashpos
= strchr (basename
, '/');
454 #ifdef HAVE_DOS_BASED_FILE_SYSTEM
455 const char *slashpos2
= strchr (basename
, '\\');
457 if (!slashpos
|| (slashpos2
&& slashpos2
< slashpos
))
458 slashpos
= slashpos2
;
464 for (l
= 0; l
< num_lang_dirs
; l
++)
465 if ((size_t) (slashpos
- basename
) == strlen (lang_dir_names
[l
])
466 && memcmp (basename
, lang_dir_names
[l
],
467 strlen (lang_dir_names
[l
])) == 0)
469 if (!(bitmap
& (1 << l
)))
470 error ("%s is in language directory '%s' but is not "
471 "tagged for that language",
472 basename
, lang_dir_names
[l
]);
480 fatal ("error reading %s: %s", listname
, xstrerror (errno
));
487 /* The one and only TYPE_STRING. */
489 struct type string_type
= {
490 TYPE_STRING
, 0, 0, 0, GC_USED
, {0}
493 /* The two and only TYPE_SCALARs. Their u.scalar_is_char flags are
494 set early in main. */
496 struct type scalar_nonchar
= {
497 TYPE_SCALAR
, 0, 0, 0, GC_USED
, {0}
500 struct type scalar_char
= {
501 TYPE_SCALAR
, 0, 0, 0, GC_USED
, {0}
504 struct type callback_type
= {
505 TYPE_CALLBACK
, 0, 0, 0, GC_USED
, {0}
508 /* Lists of various things. */
510 pair_p typedefs
= NULL
;
511 type_p structures
= NULL
;
512 pair_p variables
= NULL
;
514 static type_p
adjust_field_rtx_def (type_p t
, options_p opt
);
516 /* Define S as a typedef to T at POS. */
519 do_typedef (const char *s
, type_p t
, struct fileloc
*pos
)
523 /* temporary kludge - gengtype doesn't handle conditionals or
524 macros. Ignore any attempt to typedef CUMULATIVE_ARGS, unless it
525 is coming from this file (main() sets them up with safe dummy
527 if (!strcmp (s
, "CUMULATIVE_ARGS") && pos
->file
!= this_file
)
530 for (p
= typedefs
; p
!= NULL
; p
= p
->next
)
531 if (strcmp (p
->name
, s
) == 0)
533 if (p
->type
!= t
&& strcmp (s
, "result_type") != 0)
535 error_at_line (pos
, "type `%s' previously defined", s
);
536 error_at_line (&p
->line
, "previously defined here");
541 p
= XNEW (struct pair
);
550 /* Define S as a typename of a scalar. Cannot be used to define
551 typedefs of 'char'. Note: is also used for pointer-to-function
552 typedefs (which are therefore not treated as pointers). */
555 do_scalar_typedef (const char *s
, struct fileloc
*pos
)
557 do_typedef (s
, &scalar_nonchar
, pos
);
560 /* Similar to strtok_r. */
563 strtoken (char *str
, const char *delim
, char **next
)
570 /* Skip the leading delimiters. */
571 str
+= strspn (str
, delim
);
573 /* This is an empty token. */
576 /* The current token. */
579 /* Find the next delimiter. */
580 str
+= strcspn (str
, delim
);
582 /* This is the last token. */
586 /* Terminate the current token. */
588 /* Advance to the next token. */
595 /* Define TYPE_NAME to be a user defined type at location POS. */
598 create_user_defined_type (const char *type_name
, struct fileloc
*pos
)
600 type_p ty
= find_structure (type_name
, TYPE_USER_STRUCT
);
602 /* We might have already seen an incomplete decl of the given type,
603 in which case we won't have yet seen a GTY((user)), and the type will
604 only have kind "TYPE_STRUCT". Mark it as a user struct. */
605 ty
->kind
= TYPE_USER_STRUCT
;
608 ty
->u
.s
.bitmap
= get_lang_bitmap (pos
->file
);
609 do_typedef (type_name
, ty
, pos
);
611 /* If TYPE_NAME specifies a template, create references to the types
612 in the template by pretending that each type is a field of TY.
613 This is needed to make sure that the types referenced by the
614 template are marked as used. */
615 char *str
= xstrdup (type_name
);
616 char *open_bracket
= strchr (str
, '<');
619 /* We only accept simple template declarations (see
620 require_template_declaration), so we only need to parse a
621 comma-separated list of strings, implicitly assumed to
622 be type names, potentially with "*" characters. */
623 char *arg
= open_bracket
+ 1;
624 /* Workaround -Wmaybe-uninitialized false positive during
625 profiledbootstrap by initializing it. */
627 char *type_id
= strtoken (arg
, ",>", &next
);
631 /* Create a new field for every type found inside the template
634 /* Support a single trailing "*" character. */
635 const char *star
= strchr (type_id
, '*');
636 int is_ptr
= (star
!= NULL
);
637 size_t offset_to_star
= star
- type_id
;
639 offset_to_star
= star
- type_id
;
641 if (strstr (type_id
, "char*"))
643 type_id
= strtoken (0, ",>", &next
);
647 char *field_name
= xstrdup (type_id
);
652 /* Strip off the first '*' character (and any subsequent text). */
653 *(field_name
+ offset_to_star
) = '\0';
655 arg_type
= find_structure (field_name
, TYPE_STRUCT
);
656 arg_type
= create_pointer (arg_type
);
659 arg_type
= resolve_typedef (field_name
, pos
);
661 fields
= create_field_at (fields
, arg_type
, field_name
, 0, pos
);
662 type_id
= strtoken (0, ",>", &next
);
665 /* Associate the field list to TY. */
666 ty
->u
.s
.fields
= fields
;
674 /* Given a typedef name S, return its associated type. Return NULL if
675 S is not a registered type name. */
678 type_for_name (const char *s
)
682 /* Special-case support for types within a "gcc::" namespace. Rather
683 than fully-supporting namespaces, simply strip off the "gcc::" prefix
684 where present. This allows us to have GTY roots of this form:
685 extern GTY(()) gcc::some_type *some_ptr;
686 where the autogenerated functions will refer to simply "some_type",
687 where they can be resolved into their namespace. */
688 if (startswith (s
, "gcc::"))
691 for (p
= typedefs
; p
!= NULL
; p
= p
->next
)
692 if (strcmp (p
->name
, s
) == 0)
698 /* Create an undefined type with name S and location POS. Return the
699 newly created type. */
702 create_undefined_type (const char *s
, struct fileloc
*pos
)
704 type_p ty
= find_structure (s
, TYPE_UNDEFINED
);
706 ty
->u
.s
.bitmap
= get_lang_bitmap (pos
->file
);
707 do_typedef (s
, ty
, pos
);
712 /* Return the type previously defined for S. Use POS to report errors. */
715 resolve_typedef (const char *s
, struct fileloc
*pos
)
717 bool is_template_instance
= (strchr (s
, '<') != NULL
);
718 type_p p
= type_for_name (s
);
720 /* If we did not find a typedef registered, generate a TYPE_UNDEFINED
721 type for regular type identifiers. If the type identifier S is a
722 template instantiation, however, we treat it as a user defined
725 FIXME, this is actually a limitation in gengtype. Supporting
726 template types and their instances would require keeping separate
727 track of the basic types definition and its instances. This
728 essentially forces all template classes in GC to be marked
731 p
= (is_template_instance
)
732 ? create_user_defined_type (s
, pos
)
733 : create_undefined_type (s
, pos
);
738 /* Add SUBCLASS to head of linked list of BASE's subclasses. */
740 void add_subclass (type_p base
, type_p subclass
)
742 gcc_assert (union_or_struct_p (base
));
743 gcc_assert (union_or_struct_p (subclass
));
745 subclass
->u
.s
.next_sibling_class
= base
->u
.s
.first_subclass
;
746 base
->u
.s
.first_subclass
= subclass
;
749 /* Create and return a new structure with tag NAME at POS with fields
750 FIELDS and options O. The KIND of structure must be one of
751 TYPE_STRUCT, TYPE_UNION or TYPE_USER_STRUCT. */
754 new_structure (const char *name
, enum typekind kind
, struct fileloc
*pos
,
755 pair_p fields
, options_p o
, type_p base_class
)
759 lang_bitmap bitmap
= get_lang_bitmap (pos
->file
);
760 bool isunion
= (kind
== TYPE_UNION
);
761 type_p
*p
= &structures
;
763 gcc_assert (union_or_struct_p (kind
));
765 for (si
= structures
; si
!= NULL
; p
= &si
->next
, si
= *p
)
766 if (strcmp (name
, si
->u
.s
.tag
) == 0 && UNION_P (si
) == isunion
)
769 if (si
->kind
== TYPE_LANG_STRUCT
)
773 for (si
= ls
->u
.s
.lang_struct
; si
!= NULL
; si
= si
->next
)
774 if (si
->u
.s
.bitmap
== bitmap
)
777 else if (si
->u
.s
.line
.file
!= NULL
&& si
->u
.s
.bitmap
!= bitmap
)
781 si
= XCNEW (struct type
);
782 memcpy (si
, ls
, sizeof (struct type
));
783 ls
->kind
= TYPE_LANG_STRUCT
;
784 ls
->u
.s
.lang_struct
= si
;
785 ls
->u
.s
.fields
= NULL
;
787 si
->state_number
= -type_count
;
788 si
->pointer_to
= NULL
;
789 si
->u
.s
.lang_struct
= ls
;
794 if (ls
!= NULL
&& s
== NULL
)
797 s
= XCNEW (struct type
);
798 s
->state_number
= -type_count
;
799 s
->next
= ls
->u
.s
.lang_struct
;
800 ls
->u
.s
.lang_struct
= s
;
801 s
->u
.s
.lang_struct
= ls
;
809 s
= XCNEW (struct type
);
810 s
->state_number
= -type_count
;
814 if (s
->u
.s
.lang_struct
&& (s
->u
.s
.lang_struct
->u
.s
.bitmap
& bitmap
))
816 error_at_line (pos
, "duplicate definition of '%s %s'",
817 isunion
? "union" : "struct", s
->u
.s
.tag
);
818 error_at_line (&s
->u
.s
.line
, "previous definition here");
824 s
->u
.s
.fields
= fields
;
826 s
->u
.s
.bitmap
= bitmap
;
827 if (s
->u
.s
.lang_struct
)
828 s
->u
.s
.lang_struct
->u
.s
.bitmap
|= bitmap
;
829 s
->u
.s
.base_class
= base_class
;
831 add_subclass (base_class
, s
);
836 /* Return the previously-defined structure or union with tag NAME,
837 or a new empty structure or union if none was defined previously.
838 The KIND of structure must be one of TYPE_STRUCT, TYPE_UNION or
842 find_structure (const char *name
, enum typekind kind
)
845 bool isunion
= (kind
== TYPE_UNION
);
846 type_p
*p
= &structures
;
848 gcc_assert (kind
== TYPE_UNDEFINED
|| union_or_struct_p (kind
));
850 for (s
= structures
; s
!= NULL
; p
= &s
->next
, s
= *p
)
851 if (strcmp (name
, s
->u
.s
.tag
) == 0 && UNION_P (s
) == isunion
)
855 s
= XCNEW (struct type
);
856 s
->state_number
= -type_count
;
863 /* Return a scalar type with name NAME. */
866 create_scalar_type (const char *name
)
868 if (!strcmp (name
, "char") || !strcmp (name
, "unsigned char"))
871 return &scalar_nonchar
;
875 /* Return a pointer to T. */
878 create_pointer (type_p t
)
882 type_p r
= XCNEW (struct type
);
884 r
->state_number
= -type_count
;
885 r
->kind
= TYPE_POINTER
;
889 return t
->pointer_to
;
892 /* Return an array of length LEN. */
895 create_array (type_p t
, const char *len
)
900 v
= XCNEW (struct type
);
901 v
->kind
= TYPE_ARRAY
;
902 v
->state_number
= -type_count
;
908 /* Return a string options structure with name NAME and info INFO.
909 NEXT is the next option in the chain. */
911 create_string_option (options_p next
, const char *name
, const char *info
)
913 options_p o
= XNEW (struct options
);
914 o
->kind
= OPTION_STRING
;
917 o
->info
.string
= info
;
921 /* Create a type options structure with name NAME and info INFO. NEXT
922 is the next option in the chain. */
924 create_type_option (options_p next
, const char* name
, type_p info
)
926 options_p o
= XNEW (struct options
);
929 o
->kind
= OPTION_TYPE
;
934 /* Create a nested pointer options structure with name NAME and info
935 INFO. NEXT is the next option in the chain. */
937 create_nested_option (options_p next
, const char* name
,
938 struct nested_ptr_data
* info
)
941 o
= XNEW (struct options
);
944 o
->kind
= OPTION_NESTED
;
945 o
->info
.nested
= info
;
949 /* Return an options structure for a "nested_ptr" option. */
951 create_nested_ptr_option (options_p next
, type_p t
,
952 const char *to
, const char *from
)
954 struct nested_ptr_data
*d
= XNEW (struct nested_ptr_data
);
956 d
->type
= adjust_field_type (t
, 0);
958 d
->convert_from
= from
;
959 return create_nested_option (next
, "nested_ptr", d
);
962 /* Add a variable named S of type T with options O defined at POS,
965 note_variable (const char *s
, type_p t
, options_p o
, struct fileloc
*pos
)
968 n
= XNEW (struct pair
);
977 /* Most-general structure field creator. */
979 create_field_all (pair_p next
, type_p type
, const char *name
, options_p opt
,
980 const input_file
*inpf
, int line
)
984 field
= XNEW (struct pair
);
989 field
->line
.file
= inpf
;
990 field
->line
.line
= line
;
994 /* Create a field that came from the source code we are scanning,
995 i.e. we have a 'struct fileloc', and possibly options; also,
996 adjust_field_type should be called. */
998 create_field_at (pair_p next
, type_p type
, const char *name
, options_p opt
,
1001 return create_field_all (next
, adjust_field_type (type
, opt
),
1002 name
, opt
, pos
->file
, pos
->line
);
1005 /* Create a fake field with the given type and name. NEXT is the next
1006 field in the chain. */
1007 #define create_field(next,type,name) \
1008 create_field_all (next,type,name, 0, this_file, __LINE__)
1010 /* Like create_field, but the field is only valid when condition COND
1014 create_optional_field_ (pair_p next
, type_p type
, const char *name
,
1015 const char *cond
, int line
)
1018 pair_p union_fields
;
1021 /* Create a fake union type with a single nameless field of type TYPE.
1022 The field has a tag of "1". This allows us to make the presence
1023 of a field of type TYPE depend on some boolean "desc" being true. */
1024 union_fields
= create_field (NULL
, type
, "");
1026 create_string_option (union_fields
->opt
, "dot", "");
1028 create_string_option (union_fields
->opt
, "tag", "1");
1030 new_structure (xasprintf ("%s_%d", "fake_union", id
++), TYPE_UNION
,
1031 &lexer_line
, union_fields
, NULL
, NULL
);
1033 /* Create the field and give it the new fake union type. Add a "desc"
1034 tag that specifies the condition under which the field is valid. */
1035 return create_field_all (next
, union_type
, name
,
1036 create_string_option (0, "desc", cond
),
1040 #define create_optional_field(next,type,name,cond) \
1041 create_optional_field_(next,type,name,cond,__LINE__)
1043 /* Reverse a linked list of 'struct pair's in place. */
1045 nreverse_pairs (pair_p list
)
1047 pair_p prev
= 0, p
, next
;
1048 for (p
= list
; p
; p
= next
)
1058 /* We don't care how long a CONST_DOUBLE is. */
1059 #define CONST_DOUBLE_FORMAT "ww"
1060 /* We don't want to see codes that are only for generator files. */
1061 #undef GENERATOR_FILE
1065 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
1071 static const char *const rtx_name
[NUM_RTX_CODE
] = {
1072 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) NAME ,
1077 static const char *const rtx_format
[NUM_RTX_CODE
] = {
1078 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) FORMAT ,
1083 static int rtx_next_new
[NUM_RTX_CODE
];
1085 /* We also need codes and names for insn notes (not register notes).
1086 Note that we do *not* bias the note values here. */
1089 #define DEF_INSN_NOTE(NAME) NAME,
1090 #include "insn-notes.def"
1091 #undef DEF_INSN_NOTE
1096 /* We must allocate one more entry here, as we use NOTE_INSN_MAX as the
1097 default field for line number notes. */
1098 static const char *const note_insn_name
[NOTE_INSN_MAX
+ 1] = {
1099 #define DEF_INSN_NOTE(NAME) #NAME,
1100 #include "insn-notes.def"
1101 #undef DEF_INSN_NOTE
1104 #undef CONST_DOUBLE_FORMAT
1105 #define GENERATOR_FILE
1107 /* Generate the contents of the rtx_next array. This really doesn't belong
1108 in gengtype at all, but it's needed for adjust_field_rtx_def. */
1114 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
1118 rtx_next_new
[i
] = -1;
1119 if (startswith (rtx_format
[i
], "uu"))
1120 rtx_next_new
[i
] = 1;
1121 else if (i
== COND_EXEC
|| i
== SET
|| i
== EXPR_LIST
|| i
== INSN_LIST
)
1122 rtx_next_new
[i
] = 1;
1124 for (k
= strlen (rtx_format
[i
]) - 1; k
>= 0; k
--)
1125 if (rtx_format
[i
][k
] == 'e' || rtx_format
[i
][k
] == 'u')
1126 rtx_next_new
[i
] = k
;
1130 /* Write out the contents of the rtx_next array. */
1132 write_rtx_next (void)
1134 outf_p f
= get_output_file_with_visibility (NULL
);
1139 oprintf (f
, "\n/* Used to implement the RTX_NEXT macro. */\n");
1140 oprintf (f
, "EXPORTED_CONST unsigned char rtx_next[NUM_RTX_CODE] = {\n");
1141 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
1142 if (rtx_next_new
[i
] == -1)
1143 oprintf (f
, " 0,\n");
1146 " RTX_HDR_SIZE + %d * sizeof (rtunion),\n", rtx_next_new
[i
]);
1147 oprintf (f
, "};\n");
1150 /* Handle `special("rtx_def")'. This is a special case for field
1151 `fld' of struct rtx_def, which is an array of unions whose values
1152 are based in a complex way on the type of RTL. */
1155 adjust_field_rtx_def (type_p t
, options_p
ARG_UNUSED (opt
))
1160 type_p rtx_tp
, rtvec_tp
, tree_tp
, mem_attrs_tp
, note_union_tp
, scalar_tp
;
1161 type_p basic_block_tp
, reg_attrs_tp
, constant_tp
, symbol_union_tp
;
1163 if (t
->kind
!= TYPE_UNION
)
1165 error_at_line (&lexer_line
,
1166 "special `rtx_def' must be applied to a union");
1167 return &string_type
;
1170 nodot
= create_string_option (NULL
, "dot", "");
1172 rtx_tp
= create_pointer (find_structure ("rtx_def", TYPE_STRUCT
));
1173 rtvec_tp
= create_pointer (find_structure ("rtvec_def", TYPE_STRUCT
));
1174 tree_tp
= create_pointer (find_structure ("tree_node", TYPE_UNION
));
1175 mem_attrs_tp
= create_pointer (find_structure ("mem_attrs", TYPE_STRUCT
));
1177 create_pointer (find_structure ("reg_attrs", TYPE_STRUCT
));
1179 create_pointer (find_structure ("basic_block_def", TYPE_STRUCT
));
1181 create_pointer (find_structure ("constant_descriptor_rtx", TYPE_STRUCT
));
1182 scalar_tp
= &scalar_nonchar
; /* rtunion int */
1185 pair_p note_flds
= NULL
;
1188 for (c
= 0; c
<= NOTE_INSN_MAX
; c
++)
1193 case NOTE_INSN_DELETED_LABEL
:
1194 case NOTE_INSN_DELETED_DEBUG_LABEL
:
1195 note_flds
= create_field (note_flds
, &string_type
, "rt_str");
1198 case NOTE_INSN_BLOCK_BEG
:
1199 case NOTE_INSN_BLOCK_END
:
1200 note_flds
= create_field (note_flds
, tree_tp
, "rt_tree");
1203 case NOTE_INSN_VAR_LOCATION
:
1204 note_flds
= create_field (note_flds
, rtx_tp
, "rt_rtx");
1208 note_flds
= create_field (note_flds
, scalar_tp
, "rt_int");
1211 /* NOTE_INSN_MAX is used as the default field for line
1213 if (c
== NOTE_INSN_MAX
)
1215 create_string_option (nodot
, "default", "");
1218 create_string_option (nodot
, "tag", note_insn_name
[c
]);
1220 note_union_tp
= new_structure ("rtx_def_note_subunion", TYPE_UNION
,
1221 &lexer_line
, note_flds
, NULL
, NULL
);
1223 /* Create a type to represent the various forms of SYMBOL_REF_DATA. */
1226 sym_flds
= create_field (NULL
, tree_tp
, "rt_tree");
1227 sym_flds
->opt
= create_string_option (nodot
, "default", "");
1228 sym_flds
= create_field (sym_flds
, constant_tp
, "rt_constant");
1229 sym_flds
->opt
= create_string_option (nodot
, "tag", "1");
1230 symbol_union_tp
= new_structure ("rtx_def_symbol_subunion", TYPE_UNION
,
1231 &lexer_line
, sym_flds
, NULL
, NULL
);
1233 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
1235 pair_p subfields
= NULL
;
1236 size_t aindex
, nmindex
;
1241 for (aindex
= 0; aindex
< strlen (rtx_format
[i
]); aindex
++)
1244 const char *subname
;
1246 switch (rtx_format
[i
][aindex
])
1259 subname
= "rt_subreg";
1263 if (i
== MEM
&& aindex
== 1)
1264 t
= mem_attrs_tp
, subname
= "rt_mem";
1265 else if (i
== JUMP_INSN
&& aindex
== 7)
1266 t
= rtx_tp
, subname
= "rt_rtx";
1267 else if (i
== CODE_LABEL
&& aindex
== 4)
1268 t
= scalar_tp
, subname
= "rt_int";
1269 else if (i
== CODE_LABEL
&& aindex
== 3)
1270 t
= rtx_tp
, subname
= "rt_rtx";
1271 else if (i
== LABEL_REF
&& (aindex
== 1 || aindex
== 2))
1272 t
= rtx_tp
, subname
= "rt_rtx";
1273 else if (i
== NOTE
&& aindex
== 3)
1274 t
= note_union_tp
, subname
= "";
1275 else if (i
== NOTE
&& aindex
== 4)
1276 t
= scalar_tp
, subname
= "rt_int";
1277 else if (i
== NOTE
&& aindex
>= 6)
1278 t
= scalar_tp
, subname
= "rt_int";
1279 else if (i
== ADDR_DIFF_VEC
&& aindex
== 4)
1280 t
= scalar_tp
, subname
= "rt_int";
1281 else if (i
== VALUE
&& aindex
== 0)
1282 t
= scalar_tp
, subname
= "rt_int";
1283 else if (i
== DEBUG_EXPR
&& aindex
== 0)
1284 t
= tree_tp
, subname
= "rt_tree";
1285 else if (i
== SYMBOL_REF
&& aindex
== 1)
1286 t
= symbol_union_tp
, subname
= "";
1287 else if (i
== JUMP_TABLE_DATA
&& aindex
>= 4)
1288 t
= scalar_tp
, subname
= "rt_int";
1289 else if (i
== BARRIER
&& aindex
>= 2)
1290 t
= scalar_tp
, subname
= "rt_int";
1291 else if (i
== ENTRY_VALUE
&& aindex
== 0)
1292 t
= rtx_tp
, subname
= "rt_rtx";
1297 "rtx type `%s' has `0' in position %lu, can't handle",
1298 rtx_name
[i
], (unsigned long) aindex
);
1320 subname
= "rt_rtvec";
1325 subname
= "rt_tree";
1336 "rtx type `%s' has `%c' in position %lu, can't handle",
1337 rtx_name
[i
], rtx_format
[i
][aindex
],
1338 (unsigned long) aindex
);
1344 subfields
= create_field (subfields
, t
,
1345 xasprintf (".fld[%lu].%s",
1346 (unsigned long) aindex
,
1348 subfields
->opt
= nodot
;
1349 if (t
== note_union_tp
)
1351 create_string_option (subfields
->opt
, "desc",
1353 if (t
== symbol_union_tp
)
1355 create_string_option (subfields
->opt
, "desc",
1356 "CONSTANT_POOL_ADDRESS_P (&%0)");
1360 subfields
= create_field (subfields
, reg_attrs_tp
, "reg.attrs");
1362 if (i
== SYMBOL_REF
)
1364 /* Add the "block_sym" field if SYMBOL_REF_HAS_BLOCK_INFO_P
1366 type_p field_tp
= find_structure ("block_symbol", TYPE_STRUCT
);
1368 = create_optional_field (subfields
, field_tp
, "block_sym",
1369 "SYMBOL_REF_HAS_BLOCK_INFO_P (&%0)");
1372 sname
= xasprintf ("rtx_def_%s", rtx_name
[i
]);
1373 substruct
= new_structure (sname
, TYPE_STRUCT
, &lexer_line
, subfields
,
1376 ftag
= xstrdup (rtx_name
[i
]);
1377 for (nmindex
= 0; nmindex
< strlen (ftag
); nmindex
++)
1378 ftag
[nmindex
] = TOUPPER (ftag
[nmindex
]);
1379 flds
= create_field (flds
, substruct
, "");
1380 flds
->opt
= create_string_option (nodot
, "tag", ftag
);
1382 return new_structure ("rtx_def_subunion", TYPE_UNION
, &lexer_line
, flds
,
1386 /* Perform any special processing on a type T, about to become the type
1387 of a field. Return the appropriate type for the field.
1389 - Converts pointer-to-char, with no length parameter, to TYPE_STRING;
1390 - Similarly for arrays of pointer-to-char;
1391 - Handles "special" options.
1395 adjust_field_type (type_p t
, options_p opt
)
1398 const int pointer_p
= t
->kind
== TYPE_POINTER
;
1400 for (; opt
; opt
= opt
->next
)
1401 if (strcmp (opt
->name
, "length") == 0)
1404 error_at_line (&lexer_line
, "duplicate `%s' option", opt
->name
);
1405 if (t
->u
.p
->kind
== TYPE_SCALAR
|| t
->u
.p
->kind
== TYPE_STRING
)
1407 error_at_line (&lexer_line
,
1408 "option `%s' may not be applied to "
1409 "arrays of atomic types", opt
->name
);
1413 else if (strcmp (opt
->name
, "special") == 0
1414 && opt
->kind
== OPTION_STRING
)
1416 const char *special_name
= opt
->info
.string
;
1417 if (strcmp (special_name
, "rtx_def") == 0)
1418 t
= adjust_field_rtx_def (t
, opt
);
1420 error_at_line (&lexer_line
, "unknown special `%s'", special_name
);
1424 && pointer_p
&& t
->u
.p
->kind
== TYPE_SCALAR
&& t
->u
.p
->u
.scalar_is_char
)
1425 return &string_type
;
1426 if (t
->kind
== TYPE_ARRAY
&& t
->u
.a
.p
->kind
== TYPE_POINTER
1427 && t
->u
.a
.p
->u
.p
->kind
== TYPE_SCALAR
1428 && t
->u
.a
.p
->u
.p
->u
.scalar_is_char
)
1429 return create_array (&string_type
, t
->u
.a
.len
);
1435 static void set_gc_used_type (type_p
, enum gc_used_enum
, bool = false);
1436 static void set_gc_used (pair_p
);
1438 /* Handle OPT for set_gc_used_type. */
1441 process_gc_options (options_p opt
, enum gc_used_enum level
, int *maybe_undef
,
1442 int *length
, int *skip
, int *callback
, type_p
*nested_ptr
)
1445 for (o
= opt
; o
; o
= o
->next
)
1446 if (strcmp (o
->name
, "ptr_alias") == 0 && level
== GC_POINTED_TO
1447 && o
->kind
== OPTION_TYPE
)
1448 set_gc_used_type (o
->info
.type
,
1450 else if (strcmp (o
->name
, "maybe_undef") == 0)
1452 else if (strcmp (o
->name
, "length") == 0)
1454 else if (strcmp (o
->name
, "skip") == 0)
1456 else if (strcmp (o
->name
, "callback") == 0)
1458 else if (strcmp (o
->name
, "nested_ptr") == 0
1459 && o
->kind
== OPTION_NESTED
)
1460 *nested_ptr
= ((const struct nested_ptr_data
*) o
->info
.nested
)->type
;
1464 /* Set the gc_used field of T to LEVEL, and handle the types it references.
1466 If ALLOWED_UNDEFINED_TYPES is true, types of kind TYPE_UNDEFINED
1467 are set to GC_UNUSED. Otherwise, an error is emitted for
1468 TYPE_UNDEFINED types. This is used to support user-defined
1469 template types with non-type arguments.
1471 For instance, when we parse a template type with enum arguments
1472 (e.g. MyType<AnotherType, EnumValue>), the parser created two
1473 artificial fields for 'MyType', one for 'AnotherType', the other
1474 one for 'EnumValue'.
1476 At the time that we parse this type we don't know that 'EnumValue'
1477 is really an enum value, so the parser creates a TYPE_UNDEFINED
1478 type for it. Since 'EnumValue' is never resolved to a known
1479 structure, it will stay with TYPE_UNDEFINED.
1481 Since 'MyType' is a TYPE_USER_STRUCT, we can simply ignore
1482 'EnumValue'. Generating marking code for it would cause
1483 compilation failures since the marking routines assumes that
1484 'EnumValue' is a type. */
1487 set_gc_used_type (type_p t
, enum gc_used_enum level
,
1488 bool allow_undefined_types
)
1490 if (t
->gc_used
>= level
)
1499 case TYPE_USER_STRUCT
:
1504 bool allow_undefined_field_types
= (t
->kind
== TYPE_USER_STRUCT
);
1506 process_gc_options (t
->u
.s
.opt
, level
, &dummy
, &dummy
, &dummy
, &dummy
,
1509 if (t
->u
.s
.base_class
)
1510 set_gc_used_type (t
->u
.s
.base_class
, level
, allow_undefined_types
);
1511 /* Anything pointing to a base class might actually be pointing
1513 for (type_p subclass
= t
->u
.s
.first_subclass
; subclass
;
1514 subclass
= subclass
->u
.s
.next_sibling_class
)
1515 set_gc_used_type (subclass
, level
, allow_undefined_types
);
1517 FOR_ALL_INHERITED_FIELDS(t
, f
)
1519 int maybe_undef
= 0;
1523 type_p nested_ptr
= NULL
;
1524 process_gc_options (f
->opt
, level
, &maybe_undef
, &length
, &skip
,
1525 &callback
, &nested_ptr
);
1527 if (nested_ptr
&& f
->type
->kind
== TYPE_POINTER
)
1528 set_gc_used_type (nested_ptr
, GC_POINTED_TO
);
1529 else if (length
&& f
->type
->kind
== TYPE_POINTER
)
1530 set_gc_used_type (f
->type
->u
.p
, GC_USED
);
1531 else if (maybe_undef
&& f
->type
->kind
== TYPE_POINTER
)
1532 set_gc_used_type (f
->type
->u
.p
, GC_MAYBE_POINTED_TO
);
1534 ; /* target type is not used through this field */
1536 f
->type
= &callback_type
;
1538 set_gc_used_type (f
->type
, GC_USED
, allow_undefined_field_types
);
1543 case TYPE_UNDEFINED
:
1544 if (level
> GC_UNUSED
)
1546 if (!allow_undefined_types
)
1547 error_at_line (&t
->u
.s
.line
, "undefined type `%s'", t
->u
.s
.tag
);
1548 t
->gc_used
= GC_UNUSED
;
1553 set_gc_used_type (t
->u
.p
, GC_POINTED_TO
);
1557 set_gc_used_type (t
->u
.a
.p
, GC_USED
);
1560 case TYPE_LANG_STRUCT
:
1561 for (t
= t
->u
.s
.lang_struct
; t
; t
= t
->next
)
1562 set_gc_used_type (t
, level
);
1570 /* Set the gc_used fields of all the types pointed to by VARIABLES. */
1573 set_gc_used (pair_p variables
)
1577 for (p
= variables
; p
; p
= p
->next
)
1579 set_gc_used_type (p
->type
, GC_USED
);
1582 if (verbosity_level
>= 2)
1583 printf ("%s used %d GTY-ed variables\n", progname
, nbvars
);
1586 /* File mapping routines. For each input file, there is one output .cc file
1587 (but some output files have many input files), and there is one .h file
1588 for the whole build. */
1590 /* Output file handling. */
1592 /* Create and return an outf_p for a new file for NAME, to be called
1596 create_file (const char *name
, const char *oname
)
1598 static const char *const hdr
[] = {
1599 " Copyright (C) 2004-2024 Free Software Foundation, Inc.\n",
1601 "This file is part of GCC.\n",
1603 "GCC is free software; you can redistribute it and/or modify it under\n",
1604 "the terms of the GNU General Public License as published by the Free\n",
1605 "Software Foundation; either version 3, or (at your option) any later\n",
1608 "GCC is distributed in the hope that it will be useful, but WITHOUT ANY\n",
1609 "WARRANTY; without even the implied warranty of MERCHANTABILITY or\n",
1610 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n",
1611 "for more details.\n",
1613 "You should have received a copy of the GNU General Public License\n",
1614 "along with GCC; see the file COPYING3. If not see\n",
1615 "<http://www.gnu.org/licenses/>. */\n",
1617 "/* This file is machine generated. Do not edit. */\n"
1622 gcc_assert (name
!= NULL
);
1623 gcc_assert (oname
!= NULL
);
1624 f
= XCNEW (struct outf
);
1625 f
->next
= output_files
;
1629 oprintf (f
, "/* Type information for %s.\n", name
);
1630 for (i
= 0; i
< ARRAY_SIZE (hdr
); i
++)
1631 oprintf (f
, "%s", hdr
[i
]);
1635 /* Print, like fprintf, to O.
1636 N.B. You might think this could be implemented more efficiently
1637 with vsnprintf(). Unfortunately, there are C libraries that
1638 provide that function but without the C99 semantics for its return
1639 value, making it impossible to know how much space is required. */
1641 oprintf (outf_p o
, const char *format
, ...)
1647 /* In plugin mode, the O could be a NULL pointer, so avoid crashing
1652 va_start (ap
, format
);
1653 slength
= vasprintf (&s
, format
, ap
);
1654 if (s
== NULL
|| (int) slength
< 0)
1655 fatal ("out of memory");
1658 if (o
->bufused
+ slength
> o
->buflength
)
1660 size_t new_len
= o
->buflength
;
1667 while (o
->bufused
+ slength
>= new_len
);
1668 o
->buf
= XRESIZEVEC (char, o
->buf
, new_len
);
1669 o
->buflength
= new_len
;
1671 memcpy (o
->buf
+ o
->bufused
, s
, slength
);
1672 o
->bufused
+= slength
;
1676 /* Open the global header file and the language-specific header files. */
1679 open_base_files (void)
1683 if (nb_plugin_files
> 0 && plugin_files
)
1686 header_file
= create_file ("GCC", "gtype-desc.h");
1688 base_files
= XNEWVEC (outf_p
, num_lang_dirs
);
1690 for (i
= 0; i
< num_lang_dirs
; i
++)
1691 base_files
[i
] = create_file (lang_dir_names
[i
],
1692 xasprintf ("gtype-%s.h", lang_dir_names
[i
]));
1694 /* gtype-desc.cc is a little special, so we create it here. */
1696 /* The order of files here matters very much. */
1697 static const char *const ifiles
[] = {
1698 "config.h", "system.h", "coretypes.h",
1699 "backend.h", "predict.h", "tree.h",
1700 "rtl.h", "gimple.h", "fold-const.h", "insn-codes.h", "splay-tree.h",
1701 "alias.h", "insn-config.h", "flags.h", "expmed.h", "dojump.h",
1702 "explow.h", "calls.h", "memmodel.h", "emit-rtl.h", "varasm.h",
1703 "stmt.h", "expr.h", "alloc-pool.h", "cselib.h", "insn-addr.h",
1704 "optabs.h", "libfuncs.h", "debug.h", "internal-fn.h",
1705 "gimple-iterator.h", "gimple-fold.h", "value-range.h",
1706 "value-range-storage.h",
1707 "tree-eh.h", "gimple-ssa.h", "tree-cfg.h",
1708 "tree-vrp.h", "tree-phinodes.h", "ssa-iterators.h", "stringpool.h",
1709 "tree-ssanames.h", "tree-ssa-loop.h", "tree-ssa-loop-ivopts.h",
1710 "tree-ssa-loop-manip.h", "tree-ssa-loop-niter.h", "tree-into-ssa.h",
1711 "tree-dfa.h", "tree-ssa.h", "reload.h", "cpplib.h", "tree-chrec.h",
1712 "except.h", "output.h", "cfgloop.h", "target.h", "lto-streamer.h",
1713 "target-globals.h", "ipa-ref.h", "cgraph.h", "symbol-summary.h",
1714 "ipa-prop.h", "ipa-fnsummary.h", "dwarf2out.h", "omp-general.h",
1715 "omp-offload.h", "ipa-modref-tree.h", "ipa-modref.h", "symtab-thunks.h",
1716 "symtab-clones.h", "diagnostic-spec.h", "ctfc.h",
1719 const char *const *ifp
;
1720 outf_p gtype_desc_c
;
1722 gtype_desc_c
= create_file ("GCC", "gtype-desc.cc");
1723 for (ifp
= ifiles
; *ifp
; ifp
++)
1724 oprintf (gtype_desc_c
, "#include \"%s\"\n", *ifp
);
1725 for (int j
= 0; j
< (int) num_build_headers
; j
++)
1726 oprintf (gtype_desc_c
, "#include \"%s\"\n", build_headers
[j
]);
1728 /* Make sure we handle "cfun" specially. */
1729 oprintf (gtype_desc_c
, "\n/* See definition in function.h. */\n");
1730 oprintf (gtype_desc_c
, "#undef cfun\n");
1732 oprintf (gtype_desc_c
,
1734 "/* Types with a \"gcc::\" namespace have it stripped\n"
1735 " during gengtype parsing. Provide a \"using\" directive\n"
1736 " to ensure that the fully-qualified types are found. */\n"
1737 "using namespace gcc;\n");
1741 /* For INPF an input file, return the real basename of INPF, with all
1742 the directory components skipped. */
1745 get_file_realbasename (const input_file
*inpf
)
1747 return lbasename (get_input_file_name (inpf
));
1750 /* For INPF a filename, return the relative path to INPF from
1751 $(srcdir) if the latter is a prefix in INPF, NULL otherwise. */
1754 get_file_srcdir_relative_path (const input_file
*inpf
)
1756 const char *f
= get_input_file_name (inpf
);
1757 if (strlen (f
) > srcdir_len
1758 && IS_DIR_SEPARATOR (f
[srcdir_len
])
1759 && strncmp (f
, srcdir
, srcdir_len
) == 0)
1760 return f
+ srcdir_len
+ 1;
1765 /* For INPF an input_file, return the relative path to INPF from
1766 $(srcdir) if the latter is a prefix in INPF, or the real basename
1767 of INPF otherwise. */
1770 get_file_basename (const input_file
*inpf
)
1772 const char *srcdir_path
= get_file_srcdir_relative_path (inpf
);
1774 return (srcdir_path
!= NULL
) ? srcdir_path
: get_file_realbasename (inpf
);
1777 /* For F a filename, return the lang_dir_names relative index of the language
1778 directory that is a prefix in F, if any, -1 otherwise. */
1781 get_prefix_langdir_index (const char *f
)
1783 size_t f_len
= strlen (f
);
1786 for (lang_index
= 0; lang_index
< num_lang_dirs
; lang_index
++)
1788 const char *langdir
= lang_dir_names
[lang_index
];
1789 size_t langdir_len
= strlen (langdir
);
1791 if (f_len
> langdir_len
1792 && IS_DIR_SEPARATOR (f
[langdir_len
])
1793 && memcmp (f
, langdir
, langdir_len
) == 0)
1800 /* For INPF an input file, return the name of language directory where
1801 F is located, if any, NULL otherwise. */
1804 get_file_langdir (const input_file
*inpf
)
1806 /* Get the relative path to INPF from $(srcdir) and find the
1807 language by comparing the prefix with language directory names.
1808 If INPF is not even srcdir relative, no point in looking
1812 const char *srcdir_relative_path
= get_file_srcdir_relative_path (inpf
);
1815 if (!srcdir_relative_path
)
1818 lang_index
= get_prefix_langdir_index (srcdir_relative_path
);
1819 if (lang_index
< 0 && startswith (srcdir_relative_path
, "c-family"))
1821 else if (lang_index
>= 0)
1822 r
= lang_dir_names
[lang_index
];
1829 /* The gt- output file name for INPF. */
1832 get_file_gtfilename (const input_file
*inpf
)
1834 /* Cook up an initial version of the gt- file name from the file real
1835 basename and the language name, if any. */
1837 const char *basename
= get_file_realbasename (inpf
);
1838 const char *langdir
= get_file_langdir (inpf
);
1841 (langdir
? xasprintf ("gt-%s-%s", langdir
, basename
)
1842 : xasprintf ("gt-%s", basename
));
1844 /* Then replace all non alphanumerics characters by '-' and change the
1845 extension to ".h". We expect the input filename extension was at least
1846 one character long. */
1850 for (; *s
!= '.'; s
++)
1851 if (!ISALNUM (*s
) && *s
!= '-')
1854 memcpy (s
, ".h", sizeof (".h"));
1859 /* Each input_file has its associated output file outf_p. The
1860 association is computed by the function
1861 get_output_file_with_visibility. The associated file is cached
1862 inside input_file in its inpoutf field, so is really computed only
1863 once. Associated output file paths (i.e. output_name-s) are
1864 computed by a rule based regexp machinery, using the files_rules
1865 array of struct file_rule_st. A for_name is also computed, giving
1866 the source file name for which the output_file is generated; it is
1867 often the last component of the input_file path. */
1871 Regexpr machinery to compute the output_name and for_name-s of each
1872 input_file. We have a sequence of file rules which gives the POSIX
1873 extended regular expression to match an input file path, and two
1874 transformed strings for the corresponding output_name and the
1875 corresponding for_name. The transformed string contain dollars: $0
1876 is replaced by the entire match, $1 is replaced by the substring
1877 matching the first parenthesis in the regexp, etc. And $$ is replaced
1878 by a single verbatim dollar. The rule order is important. The
1879 general case is last, and the particular cases should come before.
1880 An action routine can, when needed, update the out_name & for_name
1881 and/or return the appropriate output file. It is invoked only when a
1882 rule is triggered. When a rule is triggered, the output_name and
1883 for_name are computed using their transform string in while $$, $0,
1884 $1, ... are suitably replaced. If there is an action, it is called.
1885 In some few cases, the action can directly return the outf_p, but
1886 usually it just updates the output_name and for_name so should free
1887 them before replacing them. The get_output_file_with_visibility
1888 function creates an outf_p only once per each output_name, so it
1889 scans the output_files list for previously seen output file names.
1892 /* Signature of actions in file rules. */
1893 typedef outf_p (frul_actionrout_t
) (input_file
*, char**, char**);
1896 struct file_rule_st
{
1897 const char* frul_srcexpr
; /* Source string for regexp. */
1898 int frul_rflags
; /* Flags passed to regcomp, usually
1900 regex_t
* frul_re
; /* Compiled regular expression
1901 obtained by regcomp. */
1902 const char* frul_tr_out
; /* Transformation string for making
1903 * the output_name, with $1 ... $9 for
1904 * subpatterns and $0 for the whole
1905 * matched filename. */
1906 const char* frul_tr_for
; /* Tranformation string for making the
1908 frul_actionrout_t
* frul_action
; /* The action, if non null, is
1909 * called once the rule matches, on
1910 * the transformed out_name &
1911 * for_name. It could change them
1912 * and/or give the output file. */
1915 /* File rule action handling *.h files. */
1916 static outf_p
header_dot_h_frul (input_file
*, char**, char**);
1918 /* File rule action handling *.cc files. */
1919 static outf_p
source_dot_cc_frul (input_file
*, char**, char**);
1921 #define NULL_REGEX (regex_t*)0
1923 /* The prefix in our regexp-s matching the directory. */
1924 #define DIR_PREFIX_REGEX "^(([^/]*/)*)"
1926 #define NULL_FRULACT (frul_actionrout_t*)0
1928 /* The array of our rules governing file name generation. Rules order
1929 matters, so change with extreme care! */
1931 struct file_rule_st files_rules
[] = {
1932 /* The general rule assumes that files in subdirectories belong to a
1933 particular front-end, and files not in subdirectories are shared.
1934 The following rules deal with exceptions - files that are in
1935 subdirectories and yet are shared, and files that are top-level,
1936 but are not shared. */
1938 /* the c-family/ source directory is special. */
1939 { DIR_PREFIX_REGEX
"c-family/([[:alnum:]_-]*)\\.cc$",
1940 REG_EXTENDED
, NULL_REGEX
,
1941 "gt-c-family-$3.h", "c-family/$3.cc", NULL_FRULACT
},
1943 { DIR_PREFIX_REGEX
"c-family/([[:alnum:]_-]*)\\.h$",
1944 REG_EXTENDED
, NULL_REGEX
,
1945 "gt-c-family-$3.h", "c-family/$3.h", NULL_FRULACT
},
1947 /* Both c-lang.h & c-tree.h gives gt-c-c-decl.h for c-decl.cc ! */
1948 { DIR_PREFIX_REGEX
"c/c-lang\\.h$",
1949 REG_EXTENDED
, NULL_REGEX
, "gt-c-c-decl.h", "c/c-decl.cc", NULL_FRULACT
},
1951 { DIR_PREFIX_REGEX
"c/c-tree\\.h$",
1952 REG_EXTENDED
, NULL_REGEX
, "gt-c-c-decl.h", "c/c-decl.cc", NULL_FRULACT
},
1954 /* cp/cp-tree.h gives gt-cp-tree.h for cp/tree.cc ! */
1955 { DIR_PREFIX_REGEX
"cp/cp-tree\\.h$",
1956 REG_EXTENDED
, NULL_REGEX
,
1957 "gt-cp-tree.h", "cp/tree.cc", NULL_FRULACT
},
1959 /* cp/decl.h & cp/decl.cc gives gt-cp-decl.h for cp/decl.cc ! */
1960 { DIR_PREFIX_REGEX
"cp/decl\\.[ch]$",
1961 REG_EXTENDED
, NULL_REGEX
,
1962 "gt-cp-decl.h", "cp/decl.cc", NULL_FRULACT
},
1964 /* cp/name-lookup.h gives gt-cp-name-lookup.h for cp/name-lookup.cc ! */
1965 { DIR_PREFIX_REGEX
"cp/name-lookup\\.h$",
1966 REG_EXTENDED
, NULL_REGEX
,
1967 "gt-cp-name-lookup.h", "cp/name-lookup.cc", NULL_FRULACT
},
1969 /* cp/parser.h gives gt-cp-parser.h for cp/parser.cc ! */
1970 { DIR_PREFIX_REGEX
"cp/parser\\.h$",
1971 REG_EXTENDED
, NULL_REGEX
,
1972 "gt-cp-parser.h", "cp/parser.cc", NULL_FRULACT
},
1974 /* objc/objc-act.h gives gt-objc-objc-act.h for objc/objc-act.cc ! */
1975 { DIR_PREFIX_REGEX
"objc/objc-act\\.h$",
1976 REG_EXTENDED
, NULL_REGEX
,
1977 "gt-objc-objc-act.h", "objc/objc-act.cc", NULL_FRULACT
},
1979 /* objc/objc-map.h gives gt-objc-objc-map.h for objc/objc-map.cc ! */
1980 { DIR_PREFIX_REGEX
"objc/objc-map\\.h$",
1981 REG_EXTENDED
, NULL_REGEX
,
1982 "gt-objc-objc-map.h", "objc/objc-map.cc", NULL_FRULACT
},
1984 /* General cases. For header *.h and *.cc files, we
1985 * need special actions to handle the language. */
1987 /* Source *.cc files are using get_file_gtfilename to compute their
1988 output_name and get_file_basename to compute their for_name
1989 through the source_dot_cc_frul action. */
1990 { DIR_PREFIX_REGEX
"([[:alnum:]_-]*)\\.cc$",
1991 REG_EXTENDED
, NULL_REGEX
, "gt-$3.h", "$3.cc", source_dot_cc_frul
},
1993 /* Common header files get "gtype-desc.cc" as their output_name,
1994 * while language specific header files are handled specially. So
1995 * we need the header_dot_h_frul action. */
1996 { DIR_PREFIX_REGEX
"([[:alnum:]_-]*)\\.h$",
1997 REG_EXTENDED
, NULL_REGEX
, "gt-$3.h", "$3.h", header_dot_h_frul
},
1999 { DIR_PREFIX_REGEX
"([[:alnum:]_-]*)\\.in$",
2000 REG_EXTENDED
, NULL_REGEX
, "gt-$3.h", "$3.in", NULL_FRULACT
},
2002 /* Mandatory null last entry signaling end of rules. */
2003 {NULL
, 0, NULL_REGEX
, NULL
, NULL
, NULL_FRULACT
}
2006 /* Special file rules action for handling *.h header files. It gives
2007 "gtype-desc.cc" for common headers and corresponding output
2008 files for language-specific header files. */
2010 header_dot_h_frul (input_file
* inpf
, char**poutname
,
2011 char**pforname ATTRIBUTE_UNUSED
)
2013 const char *basename
= 0;
2015 DBGPRINTF ("inpf %p inpname %s outname %s forname %s",
2016 (void*) inpf
, get_input_file_name (inpf
),
2017 *poutname
, *pforname
);
2018 basename
= get_file_basename (inpf
);
2019 lang_index
= get_prefix_langdir_index (basename
);
2020 DBGPRINTF ("basename %s lang_index %d", basename
, lang_index
);
2022 if (lang_index
>= 0)
2024 /* The header is language specific. Given output_name &
2025 for_name remains unchanged. The base_files array gives the
2027 DBGPRINTF ("header_dot_h found language specific @ %p '%s'",
2028 (void*) base_files
[lang_index
],
2029 (base_files
[lang_index
])->name
);
2030 return base_files
[lang_index
];
2034 /* The header is common to all front-end languages. So
2035 output_name is "gtype-desc.cc" file. The calling function
2036 get_output_file_with_visibility will find its outf_p. */
2038 *poutname
= xstrdup ("gtype-desc.cc");
2039 DBGPRINTF ("special 'gtype-desc.cc' for inpname %s",
2040 get_input_file_name (inpf
));
2046 /* Special file rules action for handling *.cc source files using
2047 * get_file_gtfilename to compute their output_name and
2048 * get_file_basename to compute their for_name. The output_name is
2049 * gt-<LANG>-<BASE>.h for language specific source files, and
2050 * gt-<BASE>.h for common source files. */
2052 source_dot_cc_frul (input_file
* inpf
, char**poutname
, char**pforname
)
2054 char *newbasename
= CONST_CAST (char*, get_file_basename (inpf
));
2055 char *newoutname
= CONST_CAST (char*, get_file_gtfilename (inpf
));
2056 DBGPRINTF ("inpf %p inpname %s original outname %s forname %s",
2057 (void*) inpf
, get_input_file_name (inpf
),
2058 *poutname
, *pforname
);
2059 DBGPRINTF ("newoutname %s", newoutname
);
2060 DBGPRINTF ("newbasename %s", newbasename
);
2063 *poutname
= newoutname
;
2064 *pforname
= newbasename
;
2068 /* Utility function for get_output_file_with_visibility which returns
2069 * a malloc-ed substituted string using TRS on matching of the FILNAM
2070 * file name, using the PMATCH array. */
2072 matching_file_name_substitute (const char *filnam
, regmatch_t pmatch
[10],
2075 struct obstack str_obstack
;
2077 char *rawstr
= NULL
;
2078 const char *pt
= NULL
;
2079 DBGPRINTF ("filnam %s", filnam
);
2080 obstack_init (&str_obstack
);
2081 for (pt
= trs
; *pt
; pt
++) {
2087 /* A double dollar $$ is substituted by a single verbatim
2088 dollar, but who really uses dollar signs in file
2090 obstack_1grow (&str_obstack
, '$');
2092 else if (ISDIGIT (pt
[1]))
2094 /* Handle $0 $1 ... $9 by appropriate substitution. */
2095 int dolnum
= pt
[1] - '0';
2096 int so
= pmatch
[dolnum
].rm_so
;
2097 int eo
= pmatch
[dolnum
].rm_eo
;
2098 DBGPRINTF ("so=%d eo=%d dolnum=%d", so
, eo
, dolnum
);
2099 if (so
>=0 && eo
>=so
)
2100 obstack_grow (&str_obstack
, filnam
+ so
, eo
- so
);
2104 /* This can happen only when files_rules is buggy! */
2107 /* Always skip the character after the dollar. */
2111 obstack_1grow (&str_obstack
, c
);
2113 obstack_1grow (&str_obstack
, '\0');
2114 rawstr
= XOBFINISH (&str_obstack
, char *);
2115 str
= xstrdup (rawstr
);
2116 obstack_free (&str_obstack
, NULL
);
2117 DBGPRINTF ("matched replacement %s", str
);
2123 /* An output file, suitable for definitions, that can see declarations
2124 made in INPF and is linked into every language that uses INPF.
2125 Since the result is cached inside INPF, that argument cannot be
2126 declared constant, but is "almost" constant. */
2129 get_output_file_with_visibility (input_file
*inpf
)
2132 char *for_name
= NULL
;
2133 char *output_name
= NULL
;
2134 const char* inpfname
;
2136 /* This can happen when we need a file with visibility on a
2137 structure that we've never seen. We have to just hope that it's
2138 globally visible. */
2140 inpf
= system_h_file
;
2142 /* The result is cached in INPF, so return it if already known. */
2144 return inpf
->inpoutf
;
2146 /* In plugin mode, return NULL unless the input_file is one of the
2151 for (i
= 0; i
< nb_plugin_files
; i
++)
2152 if (inpf
== plugin_files
[i
])
2154 inpf
->inpoutf
= plugin_output
;
2155 return plugin_output
;
2161 inpfname
= get_input_file_name (inpf
);
2163 /* Try each rule in sequence in files_rules until one is triggered. */
2166 DBGPRINTF ("passing input file @ %p named %s through the files_rules",
2167 (void*) inpf
, inpfname
);
2169 for (; files_rules
[rulix
].frul_srcexpr
!= NULL
; rulix
++)
2171 DBGPRINTF ("rulix#%d srcexpr %s",
2172 rulix
, files_rules
[rulix
].frul_srcexpr
);
2174 if (!files_rules
[rulix
].frul_re
)
2176 /* Compile the regexpr lazily. */
2178 files_rules
[rulix
].frul_re
= XCNEW (regex_t
);
2179 err
= regcomp (files_rules
[rulix
].frul_re
,
2180 files_rules
[rulix
].frul_srcexpr
,
2181 files_rules
[rulix
].frul_rflags
);
2184 /* The regular expression compilation fails only when
2185 file_rules is buggy. */
2193 /* Match the regexpr and trigger the rule if matched. */
2195 /* We have exactly ten pmatch-s, one for each $0, $1, $2,
2197 regmatch_t pmatch
[10];
2198 memset (pmatch
, 0, sizeof (pmatch
));
2199 if (!regexec (files_rules
[rulix
].frul_re
,
2200 inpfname
, 10, pmatch
, 0))
2202 DBGPRINTF ("input @ %p filename %s matched rulix#%d pattern %s",
2203 (void*) inpf
, inpfname
, rulix
,
2204 files_rules
[rulix
].frul_srcexpr
);
2206 matching_file_name_substitute (inpfname
, pmatch
,
2207 files_rules
[rulix
].frul_tr_for
);
2208 DBGPRINTF ("for_name %s", for_name
);
2210 matching_file_name_substitute (inpfname
, pmatch
,
2211 files_rules
[rulix
].frul_tr_out
);
2212 DBGPRINTF ("output_name %s", output_name
);
2213 if (files_rules
[rulix
].frul_action
)
2215 /* Invoke our action routine. */
2217 DBGPRINTF ("before action rulix#%d output_name %s for_name %s",
2218 rulix
, output_name
, for_name
);
2220 (files_rules
[rulix
].frul_action
) (inpf
,
2221 &output_name
, &for_name
);
2222 DBGPRINTF ("after action rulix#%d of=%p output_name %s for_name %s",
2223 rulix
, (void*)of
, output_name
, for_name
);
2224 /* If the action routine returned something, give it back
2225 immediately and cache it in inpf. */
2232 /* The rule matched, and had no action, or that action did
2233 not return any output file but could have changed the
2234 output_name or for_name. We break out of the loop on the
2240 /* The regexpr did not match. */
2241 DBGPRINTF ("rulix#%d did not match %s pattern %s",
2242 rulix
, inpfname
, files_rules
[rulix
].frul_srcexpr
);
2248 if (!output_name
|| !for_name
)
2250 /* This should not be possible, and could only happen if the
2251 files_rules is incomplete or buggy. */
2252 fatal ("failed to compute output name for %s", inpfname
);
2255 /* Look through to see if we've ever seen this output filename
2256 before. If found, cache the result in inpf. */
2257 for (r
= output_files
; r
; r
= r
->next
)
2258 if (filename_cmp (r
->name
, output_name
) == 0)
2261 DBGPRINTF ("found r @ %p for output_name %s for_name %s", (void*)r
,
2262 output_name
, for_name
);
2266 /* If not found, create it, and cache it in inpf. */
2267 r
= create_file (for_name
, output_name
);
2269 gcc_assert (r
&& r
->name
);
2270 DBGPRINTF ("created r @ %p for output_name %s for_name %s", (void*) r
,
2271 output_name
, for_name
);
2278 /* The name of an output file, suitable for definitions, that can see
2279 declarations made in INPF and is linked into every language that
2283 get_output_file_name (input_file
* inpf
)
2285 outf_p o
= get_output_file_with_visibility (inpf
);
2291 /* Check if existing file is equal to the in memory buffer. */
2294 is_file_equal (outf_p of
)
2296 FILE *newfile
= fopen (of
->name
, "r");
2299 if (newfile
== NULL
)
2303 for (i
= 0; i
< of
->bufused
; i
++)
2306 ch
= fgetc (newfile
);
2307 if (ch
== EOF
|| ch
!= (unsigned char) of
->buf
[i
])
2313 if (equal
&& EOF
!= fgetc (newfile
))
2319 /* Copy the output to its final destination,
2320 but don't unnecessarily change modification times. */
2323 close_output_files (void)
2325 int nbwrittenfiles
= 0;
2328 for (of
= output_files
; of
; of
= of
->next
)
2330 if (!is_file_equal (of
))
2332 FILE *newfile
= NULL
;
2333 char *backupname
= NULL
;
2334 /* Back up the old version of the output file gt-FOO.cc as
2335 BACKUPDIR/gt-FOO.cc~ if we have a backup directory. */
2338 backupname
= concat (backup_dir
, "/",
2339 lbasename (of
->name
), "~", NULL
);
2340 if (!access (of
->name
, F_OK
) && rename (of
->name
, backupname
))
2341 fatal ("failed to back up %s as %s: %s",
2342 of
->name
, backupname
, xstrerror (errno
));
2345 newfile
= fopen (of
->name
, "w");
2346 if (newfile
== NULL
)
2347 fatal ("opening output file %s: %s", of
->name
, xstrerror (errno
));
2348 if (fwrite (of
->buf
, 1, of
->bufused
, newfile
) != of
->bufused
)
2349 fatal ("writing output file %s: %s", of
->name
, xstrerror (errno
));
2350 if (fclose (newfile
) != 0)
2351 fatal ("closing output file %s: %s", of
->name
, xstrerror (errno
));
2353 if (verbosity_level
>= 2 && backupname
)
2354 printf ("%s wrote #%-3d %s backed-up in %s\n",
2355 progname
, nbwrittenfiles
, of
->name
, backupname
);
2356 else if (verbosity_level
>= 1)
2357 printf ("%s write #%-3d %s\n", progname
, nbwrittenfiles
, of
->name
);
2362 /* output file remains unchanged. */
2363 if (verbosity_level
>= 2)
2364 printf ("%s keep %s\n", progname
, of
->name
);
2368 of
->bufused
= of
->buflength
= 0;
2370 if (verbosity_level
>= 1)
2371 printf ("%s wrote %d files.\n", progname
, nbwrittenfiles
);
2378 const input_file
* file
;
2382 struct walk_type_data
;
2384 /* For scalars and strings, given the item in 'val'.
2385 For structures, given a pointer to the item in 'val'.
2386 For misc. pointers, given the item in 'val'.
2388 typedef void (*process_field_fn
) (type_p f
, const struct walk_type_data
* p
);
2389 typedef void (*func_name_fn
) (type_p s
, const struct walk_type_data
* p
);
2391 /* Parameters for write_types. */
2393 struct write_types_data
2396 const char *param_prefix
;
2397 const char *subfield_marker_routine
;
2398 const char *marker_routine
;
2399 const char *reorder_note_routine
;
2400 const char *comment
;
2401 enum write_types_kinds kind
;
2404 static void output_escaped_param (const struct walk_type_data
*d
,
2405 const char *, const char *);
2406 static void output_mangled_typename (outf_p
, const_type_p
);
2407 static void walk_type (type_p t
, struct walk_type_data
*d
);
2408 static void write_func_for_structure (type_p orig_s
, type_p s
,
2409 const struct write_types_data
*wtd
);
2410 static void write_types_process_field
2411 (type_p f
, const struct walk_type_data
*d
);
2412 static void write_types (outf_p output_header
,
2414 const struct write_types_data
*wtd
);
2415 static void write_types_local_process_field
2416 (type_p f
, const struct walk_type_data
*d
);
2417 static void write_local_func_for_structure (const_type_p orig_s
, type_p s
);
2418 static void write_local (outf_p output_header
,
2420 static int contains_scalar_p (type_p t
);
2421 static void put_mangled_filename (outf_p
, const input_file
*);
2422 static void finish_root_table (struct flist
*flp
, const char *pfx
,
2423 const char *lastname
,
2424 const char *tname
, const char *name
);
2425 static void write_root (outf_p
, pair_p
, type_p
, const char *, int,
2426 struct fileloc
*, bool);
2427 static void write_array (outf_p f
, pair_p v
,
2428 const struct write_types_data
*wtd
);
2429 static void write_roots (pair_p
, bool);
2431 /* Parameters for walk_type. */
2433 struct walk_type_data
2435 process_field_fn process_field
;
2440 const char *prev_val
[4];
2443 const struct fileloc
*line
;
2447 const char *reorder_fn
;
2448 bool fn_wants_lvalue
;
2457 /* Given a string TYPE_NAME, representing a C++ typename, return a valid
2458 pre-processor identifier to use in a #define directive. This replaces
2459 special characters used in C++ identifiers like '>', '<' and ':' with
2462 If no C++ special characters are found in TYPE_NAME, return
2463 TYPE_NAME. Otherwise, return a copy of TYPE_NAME with the special
2464 characters replaced with '_'. In this case, the caller is
2465 responsible for freeing the allocated string. */
2468 filter_type_name (const char *type_name
)
2470 if (strchr (type_name
, '<') || strchr (type_name
, ':'))
2473 char *s
= xstrdup (type_name
);
2474 for (i
= 0; i
< strlen (s
); i
++)
2475 if (s
[i
] == '<' || s
[i
] == '>' || s
[i
] == ':' || s
[i
] == ','
2485 /* Print a mangled name representing T to OF. */
2488 output_mangled_typename (outf_p of
, const_type_p t
)
2496 case TYPE_UNDEFINED
:
2502 output_mangled_typename (of
, t
->u
.p
);
2512 case TYPE_LANG_STRUCT
:
2513 case TYPE_USER_STRUCT
:
2515 /* For references to classes within an inheritance hierarchy,
2516 only ever reference the ultimate base class, since only
2517 it will have gt_ functions. */
2518 t
= get_ultimate_base_class (t
);
2519 const char *id_for_tag
= filter_type_name (t
->u
.s
.tag
);
2520 oprintf (of
, "%lu%s", (unsigned long) strlen (id_for_tag
),
2522 if (id_for_tag
!= t
->u
.s
.tag
)
2523 free (CONST_CAST (char *, id_for_tag
));
2531 /* Print PARAM to D->OF processing escapes. D->VAL references the
2532 current object, D->PREV_VAL the object containing the current
2533 object, ONAME is the name of the option and D->LINE is used to
2534 print error messages. */
2537 output_escaped_param (const struct walk_type_data
*d
, const char *param
,
2542 for (p
= param
; *p
; p
++)
2544 oprintf (d
->of
, "%c", *p
);
2549 oprintf (d
->of
, "(%s)", d
->prev_val
[2]);
2552 oprintf (d
->of
, "(%s)", d
->prev_val
[0]);
2555 oprintf (d
->of
, "(%s)", d
->prev_val
[1]);
2559 const char *pp
= d
->val
+ strlen (d
->val
);
2560 while (pp
[-1] == ']')
2563 oprintf (d
->of
, "%s", pp
);
2567 error_at_line (d
->line
, "`%s' option contains bad escape %c%c",
2573 get_string_option (options_p opt
, const char *key
)
2575 for (; opt
; opt
= opt
->next
)
2576 if (opt
->kind
== OPTION_STRING
&& strcmp (opt
->name
, key
) == 0)
2577 return opt
->info
.string
;
2581 /* Machinery for avoiding duplicate tags within switch statements. */
2585 struct seen_tag
*next
;
2589 already_seen_tag (struct seen_tag
*seen_tags
, const char *tag
)
2591 /* Linear search, so O(n^2), but n is currently small. */
2594 if (!strcmp (seen_tags
->tag
, tag
))
2596 seen_tags
= seen_tags
->next
;
2598 /* Not yet seen this tag. */
2603 mark_tag_as_seen (struct seen_tag
**seen_tags
, const char *tag
)
2605 /* Add to front of linked list. */
2606 struct seen_tag
*new_node
= XCNEW (struct seen_tag
);
2607 new_node
->tag
= tag
;
2608 new_node
->next
= *seen_tags
;
2609 *seen_tags
= new_node
;
2613 walk_subclasses (type_p base
, struct walk_type_data
*d
,
2614 struct seen_tag
**seen_tags
)
2616 for (type_p sub
= base
->u
.s
.first_subclass
; sub
!= NULL
;
2617 sub
= sub
->u
.s
.next_sibling_class
)
2619 const char *type_tag
= get_string_option (sub
->u
.s
.opt
, "tag");
2620 if (type_tag
&& !already_seen_tag (*seen_tags
, type_tag
))
2622 mark_tag_as_seen (seen_tags
, type_tag
);
2623 oprintf (d
->of
, "%*scase %s:\n", d
->indent
, "", type_tag
);
2625 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2627 oprintf (d
->of
, "%*s%s *sub = static_cast <%s *> (x);\n",
2628 d
->indent
, "", sub
->u
.s
.tag
, sub
->u
.s
.tag
);
2629 const char *old_val
= d
->val
;
2634 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2635 oprintf (d
->of
, "%*sbreak;\n", d
->indent
, "");
2638 walk_subclasses (sub
, d
, seen_tags
);
2642 /* Call D->PROCESS_FIELD for every field (or subfield) of D->VAL,
2643 which is of type T. Write code to D->OF to constrain execution (at
2644 the point that D->PROCESS_FIELD is called) to the appropriate
2645 cases. Call D->PROCESS_FIELD on subobjects before calling it on
2646 pointers to those objects. D->PREV_VAL lists the objects
2647 containing the current object, D->OPT is a list of options to
2648 apply, D->INDENT is the current indentation level, D->LINE is used
2649 to print error messages, D->BITMAP indicates which languages to
2650 print the structure for. */
2653 walk_type (type_p t
, struct walk_type_data
*d
)
2655 const char *length
= NULL
;
2656 const char *desc
= NULL
;
2657 const char *type_tag
= NULL
;
2658 int maybe_undef_p
= 0;
2661 const struct nested_ptr_data
*nested_ptr_d
= NULL
;
2663 for (oo
= d
->opt
; oo
; oo
= oo
->next
)
2664 if (strcmp (oo
->name
, "length") == 0 && oo
->kind
== OPTION_STRING
)
2665 length
= oo
->info
.string
;
2666 else if (strcmp (oo
->name
, "maybe_undef") == 0)
2668 else if (strcmp (oo
->name
, "desc") == 0 && oo
->kind
== OPTION_STRING
)
2669 desc
= oo
->info
.string
;
2670 else if (strcmp (oo
->name
, "nested_ptr") == 0
2671 && oo
->kind
== OPTION_NESTED
)
2672 nested_ptr_d
= (const struct nested_ptr_data
*) oo
->info
.nested
;
2673 else if (strcmp (oo
->name
, "dot") == 0)
2675 else if (strcmp (oo
->name
, "tag") == 0)
2676 type_tag
= oo
->info
.string
;
2677 else if (strcmp (oo
->name
, "special") == 0)
2679 else if (strcmp (oo
->name
, "skip") == 0)
2681 else if (strcmp (oo
->name
, "atomic") == 0)
2683 else if (strcmp (oo
->name
, "default") == 0)
2685 else if (strcmp (oo
->name
, "chain_next") == 0)
2687 else if (strcmp (oo
->name
, "chain_prev") == 0)
2689 else if (strcmp (oo
->name
, "chain_circular") == 0)
2691 else if (strcmp (oo
->name
, "reorder") == 0)
2693 else if (strcmp (oo
->name
, "variable_size") == 0)
2695 else if (strcmp (oo
->name
, "for_user") == 0)
2697 else if (strcmp (oo
->name
, "callback") == 0)
2699 else if (strcmp (oo
->name
, "string_length") == 0)
2702 error_at_line (d
->line
, "unknown option `%s'\n", oo
->name
);
2708 && (t
->kind
!= TYPE_POINTER
|| !union_or_struct_p (t
->u
.p
)))
2710 error_at_line (d
->line
,
2711 "field `%s' has invalid option `maybe_undef_p'\n",
2716 if (atomic_p
&& (t
->kind
!= TYPE_POINTER
) && (t
->kind
!= TYPE_STRING
))
2718 error_at_line (d
->line
, "field `%s' has invalid option `atomic'\n", d
->val
);
2727 d
->process_field (t
, d
);
2732 d
->in_ptr_field
= true;
2733 if (maybe_undef_p
&& t
->u
.p
->u
.s
.line
.file
== NULL
)
2735 oprintf (d
->of
, "%*sgcc_assert (!%s);\n", d
->indent
, "", d
->val
);
2739 /* If a pointer type is marked as "atomic", we process the
2740 field itself, but we don't walk the data that they point to.
2742 There are two main cases where we walk types: to mark
2743 pointers that are reachable, and to relocate pointers when
2744 writing a PCH file. In both cases, an atomic pointer is
2745 itself marked or relocated, but the memory that it points
2746 to is left untouched. In the case of PCH, that memory will
2747 be read/written unchanged to the PCH file. */
2750 oprintf (d
->of
, "%*sif (%s != NULL) {\n", d
->indent
, "", d
->val
);
2752 d
->process_field (t
, d
);
2754 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2760 if (!union_or_struct_p (t
->u
.p
))
2762 error_at_line (d
->line
,
2763 "field `%s' is pointer to unimplemented type",
2770 const char *oldprevval2
= d
->prev_val
[2];
2771 bool old_in_nested_ptr
= d
->in_nested_ptr
;
2773 if (!union_or_struct_p (nested_ptr_d
->type
))
2775 error_at_line (d
->line
,
2776 "field `%s' has invalid "
2777 "option `nested_ptr'\n", d
->val
);
2781 d
->prev_val
[2] = d
->val
;
2782 d
->in_nested_ptr
= true;
2783 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2785 d
->val
= xasprintf ("x%d", d
->counter
++);
2786 oprintf (d
->of
, "%*s%s %s * %s%s =\n", d
->indent
, "",
2787 (nested_ptr_d
->type
->kind
== TYPE_UNION
2788 ? "union" : "struct"),
2789 nested_ptr_d
->type
->u
.s
.tag
,
2790 d
->fn_wants_lvalue
? "" : "const ", d
->val
);
2791 oprintf (d
->of
, "%*s", d
->indent
+ 2, "");
2792 output_escaped_param (d
, nested_ptr_d
->convert_from
,
2794 oprintf (d
->of
, ";\n");
2796 d
->process_field (nested_ptr_d
->type
, d
);
2798 if (d
->fn_wants_lvalue
)
2800 oprintf (d
->of
, "%*s%s = ", d
->indent
, "",
2802 d
->prev_val
[2] = d
->val
;
2803 output_escaped_param (d
, nested_ptr_d
->convert_to
,
2805 oprintf (d
->of
, ";\n");
2809 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2810 d
->val
= d
->prev_val
[2];
2811 d
->prev_val
[2] = oldprevval2
;
2812 d
->in_nested_ptr
= old_in_nested_ptr
;
2815 d
->process_field (t
->u
.p
, d
);
2819 int loopcounter
= d
->loopcounter
;
2820 const char *oldval
= d
->val
;
2821 const char *oldprevval3
= d
->prev_val
[3];
2824 oprintf (d
->of
, "%*sif (%s != NULL) {\n", d
->indent
, "", d
->val
);
2826 oprintf (d
->of
, "%*ssize_t i%d;\n", d
->indent
, "", loopcounter
);
2827 oprintf (d
->of
, "%*sfor (i%d = 0; i%d != (size_t)(", d
->indent
,
2828 "", loopcounter
, loopcounter
);
2829 if (!d
->in_record_p
)
2830 output_escaped_param (d
, length
, "length");
2832 oprintf (d
->of
, "l%d", loopcounter
);
2833 if (d
->have_this_obj
)
2834 /* Try to unswitch loops (see PR53880). */
2835 oprintf (d
->of
, ") && ((void *)%s == this_obj", oldval
);
2836 oprintf (d
->of
, "); i%d++) {\n", loopcounter
);
2838 d
->val
= newval
= xasprintf ("%s[i%d]", oldval
, loopcounter
);
2840 d
->prev_val
[3] = oldval
;
2841 walk_type (t
->u
.p
, d
);
2844 d
->prev_val
[3] = oldprevval3
;
2847 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2848 d
->process_field (t
, d
);
2850 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2852 d
->in_ptr_field
= false;
2859 const char *oldval
= d
->val
;
2862 /* If it's an array of scalars, we optimize by not generating
2864 if (t
->u
.a
.p
->kind
== TYPE_SCALAR
)
2868 loopcounter
= d
->loopcounter
;
2870 loopcounter
= d
->counter
++;
2872 /* When walking an array, compute the length and store it in a
2873 local variable before walking the array elements, instead of
2874 recomputing the length expression each time through the loop.
2875 This is necessary to handle tcc_vl_exp objects like CALL_EXPR,
2876 where the length is stored in the first array element,
2877 because otherwise that operand can get overwritten on the
2879 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2881 oprintf (d
->of
, "%*ssize_t i%d;\n", d
->indent
, "", loopcounter
);
2882 if (!d
->in_record_p
|| !length
)
2884 oprintf (d
->of
, "%*ssize_t l%d = (size_t)(",
2885 d
->indent
, "", loopcounter
);
2887 output_escaped_param (d
, length
, "length");
2889 oprintf (d
->of
, "%s", t
->u
.a
.len
);
2890 oprintf (d
->of
, ");\n");
2893 oprintf (d
->of
, "%*sfor (i%d = 0; i%d != l%d; i%d++) {\n",
2895 loopcounter
, loopcounter
, loopcounter
, loopcounter
);
2897 d
->val
= newval
= xasprintf ("%s[i%d]", oldval
, loopcounter
);
2899 walk_type (t
->u
.a
.p
, d
);
2904 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2906 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2914 const char *oldval
= d
->val
;
2915 const char *oldprevval1
= d
->prev_val
[1];
2916 const char *oldprevval2
= d
->prev_val
[2];
2917 const int union_p
= t
->kind
== TYPE_UNION
;
2918 int seen_default_p
= 0;
2920 int lengths_seen
= 0;
2922 bool any_length_seen
= false;
2924 if (!t
->u
.s
.line
.file
)
2925 error_at_line (d
->line
, "incomplete structure `%s'", t
->u
.s
.tag
);
2927 if ((d
->bitmap
& t
->u
.s
.bitmap
) != d
->bitmap
)
2929 error_at_line (d
->line
,
2930 "structure `%s' defined for mismatching languages",
2932 error_at_line (&t
->u
.s
.line
, "one structure defined here");
2935 /* Some things may also be defined in the structure's options. */
2936 for (o
= t
->u
.s
.opt
; o
; o
= o
->next
)
2937 if (!desc
&& strcmp (o
->name
, "desc") == 0
2938 && o
->kind
== OPTION_STRING
)
2939 desc
= o
->info
.string
;
2941 d
->prev_val
[2] = oldval
;
2942 d
->prev_val
[1] = oldprevval2
;
2947 error_at_line (d
->line
,
2948 "missing `desc' option for union `%s'",
2952 oprintf (d
->of
, "%*sswitch ((int) (", d
->indent
, "");
2953 output_escaped_param (d
, desc
, "desc");
2954 oprintf (d
->of
, "))\n");
2956 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2960 /* We have a "desc" option on a struct, signifying the
2961 base class within a GC-managed inheritance hierarchy.
2962 The current code specialcases the base class, then walks
2963 into subclasses, recursing into this routine to handle them.
2964 This organization requires the base class to have a case in
2965 the switch statement, and hence a tag value is mandatory
2966 for the base class. This restriction could be removed, but
2967 it would require some restructing of this code. */
2970 error_at_line (d
->line
,
2971 "missing `tag' option for type `%s'",
2974 oprintf (d
->of
, "%*sswitch ((int) (", d
->indent
, "");
2975 output_escaped_param (d
, desc
, "desc");
2976 oprintf (d
->of
, "))\n");
2978 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2979 oprintf (d
->of
, "%*scase %s:\n", d
->indent
, "", type_tag
);
2983 FOR_ALL_INHERITED_FIELDS (t
, f
)
2987 const char *fieldlength
= NULL
;
2989 d
->reorder_fn
= NULL
;
2990 for (oo
= f
->opt
; oo
; oo
= oo
->next
)
2991 if (strcmp (oo
->name
, "skip") == 0)
2993 else if (strcmp (oo
->name
, "length") == 0
2994 && oo
->kind
== OPTION_STRING
)
2995 fieldlength
= oo
->info
.string
;
3005 if (!any_length_seen
)
3007 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
3010 any_length_seen
= true;
3012 oprintf (d
->of
, "%*ssize_t l%d = (size_t)(",
3013 d
->indent
, "", d
->counter
- 1);
3014 output_escaped_param (d
, fieldlength
, "length");
3015 oprintf (d
->of
, ");\n");
3019 endcounter
= d
->counter
;
3021 FOR_ALL_INHERITED_FIELDS (t
, f
)
3024 const char *dot
= ".";
3025 const char *tagid
= NULL
;
3028 const char *fieldlength
= NULL
;
3031 d
->reorder_fn
= NULL
;
3032 for (oo
= f
->opt
; oo
; oo
= oo
->next
)
3033 if (strcmp (oo
->name
, "dot") == 0
3034 && oo
->kind
== OPTION_STRING
)
3035 dot
= oo
->info
.string
;
3036 else if (strcmp (oo
->name
, "tag") == 0
3037 && oo
->kind
== OPTION_STRING
)
3038 tagid
= oo
->info
.string
;
3039 else if (strcmp (oo
->name
, "skip") == 0)
3041 else if (strcmp (oo
->name
, "default") == 0)
3043 else if (strcmp (oo
->name
, "reorder") == 0
3044 && oo
->kind
== OPTION_STRING
)
3045 d
->reorder_fn
= oo
->info
.string
;
3046 else if (strcmp (oo
->name
, "length") == 0
3047 && oo
->kind
== OPTION_STRING
)
3048 fieldlength
= oo
->info
.string
;
3053 if (union_p
&& tagid
)
3055 oprintf (d
->of
, "%*scase %s:\n", d
->indent
, "", tagid
);
3058 else if (union_p
&& default_p
)
3060 oprintf (d
->of
, "%*sdefault:\n", d
->indent
, "");
3064 else if (!union_p
&& (default_p
|| tagid
))
3065 error_at_line (d
->line
,
3066 "can't use `%s' outside a union on field `%s'",
3067 default_p
? "default" : "tag", f
->name
);
3068 else if (union_p
&& !(default_p
|| tagid
)
3069 && f
->type
->kind
== TYPE_SCALAR
)
3072 "%s:%d: warning: field `%s' is missing `tag' or `default' option\n",
3073 get_input_file_name (d
->line
->file
), d
->line
->line
,
3077 else if (union_p
&& !(default_p
|| tagid
))
3078 error_at_line (d
->line
,
3079 "field `%s' is missing `tag' or `default' option",
3084 d
->loopcounter
= endcounter
- lengths_seen
--;
3088 d
->val
= newval
= xasprintf ("%s%s%s", oldval
, dot
, f
->name
);
3090 d
->used_length
= false;
3091 d
->in_record_p
= !union_p
;
3093 walk_type (f
->type
, d
);
3095 d
->in_record_p
= false;
3101 oprintf (d
->of
, "%*sbreak;\n", d
->indent
, "");
3105 d
->reorder_fn
= NULL
;
3108 d
->prev_val
[1] = oldprevval1
;
3109 d
->prev_val
[2] = oldprevval2
;
3111 if (union_p
&& !seen_default_p
)
3113 oprintf (d
->of
, "%*sdefault:\n", d
->indent
, "");
3114 oprintf (d
->of
, "%*s break;\n", d
->indent
, "");
3117 if (desc
&& !union_p
)
3119 oprintf (d
->of
, "%*sbreak;\n", d
->indent
, "");
3124 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
3129 /* Add cases to handle subclasses. */
3130 struct seen_tag
*tags
= NULL
;
3131 walk_subclasses (t
, d
, &tags
);
3133 /* Ensure that if someone forgets a "tag" option that we don't
3134 silent fail to traverse that subclass's fields. */
3135 if (!seen_default_p
)
3137 oprintf (d
->of
, "%*s/* Unrecognized tag value. */\n",
3139 oprintf (d
->of
, "%*sdefault: gcc_unreachable (); \n",
3143 /* End of the switch statement */
3144 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
3147 if (any_length_seen
)
3150 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
3155 case TYPE_LANG_STRUCT
:
3158 for (nt
= t
->u
.s
.lang_struct
; nt
; nt
= nt
->next
)
3159 if ((d
->bitmap
& nt
->u
.s
.bitmap
) == d
->bitmap
)
3162 error_at_line (d
->line
, "structure `%s' differs between languages",
3169 case TYPE_USER_STRUCT
:
3170 d
->process_field (t
, d
);
3174 case TYPE_UNDEFINED
:
3179 /* process_field routine for marking routines. */
3182 write_types_process_field (type_p f
, const struct walk_type_data
*d
)
3184 const struct write_types_data
*wtd
;
3185 wtd
= (const struct write_types_data
*) d
->cookie
;
3190 case TYPE_UNDEFINED
:
3193 oprintf (d
->of
, "%*s%s (%s", d
->indent
, "",
3194 wtd
->subfield_marker_routine
, d
->val
);
3195 if (wtd
->param_prefix
)
3197 if (f
->u
.p
->kind
== TYPE_SCALAR
)
3198 /* The current type is a pointer to a scalar (so not
3199 considered like a pointer to instances of user defined
3200 types) and we are seeing it; it means we must be even
3201 more careful about the second argument of the
3202 SUBFIELD_MARKER_ROUTINE call. That argument must
3203 always be the instance of the type for which
3204 write_func_for_structure was called - this really is
3205 what the function SUBFIELD_MARKER_ROUTINE expects.
3206 That is, it must be an instance of the ORIG_S type
3207 parameter of write_func_for_structure. The convention
3208 is that that argument must be "x" in that case (as set
3209 by write_func_for_structure). The problem is, we can't
3210 count on d->prev_val[3] to be always set to "x" in that
3211 case. Sometimes walk_type can set it to something else
3212 (to e.g cooperate with write_array when called from
3213 write_roots). So let's set it to "x" here then. */
3214 oprintf (d
->of
, ", x");
3216 oprintf (d
->of
, ", %s", d
->prev_val
[3]);
3219 oprintf (d
->of
, ", gt_%s_", wtd
->param_prefix
);
3220 output_mangled_typename (d
->of
, d
->orig_s
);
3223 oprintf (d
->of
, ", gt_%sa_%s", wtd
->param_prefix
, d
->prev_val
[0]);
3225 oprintf (d
->of
, ");\n");
3226 if (d
->reorder_fn
&& wtd
->reorder_note_routine
)
3227 oprintf (d
->of
, "%*s%s (%s, %s, %s);\n", d
->indent
, "",
3228 wtd
->reorder_note_routine
, d
->val
,
3229 d
->prev_val
[3], d
->reorder_fn
);
3235 case TYPE_LANG_STRUCT
:
3236 case TYPE_USER_STRUCT
:
3237 if (f
->kind
== TYPE_USER_STRUCT
&& !d
->in_ptr_field
)
3239 /* If F is a user-defined type and the field is not a
3240 pointer to the type, then we should not generate the
3241 standard pointer-marking code. All we need to do is call
3242 the user-provided marking function to process the fields
3244 oprintf (d
->of
, "%*sgt_%sx (&(%s));\n", d
->indent
, "", wtd
->prefix
,
3249 oprintf (d
->of
, "%*sgt_%s_", d
->indent
, "", wtd
->prefix
);
3250 output_mangled_typename (d
->of
, f
);
3252 /* Check if we need to call the special pch note version
3253 for strings that takes an explicit length. */
3254 const auto length_override
3255 = (f
->kind
== TYPE_STRING
&& !strcmp (wtd
->prefix
, "pch_n")
3256 ? get_string_option (d
->opt
, "string_length")
3258 if (length_override
)
3260 oprintf (d
->of
, "2 (%s, ", d
->val
);
3261 output_escaped_param (d
, length_override
, "string_length");
3264 oprintf (d
->of
, " (%s", d
->val
);
3266 oprintf (d
->of
, ");\n");
3267 if (d
->reorder_fn
&& wtd
->reorder_note_routine
)
3268 oprintf (d
->of
, "%*s%s (%s, %s, %s);\n", d
->indent
, "",
3269 wtd
->reorder_note_routine
, d
->val
, d
->val
,
3283 /* Return an output file that is suitable for definitions which can
3284 reference struct S */
3287 get_output_file_for_structure (const_type_p s
)
3289 const input_file
*fn
;
3291 gcc_assert (union_or_struct_p (s
));
3292 fn
= s
->u
.s
.line
.file
;
3294 /* The call to get_output_file_with_visibility may update fn by
3295 caching its result inside, so we need the CONST_CAST. */
3296 return get_output_file_with_visibility (CONST_CAST (input_file
*, fn
));
3300 /* Returns the specifier keyword for a string or union type S, empty string
3304 get_type_specifier (const type_p s
)
3306 if (s
->kind
== TYPE_STRUCT
)
3308 else if (s
->kind
== TYPE_LANG_STRUCT
)
3309 return get_type_specifier (s
->u
.s
.lang_struct
);
3310 else if (s
->kind
== TYPE_UNION
)
3316 /* Emits a declaration for type TY (assumed to be a union or a
3317 structure) on stream OUT. */
3320 write_type_decl (outf_p out
, type_p ty
)
3322 if (union_or_struct_p (ty
))
3323 oprintf (out
, "%s%s", get_type_specifier (ty
), ty
->u
.s
.tag
);
3324 else if (ty
->kind
== TYPE_SCALAR
)
3326 if (ty
->u
.scalar_is_char
)
3327 oprintf (out
, "const char");
3329 oprintf (out
, "void");
3331 else if (ty
->kind
== TYPE_POINTER
)
3333 write_type_decl (out
, ty
->u
.p
);
3334 oprintf (out
, " *");
3336 else if (ty
->kind
== TYPE_ARRAY
)
3338 write_type_decl (out
, ty
->u
.a
.p
);
3339 oprintf (out
, " *");
3341 else if (ty
->kind
== TYPE_STRING
)
3343 oprintf (out
, "const char *");
3350 /* Write on OF the name of the marker function for structure S. PREFIX
3351 is the prefix to use (to distinguish ggc from pch markers). */
3354 write_marker_function_name (outf_p of
, type_p s
, const char *prefix
)
3356 if (union_or_struct_p (s
))
3358 const char *id_for_tag
= filter_type_name (s
->u
.s
.tag
);
3359 oprintf (of
, "gt_%sx_%s", prefix
, id_for_tag
);
3360 if (id_for_tag
!= s
->u
.s
.tag
)
3361 free (CONST_CAST (char *, id_for_tag
));
3367 /* Write on OF a user-callable routine to act as an entry point for
3368 the marking routine for S, generated by write_func_for_structure.
3369 WTD distinguishes between ggc and pch markers. */
3372 write_user_func_for_structure_ptr (outf_p of
, type_p s
, const write_types_data
*wtd
)
3374 gcc_assert (union_or_struct_p (s
));
3376 type_p alias_of
= NULL
;
3377 for (options_p opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
3378 if (strcmp (opt
->name
, "ptr_alias") == 0)
3380 /* ALIAS_OF is set if ORIG_S is marked "ptr_alias". This means that
3381 we do not generate marking code for ORIG_S here. Instead, a
3382 forwarder #define in gtype-desc.h will cause every call to its
3383 marker to call the target of this alias.
3385 However, we still want to create a user entry code for the
3386 aliased type. So, if ALIAS_OF is set, we only generate the
3387 user-callable marker function. */
3388 alias_of
= opt
->info
.type
;
3392 DBGPRINTF ("write_user_func_for_structure_ptr: %s %s", s
->u
.s
.tag
,
3395 /* Only write the function once. */
3396 if (s
->u
.s
.wrote_user_func_for_ptr
[wtd
->kind
])
3398 s
->u
.s
.wrote_user_func_for_ptr
[wtd
->kind
] = true;
3400 oprintf (of
, "\nvoid\n");
3401 oprintf (of
, "gt_%sx (", wtd
->prefix
);
3402 write_type_decl (of
, s
);
3403 oprintf (of
, " *& x)\n");
3404 oprintf (of
, "{\n");
3405 oprintf (of
, " if (x)\n ");
3406 write_marker_function_name (of
,
3407 alias_of
? alias_of
: get_ultimate_base_class (s
),
3409 oprintf (of
, " ((void *) x);\n");
3410 oprintf (of
, "}\n");
3414 /* Write a function to mark all the fields of type S on OF. PREFIX
3415 and D are as in write_user_marking_functions. */
3418 write_user_func_for_structure_body (type_p s
, const char *prefix
,
3419 struct walk_type_data
*d
)
3421 oprintf (d
->of
, "\nvoid\n");
3422 oprintf (d
->of
, "gt_%sx (", prefix
);
3423 write_type_decl (d
->of
, s
);
3424 oprintf (d
->of
, "& x_r ATTRIBUTE_UNUSED)\n");
3425 oprintf (d
->of
, "{\n");
3426 oprintf (d
->of
, " ");
3427 write_type_decl (d
->of
, s
);
3428 oprintf (d
->of
, " * ATTRIBUTE_UNUSED x = &x_r;\n");
3432 oprintf (d
->of
, "}\n");
3435 /* Emit the user-callable functions needed to mark all the types used
3436 by the user structure S. PREFIX is the prefix to use to
3437 distinguish ggc and pch markers. D contains data needed to pass to
3438 walk_type when traversing the fields of a type.
3440 For every type T referenced by S, two routines are generated: one
3441 that takes 'T *', marks the pointer and calls the second routine,
3442 which just marks the fields of T. */
3445 write_user_marking_functions (type_p s
,
3446 const write_types_data
*w
,
3447 struct walk_type_data
*d
)
3449 gcc_assert (s
->kind
== TYPE_USER_STRUCT
);
3451 for (pair_p fld
= s
->u
.s
.fields
; fld
; fld
= fld
->next
)
3453 type_p fld_type
= fld
->type
;
3454 if (fld_type
->kind
== TYPE_POINTER
)
3456 type_p pointed_to_type
= fld_type
->u
.p
;
3457 if (union_or_struct_p (pointed_to_type
))
3458 write_user_func_for_structure_ptr (d
->of
, pointed_to_type
, w
);
3460 else if (union_or_struct_p (fld_type
))
3461 write_user_func_for_structure_body (fld_type
, w
->prefix
, d
);
3466 /* For S, a structure that's part of ORIG_S write out a routine that:
3467 - Takes a parameter, a void * but actually of type *S
3468 - If SEEN_ROUTINE returns nonzero, calls write_types_process_field on each
3469 field of S or its substructures and (in some cases) things
3470 that are pointed to by S. */
3473 write_func_for_structure (type_p orig_s
, type_p s
,
3474 const struct write_types_data
*wtd
)
3476 const char *chain_next
= NULL
;
3477 const char *chain_prev
= NULL
;
3478 const char *chain_circular
= NULL
;
3480 struct walk_type_data d
;
3482 if (s
->u
.s
.base_class
)
3484 /* Verify that the base class has a "desc", since otherwise
3485 the traversal hooks there won't attempt to visit fields of
3486 subclasses such as this one. */
3487 const_type_p ubc
= get_ultimate_base_class (s
);
3488 if ((!opts_have (ubc
->u
.s
.opt
, "user")
3489 && !opts_have (ubc
->u
.s
.opt
, "desc")))
3490 error_at_line (&s
->u
.s
.line
,
3491 ("'%s' is a subclass of non-GTY(user) GTY class '%s'"
3492 ", but '%s' lacks a discriminator 'desc' option"),
3493 s
->u
.s
.tag
, ubc
->u
.s
.tag
, ubc
->u
.s
.tag
);
3495 /* Don't write fns for subclasses, only for the ultimate base class
3496 within an inheritance hierarchy. */
3500 memset (&d
, 0, sizeof (d
));
3501 d
.of
= get_output_file_for_structure (s
);
3503 bool for_user
= false;
3504 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
3505 if (strcmp (opt
->name
, "chain_next") == 0
3506 && opt
->kind
== OPTION_STRING
)
3507 chain_next
= opt
->info
.string
;
3508 else if (strcmp (opt
->name
, "chain_prev") == 0
3509 && opt
->kind
== OPTION_STRING
)
3510 chain_prev
= opt
->info
.string
;
3511 else if (strcmp (opt
->name
, "chain_circular") == 0
3512 && opt
->kind
== OPTION_STRING
)
3513 chain_circular
= opt
->info
.string
;
3514 else if (strcmp (opt
->name
, "for_user") == 0)
3516 if (chain_prev
!= NULL
&& chain_next
== NULL
)
3517 error_at_line (&s
->u
.s
.line
, "chain_prev without chain_next");
3518 if (chain_circular
!= NULL
&& chain_next
!= NULL
)
3519 error_at_line (&s
->u
.s
.line
, "chain_circular with chain_next");
3520 if (chain_circular
!= NULL
)
3521 chain_next
= chain_circular
;
3523 d
.process_field
= write_types_process_field
;
3527 d
.line
= &s
->u
.s
.line
;
3528 d
.bitmap
= s
->u
.s
.bitmap
;
3529 d
.prev_val
[0] = "*x";
3530 d
.prev_val
[1] = "not valid postage"; /* Guarantee an error. */
3531 d
.prev_val
[3] = "x";
3533 d
.have_this_obj
= false;
3535 oprintf (d
.of
, "\n");
3536 oprintf (d
.of
, "void\n");
3537 write_marker_function_name (d
.of
, orig_s
, wtd
->prefix
);
3538 oprintf (d
.of
, " (void *x_p)\n");
3539 oprintf (d
.of
, "{\n ");
3540 write_type_decl (d
.of
, s
);
3541 oprintf (d
.of
, " * %sx = (", chain_next
== NULL
? "const " : "");
3542 write_type_decl (d
.of
, s
);
3543 oprintf (d
.of
, " *)x_p;\n");
3544 if (chain_next
!= NULL
)
3546 /* TYPE_USER_STRUCTs should not occur here. These structures
3547 are completely handled by user code. */
3548 gcc_assert (orig_s
->kind
!= TYPE_USER_STRUCT
);
3550 oprintf (d
.of
, " ");
3551 write_type_decl (d
.of
, s
);
3552 oprintf (d
.of
, " * xlimit = x;\n");
3554 if (chain_next
== NULL
)
3556 oprintf (d
.of
, " if (%s (x", wtd
->marker_routine
);
3557 if (wtd
->param_prefix
)
3559 oprintf (d
.of
, ", x, gt_%s_", wtd
->param_prefix
);
3560 output_mangled_typename (d
.of
, orig_s
);
3562 oprintf (d
.of
, "))\n");
3566 if (chain_circular
!= NULL
)
3567 oprintf (d
.of
, " if (!%s (xlimit", wtd
->marker_routine
);
3569 oprintf (d
.of
, " while (%s (xlimit", wtd
->marker_routine
);
3570 if (wtd
->param_prefix
)
3572 oprintf (d
.of
, ", xlimit, gt_%s_", wtd
->param_prefix
);
3573 output_mangled_typename (d
.of
, orig_s
);
3575 oprintf (d
.of
, "))\n");
3576 if (chain_circular
!= NULL
)
3577 oprintf (d
.of
, " return;\n do\n");
3579 oprintf (d
.of
, " xlimit = (");
3580 d
.prev_val
[2] = "*xlimit";
3581 output_escaped_param (&d
, chain_next
, "chain_next");
3582 oprintf (d
.of
, ");\n");
3583 if (chain_prev
!= NULL
)
3585 oprintf (d
.of
, " if (x != xlimit)\n");
3586 oprintf (d
.of
, " for (;;)\n");
3587 oprintf (d
.of
, " {\n");
3588 oprintf (d
.of
, " %s %s * const xprev = (",
3589 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
3591 d
.prev_val
[2] = "*x";
3592 output_escaped_param (&d
, chain_prev
, "chain_prev");
3593 oprintf (d
.of
, ");\n");
3594 oprintf (d
.of
, " if (xprev == NULL) break;\n");
3595 oprintf (d
.of
, " x = xprev;\n");
3596 oprintf (d
.of
, " (void) %s (xprev", wtd
->marker_routine
);
3597 if (wtd
->param_prefix
)
3599 oprintf (d
.of
, ", xprev, gt_%s_", wtd
->param_prefix
);
3600 output_mangled_typename (d
.of
, orig_s
);
3602 oprintf (d
.of
, ");\n");
3603 oprintf (d
.of
, " }\n");
3605 if (chain_circular
!= NULL
)
3607 oprintf (d
.of
, " while (%s (xlimit", wtd
->marker_routine
);
3608 if (wtd
->param_prefix
)
3610 oprintf (d
.of
, ", xlimit, gt_%s_", wtd
->param_prefix
);
3611 output_mangled_typename (d
.of
, orig_s
);
3613 oprintf (d
.of
, "));\n");
3614 oprintf (d
.of
, " do\n");
3617 oprintf (d
.of
, " while (x != xlimit)\n");
3619 oprintf (d
.of
, " {\n");
3621 d
.prev_val
[2] = "*x";
3623 if (orig_s
->kind
!= TYPE_USER_STRUCT
)
3627 /* User structures have no fields to walk. Simply generate a call
3628 to the user-provided structure marker. */
3629 oprintf (d
.of
, "%*sgt_%sx (x);\n", d
.indent
, "", wtd
->prefix
);
3632 if (chain_next
!= NULL
)
3634 oprintf (d
.of
, " x = (");
3635 output_escaped_param (&d
, chain_next
, "chain_next");
3636 oprintf (d
.of
, ");\n");
3639 oprintf (d
.of
, " }\n");
3640 if (chain_circular
!= NULL
)
3641 oprintf (d
.of
, " while (x != xlimit);\n");
3642 oprintf (d
.of
, "}\n");
3644 if (orig_s
->kind
== TYPE_USER_STRUCT
)
3645 write_user_marking_functions (orig_s
, wtd
, &d
);
3649 write_user_func_for_structure_body (orig_s
, wtd
->prefix
, &d
);
3650 write_user_func_for_structure_ptr (d
.of
, orig_s
, wtd
);
3655 /* Write out marker routines for STRUCTURES. */
3658 write_types (outf_p output_header
, type_p structures
,
3659 const struct write_types_data
*wtd
)
3661 int nbfun
= 0; /* Count the emitted functions. */
3664 oprintf (output_header
, "\n/* %s*/\n", wtd
->comment
);
3666 /* We first emit the macros and the declarations. Functions' code is
3667 emitted afterwards. This is needed in plugin mode. */
3668 oprintf (output_header
, "/* Macros and declarations. */\n");
3669 for (s
= structures
; s
; s
= s
->next
)
3670 /* Do not emit handlers for derived classes; we only ever deal with
3671 the ultimate base class within an inheritance hierarchy. */
3672 if ((s
->gc_used
== GC_POINTED_TO
|| s
->gc_used
== GC_MAYBE_POINTED_TO
)
3673 && !s
->u
.s
.base_class
)
3677 if (s
->gc_used
== GC_MAYBE_POINTED_TO
&& s
->u
.s
.line
.file
== NULL
)
3680 const char *s_id_for_tag
= filter_type_name (s
->u
.s
.tag
);
3682 oprintf (output_header
, "#define gt_%s_", wtd
->prefix
);
3683 output_mangled_typename (output_header
, s
);
3684 oprintf (output_header
, "(X) do { \\\n");
3685 oprintf (output_header
,
3686 " if ((intptr_t)(X) != 0) gt_%sx_%s (X);\\\n",
3687 wtd
->prefix
, s_id_for_tag
);
3688 oprintf (output_header
, " } while (0)\n");
3690 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
3691 if (strcmp (opt
->name
, "ptr_alias") == 0
3692 && opt
->kind
== OPTION_TYPE
)
3694 const_type_p
const t
= (const_type_p
) opt
->info
.type
;
3695 if (t
->kind
== TYPE_STRUCT
3696 || t
->kind
== TYPE_UNION
|| t
->kind
== TYPE_LANG_STRUCT
)
3698 const char *t_id_for_tag
= filter_type_name (t
->u
.s
.tag
);
3699 oprintf (output_header
,
3700 "#define gt_%sx_%s gt_%sx_%s\n",
3701 wtd
->prefix
, s
->u
.s
.tag
, wtd
->prefix
, t_id_for_tag
);
3702 if (t_id_for_tag
!= t
->u
.s
.tag
)
3703 free (CONST_CAST (char *, t_id_for_tag
));
3706 error_at_line (&s
->u
.s
.line
,
3707 "structure alias is not a structure");
3713 /* Declare the marker procedure only once. */
3714 oprintf (output_header
,
3715 "extern void gt_%sx_%s (void *);\n",
3716 wtd
->prefix
, s_id_for_tag
);
3718 if (s_id_for_tag
!= s
->u
.s
.tag
)
3719 free (CONST_CAST (char *, s_id_for_tag
));
3721 if (s
->u
.s
.line
.file
== NULL
)
3723 fprintf (stderr
, "warning: structure `%s' used but not defined\n",
3729 /* At last we emit the functions code. */
3730 oprintf (output_header
, "\n/* functions code */\n");
3731 for (s
= structures
; s
; s
= s
->next
)
3732 if (s
->gc_used
== GC_POINTED_TO
|| s
->gc_used
== GC_MAYBE_POINTED_TO
)
3736 if (s
->gc_used
== GC_MAYBE_POINTED_TO
&& s
->u
.s
.line
.file
== NULL
)
3738 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
3739 if (strcmp (opt
->name
, "ptr_alias") == 0)
3744 if (s
->kind
== TYPE_LANG_STRUCT
)
3747 for (ss
= s
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
3750 DBGPRINTF ("writing func #%d lang_struct ss @ %p '%s'",
3751 nbfun
, (void*) ss
, ss
->u
.s
.tag
);
3752 write_func_for_structure (s
, ss
, wtd
);
3758 DBGPRINTF ("writing func #%d struct s @ %p '%s'",
3759 nbfun
, (void*) s
, s
->u
.s
.tag
);
3760 write_func_for_structure (s
, s
, wtd
);
3765 /* Structure s is not possibly pointed to, so can be ignored. */
3766 DBGPRINTF ("ignored s @ %p '%s' gc_used#%d",
3767 (void*)s
, s
->u
.s
.tag
,
3771 if (verbosity_level
>= 2)
3772 printf ("%s emitted %d routines for %s\n",
3773 progname
, nbfun
, wtd
->comment
);
3776 static const struct write_types_data ggc_wtd
= {
3777 "ggc_m", NULL
, "ggc_mark", "ggc_test_and_set_mark", NULL
,
3778 "GC marker procedures. ",
3782 static const struct write_types_data pch_wtd
= {
3783 "pch_n", "pch_p", "gt_pch_note_object", "gt_pch_note_object",
3784 "gt_pch_note_reorder",
3785 "PCH type-walking procedures. ",
3789 /* Write out the local pointer-walking routines. */
3791 /* process_field routine for local pointer-walking for user-callable
3792 routines. The difference between this and
3793 write_types_local_process_field is that, in this case, we do not
3794 need to check whether the given pointer matches the address of the
3795 parent structure. This check was already generated by the call
3796 to gt_pch_nx in the main gt_pch_p_*() function that is calling
3800 write_types_local_user_process_field (type_p f
, const struct walk_type_data
*d
)
3807 case TYPE_LANG_STRUCT
:
3809 if (d
->in_nested_ptr
)
3810 oprintf (d
->of
, "%*s op (&(%s), &(%s), cookie);\n",
3811 d
->indent
, "", d
->val
, d
->prev_val
[2]);
3812 oprintf (d
->of
, "%*s op (&(%s), NULL, cookie);\n",
3813 d
->indent
, "", d
->val
);
3816 case TYPE_USER_STRUCT
:
3817 if (d
->in_ptr_field
)
3818 oprintf (d
->of
, "%*s op (&(%s), NULL, cookie);\n",
3819 d
->indent
, "", d
->val
);
3821 oprintf (d
->of
, "%*s gt_pch_nx (&(%s), op, cookie);\n",
3822 d
->indent
, "", d
->val
);
3831 case TYPE_UNDEFINED
:
3837 /* Write a function to PCH walk all the fields of type S on OF.
3838 D contains data needed by walk_type to recurse into the fields of S. */
3841 write_pch_user_walking_for_structure_body (type_p s
, struct walk_type_data
*d
)
3843 oprintf (d
->of
, "\nvoid\n");
3844 oprintf (d
->of
, "gt_pch_nx (");
3845 write_type_decl (d
->of
, s
);
3846 oprintf (d
->of
, "* x ATTRIBUTE_UNUSED,\n"
3847 "\tATTRIBUTE_UNUSED gt_pointer_operator op,\n"
3848 "\tATTRIBUTE_UNUSED void *cookie)\n");
3849 oprintf (d
->of
, "{\n");
3852 d
->process_field
= write_types_local_user_process_field
;
3854 oprintf (d
->of
, "}\n");
3858 /* Emit the user-callable functions needed to mark all the types used
3859 by the user structure S. PREFIX is the prefix to use to
3860 distinguish ggc and pch markers. CHAIN_NEXT is set if S has the
3861 chain_next option defined. D contains data needed to pass to
3862 walk_type when traversing the fields of a type.
3864 For every type T referenced by S, two routines are generated: one
3865 that takes 'T *', marks the pointer and calls the second routine,
3866 which just marks the fields of T. */
3869 write_pch_user_walking_functions (type_p s
, struct walk_type_data
*d
)
3871 gcc_assert (s
->kind
== TYPE_USER_STRUCT
);
3873 for (pair_p fld
= s
->u
.s
.fields
; fld
; fld
= fld
->next
)
3875 type_p fld_type
= fld
->type
;
3876 if (union_or_struct_p (fld_type
))
3877 write_pch_user_walking_for_structure_body (fld_type
, d
);
3882 /* process_field routine for local pointer-walking. */
3885 write_types_local_process_field (type_p f
, const struct walk_type_data
*d
)
3887 gcc_assert (d
->have_this_obj
);
3893 case TYPE_LANG_STRUCT
:
3895 oprintf (d
->of
, "%*sif ((void *)(%s) == this_obj)\n", d
->indent
, "",
3897 if (d
->in_nested_ptr
)
3898 oprintf (d
->of
, "%*s op (&(%s), &(%s), cookie);\n",
3899 d
->indent
, "", d
->val
, d
->prev_val
[2]);
3901 oprintf (d
->of
, "%*s op (&(%s), NULL, cookie);\n",
3902 d
->indent
, "", d
->val
);
3905 case TYPE_USER_STRUCT
:
3906 oprintf (d
->of
, "%*sif ((void *)(%s) == this_obj)\n", d
->indent
, "",
3908 if (d
->in_ptr_field
)
3909 oprintf (d
->of
, "%*s op (&(%s), NULL, cookie);\n",
3910 d
->indent
, "", d
->val
);
3912 oprintf (d
->of
, "%*s gt_pch_nx (&(%s), op, cookie);\n",
3913 d
->indent
, "", d
->val
);
3920 oprintf (d
->of
, "%*sif ((void *)(%s) == this_obj)\n", d
->indent
, "",
3922 oprintf (d
->of
, "%*s gt_pch_note_callback (&(%s), this_obj);\n",
3923 d
->indent
, "", d
->val
);
3928 case TYPE_UNDEFINED
:
3934 /* For S, a structure that's part of ORIG_S, and using parameters
3935 PARAM, write out a routine that:
3936 - Is of type gt_note_pointers
3937 - Calls PROCESS_FIELD on each field of S or its substructures.
3941 write_local_func_for_structure (const_type_p orig_s
, type_p s
)
3943 struct walk_type_data d
;
3945 /* Don't write fns for subclasses, only for the ultimate base class
3946 within an inheritance hierarchy. */
3947 if (s
->u
.s
.base_class
)
3950 memset (&d
, 0, sizeof (d
));
3951 d
.of
= get_output_file_for_structure (s
);
3952 d
.process_field
= write_types_local_process_field
;
3954 d
.line
= &s
->u
.s
.line
;
3955 d
.bitmap
= s
->u
.s
.bitmap
;
3956 d
.prev_val
[0] = d
.prev_val
[2] = "*x";
3957 d
.prev_val
[1] = "not valid postage"; /* Guarantee an error. */
3958 d
.prev_val
[3] = "x";
3960 d
.fn_wants_lvalue
= true;
3962 oprintf (d
.of
, "\n");
3963 oprintf (d
.of
, "void\n");
3964 oprintf (d
.of
, "gt_pch_p_");
3965 output_mangled_typename (d
.of
, orig_s
);
3966 oprintf (d
.of
, " (ATTRIBUTE_UNUSED void *this_obj,\n"
3968 "\tATTRIBUTE_UNUSED gt_pointer_operator op,\n"
3969 "\tATTRIBUTE_UNUSED void *cookie)\n");
3970 oprintf (d
.of
, "{\n");
3971 oprintf (d
.of
, " %s %s * x ATTRIBUTE_UNUSED = (%s %s *)x_p;\n",
3972 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
,
3973 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
3975 d
.have_this_obj
= true;
3977 if (s
->kind
!= TYPE_USER_STRUCT
)
3981 /* User structures have no fields to walk. Simply generate a
3982 call to the user-provided PCH walker. */
3983 oprintf (d
.of
, "%*sif ((void *)(%s) == this_obj)\n", d
.indent
, "",
3985 oprintf (d
.of
, "%*s gt_pch_nx (&(%s), op, cookie);\n",
3986 d
.indent
, "", d
.val
);
3989 oprintf (d
.of
, "}\n");
3991 /* Write user-callable entry points for the PCH walking routines. */
3992 if (orig_s
->kind
== TYPE_USER_STRUCT
)
3993 write_pch_user_walking_functions (s
, &d
);
3995 for (options_p o
= s
->u
.s
.opt
; o
; o
= o
->next
)
3996 if (strcmp (o
->name
, "for_user") == 0)
3998 write_pch_user_walking_for_structure_body (s
, &d
);
4003 /* Write out local marker routines for STRUCTURES. */
4006 write_local (outf_p output_header
, type_p structures
)
4013 oprintf (output_header
, "\n/* Local pointer-walking routines. */\n");
4014 for (s
= structures
; s
; s
= s
->next
)
4015 if (s
->gc_used
== GC_POINTED_TO
|| s
->gc_used
== GC_MAYBE_POINTED_TO
)
4019 if (s
->u
.s
.line
.file
== NULL
)
4021 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
4022 if (strcmp (opt
->name
, "ptr_alias") == 0
4023 && opt
->kind
== OPTION_TYPE
)
4025 const_type_p
const t
= (const_type_p
) opt
->info
.type
;
4026 if (t
->kind
== TYPE_STRUCT
4027 || t
->kind
== TYPE_UNION
|| t
->kind
== TYPE_LANG_STRUCT
)
4029 oprintf (output_header
, "#define gt_pch_p_");
4030 output_mangled_typename (output_header
, s
);
4031 oprintf (output_header
, " gt_pch_p_");
4032 output_mangled_typename (output_header
, t
);
4033 oprintf (output_header
, "\n");
4036 error_at_line (&s
->u
.s
.line
,
4037 "structure alias is not a structure");
4043 /* Declare the marker procedure only once. */
4044 oprintf (output_header
, "extern void gt_pch_p_");
4045 output_mangled_typename (output_header
, s
);
4046 oprintf (output_header
,
4047 "\n (void *, void *, gt_pointer_operator, void *);\n");
4049 if (s
->kind
== TYPE_LANG_STRUCT
)
4052 for (ss
= s
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
4053 write_local_func_for_structure (s
, ss
);
4056 write_local_func_for_structure (s
, s
);
4060 /* Nonzero if S is a type for which typed GC allocators should be output. */
4062 #define USED_BY_TYPED_GC_P(s) \
4063 ((s->kind == TYPE_POINTER \
4064 && (s->u.p->gc_used == GC_POINTED_TO \
4065 || s->u.p->gc_used == GC_USED)) \
4066 || (union_or_struct_p (s) \
4067 && ((s)->gc_used == GC_POINTED_TO \
4068 || ((s)->gc_used == GC_MAYBE_POINTED_TO \
4069 && s->u.s.line.file != NULL) \
4070 || ((s)->gc_used == GC_USED \
4071 && !startswith (s->u.s.tag, "anonymous")) \
4072 || (s->u.s.base_class && opts_have (s->u.s.opt, "tag")))))
4076 /* Might T contain any non-pointer elements? */
4079 contains_scalar_p (type_p t
)
4087 return contains_scalar_p (t
->u
.a
.p
);
4088 case TYPE_USER_STRUCT
:
4089 /* User-marked structures will typically contain pointers. */
4092 /* Could also check for structures that have no non-pointer
4093 fields, but there aren't enough of those to worry about. */
4098 /* Mangle INPF and print it to F. */
4101 put_mangled_filename (outf_p f
, const input_file
*inpf
)
4103 /* The call to get_output_file_name may indirectly update fn since
4104 get_output_file_with_visibility caches its result inside, so we
4105 need the CONST_CAST. */
4106 const char *name
= get_output_file_name (CONST_CAST (input_file
*, inpf
));
4109 for (; *name
!= 0; name
++)
4110 if (ISALNUM (*name
))
4111 oprintf (f
, "%c", *name
);
4113 oprintf (f
, "%c", '_');
4116 /* Finish off the currently-created root tables in FLP. PFX, TNAME,
4117 LASTNAME, and NAME are all strings to insert in various places in
4118 the resulting code. */
4121 finish_root_table (struct flist
*flp
, const char *pfx
, const char *lastname
,
4122 const char *tname
, const char *name
)
4126 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
4127 if (fli2
->started_p
)
4129 oprintf (fli2
->f
, " %s\n", lastname
);
4130 oprintf (fli2
->f
, "};\n\n");
4133 for (fli2
= flp
; fli2
&& base_files
; fli2
= fli2
->next
)
4134 if (fli2
->started_p
)
4136 lang_bitmap bitmap
= get_lang_bitmap (fli2
->file
);
4139 for (fnum
= 0; bitmap
!= 0; fnum
++, bitmap
>>= 1)
4142 oprintf (base_files
[fnum
],
4143 "extern const struct %s gt_%s_", tname
, pfx
);
4144 put_mangled_filename (base_files
[fnum
], fli2
->file
);
4145 oprintf (base_files
[fnum
], "[];\n");
4151 for (fnum
= 0; base_files
&& fnum
< num_lang_dirs
; fnum
++)
4152 oprintf (base_files
[fnum
],
4153 "EXPORTED_CONST struct %s * const %s[] = {\n", tname
, name
);
4157 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
4158 if (fli2
->started_p
)
4160 lang_bitmap bitmap
= get_lang_bitmap (fli2
->file
);
4163 fli2
->started_p
= 0;
4165 for (fnum
= 0; base_files
&& bitmap
!= 0; fnum
++, bitmap
>>= 1)
4168 oprintf (base_files
[fnum
], " gt_%s_", pfx
);
4169 put_mangled_filename (base_files
[fnum
], fli2
->file
);
4170 oprintf (base_files
[fnum
], ",\n");
4176 for (fnum
= 0; base_files
&& fnum
< num_lang_dirs
; fnum
++)
4178 oprintf (base_files
[fnum
], " NULL\n");
4179 oprintf (base_files
[fnum
], "};\n");
4184 /* Finish off the created gt_clear_caches_file_c functions. */
4187 finish_cache_funcs (flist
*flp
)
4191 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
4192 if (fli2
->started_p
)
4194 oprintf (fli2
->f
, "}\n\n");
4197 for (fli2
= flp
; fli2
&& base_files
; fli2
= fli2
->next
)
4198 if (fli2
->started_p
)
4200 lang_bitmap bitmap
= get_lang_bitmap (fli2
->file
);
4203 for (fnum
= 0; bitmap
!= 0; fnum
++, bitmap
>>= 1)
4206 oprintf (base_files
[fnum
], "extern void gt_clear_caches_");
4207 put_mangled_filename (base_files
[fnum
], fli2
->file
);
4208 oprintf (base_files
[fnum
], " ();\n");
4212 for (size_t fnum
= 0; base_files
&& fnum
< num_lang_dirs
; fnum
++)
4213 oprintf (base_files
[fnum
], "void\ngt_clear_caches ()\n{\n");
4215 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
4216 if (fli2
->started_p
)
4218 lang_bitmap bitmap
= get_lang_bitmap (fli2
->file
);
4221 fli2
->started_p
= 0;
4223 for (fnum
= 0; base_files
&& bitmap
!= 0; fnum
++, bitmap
>>= 1)
4226 oprintf (base_files
[fnum
], " gt_clear_caches_");
4227 put_mangled_filename (base_files
[fnum
], fli2
->file
);
4228 oprintf (base_files
[fnum
], " ();\n");
4232 for (size_t fnum
= 0; base_files
&& fnum
< num_lang_dirs
; fnum
++)
4234 oprintf (base_files
[fnum
], "}\n");
4238 /* Write the first three fields (pointer, count and stride) for
4239 root NAME to F. V and LINE are as for write_root.
4241 Return true if the entry could be written; return false on error. */
4244 start_root_entry (outf_p f
, pair_p v
, const char *name
, struct fileloc
*line
)
4250 error_at_line (line
, "`%s' is too complex to be a root", name
);
4254 oprintf (f
, " {\n");
4255 oprintf (f
, " &%s,\n", name
);
4258 for (ap
= v
->type
; ap
->kind
== TYPE_ARRAY
; ap
= ap
->u
.a
.p
)
4260 oprintf (f
, " * (%s)", ap
->u
.a
.len
);
4261 else if (ap
== v
->type
)
4262 oprintf (f
, " * ARRAY_SIZE (%s)", v
->name
);
4264 oprintf (f
, " sizeof (%s", v
->name
);
4265 for (ap
= v
->type
; ap
->kind
== TYPE_ARRAY
; ap
= ap
->u
.a
.p
)
4267 oprintf (f
, "),\n");
4271 /* A subroutine of write_root for writing the roots for field FIELD_NAME,
4272 which has type FIELD_TYPE. Parameters F to EMIT_PCH are the parameters
4276 write_field_root (outf_p f
, pair_p v
, type_p type
, const char *name
,
4277 int has_length
, struct fileloc
*line
,
4278 bool emit_pch
, type_p field_type
, const char *field_name
)
4281 /* If the field reference is relative to V, rather than to some
4282 subcomponent of V, we can mark any subarrays with a single stride.
4283 We're effectively treating the field as a global variable in its
4285 if (v
&& type
== v
->type
)
4288 newv
.type
= field_type
;
4289 newv
.name
= ACONCAT ((v
->name
, ".", field_name
, NULL
));
4292 /* Otherwise, any arrays nested in the structure are too complex to
4294 else if (field_type
->kind
== TYPE_ARRAY
)
4296 write_root (f
, v
, field_type
, ACONCAT ((name
, ".", field_name
, NULL
)),
4297 has_length
, line
, emit_pch
);
4300 /* Write out to F the table entry and any marker routines needed to
4301 mark NAME as TYPE. V can be one of three values:
4303 - null, if NAME is too complex to represent using a single
4304 count and stride. In this case, it is an error for NAME to
4305 contain any gc-ed data.
4307 - the outermost array that contains NAME, if NAME is part of an array.
4309 - the C variable that contains NAME, if NAME is not part of an array.
4311 LINE is the line of the C source that declares the root variable.
4312 HAS_LENGTH is nonzero iff V was a variable-length array. */
4315 write_root (outf_p f
, pair_p v
, type_p type
, const char *name
, int has_length
,
4316 struct fileloc
*line
, bool emit_pch
)
4323 for (fld
= type
->u
.s
.fields
; fld
; fld
= fld
->next
)
4326 const char *desc
= NULL
;
4329 for (o
= fld
->opt
; o
; o
= o
->next
)
4330 if (strcmp (o
->name
, "skip") == 0)
4332 else if (strcmp (o
->name
, "desc") == 0
4333 && o
->kind
== OPTION_STRING
)
4334 desc
= o
->info
.string
;
4335 else if (strcmp (o
->name
, "string_length") == 0)
4336 /* See 'doc/gty.texi'. */
4337 error_at_line (line
,
4338 "option `%s' not supported for field `%s' of global `%s'",
4339 o
->name
, fld
->name
, name
);
4341 error_at_line (line
,
4342 "field `%s' of global `%s' has unknown option `%s'",
4343 fld
->name
, name
, o
->name
);
4347 else if (desc
&& fld
->type
->kind
== TYPE_UNION
)
4349 pair_p validf
= NULL
;
4352 for (ufld
= fld
->type
->u
.s
.fields
; ufld
; ufld
= ufld
->next
)
4354 const char *tag
= NULL
;
4356 for (oo
= ufld
->opt
; oo
; oo
= oo
->next
)
4357 if (strcmp (oo
->name
, "tag") == 0
4358 && oo
->kind
== OPTION_STRING
)
4359 tag
= oo
->info
.string
;
4360 if (tag
== NULL
|| strcmp (tag
, desc
) != 0)
4363 error_at_line (line
,
4364 "both `%s.%s.%s' and `%s.%s.%s' have tag `%s'",
4365 name
, fld
->name
, validf
->name
,
4366 name
, fld
->name
, ufld
->name
, tag
);
4370 write_field_root (f
, v
, type
, name
, 0, line
, emit_pch
,
4372 ACONCAT ((fld
->name
, ".",
4373 validf
->name
, NULL
)));
4376 error_at_line (line
,
4377 "global `%s.%s' has `desc' option but is not union",
4380 write_field_root (f
, v
, type
, name
, 0, line
, emit_pch
, fld
->type
,
4389 newname
= xasprintf ("%s[0]", name
);
4390 write_root (f
, v
, type
->u
.a
.p
, newname
, has_length
, line
, emit_pch
);
4395 case TYPE_USER_STRUCT
:
4396 error_at_line (line
, "`%s' must be a pointer type, because it is "
4397 "a GC root and its type is marked with GTY((user))",
4405 if (!start_root_entry (f
, v
, name
, line
))
4410 if (!has_length
&& union_or_struct_p (tp
))
4412 tp
= get_ultimate_base_class (tp
);
4413 const char *id_for_tag
= filter_type_name (tp
->u
.s
.tag
);
4414 oprintf (f
, " >_ggc_mx_%s,\n", id_for_tag
);
4416 oprintf (f
, " >_pch_nx_%s", id_for_tag
);
4418 oprintf (f
, " NULL");
4419 if (id_for_tag
!= tp
->u
.s
.tag
)
4420 free (CONST_CAST (char *, id_for_tag
));
4423 && (tp
->kind
== TYPE_POINTER
|| union_or_struct_p (tp
)))
4425 oprintf (f
, " >_ggc_ma_%s,\n", name
);
4427 oprintf (f
, " >_pch_na_%s", name
);
4429 oprintf (f
, " NULL");
4433 error_at_line (line
,
4434 "global `%s' is pointer to unimplemented type",
4437 oprintf (f
, "\n },\n");
4443 if (!start_root_entry (f
, v
, name
, line
))
4446 oprintf (f
, " (gt_pointer_walker) >_ggc_m_S,\n");
4447 oprintf (f
, " (gt_pointer_walker) >_pch_n_S\n");
4448 oprintf (f
, " },\n");
4456 case TYPE_UNDEFINED
:
4458 case TYPE_LANG_STRUCT
:
4460 error_at_line (line
, "global `%s' is unimplemented type", name
);
4464 /* This generates a routine to walk an array. */
4467 write_array (outf_p f
, pair_p v
, const struct write_types_data
*wtd
)
4469 struct walk_type_data d
;
4472 memset (&d
, 0, sizeof (d
));
4478 d
.bitmap
= get_lang_bitmap (v
->line
.file
);
4480 d
.prev_val
[3] = prevval3
= xasprintf ("&%s", v
->name
);
4482 if (wtd
->param_prefix
)
4484 oprintf (f
, "static void gt_%sa_%s\n", wtd
->param_prefix
, v
->name
);
4485 oprintf (f
, " (void *, void *, gt_pointer_operator, void *);\n");
4486 oprintf (f
, "static void gt_%sa_%s (ATTRIBUTE_UNUSED void *this_obj,\n",
4487 wtd
->param_prefix
, v
->name
);
4489 " ATTRIBUTE_UNUSED void *x_p,\n"
4490 " ATTRIBUTE_UNUSED gt_pointer_operator op,\n"
4491 " ATTRIBUTE_UNUSED void * cookie)\n");
4492 oprintf (d
.of
, "{\n");
4493 d
.prev_val
[0] = d
.prev_val
[1] = d
.prev_val
[2] = d
.val
= v
->name
;
4494 d
.process_field
= write_types_local_process_field
;
4495 d
.have_this_obj
= true;
4496 walk_type (v
->type
, &d
);
4497 oprintf (f
, "}\n\n");
4501 oprintf (f
, "static void gt_%sa_%s (void *);\n", wtd
->prefix
, v
->name
);
4502 oprintf (f
, "static void\ngt_%sa_%s (ATTRIBUTE_UNUSED void *x_p)\n",
4503 wtd
->prefix
, v
->name
);
4505 d
.prev_val
[0] = d
.prev_val
[1] = d
.prev_val
[2] = d
.val
= v
->name
;
4506 d
.process_field
= write_types_process_field
;
4507 d
.have_this_obj
= false;
4508 walk_type (v
->type
, &d
);
4510 oprintf (f
, "}\n\n");
4513 /* Output a table describing the locations and types of VARIABLES. */
4516 write_roots (pair_p variables
, bool emit_pch
)
4519 struct flist
*flp
= NULL
;
4521 for (v
= variables
; v
; v
= v
->next
)
4524 get_output_file_with_visibility (CONST_CAST (input_file
*,
4527 const char *length
= NULL
;
4528 int deletable_p
= 0;
4530 for (o
= v
->opt
; o
; o
= o
->next
)
4531 if (strcmp (o
->name
, "length") == 0
4532 && o
->kind
== OPTION_STRING
)
4533 length
= o
->info
.string
;
4534 else if (strcmp (o
->name
, "deletable") == 0)
4536 else if (strcmp (o
->name
, "cache") == 0)
4538 else if (strcmp (o
->name
, "string_length") == 0)
4539 /* See 'doc/gty.texi'. */
4540 error_at_line (&v
->line
,
4541 "option `%s' not supported for global `%s'",
4544 error_at_line (&v
->line
,
4545 "global `%s' has unknown option `%s'",
4548 for (fli
= flp
; fli
; fli
= fli
->next
)
4549 if (fli
->f
== f
&& f
)
4553 fli
= XNEW (struct flist
);
4557 fli
->file
= v
->line
.file
;
4558 gcc_assert (fli
->file
);
4561 oprintf (f
, "\n/* GC roots. */\n\n");
4566 && v
->type
->kind
== TYPE_POINTER
4567 && (v
->type
->u
.p
->kind
== TYPE_POINTER
4568 || v
->type
->u
.p
->kind
== TYPE_STRUCT
))
4570 write_array (f
, v
, &ggc_wtd
);
4571 write_array (f
, v
, &pch_wtd
);
4575 for (v
= variables
; v
; v
= v
->next
)
4577 outf_p f
= get_output_file_with_visibility (CONST_CAST (input_file
*,
4584 for (o
= v
->opt
; o
; o
= o
->next
)
4585 if (strcmp (o
->name
, "length") == 0)
4587 else if (strcmp (o
->name
, "deletable") == 0)
4593 for (fli
= flp
; fli
; fli
= fli
->next
)
4596 if (!fli
->started_p
)
4600 oprintf (f
, "EXPORTED_CONST struct ggc_root_tab gt_ggc_r_");
4601 put_mangled_filename (f
, v
->line
.file
);
4602 oprintf (f
, "[] = {\n");
4605 write_root (f
, v
, v
->type
, v
->name
, length_p
, &v
->line
, emit_pch
);
4608 finish_root_table (flp
, "ggc_r", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
4611 for (v
= variables
; v
; v
= v
->next
)
4613 outf_p f
= get_output_file_with_visibility (CONST_CAST (input_file
*,
4619 for (o
= v
->opt
; o
; o
= o
->next
)
4620 if (strcmp (o
->name
, "deletable") == 0)
4626 for (fli
= flp
; fli
; fli
= fli
->next
)
4629 if (!fli
->started_p
)
4633 oprintf (f
, "EXPORTED_CONST struct ggc_root_tab gt_ggc_rd_");
4634 put_mangled_filename (f
, v
->line
.file
);
4635 oprintf (f
, "[] = {\n");
4638 oprintf (f
, " { &%s, 1, sizeof (%s), NULL, NULL },\n",
4642 finish_root_table (flp
, "ggc_rd", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
4643 "gt_ggc_deletable_rtab");
4645 for (v
= variables
; v
; v
= v
->next
)
4647 outf_p f
= get_output_file_with_visibility (CONST_CAST (input_file
*,
4653 for (o
= v
->opt
; o
; o
= o
->next
)
4654 if (strcmp (o
->name
, "cache") == 0)
4659 for (fli
= flp
; fli
; fli
= fli
->next
)
4662 if (!fli
->started_p
)
4666 oprintf (f
, "void\ngt_clear_caches_");
4667 put_mangled_filename (f
, v
->line
.file
);
4668 oprintf (f
, " ()\n{\n");
4671 oprintf (f
, " gt_cleare_cache (%s);\n", v
->name
);
4674 finish_cache_funcs (flp
);
4679 for (v
= variables
; v
; v
= v
->next
)
4681 outf_p f
= get_output_file_with_visibility (CONST_CAST (input_file
*,
4687 for (o
= v
->opt
; o
; o
= o
->next
)
4688 if (strcmp (o
->name
, "deletable") == 0)
4697 if (!contains_scalar_p (v
->type
))
4700 for (fli
= flp
; fli
; fli
= fli
->next
)
4703 if (!fli
->started_p
)
4707 oprintf (f
, "EXPORTED_CONST struct ggc_root_tab gt_pch_rs_");
4708 put_mangled_filename (f
, v
->line
.file
);
4709 oprintf (f
, "[] = {\n");
4712 oprintf (f
, " { &%s, 1, sizeof (%s), NULL, NULL },\n",
4716 finish_root_table (flp
, "pch_rs", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
4717 "gt_pch_scalar_rtab");
4720 /* Prints not-as-ugly version of a typename of T to OF. Trades the uniquness
4721 guarantee for somewhat increased readability. If name conflicts do happen,
4722 this function will have to be adjusted to be more like
4723 output_mangled_typename. */
4727 /* Dumps the value of typekind KIND. */
4730 dump_typekind (int indent
, enum typekind kind
)
4732 printf ("%*ckind = ", indent
, ' ');
4736 printf ("TYPE_SCALAR");
4739 printf ("TYPE_STRING");
4742 printf ("TYPE_STRUCT");
4744 case TYPE_UNDEFINED
:
4745 printf ("TYPE_UNDEFINED");
4747 case TYPE_USER_STRUCT
:
4748 printf ("TYPE_USER_STRUCT");
4751 printf ("TYPE_UNION");
4754 printf ("TYPE_POINTER");
4757 printf ("TYPE_ARRAY");
4760 printf ("TYPE_CALLBACK");
4762 case TYPE_LANG_STRUCT
:
4763 printf ("TYPE_LANG_STRUCT");
4771 /* Dumps the value of GC_USED flag. */
4774 dump_gc_used (int indent
, enum gc_used_enum gc_used
)
4776 printf ("%*cgc_used = ", indent
, ' ');
4780 printf ("GC_UNUSED");
4785 case GC_MAYBE_POINTED_TO
:
4786 printf ("GC_MAYBE_POINTED_TO");
4789 printf ("GC_POINTED_TO");
4797 /* Dumps the type options OPT. */
4800 dump_options (int indent
, options_p opt
)
4803 printf ("%*coptions = ", indent
, ' ');
4810 printf ("%s:string %s ", o
->name
, o
->info
.string
);
4813 printf ("%s:type ", o
->name
);
4814 dump_type (indent
+1, o
->info
.type
);
4817 printf ("%s:nested ", o
->name
);
4827 /* Dumps the source file location in LINE. */
4830 dump_fileloc (int indent
, struct fileloc line
)
4832 printf ("%*cfileloc: file = %s, line = %d\n", indent
, ' ',
4833 get_input_file_name (line
.file
),
4837 /* Recursively dumps the struct, union, or a language-specific
4841 dump_type_u_s (int indent
, type_p t
)
4845 gcc_assert (union_or_struct_p (t
));
4846 printf ("%*cu.s.tag = %s\n", indent
, ' ', t
->u
.s
.tag
);
4847 dump_fileloc (indent
, t
->u
.s
.line
);
4848 printf ("%*cu.s.fields =\n", indent
, ' ');
4849 fields
= t
->u
.s
.fields
;
4852 dump_pair (indent
+ INDENT
, fields
);
4853 fields
= fields
->next
;
4855 printf ("%*cend of fields of type %p\n", indent
, ' ', (void *) t
);
4856 dump_options (indent
, t
->u
.s
.opt
);
4857 printf ("%*cu.s.bitmap = %X\n", indent
, ' ', t
->u
.s
.bitmap
);
4858 if (t
->kind
== TYPE_LANG_STRUCT
)
4860 printf ("%*cu.s.lang_struct:\n", indent
, ' ');
4861 dump_type_list (indent
+ INDENT
, t
->u
.s
.lang_struct
);
4865 /* Recursively dumps the array T. */
4868 dump_type_u_a (int indent
, type_p t
)
4870 gcc_assert (t
->kind
== TYPE_ARRAY
);
4871 printf ("%*clen = %s, u.a.p:\n", indent
, ' ', t
->u
.a
.len
);
4872 dump_type_list (indent
+ INDENT
, t
->u
.a
.p
);
4875 /* Recursively dumps the type list T. */
4878 dump_type_list (int indent
, type_p t
)
4883 dump_type (indent
, p
);
4888 static htab_t seen_types
;
4890 /* Recursively dumps the type T if it was not dumped previously. */
4893 dump_type (int indent
, type_p t
)
4897 printf ("%*cType at %p: ", indent
, ' ', (void *) t
);
4898 if (t
->kind
== TYPE_UNDEFINED
)
4900 gcc_assert (t
->gc_used
== GC_UNUSED
);
4901 printf ("undefined.\n");
4905 if (seen_types
== NULL
)
4906 seen_types
= htab_create (100, htab_hash_pointer
, htab_eq_pointer
, NULL
);
4908 slot
= htab_find_slot (seen_types
, t
, INSERT
);
4911 printf ("already seen.\n");
4917 dump_typekind (indent
, t
->kind
);
4918 printf ("%*cpointer_to = %p\n", indent
+ INDENT
, ' ',
4919 (void *) t
->pointer_to
);
4920 dump_gc_used (indent
+ INDENT
, t
->gc_used
);
4924 printf ("%*cscalar_is_char = %s\n", indent
+ INDENT
, ' ',
4925 t
->u
.scalar_is_char
? "true" : "false");
4932 case TYPE_LANG_STRUCT
:
4933 case TYPE_USER_STRUCT
:
4934 dump_type_u_s (indent
+ INDENT
, t
);
4937 printf ("%*cp:\n", indent
+ INDENT
, ' ');
4938 dump_type (indent
+ INDENT
, t
->u
.p
);
4941 dump_type_u_a (indent
+ INDENT
, t
);
4946 printf ("%*cEnd of type at %p\n", indent
, ' ', (void *) t
);
4949 /* Dumps the pair P. */
4952 dump_pair (int indent
, pair_p p
)
4954 printf ("%*cpair: name = %s\n", indent
, ' ', p
->name
);
4955 dump_type (indent
, p
->type
);
4956 dump_fileloc (indent
, p
->line
);
4957 dump_options (indent
, p
->opt
);
4958 printf ("%*cEnd of pair %s\n", indent
, ' ', p
->name
);
4961 /* Dumps the list of pairs PP. */
4964 dump_pair_list (const char *name
, pair_p pp
)
4967 printf ("%s:\n", name
);
4968 for (p
= pp
; p
!= NULL
; p
= p
->next
)
4970 printf ("End of %s\n\n", name
);
4973 /* Dumps the STRUCTURES. */
4976 dump_structures (const char *name
, type_p structures
)
4978 printf ("%s:\n", name
);
4979 dump_type_list (0, structures
);
4980 printf ("End of %s\n\n", name
);
4983 /* Dumps the internal structures of gengtype. This is useful to debug
4984 gengtype itself, or to understand what it does, e.g. for plugin
4988 dump_everything (void)
4990 dump_pair_list ("typedefs", typedefs
);
4991 dump_structures ("structures", structures
);
4992 dump_pair_list ("variables", variables
);
4994 /* Allocated with the first call to dump_type. */
4995 htab_delete (seen_types
);
5000 /* Option specification for getopt_long. */
5001 static const struct option gengtype_long_options
[] = {
5002 {"help", no_argument
, NULL
, 'h'},
5003 {"version", no_argument
, NULL
, 'V'},
5004 {"verbose", no_argument
, NULL
, 'v'},
5005 {"dump", no_argument
, NULL
, 'd'},
5006 {"debug", no_argument
, NULL
, 'D'},
5007 {"plugin", required_argument
, NULL
, 'P'},
5008 {"srcdir", required_argument
, NULL
, 'S'},
5009 {"backupdir", required_argument
, NULL
, 'B'},
5010 {"inputs", required_argument
, NULL
, 'I'},
5011 {"read-state", required_argument
, NULL
, 'r'},
5012 {"write-state", required_argument
, NULL
, 'w'},
5013 /* Terminating NULL placeholder. */
5014 {NULL
, no_argument
, NULL
, 0},
5021 printf ("Usage: %s\n", progname
);
5022 printf ("\t -h | --help " " \t# Give this help.\n");
5023 printf ("\t -D | --debug "
5024 " \t# Give debug output to debug %s itself.\n", progname
);
5025 printf ("\t -V | --version " " \t# Give version information.\n");
5026 printf ("\t -v | --verbose \t# Increase verbosity. Can be given several times.\n");
5027 printf ("\t -d | --dump " " \t# Dump state for debugging.\n");
5028 printf ("\t -P | --plugin <output-file> <plugin-src> ... "
5029 " \t# Generate for plugin.\n");
5030 printf ("\t -S | --srcdir <GCC-directory> "
5031 " \t# Specify the GCC source directory.\n");
5032 printf ("\t -B | --backupdir <directory> "
5033 " \t# Specify the backup directory for updated files.\n");
5034 printf ("\t -I | --inputs <input-list> "
5035 " \t# Specify the file with source files list.\n");
5036 printf ("\t -w | --write-state <state-file> " " \t# Write a state file.\n");
5037 printf ("\t -r | --read-state <state-file> " " \t# Read a state file.\n");
5041 print_version (void)
5043 printf ("%s %s%s\n", progname
, pkgversion_string
, version_string
);
5044 printf ("Report bugs: %s\n", bug_report_url
);
5047 /* Parse the program options using getopt_long... */
5049 parse_program_options (int argc
, char **argv
)
5052 while ((opt
= getopt_long (argc
, argv
, "hVvdP:S:B:I:w:r:D",
5053 gengtype_long_options
, NULL
)) >= 0)
5057 case 'h': /* --help */
5060 case 'V': /* --version */
5063 case 'd': /* --dump */
5066 case 'D': /* --debug */
5069 case 'v': /* --verbose */
5072 case 'P': /* --plugin */
5074 plugin_output_filename
= optarg
;
5076 fatal ("missing plugin output file name");
5078 case 'S': /* --srcdir */
5082 fatal ("missing source directory");
5083 srcdir_len
= strlen (srcdir
);
5085 case 'B': /* --backupdir */
5087 backup_dir
= optarg
;
5089 fatal ("missing backup directory");
5091 case 'I': /* --inputs */
5095 fatal ("missing input list");
5097 case 'r': /* --read-state */
5099 read_state_filename
= optarg
;
5101 fatal ("missing read state file");
5102 DBGPRINTF ("read state %s\n", optarg
);
5104 case 'w': /* --write-state */
5105 DBGPRINTF ("write state %s\n", optarg
);
5107 write_state_filename
= optarg
;
5109 fatal ("missing write state file");
5112 fprintf (stderr
, "%s: unknown flag '%c'\n", progname
, opt
);
5114 fatal ("unexpected flag");
5117 if (plugin_output_filename
)
5119 /* In plugin mode we require some input files. */
5122 fatal ("no source files given in plugin mode");
5123 nb_plugin_files
= argc
- optind
;
5124 plugin_files
= XNEWVEC (input_file
*, nb_plugin_files
);
5125 for (i
= 0; i
< (int) nb_plugin_files
; i
++)
5127 char *name
= argv
[i
+ optind
];
5128 plugin_files
[i
] = input_file_by_name (name
);
5135 /******* Manage input files. ******/
5137 /* Hash table of unique input file names. */
5138 static htab_t input_file_htab
;
5140 /* Find or allocate a new input_file by hash-consing it. */
5142 input_file_by_name (const char* name
)
5145 input_file
* f
= NULL
;
5149 namlen
= strlen (name
);
5150 f
= XCNEWVAR (input_file
, sizeof (input_file
)+namlen
+2);
5153 f
->inpisplugin
= false;
5154 strcpy (f
->inpname
, name
);
5155 slot
= htab_find_slot (input_file_htab
, f
, INSERT
);
5156 gcc_assert (slot
!= NULL
);
5159 /* Already known input file. */
5161 return (input_file
*)(*slot
);
5163 /* New input file. */
5168 /* Hash table support routines for input_file-s. */
5170 htab_hash_inputfile (const void *p
)
5172 const input_file
*inpf
= (const input_file
*) p
;
5174 return htab_hash_string (get_input_file_name (inpf
));
5178 htab_eq_inputfile (const void *x
, const void *y
)
5180 const input_file
*inpfx
= (const input_file
*) x
;
5181 const input_file
*inpfy
= (const input_file
*) y
;
5182 gcc_assert (inpfx
!= NULL
&& inpfy
!= NULL
);
5183 return !filename_cmp (get_input_file_name (inpfx
), get_input_file_name (inpfy
));
5188 main (int argc
, char **argv
)
5191 static struct fileloc pos
= { NULL
, 0 };
5192 outf_p output_header
;
5194 /* Mandatory common initializations. */
5195 progname
= "gengtype"; /* For fatal and messages. */
5196 /* Create the hash-table used to hash-cons input files. */
5198 htab_create (800, htab_hash_inputfile
, htab_eq_inputfile
, NULL
);
5199 /* Initialize our special input files. */
5200 this_file
= input_file_by_name (__FILE__
);
5201 system_h_file
= input_file_by_name ("system.h");
5202 /* Set the scalar_is_char union number for predefined scalar types. */
5203 scalar_nonchar
.u
.scalar_is_char
= false;
5204 scalar_char
.u
.scalar_is_char
= true;
5206 parse_program_options (argc
, argv
);
5210 time_t now
= (time_t) 0;
5212 DBGPRINTF ("gengtype started pid %d at %s",
5213 (int) getpid (), ctime (&now
));
5216 /* Parse the input list and the input files. */
5217 DBGPRINTF ("inputlist %s", inputlist
);
5218 if (read_state_filename
)
5221 fatal ("input list %s cannot be given with a read state file %s",
5222 inputlist
, read_state_filename
);
5223 read_state (read_state_filename
);
5224 DBGPRINT_COUNT_TYPE ("structures after read_state", structures
);
5228 /* These types are set up with #define or else outside of where
5229 we can see them. We should initialize them before calling
5231 #define POS_HERE(Call) do { pos.file = this_file; pos.line = __LINE__; \
5233 POS_HERE (do_scalar_typedef ("CUMULATIVE_ARGS", &pos
));
5234 POS_HERE (do_scalar_typedef ("REAL_VALUE_TYPE", &pos
));
5235 POS_HERE (do_scalar_typedef ("FIXED_VALUE_TYPE", &pos
));
5236 POS_HERE (do_scalar_typedef ("double_int", &pos
));
5237 POS_HERE (do_scalar_typedef ("offset_int", &pos
));
5238 POS_HERE (do_scalar_typedef ("int64_t", &pos
));
5239 POS_HERE (do_scalar_typedef ("poly_int64", &pos
));
5240 POS_HERE (do_scalar_typedef ("poly_uint64", &pos
));
5241 POS_HERE (do_scalar_typedef ("uint64_t", &pos
));
5242 POS_HERE (do_scalar_typedef ("uint32_t", &pos
));
5243 POS_HERE (do_scalar_typedef ("uint8", &pos
));
5244 POS_HERE (do_scalar_typedef ("uintptr_t", &pos
));
5245 POS_HERE (do_scalar_typedef ("jword", &pos
));
5246 POS_HERE (do_scalar_typedef ("JCF_u2", &pos
));
5247 POS_HERE (do_scalar_typedef ("void", &pos
));
5248 POS_HERE (do_scalar_typedef ("machine_mode", &pos
));
5249 POS_HERE (do_scalar_typedef ("fixed_size_mode", &pos
));
5250 POS_HERE (do_scalar_typedef ("CONSTEXPR", &pos
));
5251 POS_HERE (do_typedef ("void *",
5252 create_pointer (resolve_typedef ("void", &pos
)),
5255 read_input_list (inputlist
);
5256 num_build_headers
= 0;
5257 for (i
= 0; i
< num_gt_files
; i
++)
5259 const char *fname
= get_input_file_name (gt_files
[i
]);
5261 DBGPRINTF ("parsed file #%d %s", (int) i
, fname
);
5262 /* Check if this is a header file generated during the build. */
5263 int len
= strlen (fname
);
5266 && IS_DIR_SEPARATOR (fname
[1])
5267 && fname
[len
-2] == '.'
5268 && fname
[len
-1] == 'h')
5269 num_build_headers
++;
5271 if (verbosity_level
>= 1)
5272 printf ("%s parsed %d files with %d GTY types\n",
5273 progname
, (int) num_gt_files
, type_count
);
5275 DBGPRINT_COUNT_TYPE ("structures after parsing", structures
);
5278 fatal ("either an input list or a read state file should be given");
5283 if (plugin_output_filename
)
5286 /* In plugin mode, we should have read a state file, and have
5287 given at least one plugin file. */
5288 if (!read_state_filename
)
5289 fatal ("No read state given in plugin mode for %s",
5290 plugin_output_filename
);
5292 if (nb_plugin_files
== 0 || !plugin_files
)
5293 fatal ("No plugin files given in plugin mode for %s",
5294 plugin_output_filename
);
5296 /* Parse our plugin files and augment the state. */
5297 for (ix
= 0; ix
< nb_plugin_files
; ix
++)
5299 input_file
* pluginput
= plugin_files
[ix
];
5300 pluginput
->inpisplugin
= true;
5301 parse_file (get_input_file_name (pluginput
));
5306 plugin_output
= create_file ("GCC", plugin_output_filename
);
5307 DBGPRINTF ("created plugin_output %p named %s",
5308 (void *) plugin_output
, plugin_output
->name
);
5311 { /* No plugin files, we are in normal mode. */
5313 fatal ("gengtype needs a source directory in normal mode");
5320 set_gc_used (variables
);
5322 for (type_p t
= structures
; t
; t
= t
->next
)
5324 bool for_user
= false;
5325 for (options_p o
= t
->u
.s
.opt
; o
; o
= o
->next
)
5326 if (strcmp (o
->name
, "for_user") == 0)
5333 set_gc_used_type (t
, GC_POINTED_TO
);
5335 /* The state at this point is read from the state input file or by
5336 parsing source files and optionally augmented by parsing plugin
5337 source files. Write it now. */
5338 if (write_state_filename
)
5340 DBGPRINT_COUNT_TYPE ("structures before write_state", structures
);
5343 fatal ("didn't write state file %s after errors",
5344 write_state_filename
);
5346 DBGPRINTF ("before write_state %s", write_state_filename
);
5347 write_state (write_state_filename
);
5352 /* After having written the state file we return immediately to
5353 avoid generating any output file. */
5363 output_header
= plugin_output
? plugin_output
: header_file
;
5364 DBGPRINT_COUNT_TYPE ("structures before write_types outputheader",
5367 write_types (output_header
, structures
, &ggc_wtd
);
5368 if (plugin_files
== NULL
)
5370 DBGPRINT_COUNT_TYPE ("structures before write_types headerfil",
5372 write_types (header_file
, structures
, &pch_wtd
);
5373 write_local (header_file
, structures
);
5375 write_roots (variables
, plugin_files
== NULL
);
5377 close_output_files ();
5382 /* Don't bother about free-ing any input or plugin file, etc. */