2002-02-19 Philip Blundell <philb@gnu.org>
[official-gcc.git] / gcc / cp / repo.c
blobfe2eb62601bba3159298b829285369c428fa9f44
1 /* Code to maintain a C++ template repository.
2 Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001 Free Software Foundation, Inc.
3 Contributed by Jason Merrill (jason@cygnus.com)
5 This file is part of GNU CC.
7 GNU CC is free software; you can redistribute it and/or modify
8 it under the terms of the GNU General Public License as published by
9 the Free Software Foundation; either version 2, or (at your option)
10 any later version.
12 GNU CC is distributed in the hope that it will be useful,
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 GNU General Public License for more details.
17 You should have received a copy of the GNU General Public License
18 along with GNU CC; see the file COPYING. If not, write to
19 the Free Software Foundation, 59 Temple Place - Suite 330,
20 Boston, MA 02111-1307, USA. */
22 /* My strategy here is as follows:
24 Everything should be emitted in a translation unit where it is used.
25 The results of the automatic process should be easily reproducible with
26 explicit code. */
28 #include "config.h"
29 #include "system.h"
30 #include "tree.h"
31 #include "cp-tree.h"
32 #include "input.h"
33 #include "obstack.h"
34 #include "toplev.h"
35 #include "ggc.h"
36 #include "diagnostic.h"
38 static tree repo_get_id PARAMS ((tree));
39 static char *extract_string PARAMS ((char **));
40 static const char *get_base_filename PARAMS ((const char *));
41 static void open_repo_file PARAMS ((const char *));
42 static char *afgets PARAMS ((FILE *));
43 static void reopen_repo_file_for_write PARAMS ((void));
45 static tree pending_repo;
46 static tree original_repo;
47 static char *repo_name;
48 static FILE *repo_file;
50 static char *old_args, *old_dir, *old_main;
52 static struct obstack temporary_obstack;
53 extern struct obstack permanent_obstack;
55 #define IDENTIFIER_REPO_USED(NODE) (TREE_LANG_FLAG_3 (NODE))
56 #define IDENTIFIER_REPO_CHOSEN(NODE) (TREE_LANG_FLAG_4 (NODE))
58 #if 0
59 /* Record the flags used to compile this translation unit. */
61 void
62 repo_compile_flags (argc, argv)
63 int argc;
64 char **argv;
68 /* If this template has not been seen before, add a note to the repository
69 saying where the declaration was. This may be used to find the
70 definition at link time. */
72 void
73 repo_template_declared (t)
74 tree t;
77 /* Note where the definition of a template lives so that instantiations can
78 be generated later. */
80 void
81 repo_template_defined (t)
82 tree t;
85 /* Note where the definition of a class lives to that template
86 instantiations can use it. */
88 void
89 repo_class_defined (t)
90 tree t;
92 #endif
94 static tree
95 repo_get_id (t)
96 tree t;
98 if (TYPE_P (t))
100 tree vtable;
102 /* If we're not done setting up the class, we may not have set up
103 the vtable, so going ahead would give the wrong answer.
104 See g++.pt/instantiate4.C. */
105 if (!COMPLETE_TYPE_P (t) || TYPE_BEING_DEFINED (t))
106 abort ();
108 vtable = get_vtbl_decl_for_binfo (TYPE_BINFO (t));
110 t = vtable;
111 if (t == NULL_TREE)
112 return t;
114 return DECL_ASSEMBLER_NAME (t);
117 /* Note that a template has been used. If we can see the definition, offer
118 to emit it. */
120 void
121 repo_template_used (t)
122 tree t;
124 tree id;
126 if (! flag_use_repository)
127 return;
129 id = repo_get_id (t);
130 if (id == NULL_TREE)
131 return;
133 if (TYPE_P (t))
135 if (IDENTIFIER_REPO_CHOSEN (id))
136 mark_class_instantiated (t, 0);
138 else if (DECL_P (t))
140 if (IDENTIFIER_REPO_CHOSEN (id))
141 /* It doesn't make sense to instantiate a clone, so we
142 instantiate the cloned function instead. Note that this
143 approach will not work correctly if collect2 assigns
144 different clones to different files -- but it shouldn't. */
145 mark_decl_instantiated (DECL_CLONED_FUNCTION_P (t)
146 ? DECL_CLONED_FUNCTION (t) : t,
149 else
150 abort ();
152 if (! IDENTIFIER_REPO_USED (id))
154 IDENTIFIER_REPO_USED (id) = 1;
155 pending_repo = tree_cons (NULL_TREE, id, pending_repo);
159 #if 0
160 /* Note that the vtable for a class has been used, and offer to emit it. */
162 static void
163 repo_vtable_used (t)
164 tree t;
166 if (! flag_use_repository)
167 return;
169 pending_repo = tree_cons (NULL_TREE, t, pending_repo);
172 /* Note that an inline with external linkage has been used, and offer to
173 emit it. */
175 void
176 repo_inline_used (fn)
177 tree fn;
179 if (! flag_use_repository)
180 return;
182 /* Member functions of polymorphic classes go with their vtables. */
183 if (DECL_FUNCTION_MEMBER_P (fn)
184 && TYPE_POLYMORPHIC_P (DECL_CONTEXT (fn)))
186 repo_vtable_used (DECL_CONTEXT (fn));
187 return;
190 pending_repo = tree_cons (NULL_TREE, fn, pending_repo);
193 /* Note that a particular typeinfo node has been used, and offer to
194 emit it. */
196 void
197 repo_tinfo_used (ti)
198 tree ti;
201 #endif
203 void
204 repo_template_instantiated (t, extern_p)
205 tree t;
206 int extern_p;
208 if (! extern_p)
210 tree id = repo_get_id (t);
211 if (id)
212 IDENTIFIER_REPO_CHOSEN (id) = 1;
216 /* Parse a reasonable subset of shell quoting syntax. */
218 static char *
219 extract_string (pp)
220 char **pp;
222 char *p = *pp;
223 int backquote = 0;
224 int inside = 0;
226 for (;;)
228 char c = *p;
229 if (c == '\0')
230 break;
231 ++p;
232 if (backquote)
233 obstack_1grow (&temporary_obstack, c);
234 else if (! inside && c == ' ')
235 break;
236 else if (! inside && c == '\\')
237 backquote = 1;
238 else if (c == '\'')
239 inside = !inside;
240 else
241 obstack_1grow (&temporary_obstack, c);
244 obstack_1grow (&temporary_obstack, '\0');
245 *pp = p;
246 return obstack_finish (&temporary_obstack);
249 const char *
250 get_base_filename (filename)
251 const char *filename;
253 char *p = getenv ("COLLECT_GCC_OPTIONS");
254 char *output = NULL;
255 int compiling = 0;
257 while (p && *p)
259 char *q = extract_string (&p);
261 if (strcmp (q, "-o") == 0)
262 output = extract_string (&p);
263 else if (strcmp (q, "-c") == 0)
264 compiling = 1;
267 if (compiling && output)
268 return output;
270 if (p && ! compiling)
272 warning ("-frepo must be used with -c");
273 flag_use_repository = 0;
274 return NULL;
277 return lbasename (filename);
280 static void
281 open_repo_file (filename)
282 const char *filename;
284 register const char *p;
285 const char *s = get_base_filename (filename);
287 if (s == NULL)
288 return;
290 p = lbasename (s);
291 p = strrchr (p, '.');
292 if (! p)
293 p = s + strlen (s);
295 obstack_grow (&permanent_obstack, s, p - s);
296 repo_name = obstack_copy0 (&permanent_obstack, ".rpo", 4);
298 repo_file = fopen (repo_name, "r");
301 static char *
302 afgets (stream)
303 FILE *stream;
305 int c;
306 while ((c = getc (stream)) != EOF && c != '\n')
307 obstack_1grow (&temporary_obstack, c);
308 if (obstack_object_size (&temporary_obstack) == 0)
309 return NULL;
310 obstack_1grow (&temporary_obstack, '\0');
311 return obstack_finish (&temporary_obstack);
314 void
315 init_repo (filename)
316 const char *filename;
318 char *buf;
320 if (! flag_use_repository)
321 return;
323 ggc_add_tree_root (&pending_repo, 1);
324 ggc_add_tree_root (&original_repo, 1);
325 gcc_obstack_init (&temporary_obstack);
327 open_repo_file (filename);
329 if (repo_file == 0)
330 return;
332 while ((buf = afgets (repo_file)))
334 switch (buf[0])
336 case 'A':
337 old_args = obstack_copy0 (&permanent_obstack, buf + 2,
338 strlen (buf + 2));
339 break;
340 case 'D':
341 old_dir = obstack_copy0 (&permanent_obstack, buf + 2,
342 strlen (buf + 2));
343 break;
344 case 'M':
345 old_main = obstack_copy0 (&permanent_obstack, buf + 2,
346 strlen (buf + 2));
347 break;
348 case 'C':
349 case 'O':
351 tree id = get_identifier (buf + 2);
352 tree orig;
354 if (buf[0] == 'C')
356 IDENTIFIER_REPO_CHOSEN (id) = 1;
357 orig = integer_one_node;
359 else
360 orig = NULL_TREE;
362 original_repo = tree_cons (orig, id, original_repo);
364 break;
365 default:
366 error ("mysterious repository information in %s", repo_name);
368 obstack_free (&temporary_obstack, buf);
372 static void
373 reopen_repo_file_for_write ()
375 if (repo_file)
376 fclose (repo_file);
377 repo_file = fopen (repo_name, "w");
379 if (repo_file == 0)
381 error ("can't create repository information file `%s'", repo_name);
382 flag_use_repository = 0;
386 /* Emit any pending repos. */
388 void
389 finish_repo ()
391 tree t;
392 int repo_changed = 0;
393 char *dir, *args;
395 if (! flag_use_repository)
396 return;
398 /* Do we have to write out a new info file? */
400 /* Are there any old templates that aren't used any longer or that are
401 newly chosen? */
403 for (t = original_repo; t; t = TREE_CHAIN (t))
405 if (! IDENTIFIER_REPO_USED (TREE_VALUE (t))
406 || (! TREE_PURPOSE (t) && IDENTIFIER_REPO_CHOSEN (TREE_VALUE (t))))
408 repo_changed = 1;
409 break;
411 IDENTIFIER_REPO_USED (TREE_VALUE (t)) = 0;
414 /* Are there any templates that are newly used? */
416 if (! repo_changed)
417 for (t = pending_repo; t; t = TREE_CHAIN (t))
419 if (IDENTIFIER_REPO_USED (TREE_VALUE (t)))
421 repo_changed = 1;
422 break;
426 dir = getpwd ();
427 args = getenv ("COLLECT_GCC_OPTIONS");
429 if (! repo_changed && pending_repo)
430 if (strcmp (old_main, main_input_filename) != 0
431 || strcmp (old_dir, dir) != 0
432 || (args == NULL) != (old_args == NULL)
433 || (args && strcmp (old_args, args) != 0))
434 repo_changed = 1;
436 if (! repo_changed || errorcount || sorrycount)
437 goto out;
439 reopen_repo_file_for_write ();
441 if (repo_file == 0)
442 goto out;
444 fprintf (repo_file, "M %s\n", main_input_filename);
445 fprintf (repo_file, "D %s\n", dir);
446 if (args)
447 fprintf (repo_file, "A %s\n", args);
449 for (t = pending_repo; t; t = TREE_CHAIN (t))
451 tree val = TREE_VALUE (t);
452 char type = IDENTIFIER_REPO_CHOSEN (val) ? 'C' : 'O';
454 fprintf (repo_file, "%c %s\n", type, IDENTIFIER_POINTER (val));
457 out:
458 if (repo_file)
459 fclose (repo_file);