1 /* Precompiled header implementation for the C languages.
2 Copyright (C) 2000, 2002, 2003, 2004, 2005, 2007, 2008, 2009, 2010
3 Free Software Foundation, Inc.
5 This file is part of GCC.
7 GCC 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 3, or (at your option)
12 GCC 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 GCC; see the file COPYING3. If not see
19 <http://www.gnu.org/licenses/>. */
23 #include "coretypes.h"
34 #include "langhooks.h"
35 #include "hosthooks.h"
40 /* This is a list of flag variables that must match exactly, and their
41 names for the error message. The possible values for *flag_var must
42 fit in a 'signed char'. */
44 static const struct c_pch_matching
47 const char *flag_name
;
49 { &flag_exceptions
, "-fexceptions" },
53 MATCH_SIZE
= ARRAY_SIZE (pch_matching
)
56 /* The value of the checksum in the dummy compiler that is actually
57 checksummed. That compiler should never be run. */
58 static const char no_checksum
[16] = { 0 };
60 /* Information about flags and suchlike that affect PCH validity.
62 Before this structure is read, both an initial 8-character identification
63 string, and a 16-byte checksum, have been read and validated. */
67 unsigned char debug_info_type
;
68 signed char match
[MATCH_SIZE
];
69 void (*pch_init
) (void);
70 size_t target_data_length
;
75 unsigned long asm_size
;
78 #define IDENT_LENGTH 8
80 /* The file we'll be writing the PCH to. */
81 static FILE *pch_outfile
;
83 /* The position in the assembler output file when pch_init was called. */
84 static long asm_file_startpos
;
86 static const char *get_ident (void);
88 /* Compute an appropriate 8-byte magic number for the PCH file, so that
89 utilities like file(1) can identify it, and so that GCC can quickly
90 ignore non-PCH files and PCH files that are of a completely different
96 static char result
[IDENT_LENGTH
];
97 static const char templ
[] = "gpch.013";
98 static const char c_language_chars
[] = "Co+O";
100 memcpy (result
, templ
, IDENT_LENGTH
);
101 result
[4] = c_language_chars
[c_language
];
106 /* Prepare to write a PCH file, if one is being written. This is
107 called at the start of compilation.
109 Also, print out the executable checksum if -fverbose-asm is in effect. */
115 struct c_pch_validity v
;
116 void *target_validity
;
117 static const char partial_pch
[] = "gpcWrite";
119 #ifdef ASM_COMMENT_START
120 if (flag_verbose_asm
)
122 fprintf (asm_out_file
, "%s ", ASM_COMMENT_START
);
123 c_common_print_pch_checksum (asm_out_file
);
124 fputc ('\n', asm_out_file
);
131 f
= fopen (pch_file
, "w+b");
133 fatal_error ("can%'t create precompiled header %s: %m", pch_file
);
136 gcc_assert (memcmp (executable_checksum
, no_checksum
, 16) != 0);
138 memset (&v
, '\0', sizeof (v
));
139 v
.debug_info_type
= write_symbols
;
142 for (i
= 0; i
< MATCH_SIZE
; i
++)
144 v
.match
[i
] = *pch_matching
[i
].flag_var
;
145 gcc_assert (v
.match
[i
] == *pch_matching
[i
].flag_var
);
148 v
.pch_init
= &pch_init
;
149 target_validity
= targetm
.get_pch_validity (&v
.target_data_length
);
151 if (fwrite (partial_pch
, IDENT_LENGTH
, 1, f
) != 1
152 || fwrite (executable_checksum
, 16, 1, f
) != 1
153 || fwrite (&v
, sizeof (v
), 1, f
) != 1
154 || fwrite (target_validity
, v
.target_data_length
, 1, f
) != 1)
155 fatal_error ("can%'t write to %s: %m", pch_file
);
157 /* We need to be able to re-read the output. */
158 /* The driver always provides a valid -o option. */
159 if (asm_file_name
== NULL
160 || strcmp (asm_file_name
, "-") == 0)
161 fatal_error ("%qs is not a valid output file", asm_file_name
);
163 asm_file_startpos
= ftell (asm_out_file
);
165 /* Let the debugging format deal with the PCHness. */
166 (*debug_hooks
->handle_pch
) (0);
168 cpp_save_state (parse_in
, f
);
171 /* Write the PCH file. This is called at the end of a compilation which
172 will produce a PCH file. */
175 c_common_write_pch (void)
180 struct c_pch_header h
;
182 timevar_push (TV_PCH_SAVE
);
184 (*debug_hooks
->handle_pch
) (1);
186 cpp_write_pch_deps (parse_in
, pch_outfile
);
188 asm_file_end
= ftell (asm_out_file
);
189 h
.asm_size
= asm_file_end
- asm_file_startpos
;
191 if (fwrite (&h
, sizeof (h
), 1, pch_outfile
) != 1)
192 fatal_error ("can%'t write %s: %m", pch_file
);
194 buf
= XNEWVEC (char, 16384);
196 if (fseek (asm_out_file
, asm_file_startpos
, SEEK_SET
) != 0)
197 fatal_error ("can%'t seek in %s: %m", asm_file_name
);
199 for (written
= asm_file_startpos
; written
< asm_file_end
; )
201 long size
= asm_file_end
- written
;
204 if (fread (buf
, size
, 1, asm_out_file
) != 1)
205 fatal_error ("can%'t read %s: %m", asm_file_name
);
206 if (fwrite (buf
, size
, 1, pch_outfile
) != 1)
207 fatal_error ("can%'t write %s: %m", pch_file
);
211 /* asm_out_file can be written afterwards, so fseek to clear
213 if (fseek (asm_out_file
, 0, SEEK_END
) != 0)
214 fatal_error ("can%'t seek in %s: %m", asm_file_name
);
216 gt_pch_save (pch_outfile
);
218 timevar_push (TV_PCH_CPP_SAVE
);
219 cpp_write_pch_state (parse_in
, pch_outfile
);
220 timevar_pop (TV_PCH_CPP_SAVE
);
222 if (fseek (pch_outfile
, 0, SEEK_SET
) != 0
223 || fwrite (get_ident (), IDENT_LENGTH
, 1, pch_outfile
) != 1)
224 fatal_error ("can%'t write %s: %m", pch_file
);
226 fclose (pch_outfile
);
228 timevar_pop (TV_PCH_SAVE
);
231 /* Check the PCH file called NAME, open on FD, to see if it can be
232 used in this compilation. Return 1 if valid, 0 if the file can't
233 be used now but might be if it's seen later in the compilation, and
234 2 if this file could never be used in the compilation. */
237 c_common_valid_pch (cpp_reader
*pfile
, const char *name
, int fd
)
241 char ident
[IDENT_LENGTH
+ 16];
242 const char *pch_ident
;
243 struct c_pch_validity v
;
245 /* Perform a quick test of whether this is a valid
246 precompiled header for the current language. */
248 gcc_assert (memcmp (executable_checksum
, no_checksum
, 16) != 0);
250 sizeread
= read (fd
, ident
, IDENT_LENGTH
+ 16);
252 fatal_error ("can%'t read %s: %m", name
);
253 else if (sizeread
!= IDENT_LENGTH
+ 16)
255 if (cpp_get_options (pfile
)->warn_invalid_pch
)
256 cpp_error (pfile
, CPP_DL_WARNING
, "%s: too short to be a PCH file",
261 pch_ident
= get_ident();
262 if (memcmp (ident
, pch_ident
, IDENT_LENGTH
) != 0)
264 if (cpp_get_options (pfile
)->warn_invalid_pch
)
266 if (memcmp (ident
, pch_ident
, 5) == 0)
267 /* It's a PCH, for the right language, but has the wrong version.
269 cpp_error (pfile
, CPP_DL_WARNING
,
270 "%s: not compatible with this GCC version", name
);
271 else if (memcmp (ident
, pch_ident
, 4) == 0)
272 /* It's a PCH for the wrong language. */
273 cpp_error (pfile
, CPP_DL_WARNING
, "%s: not for %s", name
,
276 /* Not any kind of PCH. */
277 cpp_error (pfile
, CPP_DL_WARNING
, "%s: not a PCH file", name
);
281 if (memcmp (ident
+ IDENT_LENGTH
, executable_checksum
, 16) != 0)
283 if (cpp_get_options (pfile
)->warn_invalid_pch
)
284 cpp_error (pfile
, CPP_DL_WARNING
,
285 "%s: created by a different GCC executable", name
);
289 /* At this point, we know it's a PCH file created by this
290 executable, so it ought to be long enough that we can read a
291 c_pch_validity structure. */
292 if (read (fd
, &v
, sizeof (v
)) != sizeof (v
))
293 fatal_error ("can%'t read %s: %m", name
);
295 /* The allowable debug info combinations are that either the PCH file
296 was built with the same as is being used now, or the PCH file was
297 built for some kind of debug info but now none is in use. */
298 if (v
.debug_info_type
!= write_symbols
299 && write_symbols
!= NO_DEBUG
)
301 if (cpp_get_options (pfile
)->warn_invalid_pch
)
302 cpp_error (pfile
, CPP_DL_WARNING
,
303 "%s: created with -g%s, but used with -g%s", name
,
304 debug_type_names
[v
.debug_info_type
],
305 debug_type_names
[write_symbols
]);
309 /* Check flags that must match exactly. */
312 for (i
= 0; i
< MATCH_SIZE
; i
++)
313 if (*pch_matching
[i
].flag_var
!= v
.match
[i
])
315 if (cpp_get_options (pfile
)->warn_invalid_pch
)
316 cpp_error (pfile
, CPP_DL_WARNING
,
317 "%s: settings for %s do not match", name
,
318 pch_matching
[i
].flag_name
);
323 /* If the text segment was not loaded at the same address as it was
324 when the PCH file was created, function pointers loaded from the
325 PCH will not be valid. We could in theory remap all the function
326 pointers, but no support for that exists at present.
327 Since we have the same executable, it should only be necessary to
328 check one function. */
329 if (v
.pch_init
!= &pch_init
)
331 if (cpp_get_options (pfile
)->warn_invalid_pch
)
332 cpp_error (pfile
, CPP_DL_WARNING
,
333 "%s: had text segment at different address", name
);
337 /* Check the target-specific validity data. */
339 void *this_file_data
= xmalloc (v
.target_data_length
);
342 if ((size_t) read (fd
, this_file_data
, v
.target_data_length
)
343 != v
.target_data_length
)
344 fatal_error ("can%'t read %s: %m", name
);
345 msg
= targetm
.pch_valid_p (this_file_data
, v
.target_data_length
);
346 free (this_file_data
);
349 if (cpp_get_options (pfile
)->warn_invalid_pch
)
350 cpp_error (pfile
, CPP_DL_WARNING
, "%s: %s", name
, msg
);
355 /* Check the preprocessor macros are the same as when the PCH was
358 result
= cpp_valid_state (pfile
, name
, fd
);
365 /* If non-NULL, this function is called after a precompile header file
367 void (*lang_post_pch_load
) (void);
369 /* Load in the PCH file NAME, open on FD. It was originally searched for
373 c_common_read_pch (cpp_reader
*pfile
, const char *name
,
374 int fd
, const char *orig_name ATTRIBUTE_UNUSED
)
377 struct c_pch_header h
;
378 struct save_macro_data
*smd
;
379 expanded_location saved_loc
;
380 bool saved_trace_includes
;
382 timevar_push (TV_PCH_RESTORE
);
384 f
= fdopen (fd
, "rb");
387 cpp_errno (pfile
, CPP_DL_ERROR
, "calling fdopen");
392 cpp_get_callbacks (parse_in
)->valid_pch
= NULL
;
394 if (fread (&h
, sizeof (h
), 1, f
) != 1)
396 cpp_errno (pfile
, CPP_DL_ERROR
, "reading");
401 if (!flag_preprocess_only
)
403 unsigned long written
;
404 char * buf
= XNEWVEC (char, 16384);
406 for (written
= 0; written
< h
.asm_size
; )
408 long size
= h
.asm_size
- written
;
411 if (fread (buf
, size
, 1, f
) != 1
412 || fwrite (buf
, size
, 1, asm_out_file
) != 1)
413 cpp_errno (pfile
, CPP_DL_ERROR
, "reading");
420 /* If we're preprocessing, don't write to a NULL
422 if (fseek (f
, h
.asm_size
, SEEK_CUR
) != 0)
423 cpp_errno (pfile
, CPP_DL_ERROR
, "seeking");
426 /* Save the location and then restore it after reading the PCH. */
427 saved_loc
= expand_location (line_table
->highest_line
);
428 saved_trace_includes
= line_table
->trace_includes
;
430 timevar_push (TV_PCH_CPP_RESTORE
);
431 cpp_prepare_state (pfile
, &smd
);
432 timevar_pop (TV_PCH_CPP_RESTORE
);
436 timevar_push (TV_PCH_CPP_RESTORE
);
437 if (cpp_read_state (pfile
, name
, f
, smd
) != 0)
440 timevar_pop (TV_PCH_CPP_RESTORE
);
443 timevar_pop (TV_PCH_CPP_RESTORE
);
448 line_table
->trace_includes
= saved_trace_includes
;
449 cpp_set_line_map (pfile
, line_table
);
450 linemap_add (line_table
, LC_RENAME
, 0, saved_loc
.file
, saved_loc
.line
);
452 /* Give the front end a chance to take action after a PCH file has
454 if (lang_post_pch_load
)
455 (*lang_post_pch_load
) ();
458 timevar_pop (TV_PCH_RESTORE
);
461 /* Indicate that no more PCH files should be read. */
464 c_common_no_more_pch (void)
466 if (cpp_get_callbacks (parse_in
)->valid_pch
)
468 cpp_get_callbacks (parse_in
)->valid_pch
= NULL
;
469 host_hooks
.gt_pch_use_address (NULL
, 0, -1, 0);
473 /* Handle #pragma GCC pch_preprocess, to load in the PCH file. */
480 c_common_pch_pragma (cpp_reader
*pfile
, const char *name
)
484 if (!cpp_get_options (pfile
)->preprocessed
)
486 error ("pch_preprocess pragma should only be used with -fpreprocessed");
487 inform (input_location
, "use #include instead");
491 fd
= open (name
, O_RDONLY
| O_BINARY
, 0666);
493 fatal_error ("%s: couldn%'t open PCH file: %m", name
);
495 if (c_common_valid_pch (pfile
, name
, fd
) != 1)
497 if (!cpp_get_options (pfile
)->warn_invalid_pch
)
498 inform (input_location
, "use -Winvalid-pch for more information");
499 fatal_error ("%s: PCH file was invalid", name
);
502 c_common_read_pch (pfile
, name
, fd
, name
);
507 /* Print out executable_checksum[]. */
510 c_common_print_pch_checksum (FILE *f
)
513 fputs ("Compiler executable checksum: ", f
);
514 for (i
= 0; i
< 16; i
++)
515 fprintf (f
, "%02x", executable_checksum
[i
]);