1 /* Part of CPP library. (Precompiled header reading/writing.)
2 Copyright (C) 2000, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
4 This program is free software; you can redistribute it and/or modify it
5 under the terms of the GNU General Public License as published by the
6 Free Software Foundation; either version 2, or (at your option) any
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
25 static int write_macdef (cpp_reader
*, cpp_hashnode
*, void *);
26 static int save_idents (cpp_reader
*, cpp_hashnode
*, void *);
27 static hashval_t
hashmem (const void *, size_t);
28 static hashval_t
cpp_string_hash (const void *);
29 static int cpp_string_eq (const void *, const void *);
30 static int count_defs (cpp_reader
*, cpp_hashnode
*, void *);
31 static int comp_hashnodes (const void *, const void *);
32 static int collect_ht_nodes (cpp_reader
*, cpp_hashnode
*, void *);
33 static int write_defs (cpp_reader
*, cpp_hashnode
*, void *);
34 static int save_macros (cpp_reader
*, cpp_hashnode
*, void *);
36 /* This structure represents a macro definition on disk. */
37 struct macrodef_struct
39 unsigned int definition_length
;
40 unsigned short name_length
;
44 /* This is how we write out a macro definition.
45 Suitable for being called by cpp_forall_identifiers. */
48 write_macdef (cpp_reader
*pfile
, cpp_hashnode
*hn
, void *file_p
)
50 FILE *f
= (FILE *) file_p
;
54 if (! (hn
->flags
& NODE_POISONED
))
58 if ((hn
->flags
& NODE_BUILTIN
))
62 struct macrodef_struct s
;
63 const unsigned char *defn
;
65 s
.name_length
= NODE_LEN (hn
);
66 s
.flags
= hn
->flags
& NODE_POISONED
;
68 if (hn
->type
== NT_MACRO
)
70 defn
= cpp_macro_definition (pfile
, hn
);
71 s
.definition_length
= ustrlen (defn
);
75 defn
= NODE_NAME (hn
);
76 s
.definition_length
= s
.name_length
;
79 if (fwrite (&s
, sizeof (s
), 1, f
) != 1
80 || fwrite (defn
, 1, s
.definition_length
, f
) != s
.definition_length
)
82 cpp_errno (pfile
, CPP_DL_ERROR
,
83 "while writing precompiled header");
90 /* Not currently implemented. */
98 /* This structure records the names of the defined macros.
99 It's also used as a callback structure for size_initial_idents
102 struct cpp_savedstate
104 /* A hash table of the defined identifiers. */
106 /* The size of the definitions of those identifiers (the size of
109 /* Number of definitions */
111 /* Array of definitions. In cpp_write_pch_deps it is used for sorting. */
113 /* Space for the next definition. Definitions are null-terminated
115 unsigned char *definedstrs
;
118 /* Save this identifier into the state: put it in the hash table,
119 put the definition in 'definedstrs'. */
122 save_idents (cpp_reader
*pfile ATTRIBUTE_UNUSED
, cpp_hashnode
*hn
, void *ss_p
)
124 struct cpp_savedstate
*const ss
= (struct cpp_savedstate
*)ss_p
;
126 if (hn
->type
!= NT_VOID
)
128 struct cpp_string news
;
131 news
.len
= NODE_LEN (hn
);
132 news
.text
= NODE_NAME (hn
);
133 slot
= htab_find_slot (ss
->definedhash
, &news
, INSERT
);
136 struct cpp_string
*sp
;
139 sp
= xmalloc (sizeof (struct cpp_string
));
142 sp
->len
= NODE_LEN (hn
);
143 sp
->text
= text
= xmalloc (NODE_LEN (hn
));
144 memcpy (text
, NODE_NAME (hn
), NODE_LEN (hn
));
151 /* Hash some memory in a generic way. */
154 hashmem (const void *p_p
, size_t sz
)
156 const unsigned char *p
= (const unsigned char *)p_p
;
161 for (i
= 0; i
< sz
; i
++)
162 h
= h
* 67 - (*p
++ - 113);
166 /* Hash a cpp string for the hashtable machinery. */
169 cpp_string_hash (const void *a_p
)
171 const struct cpp_string
*a
= (const struct cpp_string
*) a_p
;
172 return hashmem (a
->text
, a
->len
);
175 /* Compare two cpp strings for the hashtable machinery. */
178 cpp_string_eq (const void *a_p
, const void *b_p
)
180 const struct cpp_string
*a
= (const struct cpp_string
*) a_p
;
181 const struct cpp_string
*b
= (const struct cpp_string
*) b_p
;
182 return (a
->len
== b
->len
183 && memcmp (a
->text
, b
->text
, a
->len
) == 0);
186 /* Save the current definitions of the cpp_reader for dependency
187 checking purposes. When writing a precompiled header, this should
188 be called at the same point in the compilation as cpp_valid_state
189 would be called when reading the precompiled header back in. */
192 cpp_save_state (cpp_reader
*r
, FILE *f
)
194 /* Save the list of non-void identifiers for the dependency checking. */
195 r
->savedstate
= xmalloc (sizeof (struct cpp_savedstate
));
196 r
->savedstate
->definedhash
= htab_create (100, cpp_string_hash
,
197 cpp_string_eq
, NULL
);
198 cpp_forall_identifiers (r
, save_idents
, r
->savedstate
);
200 /* Write out the list of defined identifiers. */
201 cpp_forall_identifiers (r
, write_macdef
, f
);
206 /* Calculate the 'hashsize' field of the saved state. */
209 count_defs (cpp_reader
*pfile ATTRIBUTE_UNUSED
, cpp_hashnode
*hn
, void *ss_p
)
211 struct cpp_savedstate
*const ss
= (struct cpp_savedstate
*)ss_p
;
216 if (hn
->flags
& NODE_BUILTIN
)
219 /* else fall through. */
223 struct cpp_string news
;
226 news
.len
= NODE_LEN (hn
);
227 news
.text
= NODE_NAME (hn
);
228 slot
= htab_find (ss
->definedhash
, &news
);
231 ss
->hashsize
+= NODE_LEN (hn
) + 1;
238 /* Not currently implemented. */
246 /* Collect the identifiers into the state's string table. */
248 write_defs (cpp_reader
*pfile ATTRIBUTE_UNUSED
, cpp_hashnode
*hn
, void *ss_p
)
250 struct cpp_savedstate
*const ss
= (struct cpp_savedstate
*)ss_p
;
255 if (hn
->flags
& NODE_BUILTIN
)
258 /* else fall through. */
262 struct cpp_string news
;
265 news
.len
= NODE_LEN (hn
);
266 news
.text
= NODE_NAME (hn
);
267 slot
= htab_find (ss
->definedhash
, &news
);
270 ss
->defs
[ss
->n_defs
] = hn
;
277 /* Not currently implemented. */
285 /* Comparison function for qsort. The arguments point to pointers of
286 type ht_hashnode *. */
288 comp_hashnodes (const void *px
, const void *py
)
290 cpp_hashnode
*x
= *(cpp_hashnode
**) px
;
291 cpp_hashnode
*y
= *(cpp_hashnode
**) py
;
292 return ustrcmp (NODE_NAME (x
), NODE_NAME (y
));
295 /* Write out the remainder of the dependency information. This should be
296 called after the PCH is ready to be saved. */
299 cpp_write_pch_deps (cpp_reader
*r
, FILE *f
)
301 struct macrodef_struct z
;
302 struct cpp_savedstate
*const ss
= r
->savedstate
;
303 unsigned char *definedstrs
;
306 /* Collect the list of identifiers which have been seen and
307 weren't defined to anything previously. */
310 cpp_forall_identifiers (r
, count_defs
, ss
);
312 ss
->defs
= xmalloc (ss
->n_defs
* sizeof (cpp_hashnode
*));
314 cpp_forall_identifiers (r
, write_defs
, ss
);
316 /* Sort the list, copy it into a buffer, and write it out. */
317 qsort (ss
->defs
, ss
->n_defs
, sizeof (cpp_hashnode
*), &comp_hashnodes
);
318 definedstrs
= ss
->definedstrs
= xmalloc (ss
->hashsize
);
319 for (i
= 0; i
< ss
->n_defs
; ++i
)
321 size_t len
= NODE_LEN (ss
->defs
[i
]);
322 memcpy (definedstrs
, NODE_NAME (ss
->defs
[i
]), len
+ 1);
323 definedstrs
+= len
+ 1;
326 memset (&z
, 0, sizeof (z
));
327 z
.definition_length
= ss
->hashsize
;
328 if (fwrite (&z
, sizeof (z
), 1, f
) != 1
329 || fwrite (ss
->definedstrs
, ss
->hashsize
, 1, f
) != 1)
331 cpp_errno (r
, CPP_DL_ERROR
, "while writing precompiled header");
334 free (ss
->definedstrs
);
336 /* Free the saved state. */
338 r
->savedstate
= NULL
;
342 /* Write out the definitions of the preprocessor, in a form suitable for
346 cpp_write_pch_state (cpp_reader
*r
, FILE *f
)
348 struct macrodef_struct z
;
351 r
->deps
= deps_init ();
353 if (deps_save (r
->deps
, f
) != 0)
355 cpp_errno (r
, CPP_DL_ERROR
, "while writing precompiled header");
359 if (! _cpp_save_file_entries (r
, f
))
361 cpp_errno (r
, CPP_DL_ERROR
, "while writing precompiled header");
369 /* Data structure to transform hash table nodes into a sorted list */
375 /* Number of nodes in the array */
377 /* Size of the allocated array */
381 /* Callback for collecting identifiers from hash table */
384 collect_ht_nodes (cpp_reader
*pfile ATTRIBUTE_UNUSED
, cpp_hashnode
*hn
,
387 struct ht_node_list
*const nl
= (struct ht_node_list
*)nl_p
;
389 if (hn
->type
!= NT_VOID
|| hn
->flags
& NODE_POISONED
)
391 if (nl
->n_defs
== nl
->asize
)
394 nl
->defs
= xrealloc (nl
->defs
, nl
->asize
* sizeof (cpp_hashnode
*));
397 nl
->defs
[nl
->n_defs
] = hn
;
404 /* Return nonzero if FD is a precompiled header which is consistent
405 with the preprocessor's current definitions. It will be consistent
408 - anything that was defined just before the PCH was generated
409 is defined the same way now; and
410 - anything that was not defined then, but is defined now, was not
413 NAME is used to print warnings if `warn_invalid_pch' is set in the
418 cpp_valid_state (cpp_reader
*r
, const char *name
, int fd
)
420 struct macrodef_struct m
;
421 size_t namebufsz
= 256;
422 unsigned char *namebuf
= xmalloc (namebufsz
);
423 unsigned char *undeftab
= NULL
;
424 struct ht_node_list nl
= { 0, 0, 0 };
425 unsigned char *first
, *last
;
428 /* Read in the list of identifiers that must be defined
429 Check that they are defined in the same way. */
433 const unsigned char *newdefn
;
435 if (read (fd
, &m
, sizeof (m
)) != sizeof (m
))
438 if (m
.name_length
== 0)
441 if (m
.definition_length
> namebufsz
)
444 namebufsz
= m
.definition_length
+ 256;
445 namebuf
= xmalloc (namebufsz
);
448 if ((size_t)read (fd
, namebuf
, m
.definition_length
)
449 != m
.definition_length
)
452 h
= cpp_lookup (r
, namebuf
, m
.name_length
);
453 if (m
.flags
& NODE_POISONED
454 || h
->type
!= NT_MACRO
455 || h
->flags
& NODE_POISONED
)
457 if (CPP_OPTION (r
, warn_invalid_pch
))
458 cpp_error (r
, CPP_DL_WARNING_SYSHDR
,
459 "%s: not used because `%.*s' not defined",
460 name
, m
.name_length
, namebuf
);
464 newdefn
= cpp_macro_definition (r
, h
);
466 if (m
.definition_length
!= ustrlen (newdefn
)
467 || memcmp (namebuf
, newdefn
, m
.definition_length
) != 0)
469 if (CPP_OPTION (r
, warn_invalid_pch
))
470 cpp_error (r
, CPP_DL_WARNING_SYSHDR
,
471 "%s: not used because `%.*s' defined as `%s' not `%.*s'",
472 name
, m
.name_length
, namebuf
, newdefn
+ m
.name_length
,
473 m
.definition_length
- m
.name_length
,
474 namebuf
+ m
.name_length
);
481 /* Read in the list of identifiers that must not be defined.
482 Check that they really aren't. */
483 undeftab
= xmalloc (m
.definition_length
);
484 if ((size_t) read (fd
, undeftab
, m
.definition_length
) != m
.definition_length
)
487 /* Collect identifiers from the current hash table. */
490 nl
.defs
= xmalloc (nl
.asize
* sizeof (cpp_hashnode
*));
491 cpp_forall_identifiers (r
, &collect_ht_nodes
, &nl
);
492 qsort (nl
.defs
, nl
.n_defs
, sizeof (cpp_hashnode
*), &comp_hashnodes
);
494 /* Loop through nl.defs and undeftab, both of which are sorted lists.
495 There should be no matches. */
497 last
= undeftab
+ m
.definition_length
;
500 while (first
< last
&& i
< nl
.n_defs
)
502 int cmp
= ustrcmp (first
, NODE_NAME (nl
.defs
[i
]));
505 first
+= ustrlen (first
) + 1;
510 if (CPP_OPTION (r
, warn_invalid_pch
))
511 cpp_error (r
, CPP_DL_WARNING_SYSHDR
,
512 "%s: not used because `%s' is defined",
525 cpp_errno (r
, CPP_DL_ERROR
, "while reading precompiled header");
531 if (undeftab
!= NULL
)
538 /* Save all the existing macros. */
540 struct save_macro_data
545 char **saved_pragmas
;
548 /* Save the definition of a single macro, so that it will persist
549 across a PCH restore. Because macro data is in GCed memory, which
550 will be blown away by PCH, it must be temporarily copied to
551 malloced memory. (The macros will refer to identifier nodes which
552 are also GCed and so on, so the copying is done by turning them
553 into self-contained strings.) The assumption is that most macro
554 definitions will come from the PCH file, not from the compilation
555 before the PCH file is loaded, so it doesn't matter that this is
558 It would reduce the cost even further if macros defined in the PCH
559 file were not saved in this way, but this is not done (yet), except
560 for builtins, and for #assert by default. */
563 save_macros (cpp_reader
*r
, cpp_hashnode
*h
, void *data_p
)
565 struct save_macro_data
*data
= (struct save_macro_data
*)data_p
;
566 if (h
->type
!= NT_VOID
567 && (h
->flags
& NODE_BUILTIN
) == 0)
569 if (data
->count
== data
->array_size
)
571 data
->array_size
*= 2;
572 data
->defns
= xrealloc (data
->defns
, (data
->array_size
573 * sizeof (uchar
*)));
579 /* Not currently implemented. */
584 const uchar
* defn
= cpp_macro_definition (r
, h
);
585 size_t defnlen
= ustrlen (defn
);
587 data
->defns
[data
->count
] = xmemdup (defn
, defnlen
, defnlen
+ 2);
588 data
->defns
[data
->count
][defnlen
] = '\n';
600 /* Prepare to restore the state, by saving the currently-defined
604 cpp_prepare_state (cpp_reader
*r
, struct save_macro_data
**data
)
606 struct save_macro_data
*d
= xmalloc (sizeof (struct save_macro_data
));
609 d
->defns
= xmalloc (d
->array_size
* sizeof (d
->defns
[0]));
611 cpp_forall_identifiers (r
, save_macros
, d
);
612 d
->saved_pragmas
= _cpp_save_pragma_names (r
);
616 /* Given a precompiled header that was previously determined to be valid,
617 apply all its definitions (and undefinitions) to the current state.
618 DEPNAME is passed to deps_restore. */
621 cpp_read_state (cpp_reader
*r
, const char *name
, FILE *f
,
622 struct save_macro_data
*data
)
624 struct macrodef_struct m
;
625 struct save_macro_item
*d
;
627 struct lexer_state old_state
;
629 /* Restore spec_nodes, which will be full of references to the old
630 hashtable entries and so will now be invalid. */
632 struct spec_nodes
*s
= &r
->spec_nodes
;
633 s
->n_defined
= cpp_lookup (r
, DSC("defined"));
634 s
->n_true
= cpp_lookup (r
, DSC("true"));
635 s
->n_false
= cpp_lookup (r
, DSC("false"));
636 s
->n__VA_ARGS__
= cpp_lookup (r
, DSC("__VA_ARGS__"));
639 old_state
= r
->state
;
640 r
->state
.in_directive
= 1;
641 r
->state
.prevent_expansion
= 1;
642 r
->state
.angled_headers
= 0;
644 /* Run through the carefully-saved macros, insert them. */
645 for (i
= 0; i
< data
->count
; i
++)
651 namelen
= strcspn (data
->defns
[i
], "( \n");
652 h
= cpp_lookup (r
, data
->defns
[i
], namelen
);
653 defn
= data
->defns
[i
] + namelen
;
655 /* The PCH file is valid, so we know that if there is a definition
656 from the PCH file it must be the same as the one we had
657 originally, and so do not need to restore it. */
658 if (h
->type
== NT_VOID
)
660 if (cpp_push_buffer (r
, defn
, ustrchr (defn
, '\n') - defn
, true)
664 if (!_cpp_create_definition (r
, h
))
672 free (data
->defns
[i
]);
674 r
->state
= old_state
;
676 _cpp_restore_pragma_names (r
, data
->saved_pragmas
);
680 if (deps_restore (r
->deps
, f
, CPP_OPTION (r
, restore_pch_deps
) ? name
: NULL
)
684 if (! _cpp_read_file_entries (r
, f
))
690 cpp_errno (r
, CPP_DL_ERROR
, "while reading precompiled header");