1 /* Process source files and output type information.
2 Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC is free software; you can redistribute it and/or modify it under
8 the terms of the GNU General Public License as published by the Free
9 Software Foundation; either version 3, or (at your option) any later
12 GCC is distributed in the hope that it will be useful, but WITHOUT ANY
13 WARRANTY; without even the implied warranty of MERCHANTABILITY or
14 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
17 You should have received a copy of the GNU General Public License
18 along with GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
24 #include "errors.h" /* for fatal */
25 #include "double-int.h"
27 /* Data types, macros, etc. used only in this file. */
29 /* Kinds of types we can understand. */
41 typedef unsigned lang_bitmap
;
43 /* A way to pass data through to the output end. */
51 /* Option data for the 'nested_ptr' option. */
52 struct nested_ptr_data
55 const char *convert_to
;
56 const char *convert_from
;
59 /* A name and a type. */
71 /* A description of a type. */
85 enum gc_used_enum gc_used
;
103 type_p param
[NUM_PARAM
];
110 ((x)->kind == TYPE_UNION || \
111 ((x)->kind == TYPE_LANG_STRUCT \
112 && (x)->u.s.lang_struct->kind == TYPE_UNION))
113 #define UNION_OR_STRUCT_P(x) \
114 ((x)->kind == TYPE_UNION \
115 || (x)->kind == TYPE_STRUCT \
116 || (x)->kind == TYPE_LANG_STRUCT)
118 /* Structure representing an output file. */
127 typedef struct outf
* outf_p
;
129 /* An output file, suitable for definitions, that can see declarations
130 made in INPUT_FILE and is linked into every language that uses
132 extern outf_p get_output_file_with_visibility
133 (const char *input_file
);
134 const char *get_output_file_name (const char *);
136 /* Print, like fprintf, to O. */
137 static void oprintf (outf_p o
, const char *S
, ...)
140 /* The list of output files. */
141 static outf_p output_files
;
143 /* The output header file that is included into pretty much every
145 static outf_p header_file
;
147 /* Source directory. */
148 static const char *srcdir
;
150 /* Length of srcdir name. */
151 static size_t srcdir_len
= 0;
153 static outf_p
create_file (const char *, const char *);
155 static const char * get_file_basename (const char *);
156 static const char * get_file_realbasename (const char *);
157 static const char * get_file_srcdir_relative_path (const char *);
159 static int get_prefix_langdir_index (const char *);
160 static const char * get_file_langdir (const char *);
163 /* Nonzero iff an error has occurred. */
164 bool hit_error
= false;
166 static void gen_rtx_next (void);
167 static void write_rtx_next (void);
168 static void open_base_files (void);
169 static void close_output_files (void);
171 /* Report an error at POS, printing MSG. */
174 error_at_line (struct fileloc
*pos
, const char *msg
, ...)
180 fprintf (stderr
, "%s:%d: ", pos
->file
, pos
->line
);
181 vfprintf (stderr
, msg
, ap
);
182 fputc ('\n', stderr
);
188 /* asprintf, but produces fatal message on out-of-memory. */
190 xasprintf (const char *format
, ...)
196 va_start (ap
, format
);
197 n
= vasprintf (&result
, format
, ap
);
198 if (result
== NULL
|| n
< 0)
199 fatal ("out of memory");
205 /* Input file handling. */
207 /* Table of all input files. */
208 static const char **gt_files
;
209 static size_t num_gt_files
;
211 /* A number of places use the name of this file for a location for
212 things that we can't rely on the source to define. Make sure we
213 can still use pointer comparison on filenames. */
214 static const char this_file
[] = __FILE__
;
216 /* Vector of per-language directories. */
217 static const char **lang_dir_names
;
218 static size_t num_lang_dirs
;
220 /* An array of output files suitable for definitions. There is one
221 BASE_FILES entry for each language. */
222 static outf_p
*base_files
;
224 /* Return a bitmap which has bit `1 << BASE_FILE_<lang>' set iff
225 INPUT_FILE is used by <lang>.
227 This function should be written to assume that a file _is_ used
228 if the situation is unclear. If it wrongly assumes a file _is_ used,
229 a linker error will result. If it wrongly assumes a file _is not_ used,
230 some GC roots may be missed, which is a much harder-to-debug problem.
232 The relevant bitmap is stored immediately before the file's name in the
233 buffer set up by read_input_list. It may be unaligned, so we have to
234 read it byte-by-byte. */
237 get_lang_bitmap (const char *gtfile
)
240 if (gtfile
== this_file
)
241 /* Things defined in this file are universal. */
242 return (((lang_bitmap
)1) << num_lang_dirs
) - 1;
247 for (i
= -(int) sizeof (lang_bitmap
); i
< 0; i
++)
248 n
= (n
<< CHAR_BIT
) + (unsigned char)gtfile
[i
];
253 /* Set the bitmap returned by get_lang_bitmap. The only legitimate
254 caller of this function is read_input_list. */
256 set_lang_bitmap (char *gtfile
, lang_bitmap n
)
259 for (i
= -1; i
>= -(int) sizeof (lang_bitmap
); i
--)
261 gtfile
[i
] = n
& ((1U << CHAR_BIT
)-1);
266 /* Scan the input file, LIST, and determine how much space we need to
267 store strings in. Also, count the number of language directories
268 and files. The numbers returned are overestimates as they does not
269 consider repeated files. */
271 measure_input_list (FILE *list
)
278 while ((c
= getc (list
)) != EOF
)
287 /* Add space for a lang_bitmap before the input file name. */
288 n
+= sizeof (lang_bitmap
);
302 /* Read one input line from LIST to HEREP (which is updated). A
303 pointer to the string is returned via LINEP. If it was a language
304 subdirectory in square brackets, strip off the square brackets and
305 return true. Otherwise, leave space before the string for a
306 lang_bitmap, and return false. At EOF, returns false, does not
307 touch *HEREP, and sets *LINEP to NULL. POS is used for
310 read_input_line (FILE *list
, char **herep
, char **linep
,
317 /* Read over whitespace. */
318 while (c
== '\n' || c
== ' ')
328 /* No space for a lang_bitmap is necessary. Discard the '['. */
331 while (c
!= ']' && c
!= '\n' && c
!= EOF
)
340 c
= getc (list
); /* eat what should be a newline */
341 if (c
!= '\n' && c
!= EOF
)
342 error_at_line (pos
, "junk on line after language tag [%s]", line
);
345 error_at_line (pos
, "missing close bracket for language tag [%s", line
);
353 /* Leave space for a lang_bitmap. */
354 memset (here
, 0, sizeof (lang_bitmap
));
355 here
+= sizeof (lang_bitmap
);
362 while (c
!= EOF
&& c
!= '\n');
370 /* Read the list of input files from LIST and compute all of the
371 relevant tables. There is one file per line of the list. At
372 first, all the files on the list are language-generic, but
373 eventually a line will appear which is the name of a language
374 subdirectory in square brackets, like this: [cp]. All subsequent
375 files are specific to that language, until another language
376 subdirectory tag appears. Files can appear more than once, if
377 they apply to more than one language. */
379 read_input_list (const char *listname
)
381 FILE *list
= fopen (listname
, "r");
383 fatal ("cannot open %s: %s", listname
, strerror (errno
));
387 size_t bufsz
= measure_input_list (list
);
388 char *buf
= XNEWVEC (char, bufsz
);
390 char *committed
= buf
;
391 char *limit
= buf
+ bufsz
;
396 lang_bitmap curlangs
= (1 << num_lang_dirs
) - 1;
398 epos
.file
= listname
;
401 lang_dir_names
= XNEWVEC (const char *, num_lang_dirs
);
402 gt_files
= XNEWVEC (const char *, num_gt_files
);
409 is_language
= read_input_line (list
, &here
, &line
, &epos
);
410 gcc_assert (here
<= limit
);
413 else if (is_language
)
416 gcc_assert (langno
<= num_lang_dirs
);
417 for (i
= 0; i
< langno
; i
++)
418 if (strcmp (lang_dir_names
[i
], line
) == 0)
420 error_at_line (&epos
, "duplicate language tag [%s]", line
);
426 curlangs
= 1 << langno
;
427 lang_dir_names
[langno
++] = line
;
432 gcc_assert (nfiles
<= num_gt_files
);
433 for (i
= 0; i
< nfiles
; i
++)
434 if (strcmp (gt_files
[i
], line
) == 0)
436 /* Throw away the string we just read, and add the
437 current language to the existing string's bitmap. */
438 lang_bitmap bmap
= get_lang_bitmap (gt_files
[i
]);
440 error_at_line (&epos
, "file %s specified more than once "
441 "for language %s", line
, langno
== 0
443 : lang_dir_names
[langno
- 1]);
446 set_lang_bitmap (CONST_CAST(char *, gt_files
[i
]), bmap
);
451 set_lang_bitmap (line
, curlangs
);
452 gt_files
[nfiles
++] = line
;
455 /* Update the global counts now that we know accurately how many
456 things there are. (We do not bother resizing the arrays down.) */
457 num_lang_dirs
= langno
;
458 num_gt_files
= nfiles
;
461 /* Sanity check: any file that resides in a language subdirectory
462 (e.g. 'cp') ought to belong to the corresponding language.
463 ??? Still true if for instance ObjC++ is enabled and C++ isn't?
464 (Can you even do that? Should you be allowed to?) */
467 for (f
= 0; f
< num_gt_files
; f
++)
469 lang_bitmap bitmap
= get_lang_bitmap (gt_files
[f
]);
470 const char *basename
= get_file_basename (gt_files
[f
]);
471 const char *slashpos
= strchr (basename
, '/');
476 for (l
= 0; l
< num_lang_dirs
; l
++)
477 if ((size_t)(slashpos
- basename
) == strlen (lang_dir_names
[l
])
478 && memcmp (basename
, lang_dir_names
[l
],
479 strlen (lang_dir_names
[l
])) == 0)
481 if (!(bitmap
& (1 << l
)))
482 error ("%s is in language directory '%s' but is not "
483 "tagged for that language",
484 basename
, lang_dir_names
[l
]);
492 fatal ("error reading %s: %s", listname
, strerror (errno
));
499 /* The one and only TYPE_STRING. */
501 static struct type string_type
= {
502 TYPE_STRING
, 0, 0, GC_USED
, {0}
505 /* The two and only TYPE_SCALARs. Their u.scalar_is_char flags are
506 set to appropriate values at the beginning of main. */
508 static struct type scalar_nonchar
= {
509 TYPE_SCALAR
, 0, 0, GC_USED
, {0}
511 static struct type scalar_char
= {
512 TYPE_SCALAR
, 0, 0, GC_USED
, {0}
515 /* Lists of various things. */
517 static pair_p typedefs
;
518 static type_p structures
;
519 static type_p param_structs
;
520 static pair_p variables
;
522 static type_p find_param_structure
523 (type_p t
, type_p param
[NUM_PARAM
]);
524 static type_p
adjust_field_tree_exp (type_p t
, options_p opt
);
525 static type_p
adjust_field_rtx_def (type_p t
, options_p opt
);
527 /* Define S as a typedef to T at POS. */
530 do_typedef (const char *s
, type_p t
, struct fileloc
*pos
)
534 /* temporary kludge - gengtype doesn't handle conditionals or
535 macros. Ignore any attempt to typedef CUMULATIVE_ARGS, unless it
536 is coming from this file (main() sets them up with safe dummy
538 if (!strcmp (s
, "CUMULATIVE_ARGS") && pos
->file
!= this_file
)
541 for (p
= typedefs
; p
!= NULL
; p
= p
->next
)
542 if (strcmp (p
->name
, s
) == 0)
546 error_at_line (pos
, "type `%s' previously defined", s
);
547 error_at_line (&p
->line
, "previously defined here");
552 p
= XNEW (struct pair
);
560 /* Define S as a typename of a scalar. Cannot be used to define
561 typedefs of 'char'. Note: is also used for pointer-to-function
562 typedefs (which are therefore not treated as pointers). */
565 do_scalar_typedef (const char *s
, struct fileloc
*pos
)
567 do_typedef (s
, &scalar_nonchar
, pos
);
570 /* Return the type previously defined for S. Use POS to report errors. */
573 resolve_typedef (const char *s
, struct fileloc
*pos
)
576 for (p
= typedefs
; p
!= NULL
; p
= p
->next
)
577 if (strcmp (p
->name
, s
) == 0)
579 error_at_line (pos
, "unidentified type `%s'", s
);
580 return &scalar_nonchar
; /* treat as "int" */
583 /* Create and return a new structure with tag NAME (or a union iff
584 ISUNION is nonzero), at POS with fields FIELDS and options O. */
587 new_structure (const char *name
, int isunion
, struct fileloc
*pos
,
588 pair_p fields
, options_p o
)
592 lang_bitmap bitmap
= get_lang_bitmap (pos
->file
);
594 /* temporary kludge - gengtype doesn't handle conditionals or
595 macros. Ignore any attempt to define struct location_s, unless
596 it is coming from this file (main() sets it up safely). */
597 if (!strcmp (name
, "location_s") && !isunion
598 && pos
->file
!= this_file
)
599 return find_structure (name
, 0);
601 for (si
= structures
; si
!= NULL
; si
= si
->next
)
602 if (strcmp (name
, si
->u
.s
.tag
) == 0
603 && UNION_P (si
) == isunion
)
606 if (si
->kind
== TYPE_LANG_STRUCT
)
610 for (si
= ls
->u
.s
.lang_struct
; si
!= NULL
; si
= si
->next
)
611 if (si
->u
.s
.bitmap
== bitmap
)
614 else if (si
->u
.s
.line
.file
!= NULL
&& si
->u
.s
.bitmap
!= bitmap
)
617 si
= XCNEW (struct type
);
618 memcpy (si
, ls
, sizeof (struct type
));
619 ls
->kind
= TYPE_LANG_STRUCT
;
620 ls
->u
.s
.lang_struct
= si
;
621 ls
->u
.s
.fields
= NULL
;
623 si
->pointer_to
= NULL
;
624 si
->u
.s
.lang_struct
= ls
;
629 if (ls
!= NULL
&& s
== NULL
)
631 s
= XCNEW (struct type
);
632 s
->next
= ls
->u
.s
.lang_struct
;
633 ls
->u
.s
.lang_struct
= s
;
634 s
->u
.s
.lang_struct
= ls
;
641 s
= XCNEW (struct type
);
642 s
->next
= structures
;
646 if (s
->u
.s
.line
.file
!= NULL
647 || (s
->u
.s
.lang_struct
&& (s
->u
.s
.lang_struct
->u
.s
.bitmap
& bitmap
)))
649 error_at_line (pos
, "duplicate definition of '%s %s'",
650 isunion
? "union" : "struct", s
->u
.s
.tag
);
651 error_at_line (&s
->u
.s
.line
, "previous definition here");
654 s
->kind
= isunion
? TYPE_UNION
: TYPE_STRUCT
;
657 s
->u
.s
.fields
= fields
;
659 s
->u
.s
.bitmap
= bitmap
;
660 if (s
->u
.s
.lang_struct
)
661 s
->u
.s
.lang_struct
->u
.s
.bitmap
|= bitmap
;
663 /* Reset location_s's location to input.h so that we know where to
664 write out its mark routine. */
665 if (!strcmp (name
, "location_s") && !isunion
666 && pos
->file
== this_file
)
669 for (n
= 0; n
< num_gt_files
; n
++)
670 if (!strcmp (gt_files
[n
] + strlen (gt_files
[n
]) - strlen ("input.h"),
673 s
->u
.s
.line
.file
= gt_files
[n
];
681 /* Return the previously-defined structure with tag NAME (or a union
682 iff ISUNION is nonzero), or a new empty structure or union if none
683 was defined previously. */
686 find_structure (const char *name
, int isunion
)
690 for (s
= structures
; s
!= NULL
; s
= s
->next
)
691 if (strcmp (name
, s
->u
.s
.tag
) == 0
692 && UNION_P (s
) == isunion
)
695 s
= XCNEW (struct type
);
696 s
->next
= structures
;
698 s
->kind
= isunion
? TYPE_UNION
: TYPE_STRUCT
;
704 /* Return the previously-defined parameterized structure for structure
705 T and parameters PARAM, or a new parameterized empty structure or
706 union if none was defined previously. */
709 find_param_structure (type_p t
, type_p param
[NUM_PARAM
])
713 for (res
= param_structs
; res
; res
= res
->next
)
714 if (res
->u
.param_struct
.stru
== t
715 && memcmp (res
->u
.param_struct
.param
, param
,
716 sizeof (type_p
) * NUM_PARAM
) == 0)
720 res
= XCNEW (struct type
);
721 res
->kind
= TYPE_PARAM_STRUCT
;
722 res
->next
= param_structs
;
724 res
->u
.param_struct
.stru
= t
;
725 memcpy (res
->u
.param_struct
.param
, param
, sizeof (type_p
) * NUM_PARAM
);
730 /* Return a scalar type with name NAME. */
733 create_scalar_type (const char *name
)
735 if (!strcmp (name
, "char") || !strcmp (name
, "unsigned char"))
738 return &scalar_nonchar
;
741 /* Return a pointer to T. */
744 create_pointer (type_p t
)
748 type_p r
= XCNEW (struct type
);
749 r
->kind
= TYPE_POINTER
;
753 return t
->pointer_to
;
756 /* Return an array of length LEN. */
759 create_array (type_p t
, const char *len
)
763 v
= XCNEW (struct type
);
764 v
->kind
= TYPE_ARRAY
;
770 /* Return an options structure with name NAME and info INFO. NEXT is the
771 next option in the chain. */
774 create_option (options_p next
, const char *name
, const void *info
)
776 options_p o
= XNEW (struct options
);
779 o
->info
= (const char*) info
;
783 /* Return an options structure for a "nested_ptr" option. */
785 create_nested_ptr_option (options_p next
, type_p t
,
786 const char *to
, const char *from
)
788 struct nested_ptr_data
*d
= XNEW (struct nested_ptr_data
);
790 d
->type
= adjust_field_type (t
, 0);
792 d
->convert_from
= from
;
793 return create_option (next
, "nested_ptr", d
);
796 /* Add a variable named S of type T with options O defined at POS,
800 note_variable (const char *s
, type_p t
, options_p o
, struct fileloc
*pos
)
803 n
= XNEW (struct pair
);
812 /* Most-general structure field creator. */
814 create_field_all (pair_p next
, type_p type
, const char *name
, options_p opt
,
815 const char *file
, int line
)
819 field
= XNEW (struct pair
);
824 field
->line
.file
= file
;
825 field
->line
.line
= line
;
829 /* Create a field that came from the source code we are scanning,
830 i.e. we have a 'struct fileloc', and possibly options; also,
831 adjust_field_type should be called. */
833 create_field_at (pair_p next
, type_p type
, const char *name
, options_p opt
,
836 return create_field_all (next
, adjust_field_type (type
, opt
),
837 name
, opt
, pos
->file
, pos
->line
);
840 /* Create a fake field with the given type and name. NEXT is the next
841 field in the chain. */
842 #define create_field(next,type,name) \
843 create_field_all(next,type,name, 0, this_file, __LINE__)
845 /* Like create_field, but the field is only valid when condition COND
849 create_optional_field_ (pair_p next
, type_p type
, const char *name
,
850 const char *cond
, int line
)
856 /* Create a fake union type with a single nameless field of type TYPE.
857 The field has a tag of "1". This allows us to make the presence
858 of a field of type TYPE depend on some boolean "desc" being true. */
859 union_fields
= create_field (NULL
, type
, "");
860 union_fields
->opt
= create_option (union_fields
->opt
, "dot", "");
861 union_fields
->opt
= create_option (union_fields
->opt
, "tag", "1");
862 union_type
= new_structure (xasprintf ("%s_%d", "fake_union", id
++), 1,
863 &lexer_line
, union_fields
, NULL
);
865 /* Create the field and give it the new fake union type. Add a "desc"
866 tag that specifies the condition under which the field is valid. */
867 return create_field_all (next
, union_type
, name
,
868 create_option (0, "desc", cond
),
871 #define create_optional_field(next,type,name,cond) \
872 create_optional_field_(next,type,name,cond,__LINE__)
874 /* Reverse a linked list of 'struct pair's in place. */
876 nreverse_pairs (pair_p list
)
878 pair_p prev
= 0, p
, next
;
879 for (p
= list
; p
; p
= next
)
889 /* We don't care how long a CONST_DOUBLE is. */
890 #define CONST_DOUBLE_FORMAT "ww"
891 /* We don't want to see codes that are only for generator files. */
892 #undef GENERATOR_FILE
895 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) ENUM ,
901 static const char * const rtx_name
[NUM_RTX_CODE
] = {
902 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) NAME ,
907 static const char * const rtx_format
[NUM_RTX_CODE
] = {
908 #define DEF_RTL_EXPR(ENUM, NAME, FORMAT, CLASS) FORMAT ,
913 static int rtx_next_new
[NUM_RTX_CODE
];
915 /* We also need codes and names for insn notes (not register notes).
916 Note that we do *not* bias the note values here. */
918 #define DEF_INSN_NOTE(NAME) NAME,
919 #include "insn-notes.def"
925 /* We must allocate one more entry here, as we use NOTE_INSN_MAX as the
926 default field for line number notes. */
927 static const char *const note_insn_name
[NOTE_INSN_MAX
+1] = {
928 #define DEF_INSN_NOTE(NAME) #NAME,
929 #include "insn-notes.def"
933 #undef CONST_DOUBLE_FORMAT
934 #define GENERATOR_FILE
936 /* Generate the contents of the rtx_next array. This really doesn't belong
937 in gengtype at all, but it's needed for adjust_field_rtx_def. */
943 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
947 rtx_next_new
[i
] = -1;
948 if (strncmp (rtx_format
[i
], "iuu", 3) == 0)
950 else if (i
== COND_EXEC
|| i
== SET
|| i
== EXPR_LIST
|| i
== INSN_LIST
)
953 for (k
= strlen (rtx_format
[i
]) - 1; k
>= 0; k
--)
954 if (rtx_format
[i
][k
] == 'e' || rtx_format
[i
][k
] == 'u')
959 /* Write out the contents of the rtx_next array. */
961 write_rtx_next (void)
963 outf_p f
= get_output_file_with_visibility (NULL
);
966 oprintf (f
, "\n/* Used to implement the RTX_NEXT macro. */\n");
967 oprintf (f
, "const unsigned char rtx_next[NUM_RTX_CODE] = {\n");
968 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
969 if (rtx_next_new
[i
] == -1)
970 oprintf (f
, " 0,\n");
973 " RTX_HDR_SIZE + %d * sizeof (rtunion),\n",
978 /* Handle `special("rtx_def")'. This is a special case for field
979 `fld' of struct rtx_def, which is an array of unions whose values
980 are based in a complex way on the type of RTL. */
983 adjust_field_rtx_def (type_p t
, options_p
ARG_UNUSED (opt
))
988 type_p rtx_tp
, rtvec_tp
, tree_tp
, mem_attrs_tp
, note_union_tp
, scalar_tp
;
989 type_p bitmap_tp
, basic_block_tp
, reg_attrs_tp
, constant_tp
, symbol_union_tp
;
991 if (t
->kind
!= TYPE_UNION
)
993 error_at_line (&lexer_line
,
994 "special `rtx_def' must be applied to a union");
998 nodot
= create_option (NULL
, "dot", "");
1000 rtx_tp
= create_pointer (find_structure ("rtx_def", 0));
1001 rtvec_tp
= create_pointer (find_structure ("rtvec_def", 0));
1002 tree_tp
= create_pointer (find_structure ("tree_node", 1));
1003 mem_attrs_tp
= create_pointer (find_structure ("mem_attrs", 0));
1004 reg_attrs_tp
= create_pointer (find_structure ("reg_attrs", 0));
1005 bitmap_tp
= create_pointer (find_structure ("bitmap_element_def", 0));
1006 basic_block_tp
= create_pointer (find_structure ("basic_block_def", 0));
1007 constant_tp
= create_pointer (find_structure ("constant_descriptor_rtx", 0));
1008 scalar_tp
= &scalar_nonchar
; /* rtunion int */
1011 pair_p note_flds
= NULL
;
1014 for (c
= 0; c
<= NOTE_INSN_MAX
; c
++)
1019 note_flds
= create_field (note_flds
, &string_type
, "rt_str");
1022 case NOTE_INSN_BLOCK_BEG
:
1023 case NOTE_INSN_BLOCK_END
:
1024 note_flds
= create_field (note_flds
, tree_tp
, "rt_tree");
1027 case NOTE_INSN_VAR_LOCATION
:
1028 note_flds
= create_field (note_flds
, rtx_tp
, "rt_rtx");
1032 note_flds
= create_field (note_flds
, scalar_tp
, "rt_int");
1035 /* NOTE_INSN_MAX is used as the default field for line
1037 if (c
== NOTE_INSN_MAX
)
1038 note_flds
->opt
= create_option (nodot
, "default", "");
1040 note_flds
->opt
= create_option (nodot
, "tag", note_insn_name
[c
]);
1042 note_union_tp
= new_structure ("rtx_def_note_subunion", 1,
1043 &lexer_line
, note_flds
, NULL
);
1045 /* Create a type to represent the various forms of SYMBOL_REF_DATA. */
1049 sym_flds
= create_field (NULL
, tree_tp
, "rt_tree");
1050 sym_flds
->opt
= create_option (nodot
, "default", "");
1052 sym_flds
= create_field (sym_flds
, constant_tp
, "rt_constant");
1053 sym_flds
->opt
= create_option (nodot
, "tag", "1");
1055 symbol_union_tp
= new_structure ("rtx_def_symbol_subunion", 1,
1056 &lexer_line
, sym_flds
, NULL
);
1058 for (i
= 0; i
< NUM_RTX_CODE
; i
++)
1060 pair_p subfields
= NULL
;
1061 size_t aindex
, nmindex
;
1066 for (aindex
= 0; aindex
< strlen (rtx_format
[i
]); aindex
++)
1069 const char *subname
;
1071 switch (rtx_format
[i
][aindex
])
1082 if (i
== MEM
&& aindex
== 1)
1083 t
= mem_attrs_tp
, subname
= "rt_mem";
1084 else if (i
== JUMP_INSN
&& aindex
== 8)
1085 t
= rtx_tp
, subname
= "rt_rtx";
1086 else if (i
== CODE_LABEL
&& aindex
== 4)
1087 t
= scalar_tp
, subname
= "rt_int";
1088 else if (i
== CODE_LABEL
&& aindex
== 5)
1089 t
= rtx_tp
, subname
= "rt_rtx";
1090 else if (i
== LABEL_REF
1091 && (aindex
== 1 || aindex
== 2))
1092 t
= rtx_tp
, subname
= "rt_rtx";
1093 else if (i
== NOTE
&& aindex
== 4)
1094 t
= note_union_tp
, subname
= "";
1095 else if (i
== NOTE
&& aindex
== 5)
1096 t
= scalar_tp
, subname
= "rt_int";
1097 else if (i
== NOTE
&& aindex
>= 7)
1098 t
= scalar_tp
, subname
= "rt_int";
1099 else if (i
== ADDR_DIFF_VEC
&& aindex
== 4)
1100 t
= scalar_tp
, subname
= "rt_int";
1101 else if (i
== VALUE
&& aindex
== 0)
1102 t
= scalar_tp
, subname
= "rt_int";
1103 else if (i
== REG
&& aindex
== 1)
1104 t
= scalar_tp
, subname
= "rt_int";
1105 else if (i
== REG
&& aindex
== 2)
1106 t
= reg_attrs_tp
, subname
= "rt_reg";
1107 else if (i
== SCRATCH
&& aindex
== 0)
1108 t
= scalar_tp
, subname
= "rt_int";
1109 else if (i
== SYMBOL_REF
&& aindex
== 1)
1110 t
= scalar_tp
, subname
= "rt_int";
1111 else if (i
== SYMBOL_REF
&& aindex
== 2)
1112 t
= symbol_union_tp
, subname
= "";
1113 else if (i
== BARRIER
&& aindex
>= 3)
1114 t
= scalar_tp
, subname
= "rt_int";
1117 error_at_line (&lexer_line
,
1118 "rtx type `%s' has `0' in position %lu, can't handle",
1119 rtx_name
[i
], (unsigned long) aindex
);
1141 subname
= "rt_rtvec";
1146 subname
= "rt_tree";
1160 error_at_line (&lexer_line
,
1161 "rtx type `%s' has `%c' in position %lu, can't handle",
1162 rtx_name
[i
], rtx_format
[i
][aindex
],
1163 (unsigned long)aindex
);
1169 subfields
= create_field (subfields
, t
,
1170 xasprintf (".fld[%lu].%s",
1171 (unsigned long) aindex
,
1173 subfields
->opt
= nodot
;
1174 if (t
== note_union_tp
)
1175 subfields
->opt
= create_option (subfields
->opt
, "desc",
1177 if (t
== symbol_union_tp
)
1178 subfields
->opt
= create_option (subfields
->opt
, "desc",
1179 "CONSTANT_POOL_ADDRESS_P (&%0)");
1182 if (i
== SYMBOL_REF
)
1184 /* Add the "block_sym" field if SYMBOL_REF_HAS_BLOCK_INFO_P holds. */
1185 type_p field_tp
= find_structure ("block_symbol", 0);
1187 = create_optional_field (subfields
, field_tp
, "block_sym",
1188 "SYMBOL_REF_HAS_BLOCK_INFO_P (&%0)");
1191 sname
= xasprintf ("rtx_def_%s", rtx_name
[i
]);
1192 substruct
= new_structure (sname
, 0, &lexer_line
, subfields
, NULL
);
1194 ftag
= xstrdup (rtx_name
[i
]);
1195 for (nmindex
= 0; nmindex
< strlen (ftag
); nmindex
++)
1196 ftag
[nmindex
] = TOUPPER (ftag
[nmindex
]);
1198 flds
= create_field (flds
, substruct
, "");
1199 flds
->opt
= create_option (nodot
, "tag", ftag
);
1202 return new_structure ("rtx_def_subunion", 1, &lexer_line
, flds
, nodot
);
1205 /* Handle `special("tree_exp")'. This is a special case for
1206 field `operands' of struct tree_exp, which although it claims to contain
1207 pointers to trees, actually sometimes contains pointers to RTL too.
1208 Passed T, the old type of the field, and OPT its options. Returns
1209 a new type for the field. */
1212 adjust_field_tree_exp (type_p t
, options_p opt ATTRIBUTE_UNUSED
)
1217 if (t
->kind
!= TYPE_ARRAY
)
1219 error_at_line (&lexer_line
,
1220 "special `tree_exp' must be applied to an array");
1221 return &string_type
;
1224 nodot
= create_option (NULL
, "dot", "");
1226 flds
= create_field (NULL
, t
, "");
1227 flds
->opt
= create_option (nodot
, "length",
1228 "TREE_OPERAND_LENGTH ((tree) &%0)");
1229 flds
->opt
= create_option (flds
->opt
, "default", "");
1231 return new_structure ("tree_exp_subunion", 1, &lexer_line
, flds
, nodot
);
1234 /* Perform any special processing on a type T, about to become the type
1235 of a field. Return the appropriate type for the field.
1237 - Converts pointer-to-char, with no length parameter, to TYPE_STRING;
1238 - Similarly for arrays of pointer-to-char;
1239 - Converts structures for which a parameter is provided to
1241 - Handles "special" options.
1245 adjust_field_type (type_p t
, options_p opt
)
1248 const int pointer_p
= t
->kind
== TYPE_POINTER
;
1249 type_p params
[NUM_PARAM
];
1253 for (i
= 0; i
< NUM_PARAM
; i
++)
1256 for (; opt
; opt
= opt
->next
)
1257 if (strcmp (opt
->name
, "length") == 0)
1259 else if (strcmp (opt
->name
, "param_is") == 0
1260 || (strncmp (opt
->name
, "param", 5) == 0
1261 && ISDIGIT (opt
->name
[5])
1262 && strcmp (opt
->name
+ 6, "_is") == 0))
1264 int num
= ISDIGIT (opt
->name
[5]) ? opt
->name
[5] - '0' : 0;
1266 if (! UNION_OR_STRUCT_P (t
)
1267 && (t
->kind
!= TYPE_POINTER
|| ! UNION_OR_STRUCT_P (t
->u
.p
)))
1269 error_at_line (&lexer_line
,
1270 "option `%s' may only be applied to structures or structure pointers",
1276 if (params
[num
] != NULL
)
1277 error_at_line (&lexer_line
, "duplicate `%s' option", opt
->name
);
1278 if (! ISDIGIT (opt
->name
[5]))
1279 params
[num
] = create_pointer (CONST_CAST2(type_p
, const char *, opt
->info
));
1281 params
[num
] = CONST_CAST2 (type_p
, const char *, opt
->info
);
1283 else if (strcmp (opt
->name
, "special") == 0)
1285 const char *special_name
= opt
->info
;
1286 if (strcmp (special_name
, "tree_exp") == 0)
1287 t
= adjust_field_tree_exp (t
, opt
);
1288 else if (strcmp (special_name
, "rtx_def") == 0)
1289 t
= adjust_field_rtx_def (t
, opt
);
1291 error_at_line (&lexer_line
, "unknown special `%s'", special_name
);
1300 realt
= find_param_structure (t
, params
);
1301 t
= pointer_p
? create_pointer (realt
) : realt
;
1306 && t
->u
.p
->kind
== TYPE_SCALAR
1307 && t
->u
.p
->u
.scalar_is_char
)
1308 return &string_type
;
1309 if (t
->kind
== TYPE_ARRAY
&& t
->u
.a
.p
->kind
== TYPE_POINTER
1310 && t
->u
.a
.p
->u
.p
->kind
== TYPE_SCALAR
1311 && t
->u
.a
.p
->u
.p
->u
.scalar_is_char
)
1312 return create_array (&string_type
, t
->u
.a
.len
);
1318 static void set_gc_used_type (type_p
, enum gc_used_enum
, type_p
*);
1319 static void set_gc_used (pair_p
);
1321 /* Handle OPT for set_gc_used_type. */
1324 process_gc_options (options_p opt
, enum gc_used_enum level
, int *maybe_undef
,
1325 int *pass_param
, int *length
, int *skip
, type_p
*nested_ptr
)
1328 for (o
= opt
; o
; o
= o
->next
)
1329 if (strcmp (o
->name
, "ptr_alias") == 0 && level
== GC_POINTED_TO
)
1330 set_gc_used_type (CONST_CAST2 (type_p
, const char *, o
->info
),
1331 GC_POINTED_TO
, NULL
);
1332 else if (strcmp (o
->name
, "maybe_undef") == 0)
1334 else if (strcmp (o
->name
, "use_params") == 0)
1336 else if (strcmp (o
->name
, "length") == 0)
1338 else if (strcmp (o
->name
, "skip") == 0)
1340 else if (strcmp (o
->name
, "nested_ptr") == 0)
1341 *nested_ptr
= ((const struct nested_ptr_data
*) o
->info
)->type
;
1344 /* Set the gc_used field of T to LEVEL, and handle the types it references. */
1347 set_gc_used_type (type_p t
, enum gc_used_enum level
, type_p param
[NUM_PARAM
])
1349 if (t
->gc_used
>= level
)
1363 process_gc_options (t
->u
.s
.opt
, level
, &dummy
, &dummy
, &dummy
, &dummy
,
1366 for (f
= t
->u
.s
.fields
; f
; f
= f
->next
)
1368 int maybe_undef
= 0;
1372 type_p nested_ptr
= NULL
;
1373 process_gc_options (f
->opt
, level
, &maybe_undef
, &pass_param
,
1374 &length
, &skip
, &nested_ptr
);
1376 if (nested_ptr
&& f
->type
->kind
== TYPE_POINTER
)
1377 set_gc_used_type (nested_ptr
, GC_POINTED_TO
,
1378 pass_param
? param
: NULL
);
1379 else if (length
&& f
->type
->kind
== TYPE_POINTER
)
1380 set_gc_used_type (f
->type
->u
.p
, GC_USED
, NULL
);
1381 else if (maybe_undef
&& f
->type
->kind
== TYPE_POINTER
)
1382 set_gc_used_type (f
->type
->u
.p
, GC_MAYBE_POINTED_TO
, NULL
);
1383 else if (pass_param
&& f
->type
->kind
== TYPE_POINTER
&& param
)
1384 set_gc_used_type (find_param_structure (f
->type
->u
.p
, param
),
1385 GC_POINTED_TO
, NULL
);
1387 ; /* target type is not used through this field */
1389 set_gc_used_type (f
->type
, GC_USED
, pass_param
? param
: NULL
);
1395 set_gc_used_type (t
->u
.p
, GC_POINTED_TO
, NULL
);
1399 set_gc_used_type (t
->u
.a
.p
, GC_USED
, param
);
1402 case TYPE_LANG_STRUCT
:
1403 for (t
= t
->u
.s
.lang_struct
; t
; t
= t
->next
)
1404 set_gc_used_type (t
, level
, param
);
1407 case TYPE_PARAM_STRUCT
:
1410 for (i
= 0; i
< NUM_PARAM
; i
++)
1411 if (t
->u
.param_struct
.param
[i
] != 0)
1412 set_gc_used_type (t
->u
.param_struct
.param
[i
], GC_USED
, NULL
);
1414 if (t
->u
.param_struct
.stru
->gc_used
== GC_POINTED_TO
)
1415 level
= GC_POINTED_TO
;
1418 t
->u
.param_struct
.stru
->gc_used
= GC_UNUSED
;
1419 set_gc_used_type (t
->u
.param_struct
.stru
, level
,
1420 t
->u
.param_struct
.param
);
1428 /* Set the gc_used fields of all the types pointed to by VARIABLES. */
1431 set_gc_used (pair_p variables
)
1434 for (p
= variables
; p
; p
= p
->next
)
1435 set_gc_used_type (p
->type
, GC_USED
, NULL
);
1438 /* File mapping routines. For each input file, there is one output .c file
1439 (but some output files have many input files), and there is one .h file
1440 for the whole build. */
1442 /* Output file handling. */
1444 /* Create and return an outf_p for a new file for NAME, to be called
1448 create_file (const char *name
, const char *oname
)
1450 static const char *const hdr
[] = {
1451 " Copyright (C) 2004, 2007 Free Software Foundation, Inc.\n",
1453 "This file is part of GCC.\n",
1455 "GCC is free software; you can redistribute it and/or modify it under\n",
1456 "the terms of the GNU General Public License as published by the Free\n",
1457 "Software Foundation; either version 3, or (at your option) any later\n",
1460 "GCC is distributed in the hope that it will be useful, but WITHOUT ANY\n",
1461 "WARRANTY; without even the implied warranty of MERCHANTABILITY or\n",
1462 "FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License\n",
1463 "for more details.\n",
1465 "You should have received a copy of the GNU General Public License\n",
1466 "along with GCC; see the file COPYING3. If not see\n",
1467 "<http://www.gnu.org/licenses/>. */\n",
1469 "/* This file is machine generated. Do not edit. */\n"
1474 f
= XCNEW (struct outf
);
1475 f
->next
= output_files
;
1479 oprintf (f
, "/* Type information for %s.\n", name
);
1480 for (i
= 0; i
< ARRAY_SIZE (hdr
); i
++)
1481 oprintf (f
, "%s", hdr
[i
]);
1485 /* Print, like fprintf, to O.
1486 N.B. You might think this could be implemented more efficiently
1487 with vsnprintf(). Unfortunately, there are C libraries that
1488 provide that function but without the C99 semantics for its return
1489 value, making it impossible to know how much space is required. */
1491 oprintf (outf_p o
, const char *format
, ...)
1497 va_start (ap
, format
);
1498 slength
= vasprintf (&s
, format
, ap
);
1499 if (s
== NULL
|| (int)slength
< 0)
1500 fatal ("out of memory");
1503 if (o
->bufused
+ slength
> o
->buflength
)
1505 size_t new_len
= o
->buflength
;
1510 } while (o
->bufused
+ slength
>= new_len
);
1511 o
->buf
= XRESIZEVEC (char, o
->buf
, new_len
);
1512 o
->buflength
= new_len
;
1514 memcpy (o
->buf
+ o
->bufused
, s
, slength
);
1515 o
->bufused
+= slength
;
1519 /* Open the global header file and the language-specific header files. */
1522 open_base_files (void)
1526 header_file
= create_file ("GCC", "gtype-desc.h");
1528 base_files
= XNEWVEC (outf_p
, num_lang_dirs
);
1530 for (i
= 0; i
< num_lang_dirs
; i
++)
1531 base_files
[i
] = create_file (lang_dir_names
[i
],
1532 xasprintf ("gtype-%s.h", lang_dir_names
[i
]));
1534 /* gtype-desc.c is a little special, so we create it here. */
1536 /* The order of files here matters very much. */
1537 static const char *const ifiles
[] = {
1538 "config.h", "system.h", "coretypes.h", "tm.h", "varray.h",
1539 "hashtab.h", "splay-tree.h", "obstack.h", "bitmap.h", "input.h",
1540 "tree.h", "rtl.h", "function.h", "insn-config.h", "expr.h",
1541 "hard-reg-set.h", "basic-block.h", "cselib.h", "insn-addr.h",
1542 "optabs.h", "libfuncs.h", "debug.h", "ggc.h", "cgraph.h",
1543 "tree-flow.h", "reload.h", "cpp-id-data.h", "tree-chrec.h",
1544 "cfglayout.h", "except.h", "output.h", "gimple.h", "cfgloop.h", NULL
1546 const char *const *ifp
;
1547 outf_p gtype_desc_c
;
1549 gtype_desc_c
= create_file ("GCC", "gtype-desc.c");
1550 for (ifp
= ifiles
; *ifp
; ifp
++)
1551 oprintf (gtype_desc_c
, "#include \"%s\"\n", *ifp
);
1553 /* Make sure we handle "cfun" specially. */
1554 oprintf (gtype_desc_c
, "\n/* See definition in function.h. */\n");
1555 oprintf (gtype_desc_c
, "#undef cfun\n");
1559 /* For F a filename, return the real basename of F, with all the directory
1560 components skipped. */
1563 get_file_realbasename (const char *f
)
1565 const char * lastslash
= strrchr (f
, '/');
1567 return (lastslash
!= NULL
) ? lastslash
+ 1 : f
;
1570 /* For F a filename, return the relative path to F from $(srcdir) if the
1571 latter is a prefix in F, NULL otherwise. */
1574 get_file_srcdir_relative_path (const char *f
)
1576 if (strlen (f
) > srcdir_len
1577 && IS_DIR_SEPARATOR (f
[srcdir_len
])
1578 && memcmp (f
, srcdir
, srcdir_len
) == 0)
1579 return f
+ srcdir_len
+ 1;
1584 /* For F a filename, return the relative path to F from $(srcdir) if the
1585 latter is a prefix in F, or the real basename of F otherwise. */
1588 get_file_basename (const char *f
)
1590 const char * srcdir_path
= get_file_srcdir_relative_path (f
);
1592 return (srcdir_path
!= NULL
) ? srcdir_path
: get_file_realbasename (f
);
1595 /* For F a filename, return the lang_dir_names relative index of the language
1596 directory that is a prefix in F, if any, -1 otherwise. */
1599 get_prefix_langdir_index (const char *f
)
1601 size_t f_len
= strlen (f
);
1604 for (lang_index
= 0; lang_index
< num_lang_dirs
; lang_index
++)
1606 const char * langdir
= lang_dir_names
[lang_index
];
1607 size_t langdir_len
= strlen (langdir
);
1609 if (f_len
> langdir_len
1610 && IS_DIR_SEPARATOR (f
[langdir_len
])
1611 && memcmp (f
, langdir
, langdir_len
) == 0)
1618 /* For F a filename, return the name of language directory where F is located,
1619 if any, NULL otherwise. */
1622 get_file_langdir (const char *f
)
1624 /* Get the relative path to F from $(srcdir) and find the language by
1625 comparing the prefix with language directory names. If F is not even
1626 srcdir relative, no point in looking further. */
1629 const char * srcdir_relative_path
= get_file_srcdir_relative_path (f
);
1631 if (!srcdir_relative_path
)
1634 lang_index
= get_prefix_langdir_index (srcdir_relative_path
);
1636 return (lang_index
>= 0) ? lang_dir_names
[lang_index
] : NULL
;
1639 /* The gt- output file name for F. */
1642 get_file_gtfilename (const char *f
)
1644 /* Cook up an initial version of the gt- file name from the file real
1645 basename and the language name, if any. */
1647 const char *basename
= get_file_realbasename (f
);
1648 const char *langdir
= get_file_langdir (f
);
1651 (langdir
? xasprintf ("gt-%s-%s", langdir
, basename
)
1652 : xasprintf ("gt-%s", basename
));
1654 /* Then replace all non alphanumerics characters by '-' and change the
1655 extenstion to ".h". We expect the input filename extension was at least
1656 one character long. */
1660 for (; *s
!= '.'; s
++)
1661 if (! ISALNUM (*s
) && *s
!= '-')
1664 memcpy (s
, ".h", sizeof (".h"));
1669 /* An output file, suitable for definitions, that can see declarations
1670 made in INPUT_FILE and is linked into every language that uses
1674 get_output_file_with_visibility (const char *input_file
)
1678 const char *basename
;
1679 const char *for_name
;
1680 const char *output_name
;
1682 /* This can happen when we need a file with visibility on a
1683 structure that we've never seen. We have to just hope that it's
1684 globally visible. */
1685 if (input_file
== NULL
)
1686 input_file
= "system.h";
1688 /* Determine the output file name. */
1689 basename
= get_file_basename (input_file
);
1691 len
= strlen (basename
);
1692 if ((len
> 2 && memcmp (basename
+len
-2, ".c", 2) == 0)
1693 || (len
> 2 && memcmp (basename
+len
-2, ".y", 2) == 0)
1694 || (len
> 3 && memcmp (basename
+len
-3, ".in", 3) == 0))
1696 output_name
= get_file_gtfilename (input_file
);
1697 for_name
= basename
;
1699 /* Some headers get used by more than one front-end; hence, it
1700 would be inappropriate to spew them out to a single gtype-<lang>.h
1701 (and gengtype doesn't know how to direct spewage into multiple
1702 gtype-<lang>.h headers at this time). Instead, we pair up these
1703 headers with source files (and their special purpose gt-*.h headers). */
1704 else if (strcmp (basename
, "c-common.h") == 0)
1705 output_name
= "gt-c-common.h", for_name
= "c-common.c";
1706 else if (strcmp (basename
, "c-tree.h") == 0)
1707 output_name
= "gt-c-decl.h", for_name
= "c-decl.c";
1708 else if (strncmp (basename
, "cp", 2) == 0 && IS_DIR_SEPARATOR (basename
[2])
1709 && strcmp (basename
+ 3, "cp-tree.h") == 0)
1710 output_name
= "gt-cp-tree.h", for_name
= "cp/tree.c";
1711 else if (strncmp (basename
, "cp", 2) == 0 && IS_DIR_SEPARATOR (basename
[2])
1712 && strcmp (basename
+ 3, "decl.h") == 0)
1713 output_name
= "gt-cp-decl.h", for_name
= "cp/decl.c";
1714 else if (strncmp (basename
, "cp", 2) == 0 && IS_DIR_SEPARATOR (basename
[2])
1715 && strcmp (basename
+ 3, "name-lookup.h") == 0)
1716 output_name
= "gt-cp-name-lookup.h", for_name
= "cp/name-lookup.c";
1717 else if (strncmp (basename
, "objc", 4) == 0 && IS_DIR_SEPARATOR (basename
[4])
1718 && strcmp (basename
+ 5, "objc-act.h") == 0)
1719 output_name
= "gt-objc-objc-act.h", for_name
= "objc/objc-act.c";
1722 int lang_index
= get_prefix_langdir_index (basename
);
1724 if (lang_index
>= 0)
1725 return base_files
[lang_index
];
1727 output_name
= "gtype-desc.c";
1731 /* Look through to see if we've ever seen this output filename before. */
1732 for (r
= output_files
; r
; r
= r
->next
)
1733 if (strcmp (r
->name
, output_name
) == 0)
1736 /* If not, create it. */
1737 r
= create_file (for_name
, output_name
);
1742 /* The name of an output file, suitable for definitions, that can see
1743 declarations made in INPUT_FILE and is linked into every language
1744 that uses INPUT_FILE. */
1747 get_output_file_name (const char *input_file
)
1749 return get_output_file_with_visibility (input_file
)->name
;
1752 /* Copy the output to its final destination,
1753 but don't unnecessarily change modification times. */
1756 close_output_files (void)
1760 for (of
= output_files
; of
; of
= of
->next
)
1764 newfile
= fopen (of
->name
, "r");
1765 if (newfile
!= NULL
)
1770 for (i
= 0; i
< of
->bufused
; i
++)
1773 ch
= fgetc (newfile
);
1774 if (ch
== EOF
|| ch
!= (unsigned char) of
->buf
[i
])
1777 no_write_p
= i
== of
->bufused
&& fgetc (newfile
) == EOF
;
1784 newfile
= fopen (of
->name
, "w");
1785 if (newfile
== NULL
)
1786 fatal ("opening output file %s: %s", of
->name
, strerror (errno
));
1787 if (fwrite (of
->buf
, 1, of
->bufused
, newfile
) != of
->bufused
)
1788 fatal ("writing output file %s: %s", of
->name
, strerror (errno
));
1789 if (fclose (newfile
) != 0)
1790 fatal ("closing output file %s: %s", of
->name
, strerror (errno
));
1801 struct walk_type_data
;
1803 /* For scalars and strings, given the item in 'val'.
1804 For structures, given a pointer to the item in 'val'.
1805 For misc. pointers, given the item in 'val'.
1807 typedef void (*process_field_fn
)
1808 (type_p f
, const struct walk_type_data
*p
);
1809 typedef void (*func_name_fn
)
1810 (type_p s
, const struct walk_type_data
*p
);
1812 /* Parameters for write_types. */
1814 struct write_types_data
1817 const char *param_prefix
;
1818 const char *subfield_marker_routine
;
1819 const char *marker_routine
;
1820 const char *reorder_note_routine
;
1821 const char *comment
;
1822 int skip_hooks
; /* skip hook generation if non zero */
1825 static void output_escaped_param (struct walk_type_data
*d
,
1826 const char *, const char *);
1827 static void output_mangled_typename (outf_p
, const_type_p
);
1828 static void walk_type (type_p t
, struct walk_type_data
*d
);
1829 static void write_func_for_structure
1830 (type_p orig_s
, type_p s
, type_p
* param
,
1831 const struct write_types_data
*wtd
);
1832 static void write_types_process_field
1833 (type_p f
, const struct walk_type_data
*d
);
1834 static void write_types (type_p structures
,
1835 type_p param_structs
,
1836 const struct write_types_data
*wtd
);
1837 static void write_types_local_process_field
1838 (type_p f
, const struct walk_type_data
*d
);
1839 static void write_local_func_for_structure
1840 (type_p orig_s
, type_p s
, type_p
* param
);
1841 static void write_local (type_p structures
,
1842 type_p param_structs
);
1843 static void write_enum_defn (type_p structures
, type_p param_structs
);
1844 static int contains_scalar_p (type_p t
);
1845 static void put_mangled_filename (outf_p
, const char *);
1846 static void finish_root_table (struct flist
*flp
, const char *pfx
,
1847 const char *tname
, const char *lastname
,
1849 static void write_root (outf_p
, pair_p
, type_p
, const char *, int,
1850 struct fileloc
*, const char *);
1851 static void write_array (outf_p f
, pair_p v
,
1852 const struct write_types_data
*wtd
);
1853 static void write_roots (pair_p
);
1855 /* Parameters for walk_type. */
1857 struct walk_type_data
1859 process_field_fn process_field
;
1864 const char *prev_val
[4];
1867 struct fileloc
*line
;
1872 const char *reorder_fn
;
1874 bool fn_wants_lvalue
;
1877 /* Print a mangled name representing T to OF. */
1880 output_mangled_typename (outf_p of
, const_type_p t
)
1884 else switch (t
->kind
)
1888 output_mangled_typename (of
, t
->u
.p
);
1898 case TYPE_LANG_STRUCT
:
1899 oprintf (of
, "%lu%s", (unsigned long) strlen (t
->u
.s
.tag
), t
->u
.s
.tag
);
1901 case TYPE_PARAM_STRUCT
:
1904 for (i
= 0; i
< NUM_PARAM
; i
++)
1905 if (t
->u
.param_struct
.param
[i
] != NULL
)
1906 output_mangled_typename (of
, t
->u
.param_struct
.param
[i
]);
1907 output_mangled_typename (of
, t
->u
.param_struct
.stru
);
1915 /* Print PARAM to D->OF processing escapes. D->VAL references the
1916 current object, D->PREV_VAL the object containing the current
1917 object, ONAME is the name of the option and D->LINE is used to
1918 print error messages. */
1921 output_escaped_param (struct walk_type_data
*d
, const char *param
,
1926 for (p
= param
; *p
; p
++)
1928 oprintf (d
->of
, "%c", *p
);
1932 oprintf (d
->of
, "(%s)", d
->prev_val
[2]);
1935 oprintf (d
->of
, "(%s)", d
->prev_val
[0]);
1938 oprintf (d
->of
, "(%s)", d
->prev_val
[1]);
1942 const char *pp
= d
->val
+ strlen (d
->val
);
1943 while (pp
[-1] == ']')
1946 oprintf (d
->of
, "%s", pp
);
1950 error_at_line (d
->line
, "`%s' option contains bad escape %c%c",
1955 /* Call D->PROCESS_FIELD for every field (or subfield) of D->VAL,
1956 which is of type T. Write code to D->OF to constrain execution (at
1957 the point that D->PROCESS_FIELD is called) to the appropriate
1958 cases. Call D->PROCESS_FIELD on subobjects before calling it on
1959 pointers to those objects. D->PREV_VAL lists the objects
1960 containing the current object, D->OPT is a list of options to
1961 apply, D->INDENT is the current indentation level, D->LINE is used
1962 to print error messages, D->BITMAP indicates which languages to
1963 print the structure for, and D->PARAM is the current parameter
1964 (from an enclosing param_is option). */
1967 walk_type (type_p t
, struct walk_type_data
*d
)
1969 const char *length
= NULL
;
1970 const char *desc
= NULL
;
1971 int maybe_undef_p
= 0;
1972 int use_param_num
= -1;
1973 int use_params_p
= 0;
1975 const struct nested_ptr_data
*nested_ptr_d
= NULL
;
1977 d
->needs_cast_p
= false;
1978 for (oo
= d
->opt
; oo
; oo
= oo
->next
)
1979 if (strcmp (oo
->name
, "length") == 0)
1981 else if (strcmp (oo
->name
, "maybe_undef") == 0)
1983 else if (strncmp (oo
->name
, "use_param", 9) == 0
1984 && (oo
->name
[9] == '\0' || ISDIGIT (oo
->name
[9])))
1985 use_param_num
= oo
->name
[9] == '\0' ? 0 : oo
->name
[9] - '0';
1986 else if (strcmp (oo
->name
, "use_params") == 0)
1988 else if (strcmp (oo
->name
, "desc") == 0)
1990 else if (strcmp (oo
->name
, "mark_hook") == 0)
1992 else if (strcmp (oo
->name
, "nested_ptr") == 0)
1993 nested_ptr_d
= (const struct nested_ptr_data
*) oo
->info
;
1994 else if (strcmp (oo
->name
, "dot") == 0)
1996 else if (strcmp (oo
->name
, "tag") == 0)
1998 else if (strcmp (oo
->name
, "special") == 0)
2000 else if (strcmp (oo
->name
, "skip") == 0)
2002 else if (strcmp (oo
->name
, "default") == 0)
2004 else if (strcmp (oo
->name
, "descbits") == 0)
2006 else if (strcmp (oo
->name
, "param_is") == 0)
2008 else if (strncmp (oo
->name
, "param", 5) == 0
2009 && ISDIGIT (oo
->name
[5])
2010 && strcmp (oo
->name
+ 6, "_is") == 0)
2012 else if (strcmp (oo
->name
, "chain_next") == 0)
2014 else if (strcmp (oo
->name
, "chain_prev") == 0)
2016 else if (strcmp (oo
->name
, "chain_circular") == 0)
2018 else if (strcmp (oo
->name
, "reorder") == 0)
2021 error_at_line (d
->line
, "unknown option `%s'\n", oo
->name
);
2028 int pointer_p
= t
->kind
== TYPE_POINTER
;
2032 if (! UNION_OR_STRUCT_P (t
))
2033 error_at_line (d
->line
, "`use_params' option on unimplemented type");
2035 t
= find_param_structure (t
, d
->param
);
2037 t
= create_pointer (t
);
2040 if (use_param_num
!= -1)
2042 if (d
->param
!= NULL
&& d
->param
[use_param_num
] != NULL
)
2044 type_p nt
= d
->param
[use_param_num
];
2046 if (t
->kind
== TYPE_ARRAY
)
2047 nt
= create_array (nt
, t
->u
.a
.len
);
2048 else if (length
!= NULL
&& t
->kind
== TYPE_POINTER
)
2049 nt
= create_pointer (nt
);
2050 d
->needs_cast_p
= (t
->kind
!= TYPE_POINTER
2051 && (nt
->kind
== TYPE_POINTER
2052 || nt
->kind
== TYPE_STRING
));
2056 error_at_line (d
->line
, "no parameter defined for `%s'",
2061 && (t
->kind
!= TYPE_POINTER
|| ! UNION_OR_STRUCT_P (t
->u
.p
)))
2063 error_at_line (d
->line
,
2064 "field `%s' has invalid option `maybe_undef_p'\n",
2073 d
->process_field (t
, d
);
2079 && t
->u
.p
->u
.s
.line
.file
== NULL
)
2081 oprintf (d
->of
, "%*sgcc_assert (!%s);\n", d
->indent
, "", d
->val
);
2087 if (! UNION_OR_STRUCT_P (t
->u
.p
)
2088 && t
->u
.p
->kind
!= TYPE_PARAM_STRUCT
)
2090 error_at_line (d
->line
,
2091 "field `%s' is pointer to unimplemented type",
2098 const char *oldprevval2
= d
->prev_val
[2];
2100 if (! UNION_OR_STRUCT_P (nested_ptr_d
->type
))
2102 error_at_line (d
->line
,
2103 "field `%s' has invalid "
2104 "option `nested_ptr'\n",
2109 d
->prev_val
[2] = d
->val
;
2110 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2112 d
->val
= xasprintf ("x%d", d
->counter
++);
2113 oprintf (d
->of
, "%*s%s %s * %s%s =\n", d
->indent
, "",
2114 (nested_ptr_d
->type
->kind
== TYPE_UNION
2115 ? "union" : "struct"),
2116 nested_ptr_d
->type
->u
.s
.tag
,
2117 d
->fn_wants_lvalue
? "" : "const ",
2119 oprintf (d
->of
, "%*s", d
->indent
+ 2, "");
2120 output_escaped_param (d
, nested_ptr_d
->convert_from
,
2122 oprintf (d
->of
, ";\n");
2124 d
->process_field (nested_ptr_d
->type
, d
);
2126 if (d
->fn_wants_lvalue
)
2128 oprintf (d
->of
, "%*s%s = ", d
->indent
, "",
2130 d
->prev_val
[2] = d
->val
;
2131 output_escaped_param (d
, nested_ptr_d
->convert_to
,
2133 oprintf (d
->of
, ";\n");
2137 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2138 d
->val
= d
->prev_val
[2];
2139 d
->prev_val
[2] = oldprevval2
;
2142 d
->process_field (t
->u
.p
, d
);
2146 int loopcounter
= d
->counter
++;
2147 const char *oldval
= d
->val
;
2148 const char *oldprevval3
= d
->prev_val
[3];
2151 oprintf (d
->of
, "%*sif (%s != NULL) {\n", d
->indent
, "", d
->val
);
2153 oprintf (d
->of
, "%*ssize_t i%d;\n", d
->indent
, "", loopcounter
);
2154 oprintf (d
->of
, "%*sfor (i%d = 0; i%d != (size_t)(", d
->indent
, "",
2155 loopcounter
, loopcounter
);
2156 output_escaped_param (d
, length
, "length");
2157 oprintf (d
->of
, "); i%d++) {\n", loopcounter
);
2159 d
->val
= newval
= xasprintf ("%s[i%d]", oldval
, loopcounter
);
2161 d
->prev_val
[3] = oldval
;
2162 walk_type (t
->u
.p
, d
);
2165 d
->prev_val
[3] = oldprevval3
;
2168 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2169 d
->process_field(t
, d
);
2171 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2178 int loopcounter
= d
->counter
++;
2179 const char *oldval
= d
->val
;
2182 /* If it's an array of scalars, we optimize by not generating
2184 if (t
->u
.a
.p
->kind
== TYPE_SCALAR
)
2187 /* When walking an array, compute the length and store it in a
2188 local variable before walking the array elements, instead of
2189 recomputing the length expression each time through the loop.
2190 This is necessary to handle tcc_vl_exp objects like CALL_EXPR,
2191 where the length is stored in the first array element,
2192 because otherwise that operand can get overwritten on the
2194 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2196 oprintf (d
->of
, "%*ssize_t i%d;\n", d
->indent
, "", loopcounter
);
2197 oprintf (d
->of
, "%*ssize_t l%d = (size_t)(",
2198 d
->indent
, "", loopcounter
);
2200 output_escaped_param (d
, length
, "length");
2202 oprintf (d
->of
, "%s", t
->u
.a
.len
);
2203 oprintf (d
->of
, ");\n");
2205 oprintf (d
->of
, "%*sfor (i%d = 0; i%d != l%d; i%d++) {\n",
2207 loopcounter
, loopcounter
, loopcounter
, loopcounter
);
2209 d
->val
= newval
= xasprintf ("%s[i%d]", oldval
, loopcounter
);
2211 walk_type (t
->u
.a
.p
, d
);
2216 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2218 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2226 const char *oldval
= d
->val
;
2227 const char *oldprevval1
= d
->prev_val
[1];
2228 const char *oldprevval2
= d
->prev_val
[2];
2229 const int union_p
= t
->kind
== TYPE_UNION
;
2230 int seen_default_p
= 0;
2233 if (! t
->u
.s
.line
.file
)
2234 error_at_line (d
->line
, "incomplete structure `%s'", t
->u
.s
.tag
);
2236 if ((d
->bitmap
& t
->u
.s
.bitmap
) != d
->bitmap
)
2238 error_at_line (d
->line
,
2239 "structure `%s' defined for mismatching languages",
2241 error_at_line (&t
->u
.s
.line
, "one structure defined here");
2244 /* Some things may also be defined in the structure's options. */
2245 for (o
= t
->u
.s
.opt
; o
; o
= o
->next
)
2246 if (! desc
&& strcmp (o
->name
, "desc") == 0)
2249 d
->prev_val
[2] = oldval
;
2250 d
->prev_val
[1] = oldprevval2
;
2255 error_at_line (d
->line
, "missing `desc' option for union `%s'",
2259 oprintf (d
->of
, "%*sswitch (", d
->indent
, "");
2260 output_escaped_param (d
, desc
, "desc");
2261 oprintf (d
->of
, ")\n");
2263 oprintf (d
->of
, "%*s{\n", d
->indent
, "");
2265 for (f
= t
->u
.s
.fields
; f
; f
= f
->next
)
2268 const char *dot
= ".";
2269 const char *tagid
= NULL
;
2272 int use_param_p
= 0;
2275 d
->reorder_fn
= NULL
;
2276 for (oo
= f
->opt
; oo
; oo
= oo
->next
)
2277 if (strcmp (oo
->name
, "dot") == 0)
2279 else if (strcmp (oo
->name
, "tag") == 0)
2281 else if (strcmp (oo
->name
, "skip") == 0)
2283 else if (strcmp (oo
->name
, "default") == 0)
2285 else if (strcmp (oo
->name
, "reorder") == 0)
2286 d
->reorder_fn
= oo
->info
;
2287 else if (strncmp (oo
->name
, "use_param", 9) == 0
2288 && (oo
->name
[9] == '\0' || ISDIGIT (oo
->name
[9])))
2294 if (union_p
&& tagid
)
2296 oprintf (d
->of
, "%*scase %s:\n", d
->indent
, "", tagid
);
2299 else if (union_p
&& default_p
)
2301 oprintf (d
->of
, "%*sdefault:\n", d
->indent
, "");
2305 else if (! union_p
&& (default_p
|| tagid
))
2306 error_at_line (d
->line
,
2307 "can't use `%s' outside a union on field `%s'",
2308 default_p
? "default" : "tag", f
->name
);
2309 else if (union_p
&& ! (default_p
|| tagid
)
2310 && f
->type
->kind
== TYPE_SCALAR
)
2313 "%s:%d: warning: field `%s' is missing `tag' or `default' option\n",
2314 d
->line
->file
, d
->line
->line
, f
->name
);
2317 else if (union_p
&& ! (default_p
|| tagid
))
2318 error_at_line (d
->line
,
2319 "field `%s' is missing `tag' or `default' option",
2323 d
->val
= newval
= xasprintf ("%s%s%s", oldval
, dot
, f
->name
);
2325 d
->used_length
= false;
2327 if (union_p
&& use_param_p
&& d
->param
== NULL
)
2328 oprintf (d
->of
, "%*sgcc_unreachable ();\n", d
->indent
, "");
2330 walk_type (f
->type
, d
);
2336 oprintf (d
->of
, "%*sbreak;\n", d
->indent
, "");
2340 d
->reorder_fn
= NULL
;
2343 d
->prev_val
[1] = oldprevval1
;
2344 d
->prev_val
[2] = oldprevval2
;
2346 if (union_p
&& ! seen_default_p
)
2348 oprintf (d
->of
, "%*sdefault:\n", d
->indent
, "");
2349 oprintf (d
->of
, "%*s break;\n", d
->indent
, "");
2353 oprintf (d
->of
, "%*s}\n", d
->indent
, "");
2359 case TYPE_LANG_STRUCT
:
2362 for (nt
= t
->u
.s
.lang_struct
; nt
; nt
= nt
->next
)
2363 if ((d
->bitmap
& nt
->u
.s
.bitmap
) == d
->bitmap
)
2366 error_at_line (d
->line
, "structure `%s' differs between languages",
2373 case TYPE_PARAM_STRUCT
:
2375 type_p
*oldparam
= d
->param
;
2377 d
->param
= t
->u
.param_struct
.param
;
2378 walk_type (t
->u
.param_struct
.stru
, d
);
2379 d
->param
= oldparam
;
2388 /* process_field routine for marking routines. */
2391 write_types_process_field (type_p f
, const struct walk_type_data
*d
)
2393 const struct write_types_data
*wtd
;
2394 const char *cast
= d
->needs_cast_p
? "(void *)" : "";
2395 wtd
= (const struct write_types_data
*) d
->cookie
;
2400 oprintf (d
->of
, "%*s%s (%s%s", d
->indent
, "",
2401 wtd
->subfield_marker_routine
, cast
, d
->val
);
2402 if (wtd
->param_prefix
)
2404 oprintf (d
->of
, ", %s", d
->prev_val
[3]);
2407 oprintf (d
->of
, ", gt_%s_", wtd
->param_prefix
);
2408 output_mangled_typename (d
->of
, d
->orig_s
);
2411 oprintf (d
->of
, ", gt_%sa_%s", wtd
->param_prefix
, d
->prev_val
[0]);
2413 if (f
->u
.p
->kind
== TYPE_PARAM_STRUCT
2414 && f
->u
.p
->u
.s
.line
.file
!= NULL
)
2416 oprintf (d
->of
, ", gt_e_");
2417 output_mangled_typename (d
->of
, f
);
2419 else if (UNION_OR_STRUCT_P (f
)
2420 && f
->u
.p
->u
.s
.line
.file
!= NULL
)
2422 oprintf (d
->of
, ", gt_ggc_e_");
2423 output_mangled_typename (d
->of
, f
);
2426 oprintf (d
->of
, ", gt_types_enum_last");
2428 oprintf (d
->of
, ");\n");
2429 if (d
->reorder_fn
&& wtd
->reorder_note_routine
)
2430 oprintf (d
->of
, "%*s%s (%s%s, %s, %s);\n", d
->indent
, "",
2431 wtd
->reorder_note_routine
, cast
, d
->val
,
2432 d
->prev_val
[3], d
->reorder_fn
);
2438 case TYPE_LANG_STRUCT
:
2439 case TYPE_PARAM_STRUCT
:
2440 oprintf (d
->of
, "%*sgt_%s_", d
->indent
, "", wtd
->prefix
);
2441 output_mangled_typename (d
->of
, f
);
2442 oprintf (d
->of
, " (%s%s);\n", cast
, d
->val
);
2443 if (d
->reorder_fn
&& wtd
->reorder_note_routine
)
2444 oprintf (d
->of
, "%*s%s (%s%s, %s%s, %s);\n", d
->indent
, "",
2445 wtd
->reorder_note_routine
, cast
, d
->val
, cast
, d
->val
,
2457 /* A subroutine of write_func_for_structure. Write the enum tag for S. */
2460 output_type_enum (outf_p of
, type_p s
)
2462 if (s
->kind
== TYPE_PARAM_STRUCT
&& s
->u
.s
.line
.file
!= NULL
)
2464 oprintf (of
, ", gt_e_");
2465 output_mangled_typename (of
, s
);
2467 else if (UNION_OR_STRUCT_P (s
) && s
->u
.s
.line
.file
!= NULL
)
2469 oprintf (of
, ", gt_ggc_e_");
2470 output_mangled_typename (of
, s
);
2473 oprintf (of
, ", gt_types_enum_last");
2476 /* For S, a structure that's part of ORIG_S, and using parameters
2477 PARAM, write out a routine that:
2478 - Takes a parameter, a void * but actually of type *S
2479 - If SEEN_ROUTINE returns nonzero, calls write_types_process_field on each
2480 field of S or its substructures and (in some cases) things
2481 that are pointed to by S.
2485 write_func_for_structure (type_p orig_s
, type_p s
, type_p
*param
,
2486 const struct write_types_data
*wtd
)
2488 const char *fn
= s
->u
.s
.line
.file
;
2490 const char *chain_next
= NULL
;
2491 const char *chain_prev
= NULL
;
2492 const char *chain_circular
= NULL
;
2493 const char *mark_hook_name
= NULL
;
2495 struct walk_type_data d
;
2497 /* This is a hack, and not the good kind either. */
2498 for (i
= NUM_PARAM
- 1; i
>= 0; i
--)
2499 if (param
&& param
[i
] && param
[i
]->kind
== TYPE_POINTER
2500 && UNION_OR_STRUCT_P (param
[i
]->u
.p
))
2501 fn
= param
[i
]->u
.p
->u
.s
.line
.file
;
2503 memset (&d
, 0, sizeof (d
));
2504 d
.of
= get_output_file_with_visibility (fn
);
2506 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
2507 if (strcmp (opt
->name
, "chain_next") == 0)
2508 chain_next
= opt
->info
;
2509 else if (strcmp (opt
->name
, "chain_prev") == 0)
2510 chain_prev
= opt
->info
;
2511 else if (strcmp (opt
->name
, "chain_circular") == 0)
2512 chain_circular
= opt
->info
;
2513 else if (strcmp (opt
->name
, "mark_hook") == 0)
2514 mark_hook_name
= opt
->info
;
2516 if (chain_prev
!= NULL
&& chain_next
== NULL
)
2517 error_at_line (&s
->u
.s
.line
, "chain_prev without chain_next");
2518 if (chain_circular
!= NULL
&& chain_next
!= NULL
)
2519 error_at_line (&s
->u
.s
.line
, "chain_circular with chain_next");
2520 if (chain_circular
!= NULL
)
2521 chain_next
= chain_circular
;
2523 d
.process_field
= write_types_process_field
;
2527 d
.line
= &s
->u
.s
.line
;
2528 d
.bitmap
= s
->u
.s
.bitmap
;
2530 d
.prev_val
[0] = "*x";
2531 d
.prev_val
[1] = "not valid postage"; /* Guarantee an error. */
2532 d
.prev_val
[3] = "x";
2535 oprintf (d
.of
, "\n");
2536 oprintf (d
.of
, "void\n");
2538 oprintf (d
.of
, "gt_%sx_%s", wtd
->prefix
, orig_s
->u
.s
.tag
);
2541 oprintf (d
.of
, "gt_%s_", wtd
->prefix
);
2542 output_mangled_typename (d
.of
, orig_s
);
2544 oprintf (d
.of
, " (void *x_p)\n");
2545 oprintf (d
.of
, "{\n");
2546 oprintf (d
.of
, " %s %s * %sx = (%s %s *)x_p;\n",
2547 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
,
2548 chain_next
== NULL
? "const " : "",
2549 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
2550 if (chain_next
!= NULL
)
2551 oprintf (d
.of
, " %s %s * xlimit = x;\n",
2552 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
2553 if (chain_next
== NULL
)
2555 oprintf (d
.of
, " if (%s (x", wtd
->marker_routine
);
2556 if (wtd
->param_prefix
)
2558 oprintf (d
.of
, ", x, gt_%s_", wtd
->param_prefix
);
2559 output_mangled_typename (d
.of
, orig_s
);
2560 output_type_enum (d
.of
, orig_s
);
2562 oprintf (d
.of
, "))\n");
2566 if (chain_circular
!= NULL
)
2567 oprintf (d
.of
, " if (!%s (xlimit", wtd
->marker_routine
);
2569 oprintf (d
.of
, " while (%s (xlimit", wtd
->marker_routine
);
2570 if (wtd
->param_prefix
)
2572 oprintf (d
.of
, ", xlimit, gt_%s_", wtd
->param_prefix
);
2573 output_mangled_typename (d
.of
, orig_s
);
2574 output_type_enum (d
.of
, orig_s
);
2576 oprintf (d
.of
, "))\n");
2577 if (chain_circular
!= NULL
)
2578 oprintf (d
.of
, " return;\n do\n");
2579 if (mark_hook_name
&& !wtd
->skip_hooks
)
2581 oprintf (d
.of
, " {\n");
2582 oprintf (d
.of
, " %s (xlimit);\n ", mark_hook_name
);
2584 oprintf (d
.of
, " xlimit = (");
2585 d
.prev_val
[2] = "*xlimit";
2586 output_escaped_param (&d
, chain_next
, "chain_next");
2587 oprintf (d
.of
, ");\n");
2588 if (mark_hook_name
&& !wtd
->skip_hooks
)
2589 oprintf (d
.of
, " }\n");
2590 if (chain_prev
!= NULL
)
2592 oprintf (d
.of
, " if (x != xlimit)\n");
2593 oprintf (d
.of
, " for (;;)\n");
2594 oprintf (d
.of
, " {\n");
2595 oprintf (d
.of
, " %s %s * const xprev = (",
2596 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
2598 d
.prev_val
[2] = "*x";
2599 output_escaped_param (&d
, chain_prev
, "chain_prev");
2600 oprintf (d
.of
, ");\n");
2601 oprintf (d
.of
, " if (xprev == NULL) break;\n");
2602 oprintf (d
.of
, " x = xprev;\n");
2603 oprintf (d
.of
, " (void) %s (xprev",
2604 wtd
->marker_routine
);
2605 if (wtd
->param_prefix
)
2607 oprintf (d
.of
, ", xprev, gt_%s_", wtd
->param_prefix
);
2608 output_mangled_typename (d
.of
, orig_s
);
2609 output_type_enum (d
.of
, orig_s
);
2611 oprintf (d
.of
, ");\n");
2612 oprintf (d
.of
, " }\n");
2614 if (chain_circular
!= NULL
)
2616 oprintf (d
.of
, " while (%s (xlimit", wtd
->marker_routine
);
2617 if (wtd
->param_prefix
)
2619 oprintf (d
.of
, ", xlimit, gt_%s_", wtd
->param_prefix
);
2620 output_mangled_typename (d
.of
, orig_s
);
2621 output_type_enum (d
.of
, orig_s
);
2623 oprintf (d
.of
, "));\n");
2624 if (mark_hook_name
&& !wtd
->skip_hooks
)
2625 oprintf (d
.of
, " %s (xlimit);\n", mark_hook_name
);
2626 oprintf (d
.of
, " do\n");
2629 oprintf (d
.of
, " while (x != xlimit)\n");
2631 oprintf (d
.of
, " {\n");
2632 if (mark_hook_name
&& chain_next
== NULL
&& !wtd
->skip_hooks
)
2634 oprintf (d
.of
, " %s (x);\n", mark_hook_name
);
2636 d
.prev_val
[2] = "*x";
2640 if (chain_next
!= NULL
)
2642 oprintf (d
.of
, " x = (");
2643 output_escaped_param (&d
, chain_next
, "chain_next");
2644 oprintf (d
.of
, ");\n");
2647 oprintf (d
.of
, " }\n");
2648 if (chain_circular
!= NULL
)
2649 oprintf (d
.of
, " while (x != xlimit);\n");
2650 oprintf (d
.of
, "}\n");
2653 /* Write out marker routines for STRUCTURES and PARAM_STRUCTS. */
2656 write_types (type_p structures
, type_p param_structs
,
2657 const struct write_types_data
*wtd
)
2661 oprintf (header_file
, "\n/* %s*/\n", wtd
->comment
);
2662 for (s
= structures
; s
; s
= s
->next
)
2663 if (s
->gc_used
== GC_POINTED_TO
2664 || s
->gc_used
== GC_MAYBE_POINTED_TO
)
2668 if (s
->gc_used
== GC_MAYBE_POINTED_TO
2669 && s
->u
.s
.line
.file
== NULL
)
2672 oprintf (header_file
, "#define gt_%s_", wtd
->prefix
);
2673 output_mangled_typename (header_file
, s
);
2674 oprintf (header_file
, "(X) do { \\\n");
2675 oprintf (header_file
,
2676 " if (X != NULL) gt_%sx_%s (X);\\\n", wtd
->prefix
,
2678 oprintf (header_file
,
2681 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
2682 if (strcmp (opt
->name
, "ptr_alias") == 0)
2684 const_type_p
const t
= (const_type_p
) opt
->info
;
2685 if (t
->kind
== TYPE_STRUCT
2686 || t
->kind
== TYPE_UNION
2687 || t
->kind
== TYPE_LANG_STRUCT
)
2688 oprintf (header_file
,
2689 "#define gt_%sx_%s gt_%sx_%s\n",
2690 wtd
->prefix
, s
->u
.s
.tag
, wtd
->prefix
, t
->u
.s
.tag
);
2692 error_at_line (&s
->u
.s
.line
,
2693 "structure alias is not a structure");
2699 /* Declare the marker procedure only once. */
2700 oprintf (header_file
,
2701 "extern void gt_%sx_%s (void *);\n",
2702 wtd
->prefix
, s
->u
.s
.tag
);
2704 if (s
->u
.s
.line
.file
== NULL
)
2706 fprintf (stderr
, "warning: structure `%s' used but not defined\n",
2711 if (s
->kind
== TYPE_LANG_STRUCT
)
2714 for (ss
= s
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
2715 write_func_for_structure (s
, ss
, NULL
, wtd
);
2718 write_func_for_structure (s
, s
, NULL
, wtd
);
2721 for (s
= param_structs
; s
; s
= s
->next
)
2722 if (s
->gc_used
== GC_POINTED_TO
)
2724 type_p
* param
= s
->u
.param_struct
.param
;
2725 type_p stru
= s
->u
.param_struct
.stru
;
2727 /* Declare the marker procedure. */
2728 oprintf (header_file
, "extern void gt_%s_", wtd
->prefix
);
2729 output_mangled_typename (header_file
, s
);
2730 oprintf (header_file
, " (void *);\n");
2732 if (stru
->u
.s
.line
.file
== NULL
)
2734 fprintf (stderr
, "warning: structure `%s' used but not defined\n",
2739 if (stru
->kind
== TYPE_LANG_STRUCT
)
2742 for (ss
= stru
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
2743 write_func_for_structure (s
, ss
, param
, wtd
);
2746 write_func_for_structure (s
, stru
, param
, wtd
);
2750 static const struct write_types_data ggc_wtd
=
2752 "ggc_m", NULL
, "ggc_mark", "ggc_test_and_set_mark", NULL
,
2753 "GC marker procedures. ",
2757 static const struct write_types_data pch_wtd
=
2759 "pch_n", "pch_p", "gt_pch_note_object", "gt_pch_note_object",
2760 "gt_pch_note_reorder",
2761 "PCH type-walking procedures. ",
2765 /* Write out the local pointer-walking routines. */
2767 /* process_field routine for local pointer-walking. */
2770 write_types_local_process_field (type_p f
, const struct walk_type_data
*d
)
2777 case TYPE_LANG_STRUCT
:
2778 case TYPE_PARAM_STRUCT
:
2780 oprintf (d
->of
, "%*sif ((void *)(%s) == this_obj)\n", d
->indent
, "",
2782 oprintf (d
->of
, "%*s op (&(%s), cookie);\n", d
->indent
, "", d
->val
);
2793 /* For S, a structure that's part of ORIG_S, and using parameters
2794 PARAM, write out a routine that:
2795 - Is of type gt_note_pointers
2796 - Calls PROCESS_FIELD on each field of S or its substructures.
2800 write_local_func_for_structure (type_p orig_s
, type_p s
, type_p
*param
)
2802 const char *fn
= s
->u
.s
.line
.file
;
2804 struct walk_type_data d
;
2806 /* This is a hack, and not the good kind either. */
2807 for (i
= NUM_PARAM
- 1; i
>= 0; i
--)
2808 if (param
&& param
[i
] && param
[i
]->kind
== TYPE_POINTER
2809 && UNION_OR_STRUCT_P (param
[i
]->u
.p
))
2810 fn
= param
[i
]->u
.p
->u
.s
.line
.file
;
2812 memset (&d
, 0, sizeof (d
));
2813 d
.of
= get_output_file_with_visibility (fn
);
2815 d
.process_field
= write_types_local_process_field
;
2817 d
.line
= &s
->u
.s
.line
;
2818 d
.bitmap
= s
->u
.s
.bitmap
;
2820 d
.prev_val
[0] = d
.prev_val
[2] = "*x";
2821 d
.prev_val
[1] = "not valid postage"; /* Guarantee an error. */
2822 d
.prev_val
[3] = "x";
2824 d
.fn_wants_lvalue
= true;
2826 oprintf (d
.of
, "\n");
2827 oprintf (d
.of
, "void\n");
2828 oprintf (d
.of
, "gt_pch_p_");
2829 output_mangled_typename (d
.of
, orig_s
);
2830 oprintf (d
.of
, " (ATTRIBUTE_UNUSED void *this_obj,\n"
2832 "\tATTRIBUTE_UNUSED gt_pointer_operator op,\n"
2833 "\tATTRIBUTE_UNUSED void *cookie)\n");
2834 oprintf (d
.of
, "{\n");
2835 oprintf (d
.of
, " %s %s * const x ATTRIBUTE_UNUSED = (%s %s *)x_p;\n",
2836 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
,
2837 s
->kind
== TYPE_UNION
? "union" : "struct", s
->u
.s
.tag
);
2840 oprintf (d
.of
, "}\n");
2843 /* Write out local marker routines for STRUCTURES and PARAM_STRUCTS. */
2846 write_local (type_p structures
, type_p param_structs
)
2850 oprintf (header_file
, "\n/* Local pointer-walking routines. */\n");
2851 for (s
= structures
; s
; s
= s
->next
)
2852 if (s
->gc_used
== GC_POINTED_TO
2853 || s
->gc_used
== GC_MAYBE_POINTED_TO
)
2857 if (s
->u
.s
.line
.file
== NULL
)
2860 for (opt
= s
->u
.s
.opt
; opt
; opt
= opt
->next
)
2861 if (strcmp (opt
->name
, "ptr_alias") == 0)
2863 const_type_p
const t
= (const_type_p
) opt
->info
;
2864 if (t
->kind
== TYPE_STRUCT
2865 || t
->kind
== TYPE_UNION
2866 || t
->kind
== TYPE_LANG_STRUCT
)
2868 oprintf (header_file
, "#define gt_pch_p_");
2869 output_mangled_typename (header_file
, s
);
2870 oprintf (header_file
, " gt_pch_p_");
2871 output_mangled_typename (header_file
, t
);
2872 oprintf (header_file
, "\n");
2875 error_at_line (&s
->u
.s
.line
,
2876 "structure alias is not a structure");
2882 /* Declare the marker procedure only once. */
2883 oprintf (header_file
, "extern void gt_pch_p_");
2884 output_mangled_typename (header_file
, s
);
2885 oprintf (header_file
,
2886 "\n (void *, void *, gt_pointer_operator, void *);\n");
2888 if (s
->kind
== TYPE_LANG_STRUCT
)
2891 for (ss
= s
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
2892 write_local_func_for_structure (s
, ss
, NULL
);
2895 write_local_func_for_structure (s
, s
, NULL
);
2898 for (s
= param_structs
; s
; s
= s
->next
)
2899 if (s
->gc_used
== GC_POINTED_TO
)
2901 type_p
* param
= s
->u
.param_struct
.param
;
2902 type_p stru
= s
->u
.param_struct
.stru
;
2904 /* Declare the marker procedure. */
2905 oprintf (header_file
, "extern void gt_pch_p_");
2906 output_mangled_typename (header_file
, s
);
2907 oprintf (header_file
,
2908 "\n (void *, void *, gt_pointer_operator, void *);\n");
2910 if (stru
->u
.s
.line
.file
== NULL
)
2912 fprintf (stderr
, "warning: structure `%s' used but not defined\n",
2917 if (stru
->kind
== TYPE_LANG_STRUCT
)
2920 for (ss
= stru
->u
.s
.lang_struct
; ss
; ss
= ss
->next
)
2921 write_local_func_for_structure (s
, ss
, param
);
2924 write_local_func_for_structure (s
, stru
, param
);
2928 /* Write out the 'enum' definition for gt_types_enum. */
2931 write_enum_defn (type_p structures
, type_p param_structs
)
2935 oprintf (header_file
, "\n/* Enumeration of types known. */\n");
2936 oprintf (header_file
, "enum gt_types_enum {\n");
2937 for (s
= structures
; s
; s
= s
->next
)
2938 if (s
->gc_used
== GC_POINTED_TO
2939 || s
->gc_used
== GC_MAYBE_POINTED_TO
)
2941 if (s
->gc_used
== GC_MAYBE_POINTED_TO
2942 && s
->u
.s
.line
.file
== NULL
)
2945 oprintf (header_file
, " gt_ggc_e_");
2946 output_mangled_typename (header_file
, s
);
2947 oprintf (header_file
, ", \n");
2949 for (s
= param_structs
; s
; s
= s
->next
)
2950 if (s
->gc_used
== GC_POINTED_TO
)
2952 oprintf (header_file
, " gt_e_");
2953 output_mangled_typename (header_file
, s
);
2954 oprintf (header_file
, ", \n");
2956 oprintf (header_file
, " gt_types_enum_last\n");
2957 oprintf (header_file
, "};\n");
2960 /* Might T contain any non-pointer elements? */
2963 contains_scalar_p (type_p t
)
2971 return contains_scalar_p (t
->u
.a
.p
);
2973 /* Could also check for structures that have no non-pointer
2974 fields, but there aren't enough of those to worry about. */
2979 /* Mangle FN and print it to F. */
2982 put_mangled_filename (outf_p f
, const char *fn
)
2984 const char *name
= get_output_file_name (fn
);
2985 for (; *name
!= 0; name
++)
2986 if (ISALNUM (*name
))
2987 oprintf (f
, "%c", *name
);
2989 oprintf (f
, "%c", '_');
2992 /* Finish off the currently-created root tables in FLP. PFX, TNAME,
2993 LASTNAME, and NAME are all strings to insert in various places in
2994 the resulting code. */
2997 finish_root_table (struct flist
*flp
, const char *pfx
, const char *lastname
,
2998 const char *tname
, const char *name
)
3002 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
3003 if (fli2
->started_p
)
3005 oprintf (fli2
->f
, " %s\n", lastname
);
3006 oprintf (fli2
->f
, "};\n\n");
3009 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
3010 if (fli2
->started_p
)
3012 lang_bitmap bitmap
= get_lang_bitmap (fli2
->name
);
3015 for (fnum
= 0; bitmap
!= 0; fnum
++, bitmap
>>= 1)
3018 oprintf (base_files
[fnum
],
3019 "extern const struct %s gt_%s_",
3021 put_mangled_filename (base_files
[fnum
], fli2
->name
);
3022 oprintf (base_files
[fnum
], "[];\n");
3028 for (fnum
= 0; fnum
< num_lang_dirs
; fnum
++)
3029 oprintf (base_files
[fnum
],
3030 "const struct %s * const %s[] = {\n",
3035 for (fli2
= flp
; fli2
; fli2
= fli2
->next
)
3036 if (fli2
->started_p
)
3038 lang_bitmap bitmap
= get_lang_bitmap (fli2
->name
);
3041 fli2
->started_p
= 0;
3043 for (fnum
= 0; bitmap
!= 0; fnum
++, bitmap
>>= 1)
3046 oprintf (base_files
[fnum
], " gt_%s_", pfx
);
3047 put_mangled_filename (base_files
[fnum
], fli2
->name
);
3048 oprintf (base_files
[fnum
], ",\n");
3054 for (fnum
= 0; fnum
< num_lang_dirs
; fnum
++)
3056 oprintf (base_files
[fnum
], " NULL\n");
3057 oprintf (base_files
[fnum
], "};\n");
3062 /* Write out to F the table entry and any marker routines needed to
3063 mark NAME as TYPE. The original variable is V, at LINE.
3064 HAS_LENGTH is nonzero iff V was a variable-length array. IF_MARKED
3065 is nonzero iff we are building the root table for hash table caches. */
3068 write_root (outf_p f
, pair_p v
, type_p type
, const char *name
, int has_length
,
3069 struct fileloc
*line
, const char *if_marked
)
3076 for (fld
= type
->u
.s
.fields
; fld
; fld
= fld
->next
)
3079 const char *desc
= NULL
;
3082 for (o
= fld
->opt
; o
; o
= o
->next
)
3083 if (strcmp (o
->name
, "skip") == 0)
3085 else if (strcmp (o
->name
, "desc") == 0)
3087 else if (strcmp (o
->name
, "param_is") == 0)
3090 error_at_line (line
,
3091 "field `%s' of global `%s' has unknown option `%s'",
3092 fld
->name
, name
, o
->name
);
3096 else if (desc
&& fld
->type
->kind
== TYPE_UNION
)
3098 pair_p validf
= NULL
;
3101 for (ufld
= fld
->type
->u
.s
.fields
; ufld
; ufld
= ufld
->next
)
3103 const char *tag
= NULL
;
3106 for (oo
= ufld
->opt
; oo
; oo
= oo
->next
)
3107 if (strcmp (oo
->name
, "tag") == 0)
3109 if (tag
== NULL
|| strcmp (tag
, desc
) != 0)
3112 error_at_line (line
,
3113 "both `%s.%s.%s' and `%s.%s.%s' have tag `%s'",
3114 name
, fld
->name
, validf
->name
,
3115 name
, fld
->name
, ufld
->name
,
3122 newname
= xasprintf ("%s.%s.%s",
3123 name
, fld
->name
, validf
->name
);
3124 write_root (f
, v
, validf
->type
, newname
, 0, line
,
3130 error_at_line (line
,
3131 "global `%s.%s' has `desc' option but is not union",
3136 newname
= xasprintf ("%s.%s", name
, fld
->name
);
3137 write_root (f
, v
, fld
->type
, newname
, 0, line
, if_marked
);
3147 newname
= xasprintf ("%s[0]", name
);
3148 write_root (f
, v
, type
->u
.a
.p
, newname
, has_length
, line
, if_marked
);
3157 oprintf (f
, " {\n");
3158 oprintf (f
, " &%s,\n", name
);
3161 for (ap
= v
->type
; ap
->kind
== TYPE_ARRAY
; ap
= ap
->u
.a
.p
)
3163 oprintf (f
, " * (%s)", ap
->u
.a
.len
);
3164 else if (ap
== v
->type
)
3165 oprintf (f
, " * ARRAY_SIZE (%s)", v
->name
);
3167 oprintf (f
, " sizeof (%s", v
->name
);
3168 for (ap
= v
->type
; ap
->kind
== TYPE_ARRAY
; ap
= ap
->u
.a
.p
)
3170 oprintf (f
, "),\n");
3174 if (! has_length
&& UNION_OR_STRUCT_P (tp
))
3176 oprintf (f
, " >_ggc_mx_%s,\n", tp
->u
.s
.tag
);
3177 oprintf (f
, " >_pch_nx_%s", tp
->u
.s
.tag
);
3179 else if (! has_length
&& tp
->kind
== TYPE_PARAM_STRUCT
)
3181 oprintf (f
, " >_ggc_m_");
3182 output_mangled_typename (f
, tp
);
3183 oprintf (f
, ",\n >_pch_n_");
3184 output_mangled_typename (f
, tp
);
3187 && (tp
->kind
== TYPE_POINTER
|| UNION_OR_STRUCT_P (tp
)))
3189 oprintf (f
, " >_ggc_ma_%s,\n", name
);
3190 oprintf (f
, " >_pch_na_%s", name
);
3194 error_at_line (line
,
3195 "global `%s' is pointer to unimplemented type",
3199 oprintf (f
, ",\n &%s", if_marked
);
3200 oprintf (f
, "\n },\n");
3206 oprintf (f
, " {\n");
3207 oprintf (f
, " &%s,\n", name
);
3208 oprintf (f
, " 1, \n");
3209 oprintf (f
, " sizeof (%s),\n", v
->name
);
3210 oprintf (f
, " (gt_pointer_walker) >_ggc_m_S,\n");
3211 oprintf (f
, " (gt_pointer_walker) >_pch_n_S\n");
3212 oprintf (f
, " },\n");
3220 error_at_line (line
,
3221 "global `%s' is unimplemented type",
3226 /* This generates a routine to walk an array. */
3229 write_array (outf_p f
, pair_p v
, const struct write_types_data
*wtd
)
3231 struct walk_type_data d
;
3234 memset (&d
, 0, sizeof (d
));
3240 d
.bitmap
= get_lang_bitmap (v
->line
.file
);
3243 d
.prev_val
[3] = prevval3
= xasprintf ("&%s", v
->name
);
3245 if (wtd
->param_prefix
)
3247 oprintf (f
, "static void gt_%sa_%s\n", wtd
->param_prefix
, v
->name
);
3249 " (void *, void *, gt_pointer_operator, void *);\n");
3250 oprintf (f
, "static void gt_%sa_%s (ATTRIBUTE_UNUSED void *this_obj,\n",
3251 wtd
->param_prefix
, v
->name
);
3253 " ATTRIBUTE_UNUSED void *x_p,\n"
3254 " ATTRIBUTE_UNUSED gt_pointer_operator op,\n"
3255 " ATTRIBUTE_UNUSED void * cookie)\n");
3256 oprintf (d
.of
, "{\n");
3257 d
.prev_val
[0] = d
.prev_val
[1] = d
.prev_val
[2] = d
.val
= v
->name
;
3258 d
.process_field
= write_types_local_process_field
;
3259 walk_type (v
->type
, &d
);
3260 oprintf (f
, "}\n\n");
3264 oprintf (f
, "static void gt_%sa_%s (void *);\n",
3265 wtd
->prefix
, v
->name
);
3266 oprintf (f
, "static void\ngt_%sa_%s (ATTRIBUTE_UNUSED void *x_p)\n",
3267 wtd
->prefix
, v
->name
);
3269 d
.prev_val
[0] = d
.prev_val
[1] = d
.prev_val
[2] = d
.val
= v
->name
;
3270 d
.process_field
= write_types_process_field
;
3271 walk_type (v
->type
, &d
);
3273 oprintf (f
, "}\n\n");
3276 /* Output a table describing the locations and types of VARIABLES. */
3279 write_roots (pair_p variables
)
3282 struct flist
*flp
= NULL
;
3284 for (v
= variables
; v
; v
= v
->next
)
3286 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3288 const char *length
= NULL
;
3289 int deletable_p
= 0;
3292 for (o
= v
->opt
; o
; o
= o
->next
)
3293 if (strcmp (o
->name
, "length") == 0)
3295 else if (strcmp (o
->name
, "deletable") == 0)
3297 else if (strcmp (o
->name
, "param_is") == 0)
3299 else if (strncmp (o
->name
, "param", 5) == 0
3300 && ISDIGIT (o
->name
[5])
3301 && strcmp (o
->name
+ 6, "_is") == 0)
3303 else if (strcmp (o
->name
, "if_marked") == 0)
3306 error_at_line (&v
->line
,
3307 "global `%s' has unknown option `%s'",
3310 for (fli
= flp
; fli
; fli
= fli
->next
)
3315 fli
= XNEW (struct flist
);
3319 fli
->name
= v
->line
.file
;
3322 oprintf (f
, "\n/* GC roots. */\n\n");
3327 && v
->type
->kind
== TYPE_POINTER
3328 && (v
->type
->u
.p
->kind
== TYPE_POINTER
3329 || v
->type
->u
.p
->kind
== TYPE_STRUCT
))
3331 write_array (f
, v
, &ggc_wtd
);
3332 write_array (f
, v
, &pch_wtd
);
3336 for (v
= variables
; v
; v
= v
->next
)
3338 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3344 for (o
= v
->opt
; o
; o
= o
->next
)
3345 if (strcmp (o
->name
, "length") == 0)
3347 else if (strcmp (o
->name
, "deletable") == 0
3348 || strcmp (o
->name
, "if_marked") == 0)
3354 for (fli
= flp
; fli
; fli
= fli
->next
)
3357 if (! fli
->started_p
)
3361 oprintf (f
, "const struct ggc_root_tab gt_ggc_r_");
3362 put_mangled_filename (f
, v
->line
.file
);
3363 oprintf (f
, "[] = {\n");
3366 write_root (f
, v
, v
->type
, v
->name
, length_p
, &v
->line
, NULL
);
3369 finish_root_table (flp
, "ggc_r", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
3372 for (v
= variables
; v
; v
= v
->next
)
3374 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3379 for (o
= v
->opt
; o
; o
= o
->next
)
3380 if (strcmp (o
->name
, "deletable") == 0)
3382 else if (strcmp (o
->name
, "if_marked") == 0)
3388 for (fli
= flp
; fli
; fli
= fli
->next
)
3391 if (! fli
->started_p
)
3395 oprintf (f
, "const struct ggc_root_tab gt_ggc_rd_");
3396 put_mangled_filename (f
, v
->line
.file
);
3397 oprintf (f
, "[] = {\n");
3400 oprintf (f
, " { &%s, 1, sizeof (%s), NULL, NULL },\n",
3404 finish_root_table (flp
, "ggc_rd", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
3405 "gt_ggc_deletable_rtab");
3407 for (v
= variables
; v
; v
= v
->next
)
3409 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3411 const char *if_marked
= NULL
;
3415 for (o
= v
->opt
; o
; o
= o
->next
)
3416 if (strcmp (o
->name
, "length") == 0)
3418 else if (strcmp (o
->name
, "if_marked") == 0)
3419 if_marked
= o
->info
;
3421 if (if_marked
== NULL
)
3424 if (v
->type
->kind
!= TYPE_POINTER
3425 || v
->type
->u
.p
->kind
!= TYPE_PARAM_STRUCT
3426 || v
->type
->u
.p
->u
.param_struct
.stru
!= find_structure ("htab", 0))
3428 error_at_line (&v
->line
, "if_marked option used but not hash table");
3432 for (fli
= flp
; fli
; fli
= fli
->next
)
3435 if (! fli
->started_p
)
3439 oprintf (f
, "const struct ggc_cache_tab gt_ggc_rc_");
3440 put_mangled_filename (f
, v
->line
.file
);
3441 oprintf (f
, "[] = {\n");
3444 write_root (f
, v
, v
->type
->u
.p
->u
.param_struct
.param
[0],
3445 v
->name
, length_p
, &v
->line
, if_marked
);
3448 finish_root_table (flp
, "ggc_rc", "LAST_GGC_CACHE_TAB", "ggc_cache_tab",
3449 "gt_ggc_cache_rtab");
3451 for (v
= variables
; v
; v
= v
->next
)
3453 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3456 int if_marked_p
= 0;
3459 for (o
= v
->opt
; o
; o
= o
->next
)
3460 if (strcmp (o
->name
, "length") == 0)
3462 else if (strcmp (o
->name
, "if_marked") == 0)
3468 for (fli
= flp
; fli
; fli
= fli
->next
)
3471 if (! fli
->started_p
)
3475 oprintf (f
, "const struct ggc_root_tab gt_pch_rc_");
3476 put_mangled_filename (f
, v
->line
.file
);
3477 oprintf (f
, "[] = {\n");
3480 write_root (f
, v
, v
->type
, v
->name
, length_p
, &v
->line
, NULL
);
3483 finish_root_table (flp
, "pch_rc", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
3484 "gt_pch_cache_rtab");
3486 for (v
= variables
; v
; v
= v
->next
)
3488 outf_p f
= get_output_file_with_visibility (v
->line
.file
);
3493 for (o
= v
->opt
; o
; o
= o
->next
)
3494 if (strcmp (o
->name
, "deletable") == 0
3495 || strcmp (o
->name
, "if_marked") == 0)
3501 if (! contains_scalar_p (v
->type
))
3504 for (fli
= flp
; fli
; fli
= fli
->next
)
3507 if (! fli
->started_p
)
3511 oprintf (f
, "const struct ggc_root_tab gt_pch_rs_");
3512 put_mangled_filename (f
, v
->line
.file
);
3513 oprintf (f
, "[] = {\n");
3516 oprintf (f
, " { &%s, 1, sizeof (%s), NULL, NULL },\n",
3520 finish_root_table (flp
, "pch_rs", "LAST_GGC_ROOT_TAB", "ggc_root_tab",
3521 "gt_pch_scalar_rtab");
3524 /* Record the definition of a generic VEC structure, as if we had expanded
3525 the macros in vec.h:
3527 typedef struct VEC_<type>_base GTY(()) {
3530 <type> GTY((length ("%h.num"))) vec[1];
3533 where the GTY(()) tags are only present if is_scalar is _false_. */
3536 note_def_vec (const char *type_name
, bool is_scalar
, struct fileloc
*pos
)
3541 type_p len_ty
= create_scalar_type ("unsigned");
3542 const char *name
= concat ("VEC_", type_name
, "_base", (char *)0);
3546 t
= create_scalar_type (type_name
);
3551 t
= resolve_typedef (type_name
, pos
);
3552 o
= create_option (0, "length", "%h.num");
3555 /* We assemble the field list in reverse order. */
3556 fields
= create_field_at (0, create_array (t
, "1"), "vec", o
, pos
);
3557 fields
= create_field_at (fields
, len_ty
, "alloc", 0, pos
);
3558 fields
= create_field_at (fields
, len_ty
, "num", 0, pos
);
3560 do_typedef (name
, new_structure (name
, 0, pos
, fields
, 0), pos
);
3563 /* Record the definition of an allocation-specific VEC structure, as if
3564 we had expanded the macros in vec.h:
3566 typedef struct VEC_<type>_<astrat> {
3567 VEC_<type>_base base;
3568 } VEC_<type>_<astrat>;
3571 note_def_vec_alloc (const char *type
, const char *astrat
, struct fileloc
*pos
)
3573 const char *astratname
= concat ("VEC_", type
, "_", astrat
, (char *)0);
3574 const char *basename
= concat ("VEC_", type
, "_base", (char *)0);
3576 pair_p field
= create_field_at (0, resolve_typedef (basename
, pos
),
3579 do_typedef (astratname
, new_structure (astratname
, 0, pos
, field
, 0), pos
);
3584 main (int argc
, char **argv
)
3587 static struct fileloc pos
= { this_file
, 0 };
3589 /* fatal uses this */
3590 progname
= "gengtype";
3593 fatal ("usage: gengtype srcdir input-list");
3596 srcdir_len
= strlen (srcdir
);
3598 read_input_list (argv
[2]);
3602 scalar_char
.u
.scalar_is_char
= true;
3603 scalar_nonchar
.u
.scalar_is_char
= false;
3606 /* These types are set up with #define or else outside of where
3608 pos
.line
= __LINE__
+ 1;
3609 do_scalar_typedef ("CUMULATIVE_ARGS", &pos
); pos
.line
++;
3610 do_scalar_typedef ("REAL_VALUE_TYPE", &pos
); pos
.line
++;
3611 do_scalar_typedef ("FIXED_VALUE_TYPE", &pos
); pos
.line
++;
3612 do_scalar_typedef ("double_int", &pos
); pos
.line
++;
3613 do_scalar_typedef ("uint8", &pos
); pos
.line
++;
3614 do_scalar_typedef ("jword", &pos
); pos
.line
++;
3615 do_scalar_typedef ("JCF_u2", &pos
); pos
.line
++;
3616 do_scalar_typedef ("void", &pos
); pos
.line
++;
3617 do_typedef ("PTR", create_pointer (resolve_typedef ("void", &pos
)), &pos
);
3619 for (i
= 0; i
< num_gt_files
; i
++)
3620 parse_file (gt_files
[i
]);
3625 set_gc_used (variables
);
3628 write_enum_defn (structures
, param_structs
);
3629 write_types (structures
, param_structs
, &ggc_wtd
);
3630 write_types (structures
, param_structs
, &pch_wtd
);
3631 write_local (structures
, param_structs
);
3632 write_roots (variables
);
3634 close_output_files ();