1 /* Preprocess only, using cpplib.
2 Copyright (C) 1995, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2007,
3 2008, 2009 Free Software Foundation, Inc.
4 Written by Per Bothner, 1994-95.
6 This program is free software; you can redistribute it and/or modify it
7 under the terms of the GNU General Public License as published by the
8 Free Software Foundation; either version 3, or (at your option) any
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
16 You should have received a copy of the GNU General Public License
17 along with this program; see the file COPYING3. If not see
18 <http://www.gnu.org/licenses/>. */
22 #include "coretypes.h"
24 #include "../libcpp/internal.h"
26 #include "c-common.h" /* For flags. */
27 #include "c-pragma.h" /* For parse_in. */
29 /* Encapsulates state used to convert a stream of tokens into a text
33 FILE *outf
; /* Stream to write to. */
34 const cpp_token
*prev
; /* Previous token. */
35 const cpp_token
*source
; /* Source token for spacing. */
36 int src_line
; /* Line number currently being written. */
37 unsigned char printed
; /* Nonzero if something output at line. */
38 bool first_time
; /* pp_file_change hasn't been called yet. */
41 /* Defined and undefined macros being queued for output with -dU at
43 typedef struct macro_queue
45 struct macro_queue
*next
; /* Next macro in the list. */
46 char *macro
; /* The name of the macro if not
47 defined, the full definition if
50 static macro_queue
*define_queue
, *undef_queue
;
52 /* General output routines. */
53 static void scan_translation_unit (cpp_reader
*);
54 static void print_lines_directives_only (int, const void *, size_t);
55 static void scan_translation_unit_directives_only (cpp_reader
*);
56 static void scan_translation_unit_trad (cpp_reader
*);
57 static void account_for_newlines (const unsigned char *, size_t);
58 static int dump_macro (cpp_reader
*, cpp_hashnode
*, void *);
59 static void dump_queued_macros (cpp_reader
*);
61 static void print_line (source_location
, const char *);
62 static void maybe_print_line (source_location
);
63 static void do_line_change (cpp_reader
*, const cpp_token
*,
64 source_location
, int);
66 /* Callback routines for the parser. Most of these are active only
68 static void cb_line_change (cpp_reader
*, const cpp_token
*, int);
69 static void cb_define (cpp_reader
*, source_location
, cpp_hashnode
*);
70 static void cb_undef (cpp_reader
*, source_location
, cpp_hashnode
*);
71 static void cb_used_define (cpp_reader
*, source_location
, cpp_hashnode
*);
72 static void cb_used_undef (cpp_reader
*, source_location
, cpp_hashnode
*);
73 static void cb_include (cpp_reader
*, source_location
, const unsigned char *,
74 const char *, int, const cpp_token
**);
75 static void cb_ident (cpp_reader
*, source_location
, const cpp_string
*);
76 static void cb_def_pragma (cpp_reader
*, source_location
);
77 static void cb_read_pch (cpp_reader
*pfile
, const char *name
,
78 int fd
, const char *orig_name
);
80 /* Preprocess and output. */
82 preprocess_file (cpp_reader
*pfile
)
84 /* A successful cpp_read_main_file guarantees that we can call
85 cpp_scan_nooutput or cpp_get_token next. */
88 /* Scan -included buffers, then the main file. */
89 while (pfile
->buffer
->prev
)
90 cpp_scan_nooutput (pfile
);
91 cpp_scan_nooutput (pfile
);
93 else if (cpp_get_options (pfile
)->traditional
)
94 scan_translation_unit_trad (pfile
);
95 else if (cpp_get_options (pfile
)->directives_only
96 && !cpp_get_options (pfile
)->preprocessed
)
97 scan_translation_unit_directives_only (pfile
);
99 scan_translation_unit (pfile
);
101 /* -dM command line option. Should this be elsewhere? */
102 if (flag_dump_macros
== 'M')
103 cpp_forall_identifiers (pfile
, dump_macro
, NULL
);
105 /* Flush any pending output. */
107 putc ('\n', print
.outf
);
110 /* Set up the callbacks as appropriate. */
112 init_pp_output (FILE *out_stream
)
114 cpp_callbacks
*cb
= cpp_get_callbacks (parse_in
);
118 cb
->line_change
= cb_line_change
;
119 /* Don't emit #pragma or #ident directives if we are processing
120 assembly language; the assembler may choke on them. */
121 if (cpp_get_options (parse_in
)->lang
!= CLK_ASM
)
123 cb
->ident
= cb_ident
;
124 cb
->def_pragma
= cb_def_pragma
;
128 if (flag_dump_includes
)
129 cb
->include
= cb_include
;
131 if (flag_pch_preprocess
)
133 cb
->valid_pch
= c_common_valid_pch
;
134 cb
->read_pch
= cb_read_pch
;
137 if (flag_dump_macros
== 'N' || flag_dump_macros
== 'D')
139 cb
->define
= cb_define
;
140 cb
->undef
= cb_undef
;
143 if (flag_dump_macros
== 'U')
145 cb
->before_define
= dump_queued_macros
;
146 cb
->used_define
= cb_used_define
;
147 cb
->used_undef
= cb_used_undef
;
150 /* Initialize the print structure. */
154 print
.outf
= out_stream
;
155 print
.first_time
= 1;
158 /* Writes out the preprocessed file, handling spacing and paste
161 scan_translation_unit (cpp_reader
*pfile
)
163 bool avoid_paste
= false;
164 bool do_line_adjustments
165 = cpp_get_options (parse_in
)->lang
!= CLK_ASM
166 && !flag_no_line_commands
;
167 bool in_pragma
= false;
173 const cpp_token
*token
= cpp_get_token_with_location (pfile
, &loc
);
175 if (token
->type
== CPP_PADDING
)
178 if (print
.source
== NULL
179 || (!(print
.source
->flags
& PREV_WHITE
)
180 && token
->val
.source
== NULL
))
181 print
.source
= token
->val
.source
;
185 if (token
->type
== CPP_EOF
)
188 /* Subtle logic to output a space if and only if necessary. */
191 const struct line_map
*map
192 = linemap_lookup (line_table
, loc
);
193 int src_line
= SOURCE_LINE (map
, loc
);
195 if (print
.source
== NULL
)
196 print
.source
= token
;
198 if (src_line
!= print
.src_line
199 && do_line_adjustments
202 do_line_change (pfile
, token
, loc
, false);
203 putc (' ', print
.outf
);
205 else if (print
.source
->flags
& PREV_WHITE
207 && cpp_avoid_paste (pfile
, print
.prev
, token
))
208 || (print
.prev
== NULL
&& token
->type
== CPP_HASH
))
209 putc (' ', print
.outf
);
211 else if (token
->flags
& PREV_WHITE
)
213 const struct line_map
*map
214 = linemap_lookup (line_table
, loc
);
215 int src_line
= SOURCE_LINE (map
, loc
);
217 if (src_line
!= print
.src_line
218 && do_line_adjustments
220 do_line_change (pfile
, token
, loc
, false);
221 putc (' ', print
.outf
);
227 if (token
->type
== CPP_PRAGMA
)
232 maybe_print_line (token
->src_loc
);
233 fputs ("#pragma ", print
.outf
);
234 c_pp_lookup_pragma (token
->val
.pragma
, &space
, &name
);
236 fprintf (print
.outf
, "%s %s", space
, name
);
238 fprintf (print
.outf
, "%s", name
);
242 else if (token
->type
== CPP_PRAGMA_EOL
)
244 maybe_print_line (token
->src_loc
);
248 cpp_output_token (token
, print
.outf
);
250 if (token
->type
== CPP_COMMENT
)
251 account_for_newlines (token
->val
.str
.text
, token
->val
.str
.len
);
256 print_lines_directives_only (int lines
, const void *buf
, size_t size
)
258 print
.src_line
+= lines
;
259 fwrite (buf
, 1, size
, print
.outf
);
262 /* Writes out the preprocessed file, handling spacing and paste
265 scan_translation_unit_directives_only (cpp_reader
*pfile
)
267 struct _cpp_dir_only_callbacks cb
;
269 cb
.print_lines
= print_lines_directives_only
;
270 cb
.maybe_print_line
= maybe_print_line
;
272 _cpp_preprocess_dir_only (pfile
, &cb
);
275 /* Adjust print.src_line for newlines embedded in output. */
277 account_for_newlines (const unsigned char *str
, size_t len
)
284 /* Writes out a traditionally preprocessed file. */
286 scan_translation_unit_trad (cpp_reader
*pfile
)
288 while (_cpp_read_logical_line_trad (pfile
))
290 size_t len
= pfile
->out
.cur
- pfile
->out
.base
;
291 maybe_print_line (pfile
->out
.first_line
);
292 fwrite (pfile
->out
.base
, 1, len
, print
.outf
);
294 if (!CPP_OPTION (pfile
, discard_comments
))
295 account_for_newlines (pfile
->out
.base
, len
);
299 /* If the token read on logical line LINE needs to be output on a
300 different line to the current one, output the required newlines or
301 a line marker, and return 1. Otherwise return 0. */
303 maybe_print_line (source_location src_loc
)
305 const struct line_map
*map
= linemap_lookup (line_table
, src_loc
);
306 int src_line
= SOURCE_LINE (map
, src_loc
);
307 /* End the previous line of text. */
310 putc ('\n', print
.outf
);
315 if (src_line
>= print
.src_line
&& src_line
< print
.src_line
+ 8)
317 while (src_line
> print
.src_line
)
319 putc ('\n', print
.outf
);
324 print_line (src_loc
, "");
327 /* Output a line marker for logical line LINE. Special flags are "1"
328 or "2" indicating entering or leaving a file. */
330 print_line (source_location src_loc
, const char *special_flags
)
332 /* End any previous line of text. */
334 putc ('\n', print
.outf
);
337 if (!flag_no_line_commands
)
339 const struct line_map
*map
= linemap_lookup (line_table
, src_loc
);
341 size_t to_file_len
= strlen (map
->to_file
);
342 unsigned char *to_file_quoted
=
343 (unsigned char *) alloca (to_file_len
* 4 + 1);
346 print
.src_line
= SOURCE_LINE (map
, src_loc
);
348 /* cpp_quote_string does not nul-terminate, so we have to do it
350 p
= cpp_quote_string (to_file_quoted
,
351 (const unsigned char *) map
->to_file
, to_file_len
);
353 fprintf (print
.outf
, "# %u \"%s\"%s",
354 print
.src_line
== 0 ? 1 : print
.src_line
,
355 to_file_quoted
, special_flags
);
358 fputs (" 3 4", print
.outf
);
359 else if (map
->sysp
== 1)
360 fputs (" 3", print
.outf
);
362 putc ('\n', print
.outf
);
366 /* Helper function for cb_line_change and scan_translation_unit. */
368 do_line_change (cpp_reader
*pfile
, const cpp_token
*token
,
369 source_location src_loc
, int parsing_args
)
371 if (define_queue
|| undef_queue
)
372 dump_queued_macros (pfile
);
374 if (token
->type
== CPP_EOF
|| parsing_args
)
377 maybe_print_line (src_loc
);
381 /* Supply enough spaces to put this token in its original column,
382 one space per column greater than 2, since scan_translation_unit
383 will provide a space if PREV_WHITE. Don't bother trying to
384 reconstruct tabs; we can't get it right in general, and nothing
385 ought to care. Some things do care; the fault lies with them. */
386 if (!CPP_OPTION (pfile
, traditional
))
388 const struct line_map
*map
= linemap_lookup (line_table
, src_loc
);
389 int spaces
= SOURCE_COLUMN (map
, src_loc
) - 2;
392 while (-- spaces
>= 0)
393 putc (' ', print
.outf
);
397 /* Called when a line of output is started. TOKEN is the first token
398 of the line, and at end of file will be CPP_EOF. */
400 cb_line_change (cpp_reader
*pfile
, const cpp_token
*token
,
403 do_line_change (pfile
, token
, token
->src_loc
, parsing_args
);
407 cb_ident (cpp_reader
*pfile ATTRIBUTE_UNUSED
, source_location line
,
408 const cpp_string
*str
)
410 maybe_print_line (line
);
411 fprintf (print
.outf
, "#ident %s\n", str
->text
);
416 cb_define (cpp_reader
*pfile
, source_location line
, cpp_hashnode
*node
)
418 maybe_print_line (line
);
419 fputs ("#define ", print
.outf
);
421 /* 'D' is whole definition; 'N' is name only. */
422 if (flag_dump_macros
== 'D')
423 fputs ((const char *) cpp_macro_definition (pfile
, node
),
426 fputs ((const char *) NODE_NAME (node
), print
.outf
);
428 putc ('\n', print
.outf
);
429 if (linemap_lookup (line_table
, line
)->to_line
!= 0)
434 cb_undef (cpp_reader
*pfile ATTRIBUTE_UNUSED
, source_location line
,
437 maybe_print_line (line
);
438 fprintf (print
.outf
, "#undef %s\n", NODE_NAME (node
));
443 cb_used_define (cpp_reader
*pfile
, source_location line ATTRIBUTE_UNUSED
,
447 if (node
->flags
& NODE_BUILTIN
)
449 q
= XNEW (macro_queue
);
450 q
->macro
= xstrdup ((const char *) cpp_macro_definition (pfile
, node
));
451 q
->next
= define_queue
;
456 cb_used_undef (cpp_reader
*pfile ATTRIBUTE_UNUSED
,
457 source_location line ATTRIBUTE_UNUSED
,
461 q
= XNEW (macro_queue
);
462 q
->macro
= xstrdup ((const char *) NODE_NAME (node
));
463 q
->next
= undef_queue
;
468 dump_queued_macros (cpp_reader
*pfile ATTRIBUTE_UNUSED
)
472 /* End the previous line of text. */
475 putc ('\n', print
.outf
);
480 for (q
= define_queue
; q
;)
483 fputs ("#define ", print
.outf
);
484 fputs (q
->macro
, print
.outf
);
485 putc ('\n', print
.outf
);
493 for (q
= undef_queue
; q
;)
496 fprintf (print
.outf
, "#undef %s\n", q
->macro
);
507 cb_include (cpp_reader
*pfile ATTRIBUTE_UNUSED
, source_location line
,
508 const unsigned char *dir
, const char *header
, int angle_brackets
,
509 const cpp_token
**comments
)
511 maybe_print_line (line
);
513 fprintf (print
.outf
, "#%s <%s>", dir
, header
);
515 fprintf (print
.outf
, "#%s \"%s\"", dir
, header
);
517 if (comments
!= NULL
)
519 while (*comments
!= NULL
)
521 if ((*comments
)->flags
& PREV_WHITE
)
522 putc (' ', print
.outf
);
523 cpp_output_token (*comments
, print
.outf
);
528 putc ('\n', print
.outf
);
532 /* Callback called when -fworking-director and -E to emit working
533 directory in cpp output file. */
536 pp_dir_change (cpp_reader
*pfile ATTRIBUTE_UNUSED
, const char *dir
)
538 size_t to_file_len
= strlen (dir
);
539 unsigned char *to_file_quoted
=
540 (unsigned char *) alloca (to_file_len
* 4 + 1);
543 /* cpp_quote_string does not nul-terminate, so we have to do it ourselves. */
544 p
= cpp_quote_string (to_file_quoted
, (const unsigned char *) dir
, to_file_len
);
546 fprintf (print
.outf
, "# 1 \"%s//\"\n", to_file_quoted
);
549 /* The file name, line number or system header flags have changed, as
553 pp_file_change (const struct line_map
*map
)
555 const char *flags
= "";
557 if (flag_no_line_commands
)
562 input_location
= map
->start_location
;
563 if (print
.first_time
)
565 /* Avoid printing foo.i when the main file is foo.c. */
566 if (!cpp_get_options (parse_in
)->preprocessed
)
567 print_line (map
->start_location
, flags
);
568 print
.first_time
= 0;
572 /* Bring current file to correct line when entering a new file. */
573 if (map
->reason
== LC_ENTER
)
575 const struct line_map
*from
= INCLUDED_FROM (line_table
, map
);
576 maybe_print_line (LAST_SOURCE_LINE_LOCATION (from
));
578 if (map
->reason
== LC_ENTER
)
580 else if (map
->reason
== LC_LEAVE
)
582 print_line (map
->start_location
, flags
);
587 /* Copy a #pragma directive to the preprocessed output. */
589 cb_def_pragma (cpp_reader
*pfile
, source_location line
)
591 maybe_print_line (line
);
592 fputs ("#pragma ", print
.outf
);
593 cpp_output_line (pfile
, print
.outf
);
597 /* Dump out the hash table. */
599 dump_macro (cpp_reader
*pfile
, cpp_hashnode
*node
, void *v ATTRIBUTE_UNUSED
)
601 if (node
->type
== NT_MACRO
&& !(node
->flags
& NODE_BUILTIN
))
603 fputs ("#define ", print
.outf
);
604 fputs ((const char *) cpp_macro_definition (pfile
, node
),
606 putc ('\n', print
.outf
);
613 /* Load in the PCH file NAME, open on FD. It was originally searched for
614 by ORIG_NAME. Also, print out a #include command so that the PCH
615 file can be loaded when the preprocessed output is compiled. */
618 cb_read_pch (cpp_reader
*pfile
, const char *name
,
619 int fd
, const char *orig_name ATTRIBUTE_UNUSED
)
621 c_common_read_pch (pfile
, name
, fd
, orig_name
);
623 fprintf (print
.outf
, "#pragma GCC pch_preprocess \"%s\"\n", name
);