rich_location: add convenience overloads for adding fix-it hints
[gcc.git] / libcpp / ChangeLog
1 2016-08-30 David Malcolm <dmalcolm@redhat.com>
2
3 * include/line-map.h (rich_location::add_fixit_insert): Add
4 comments. Add overload omitting the source_location param.
5 (rich_location::add_fixit_remove): Add comments. Add overloads
6 omitting the range, and accepting a source_location.
7 (rich_location::add_fixit_replace): Likewise.
8 * line-map.c (rich_location::add_fixit_insert): Add comments. Add
9 overload omitting the source_location param.
10 (rich_location::add_fixit_remove): Add comments. Add overloads
11 omitting the range, and accepting a source_location.
12 (rich_location::add_fixit_replace): Likewise.
13
14 2016-08-26 David Malcolm <dmalcolm@redhat.com>
15
16 * include/line-map.h (get_pure_location): New decl.
17 * line-map.c (get_pure_location): Move here, from gcc/input.c, adding
18 a line_maps * param.
19 (rich_location::add_fixit_insert): Call get_pure_location on "where".
20 (rich_location::add_fixit_replace): Call get_pure_location on the
21 end-points.
22
23 2016-08-26 David Malcolm <dmalcolm@redhat.com>
24
25 * include/line-map.h (rich_location): Eliminate unimplemented
26 constructor based on source_range.
27 (rich_location::get_last_fixit_hint): New method.
28 (rich_location::reject_impossible_fixit): New method.
29 (rich_location): Add fields m_line_table and
30 m_seen_impossible_fixit.
31 (fixit_hint::maybe_append_replace): New pure virtual function.
32 (fixit_insert::maybe_append_replace): New function.
33 (fixit_replace::maybe_append_replace): New function.
34 * line-map.c (rich_location::rich_location): Initialize
35 m_line_table and m_seen_impossible_fixit.
36 (rich_location::add_fixit_insert): Call
37 reject_impossible_fixit and bail out if true.
38 (column_before_p): New function.
39 (rich_location::add_fixit_replace): Call reject_impossible_fixit
40 and bail out if true. Attempt to consolidate with neighboring
41 fixits.
42 (rich_location::get_last_fixit_hint): New method.
43 (rich_location::reject_impossible_fixit): New method.
44 (fixit_insert::maybe_append_replace): New method.
45 (fixit_replace::maybe_append_replace): New method.
46
47 2016-08-23 David Malcolm <dmalcolm@redhat.com>
48
49 * include/line-map.h (source_range::from_locations): New method.
50
51 2016-08-19 David Malcolm <dmalcolm@redhat.com>
52
53 * include/line-map.h (fixit_hint::kind): Delete REPLACE.
54 (class fixit_remove): Delete.
55 * line-map.c (rich_location::add_fixit_remove): Reimplement
56 by calling add_fixit_replace with an empty string.
57 (fixit_remove::fixit_remove): Delete.
58 (fixit_remove::affects_line_p): Delete.
59
60 2016-08-19 Joseph Myers <joseph@codesourcery.com>
61
62 PR c/32187
63 * include/cpplib.h (CPP_N_FLOATN, CPP_N_FLOATNX)
64 (CPP_N_WIDTH_FLOATN_NX, CPP_FLOATN_SHIFT, CPP_FLOATN_MAX): New
65 macros.
66 * expr.c (interpret_float_suffix): Handle fN, fNx, FN and FNx
67 suffixes.
68
69 2016-08-19 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
70
71 * expr.c (eval_token): Append "evaluates to 0" to Wundef diagnostic.
72
73 2016-08-18 David Malcolm <dmalcolm@redhat.com>
74
75 * directives.c (directive_names): New array.
76 (_cpp_handle_directive): Offer spelling suggestions for misspelled
77 directives.
78 * errors.c (cpp_diagnostic_at_richloc): New function.
79 (cpp_error_at_richloc): New function.
80 * include/cpplib.h (struct cpp_callbacks): Add field
81 "get_suggestion".
82 (cpp_error_at_richloc): New decl.
83
84 2016-08-18 Marek Polacek <polacek@redhat.com>
85
86 PR c/7652
87 * pch.c (write_macdef): Add CPP_FALLTHRU.
88
89 2016-08-12 Marek Polacek <polacek@redhat.com>
90
91 PR c/7652
92 * lex.c (search_line_fast): Add FALLTHRU.
93 (_cpp_lex_direct): Likewise.
94 (cpp_token_val_index): Adjust fall through comment.
95 * macro.c (parse_params): Add FALLTHRU.
96 * pch.c (count_defs): Adjust fall through comment.
97 (write_defs): Likewise.
98
99 2016-08-06 David Malcolm <dmalcolm@redhat.com>
100
101 PR bootstrap/72823
102 * charset.c (_cpp_valid_ucn): Replace overzealous assert with one
103 that allows for char_range to be non-NULL when loc_reader is NULL.
104
105 2016-08-05 David Malcolm <dmalcolm@redhat.com>
106
107 * charset.c (cpp_substring_ranges::cpp_substring_ranges): New
108 constructor.
109 (cpp_substring_ranges::~cpp_substring_ranges): New destructor.
110 (cpp_substring_ranges::add_range): New method.
111 (cpp_substring_ranges::add_n_ranges): New method.
112 (_cpp_valid_ucn): Add "char_range" and "loc_reader" params; if
113 they are non-NULL, read position information from *loc_reader
114 and update char_range->m_finish accordingly.
115 (convert_ucn): Add "char_range", "loc_reader", and "ranges"
116 params. If loc_reader is non-NULL, read location information from
117 it, and update *ranges accordingly, using char_range.
118 Conditionalize the conversion into tbuf on tbuf being non-NULL.
119 (convert_hex): Likewise, conditionalizing the call to
120 emit_numeric_escape on tbuf.
121 (convert_oct): Likewise.
122 (convert_escape): Add params "loc_reader" and "ranges". If
123 loc_reader is non-NULL, read location information from it, and
124 update *ranges accordingly. Conditionalize the conversion into
125 tbuf on tbuf being non-NULL.
126 (cpp_interpret_string): Rename to...
127 (cpp_interpret_string_1): ...this, adding params "loc_readers" and
128 "out". Use "to" to conditionalize the initialization and usage of
129 "tbuf", such as running the converter. If "loc_readers" is
130 non-NULL, use the instances within it, reading location
131 information from them, and passing them to convert_escape; likewise
132 write to "out" if loc_readers is non-NULL. Check for leading
133 quote and issue an error if it is not present. Update boundary
134 check from "== limit" to ">= limit" to protect against erroneous
135 location values to calls that are not parsing string literals.
136 (cpp_interpret_string): Reimplement in terms to
137 cpp_interpret_string_1.
138 (noop_error_cb): New function.
139 (cpp_interpret_string_ranges): New function.
140 (cpp_string_location_reader::cpp_string_location_reader): New
141 constructor.
142 (cpp_string_location_reader::get_next): New method.
143 * include/cpplib.h (class cpp_string_location_reader): New class.
144 (class cpp_substring_ranges): New class.
145 (cpp_interpret_string_ranges): New prototype.
146 * internal.h (_cpp_valid_ucn): Add params "char_range" and
147 "loc_reader".
148 * lex.c (forms_identifier_p): Pass NULL for new params to
149 _cpp_valid_ucn.
150
151 2016-08-01 Andreas Schwab <schwab@suse.de>
152
153 * include/cpplib.h: Fix comment typo.
154
155 2016-07-27 David Malcolm <dmalcolm@redhat.com>
156
157 * include/line-map.h (source_location): Fix line numbers in
158 comment.
159
160 2016-07-11 David Malcolm <dmalcolm@redhat.com>
161
162 * include/line-map.h (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES):
163 Move here from line-map.c.
164 (LINE_MAP_MAX_LOCATION_WITH_COLS): Likewise.
165 * line-map.c (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES): Move from
166 here to line-map.h.
167 (LINE_MAP_MAX_LOCATION_WITH_COLS): Likewise.
168
169 2016-06-22 David Malcolm <dmalcolm@redhat.com>
170
171 * directives.c (do_include_common): Pass on "location" to
172 _cpp_stack_include.
173 * errors.c (cpp_diagnostic): Reimplement in terms of...
174 (cpp_diagnostic_at): New function.
175 (cpp_error_at): New function.
176 (cpp_errno_filename): Add "loc" param and use it by using
177 cpp_error_at rather than cpp_error.
178 * files.c (find_file_in_dir): Add "loc" param and pass it to
179 open_file_failed.
180 (_cpp_find_file): Add "loc" param. Use it to convert calls to
181 cpp_error to cpp_error_at, and pass it to find_file_in_dir and
182 open_file_failed.
183 (read_file_guts): Add "loc" param. Use it to convert calls to
184 cpp_error to cpp_error_at. Pass it to cpp_errno_filename.
185 (read_file): Add "loc" param. Pass it to open_file_failed and
186 read_file_guts.
187 (should_stack_file): Add "loc" param. Pass it to read_file.
188 (_cpp_stack_file): Add "loc" param. Pass it to should_stack_file.
189 (_cpp_stack_include): Add "loc" param. Pass it to
190 _cpp_find_file and _cpp_stack_file.
191 (open_file_failed): Add "loc" param. Pass it to
192 cpp_errno_filename.
193 (_cpp_fake_include): Add 0 as a source_location in call to
194 _cpp_find_file.
195 (_cpp_compare_file_date): Likewise.
196 (cpp_push_include): Likewise for call to _cpp_stack_include.
197 (cpp_push_default_include): Likewise.
198 (_cpp_save_file_entries): Likewise for call to open_file_failed.
199 (_cpp_has_header): Likewise for call to _cpp_find_file.
200 * include/cpplib.h (cpp_errno_filename): Add source_location
201 param.
202 (cpp_error_at): New declaration.
203 * init.c (cpp_read_main_file): Add 0 as a source_location in calls
204 to _cpp_find_file and _cpp_stack_file.
205 * internal.h (_cpp_find_file): Add source_location param.
206 (_cpp_stack_file): Likewise.
207 (_cpp_stack_include): Likewise.
208
209 2016-06-22 David Malcolm <dmalcolm@redhat.com>
210
211 * include/line-map.h (fixit_hint::get_start_loc): New pure virtual
212 function.
213 (fixit_hint::maybe_get_end_loc): Likewise.
214 (fixit_insert::get_start_loc): New function, implementing
215 fixit_hint::get_start_loc.
216 (fixit_insert::maybe_get_end_loc): New function, implementing
217 fixit_hint::maybe_get_end_loc.
218 (fixit_remove::get_start_loc): New function, implementing
219 fixit_hint::get_start_loc.
220 (fixit_remove::maybe_get_end_loc): New function, implementing
221 fixit_hint::maybe_get_end_loc.
222 (fixit_replace::get_start_loc): New function, implementing
223 fixit_hint::get_start_loc.
224 (fixit_replace::maybe_get_end_loc): New function, implementing
225 fixit_hint::maybe_get_end_loc.
226
227 2016-06-21 John David Anglin <danglin@gcc.gnu.org>
228
229 * line-map.c (location_adhoc_data_update): Use int64_t instead of
230 long long.
231 (get_combined_adhoc_loc): Likewise.
232
233 2016-06-01 Eduard Sanou <dhole@openmailbox.org>
234
235 * include/cpplib.h (cpp_callbacks): Add get_source_date_epoch
236 callback.
237 * include/cpplib.h (cpp_init_source_date_epoch): Remove prototype.
238 * init.c (cpp_init_source_date_epoch): Remove function.
239 * init.c (cpp_create_reader): Initialize pfile->source_date_epoch.
240 * internal.h (cpp_reader): Extend comment about source_date_epoch.
241 * macro.c (_cpp_builtin_macro_text): Use get_source_date_epoch
242 callback only once, read pfile->source_date_epoch on future passes.
243 Check that get_source_date_epoch callback is not NULL.
244
245 2016-05-20 Martin Liska <mliska@suse.cz>
246
247 * config.in: Regenerated.
248 * configure: Likewise.
249 * configure.ac: Handle --enable-valgrind-annotations.
250 * lex.c (new_buff): Use ENABLE_VALGRIND_ANNOTATIONS instead
251 of ENABLE_VALGRIND_CHECKING.
252 (_cpp_free_buff): Likewise.
253
254 2016-04-28 Eduard Sanou <dhole@openmailbox.org>
255 Matthias Klose <doko@debian.org>
256
257 * include/cpplib.h (cpp_init_source_date_epoch): Prototype.
258 * init.c (cpp_init_source_date_epoch): New function.
259 * internal.h: Added source_date_epoch variable to struct
260 cpp_reader to store a reproducible date.
261 * macro.c (_cpp_builtin_macro_text): Set pfile->date timestamp from
262 pfile->source_date_epoch instead of localtime if source_date_epoch is
263 set, to be used for __DATE__ and __TIME__ macros to help reproducible
264 builds.
265
266 2016-04-13 Bernd Schmidt <bschmidt@redhat.com>
267
268 Patch from Roger Orr <rogero@howzatt.demon.co.uk>
269 PR preprocessor/69650
270 * directives.c (do_linemarker): Reread map after calling
271 cpp_get_token.
272
273 2016-04-06 Richard Henderson <rth@redhat.com>
274
275 PR preprocessor/61817
276 PR preprocessor/69391
277 * internal.h (_cpp_builtin_macro_text): Update decl.
278 * macro.c (_cpp_builtin_macro_text): Accept location for __LINE__.
279 (builtin_macro): Accept a second location for __LINE__.
280 (enter_macro_context): Compute both virtual and real expansion
281 locations for the macro.
282
283 2016-03-25 Bernd Schmidt <bschmidt@redhat.com>
284
285 PR lto/69650
286 * directives.c (do_linemarker): Test for file left but not entered
287 here.
288 * line-map.c (linemap_add): Not here.
289
290 2016-03-21 Jakub Jelinek <jakub@redhat.com>
291
292 PR target/70296
293 * include/cpplib.h (cpp_fun_like_macro_p): New prototype.
294 * macro.c (cpp_fun_like_macro_p): New function.
295
296 2016-03-15 Richard Henderson <rth@redhat.com>
297
298 * line-map.c (new_linemap): Make alloc_size a size_t.
299
300 2016-03-14 Jason Merrill <jason@redhat.com>
301
302 * expr.c (cpp_classify_number): Hex floats are new in C++1z.
303 * init.c (lang_defaults): Likewise.
304
305 2016-03-09 David Malcolm <dmalcolm@redhat.com>
306
307 PR c/68473
308 PR c++/70105
309 * line-map.c (linemap_macro_map_loc_unwind_toward_spelling): Move
310 decl...
311 * include/line-map.h
312 (linemap_macro_map_loc_unwind_toward_spelling): ...here,
313 converting from static to extern.
314
315 2016-03-09 David Malcolm <dmalcolm@redhat.com>
316
317 PR c/68473
318 PR c++/70105
319 * include/line-map.h (source_range::debug): Delete.
320 (struct location_range): Update comment. Replace
321 expanded_location fields "m_start", "m_finish", and "m_caret" with
322 a source_location field: "m_loc".
323 (class rich_location): Reword comment.
324 (rich_location::get_loc): Reimplement in terms of a new overloaded
325 variant which takes an unsigned int.
326 (rich_location::get_loc_addr): Delete.
327 (rich_location::add_range): Drop params "start" and "finish" in
328 favor of param "loc". Drop overloaded variants taking a
329 source_range or location_range *.
330 (rich_location::lazily_expand_location): Delete in favor of...
331 (rich_location::get_expanded_location): New decl.
332 (rich_location::m_loc): Delete field.
333 (rich_location::m_column_override): New field.
334 * line-map.c (rich_location::rich_location): Drop name of
335 line_maps * param. Update initializations for deletion of field
336 "m_loc" and addition of field "m_column_override". Reimplement
337 body as a call to add_range. Delete overloaded variant taking a
338 source_range.
339 (rich_location::get_loc): New function.
340 (rich_location::lazily_expand_location): Delete in favor of...
341 (rich_location::get_expanded_location): New function.
342 (rich_location::override_column): Reimplement.
343 (rich_location::add_range): Drop params "start" and "finish" in
344 favor of param "loc". Eliminate location expansion in favor of
345 simply storing loc. Drop overloaded variants taking a
346 source_range or location_range *.
347 (rich_location::set_range): Eliminate location expansion.
348
349 2016-02-29 David Malcolm <dmalcolm@redhat.com>
350
351 PR preprocessor/69985
352 (linemap_position_for_loc_and_offset): Rename param from "offset"
353 to "column_offset". Right-shift the column_offset by m_range_bits
354 of the pertinent ordinary map whenever offsetting a
355 source_location. For clarity, offset the column by the column
356 offset, rather than the other way around.
357
358 2016-02-23 David Malcolm <dmalcolm@redhat.com>
359
360 PR preprocessor/69126
361 PR preprocessor/69543
362 * line-map.c (linemap_compare_locations): At the function top,
363 replace inlined bodies of get_location_from_adhoc_loc with calls
364 to get_location_from_adhoc_loc. Add a pair of calls to
365 get_location_from_adhoc_loc at the bottom of the function, to
366 avoid meaningless comparisons of ad-hoc and non-ad-hoc locations.
367
368 2016-02-08 David Malcolm <dmalcolm@redhat.com>
369
370 PR preprocessor/69664
371 * errors.c (cpp_diagnostic_with_line): Only call
372 rich_location::override_column if the column is non-zero.
373 * line-map.c (rich_location::override_column): Update columns
374 within m_ranges[0]. Add assertions to verify that doing so is
375 sane.
376
377 2016-02-05 Jakub Jelinek <jakub@redhat.com>
378
379 PR c++/69628
380 * charset.c (cpp_interpret_charconst): Clear *PCHARS_SEEN
381 and *UNSIGNEDP if bailing out early due to errors.
382
383 2016-01-28 Jakub Jelinek <jakub@redhat.com>
384
385 PR pch/68176
386 * files.c (_cpp_find_file): Set file->implicit_preinclude even if
387 included from file->implicit_preinclude header.
388
389 * directives.c (destringize_and_run): Adjust prototype.
390
391 2016-01-27 David Malcolm <dmalcolm@redhat.com>
392
393 PR preprocessor/69126
394 * directives.c (destringize_and_run): Add expansion_loc param; use
395 it when handling unexpanded pragmas to fixup the locations of the
396 synthesized tokens.
397 (_cpp_do__Pragma): Add expansion_loc param and use it when calling
398 destringize_and_run.
399 * internal.h (_cpp_do__Pragma): Add expansion_loc param.
400 * macro.c (builtin_macro): Pass expansion location of _Pragma to
401 _cpp_do__Pragma.
402
403 2016-01-14 David Malcolm <dmalcolm@redhat.com>
404
405 PR preprocessor/69177
406 * line-map.c (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES): New
407 constant.
408 (LINE_MAP_MAX_LOCATION_WITH_COLS): Add note about unit tests
409 to comment.
410 (can_be_stored_compactly_p): Reduce threshold from
411 LINE_MAP_MAX_LOCATION_WITH_COLS to
412 LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES.
413 (get_combined_adhoc_loc): Likewise.
414 (get_range_from_loc): Likewise.
415 (linemap_line_start): Ensure that a new ordinary map is created
416 when transitioning from range-packing being enabled to disabled,
417 at the LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES threshold. Set
418 range_bits to 0 for new ordinary maps when beyond this limit.
419 Prevent the "increase the column bits of a freshly created map"
420 optimization if the range bits has reduced.
421
422 2016-01-08 Jakub Jelinek <jakub@redhat.com>
423
424 PR c++/69145
425 * files.c (cpp_included_before): If IS_ADHOC_LOC (location), lookup
426 real location from the line_table.
427
428 2016-01-04 Jakub Jelinek <jakub@redhat.com>
429
430 Update copyright years.
431
432 2015-12-22 David Malcolm <dmalcolm@redhat.com>
433
434 * line-map.c (get_combined_adhoc_loc): Remove condition
435 on locus < RESERVED_LOCATION_COUNT when considering
436 whether a caret == start == finish location can be
437 simply stored as the caret location.
438
439 2015-12-07 David Malcolm <dmalcolm@redhat.com>
440
441 * include/line-map.h (rich_location::set_range): Add line_maps *
442 param; convert param from source_range to source_location. Drop
443 "overwrite_loc_p" param.
444 * line-map.c (rich_location::set_range): Likewise, acting as if
445 "overwrite_loc_p" were true, and getting range from the location.
446
447 2015-11-20 David Malcolm <dmalcolm@redhat.com>
448
449 PR 62314
450 * include/line-map.h (source_range::intersects_line_p): New
451 method.
452 (rich_location::~rich_location): New.
453 (rich_location::add_fixit_insert): New method.
454 (rich_location::add_fixit_remove): New method.
455 (rich_location::add_fixit_replace): New method.
456 (rich_location::get_num_fixit_hints): New accessor.
457 (rich_location::get_fixit_hint): New accessor.
458 (rich_location::MAX_FIXIT_HINTS): New constant.
459 (rich_location::m_num_fixit_hints): New field.
460 (rich_location::m_fixit_hints): New field.
461 (class fixit_hint): New class.
462 (class fixit_insert): New class.
463 (class fixit_remove): New class.
464 (class fixit_replace): New class.
465 * line-map.c (source_range::intersects_line_p): New method.
466 (rich_location::rich_location): Add initialization of
467 m_num_fixit_hints to both ctors.
468 (rich_location::~rich_location): New.
469 (rich_location::add_fixit_insert): New method.
470 (rich_location::add_fixit_remove): New method.
471 (rich_location::add_fixit_replace): New method.
472 (fixit_insert::fixit_insert): New.
473 (fixit_insert::~fixit_insert): New.
474 (fixit_insert::affects_line_p): New.
475 (fixit_remove::fixit_remove): New.
476 (fixit_remove::affects_line_p): New.
477 (fixit_replace::fixit_replace): New.
478 (fixit_replace::~fixit_replace): New.
479 (fixit_replace::affects_line_p): New.
480
481 2015-11-19 Jakub Jelinek <jakub@redhat.com>
482
483 PR preprocessor/60736
484 * include/cpplib.h (cpp_errno_filename): New prototype.
485 * errors.c (cpp_errno): Don't handle msgid "" specially, use
486 _(msgid) instead of msgid as argument to cpp_error.
487 (cpp_errno_filename): New function.
488 * files.c (read_file_guts): Use cpp_errno_filename instead of
489 cpp_errno.
490 (open_file_failed): Likewise. Use file->name if file->path is NULL
491 in diagnostics.
492
493 2015-11-13 David Malcolm <dmalcolm@redhat.com>
494
495 * errors.c (cpp_diagnostic): Pass pfile->line_table to
496 rich_location ctor.
497 (cpp_diagnostic_with_line): Likewise.
498 * include/cpplib.h (struct cpp_token): Update comment for src_loc
499 to indicate that the range of the token is "baked into" the
500 source_location.
501 * include/line-map.h (source_location): Update the descriptive
502 comment to reflect the packing scheme for short ranges, adding
503 worked examples of location encoding.
504 (struct line_map_ordinary): Drop field "column_bits" in favor
505 of field "m_column_and_range_bits"; add field "m_range_bits".
506 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
507 (location_adhoc_data): Add source_range field.
508 (struct line_maps): Add fields "default_range_bits",
509 "num_optimized_ranges" and "num_unoptimized_ranges".
510 (get_combined_adhoc_loc): Add source_range param.
511 (get_range_from_loc): New declaration.
512 (pure_location_p): New prototype.
513 (COMBINE_LOCATION_DATA): Add source_range param.
514 (SOURCE_LINE): Update for renaming of column_bits.
515 (SOURCE_COLUMN): Likewise. Shift the column right by the map's
516 range_bits.
517 (LAST_SOURCE_LINE_LOCATION): Update for renaming of column_bits.
518 (linemap_position_for_line_and_column): Add line_maps * params.
519 (rich_location::rich_location): Likewise.
520 * lex.c (_cpp_lex_direct): Capture the range of the token, baking
521 it into token->src_loc via a call to COMBINE_LOCATION_DATA.
522 * line-map.c (LINE_MAP_MAX_COLUMN_NUMBER): Reduce from 1U << 17 to
523 1U << 12.
524 (location_adhoc_data_hash): Add the src_range into
525 the hash value.
526 (location_adhoc_data_eq): Require equality of the src_range
527 values.
528 (can_be_stored_compactly_p): New function.
529 (get_combined_adhoc_loc): Add src_range param, and store it,
530 via a bit-packing scheme for short ranges, otherwise within the
531 lookaside table. Remove the requirement that data is non-NULL.
532 (get_range_from_adhoc_loc): New function.
533 (get_range_from_loc): New function.
534 (pure_location_p): New function.
535 (linemap_add): Ensure that start_location has zero for the
536 range_bits, unless we're past LINE_MAP_MAX_LOCATION_WITH_COLS.
537 Initialize range_bits to zero. Assert that the start_location
538 is "pure".
539 (linemap_line_start): Assert that the
540 column_and_range_bits >= range_bits.
541 Update determinination of whether we need to start a new map
542 using the effective column bits, without the range bits.
543 Use the set's default_range_bits in new maps, apart from
544 those with column_bits == 0, which should also have 0 range_bits.
545 Increase the column bits for new maps by the range bits.
546 When adding lines to an existing map, use set->highest_line
547 directly rather than offsetting highest by SOURCE_COLUMN.
548 Add assertions to sanity-check the return value.
549 (linemap_position_for_column): Offset to_column by range_bits.
550 Update set->highest_location if necessary.
551 (linemap_position_for_line_and_column): Add line_maps * param.
552 Update the calculation to offset the column by range_bits, and
553 conditionalize it on being <= LINE_MAP_MAX_LOCATION_WITH_COLS.
554 Bound it by LINEMAPS_MACRO_LOWEST_LOCATION. Update
555 set->highest_location if necessary.
556 (linemap_position_for_loc_and_offset): Handle ad-hoc locations;
557 pass "set" to linemap_position_for_line_and_column.
558 (linemap_macro_map_loc_unwind_toward_spelling): Add line_maps
559 param. Handle ad-hoc locations.
560 (linemap_location_in_system_header_p): Pass on "set" to call to
561 linemap_macro_map_loc_unwind_toward_spelling.
562 (linemap_macro_loc_to_spelling_point): Retain ad-hoc locations.
563 Pass on "set" to call to
564 linemap_macro_map_loc_unwind_toward_spelling.
565 (linemap_resolve_location): Retain ad-hoc locations. Pass on
566 "set" to call to linemap_macro_map_loc_unwind_toward_spelling.
567 (linemap_unwind_toward_expansion): Pass on "set" to call to
568 linemap_macro_map_loc_unwind_toward_spelling.
569 (linemap_expand_location): Extract the data pointer before
570 extracting the location.
571 (rich_location::rich_location): Add line_maps param; use it to
572 extract the range from the source_location.
573 * location-example.txt: Regenerate, showing new representation.
574
575 2015-11-06 David Malcolm <dmalcolm@redhat.com>
576
577 * errors.c (cpp_diagnostic): Update for change in signature
578 of "error" callback.
579 (cpp_diagnostic_with_line): Likewise, calling override_column
580 on the rich_location.
581 * include/cpplib.h (struct cpp_callbacks): Within "error"
582 callback, convert param from source_location to rich_location *,
583 and drop column_override param.
584 * include/line-map.h (struct source_range): New struct.
585 (struct location_range): New struct.
586 (class rich_location): New class.
587 (linemap_client_expand_location_to_spelling_point): New declaration.
588 * line-map.c (rich_location::rich_location): New ctors.
589 (rich_location::lazily_expand_location): New method.
590 (rich_location::override_column): New method.
591 (rich_location::add_range): New methods.
592 (rich_location::set_range): New method.
593
594 2015-11-06 David Malcolm <dmalcolm@redhat.com>
595
596 * include/line-map.h (struct linemap_stats): Add fields
597 "adhoc_table_size" and "adhoc_table_entries_used".
598 * line-map.c (linemap_get_statistics): Populate above fields.
599
600 2015-11-04 Mikhail Maltsev <maltsevm@gmail.com>
601
602 * config.in: Regenerate.
603 * configure: Regenerate.
604 * configure.ac: Remove ENABLE_CHECKING.
605
606 2015-11-03 Uros Bizjak <ubizjak@gmail.com>
607
608 * lex.c (search_line_sse42): Correctly advance the pointer to an
609 aligned address.
610
611 2015-11-02 David Malcolm <dmalcolm@redhat.com>
612
613 * include/line-map.h (source_location): In the table in the
614 descriptive comment, show UNKNOWN_LOCATION, BUILTINS_LOCATION,
615 LINE_MAP_MAX_LOCATION_WITH_COLS, LINE_MAP_MAX_SOURCE_LOCATION.
616 Add notes about ad-hoc values.
617
618 2015-10-21 Mikhail Maltsev <maltsevm@gmail.com>
619
620 * include/line-map.h: Use CHECKING_P instead of ENABLE_CHECKING.
621 * init.c: Likewise.
622 * macro.c (struct macro_arg_token_iter, set_arg_token,
623 macro_arg_token_iter_init, macro_arg_token_iter_forward,
624 macro_arg_token_iter_get_token, macro_arg_token_iter_get_location,
625 alloc_expanded_arg_mem, _cpp_backup_tokens): Likewise.
626
627 * config.in: Regenerate.
628 * configure: Regenerate.
629 * configure.ac (CHECKING_P): Define.
630 * system.h (fancy_abort): Declare.
631 (abort): Define.
632 (gcc_assert): Define. Use CHECKING_P.
633
634 2015-10-13 Mikhail Maltsev <maltsevm@gmail.com>
635
636 * system.h (CHECKING_P, gcc_checking_assert): Define.
637
638 2015-09-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
639
640 PR c/66415
641 * line-map.c (linemap_position_for_loc_and_offset): Handle the
642 case of long lines encoded in multiple maps.
643
644 2015-09-07 Marek Polacek <polacek@redhat.com>
645
646 * system.h (INTTYPE_MINIMUM): Rewrite to avoid shift warning.
647
648 2015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
649
650 * configure: Regenerate.
651
652 2015-07-08 Thomas Schwinge <thomas@codesourcery.com>
653
654 * include/line-map.h (RESERVED_LOCATION_COUNT): Change type to
655 source_location.
656
657 2015-07-02 Paolo Carlini <paolo.carlini@oracle.com>
658
659 PR preprocessor/53690
660 * charset.c (_cpp_valid_ucn): Add cppchar_t * parameter and change
661 return type to bool. Fix encoding of \u0000 and \U00000000 in C++.
662 (convert_ucn): Adjust call.
663 * lex.c (forms_identifier_p): Likewise.
664 * internal.h (_cpp_valid_ucn): Adjust declaration.
665
666 2015-06-30 Edward Smith-Rowland <3dw4rd@verizon.net>
667
668 Implement N4197 - Adding u8 character literals
669 * include/cpplib.h (UTF8CHAR, UTF8CHAR_USERDEF): New cpp tokens;
670 (struct cpp_options): Add utf8_char_literals.
671 * init.c (struct lang_flags): Add utf8_char_literals;
672 (struct lang_flags lang_defaults): Add column for utf8_char_literals.
673 * macro.c (stringify_arg()): Treat CPP_UTF8CHAR token;
674 * expr.c (cpp_userdef_char_remove_type(), cpp_userdef_char_add_type()):
675 Treat CPP_UTF8CHAR_USERDEF, CPP_UTF8CHAR tokens;
676 (cpp_userdef_char_p()): Treat CPP_UTF8CHAR_USERDEF token;
677 (eval_token(), _cpp_parse_expr()): Treat CPP_UTF8CHAR token.
678 * lex.c (lex_string(), _cpp_lex_direct()): Include CPP_UTF8CHAR tokens.
679 * charset.c (converter_for_type(), cpp_interpret_charconst()):
680 Treat CPP_UTF8CHAR token.
681
682 2015-06-30 Uros Bizjak <ubizjak@gmail.com>
683
684 * lex.c (search_line_sse42) [__GCC_ASM_FLAG_OUTPUTS__]: New main
685 loop using asm flag outputs.
686
687 2015-06-08 Marek Polacek <polacek@redhat.com>
688
689 PR c/66415
690 * line-map.c (linemap_position_for_loc_and_offset): Remove
691 linemap_assert_fails; reverse conditions.
692
693 2015-05-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
694
695 * line-map.c (LINE_MAP_MAX_COLUMN_NUMBER
696 LINE_MAP_MAX_LOCATION_WITH_COLS,LINE_MAP_MAX_SOURCE_LOCATION):
697 New constants.
698 (linemap_line_start): Use them.
699 (linemap_position_for_column): Use them.
700
701 2015-05-20 David Malcolm <dmalcolm@redhat.com>
702
703 * include/line-map.h (MAP_START_LOCATION): Eliminate the non-const
704 variant, and tweak comment for the const variant.
705 (ORDINARY_MAP_STARTING_LINE_NUMBER): Drop the non-const variant.
706 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
707 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
708 (SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
709 (ORDINARY_MAP_FILE_NAME): Drop the non-const variant.
710 (MACRO_MAP_MACRO): Likewise.
711 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
712 (MACRO_MAP_LOCATIONS): Likewise.
713 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
714 * line-map.c (linemap_add): Replace writes through macros with
715 direct field accesses.
716 (linemap_enter_macro): Likewise.
717 (linemap_line_start): Likewise.
718
719 2015-05-19 David Malcolm <dmalcolm@redhat.com>
720
721 * directives.c (do_line): Strengthen local "map" from
722 const line_map * to const line_map_ordinary *.
723 (do_linemarker): Likewise.
724 (_cpp_do_file_change): Assert that we're not dealing with
725 a macro map. Introduce local "ord_map" via a call to
726 linemap_check_ordinary, guarded within the check for
727 non-NULL. Use it for typesafety.
728 * files.c (cpp_make_system_header): Strengthen local "map" from
729 const line_map * to const line_map_ordinary *.
730 * include/cpplib.h (struct cpp_callbacks): Likewise for second
731 parameter of "file_change" callback.
732 * include/line-map.h (struct line_map): Convert from a struct
733 containing a union to a base class.
734 (struct line_map_ordinary): Convert to a subclass of line_map.
735 (struct line_map_macro): Likewise.
736 (linemap_check_ordinary): Strengthen return type from line_map *
737 to line_map_ordinary *, and add a const-variant.
738 (linemap_check_macro): New pair of functions.
739 (ORDINARY_MAP_STARTING_LINE_NUMBER): Strengthen param from
740 const line_map * to const line_map_ordinary *, eliminating call
741 to linemap_check_ordinary. Likewise for the non-const variant.
742 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
743 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
744 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Likewise.
745 (ORDINARY_MAP_FILE_NAME): Likewise.
746 (MACRO_MAP_MACRO): Strengthen param from const line_map * to
747 const line_map_macro *. Likewise for the non-const variant.
748 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
749 (MACRO_MAP_LOCATIONS): Likewise.
750 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
751 (struct maps_info): Replace with...
752 (struct maps_info_ordinary):...this and...
753 (struct maps_info_macro): ...this.
754 (struct line_maps): Convert fields "info_ordinary" and
755 "info_macro" to the above new structs.
756 (LINEMAPS_MAP_INFO): Delete both functions.
757 (LINEMAPS_MAPS): Likewise.
758 (LINEMAPS_ALLOCATED): Rewrite both variants to avoid using
759 LINEMAPS_MAP_INFO.
760 (LINEMAPS_USED): Likewise.
761 (LINEMAPS_CACHE): Likewise.
762 (LINEMAPS_MAP_AT): Likewise.
763 (LINEMAPS_ORDINARY_MAPS): Strengthen return type from line_map *
764 to line_map_ordinary *.
765 (LINEMAPS_ORDINARY_MAP_AT): Likewise.
766 (LINEMAPS_LAST_ORDINARY_MAP): Likewise.
767 (LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
768 (LINEMAPS_MACRO_MAPS): Strengthen return type from line_map * to
769 line_map_macro *.
770 (LINEMAPS_MACRO_MAP_AT): Likewise.
771 (LINEMAPS_LAST_MACRO_MAP): Likewise.
772 (LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
773 (linemap_map_get_macro_name): Strengthen param from
774 const line_map * to const line_map_macro *.
775 (SOURCE_LINE): Strengthen first param from const line_map * to
776 const line_map_ordinary *, removing call to
777 linemap_check_ordinary.
778 (SOURCE_COLUMN): Likewise.
779 (LAST_SOURCE_LINE_LOCATION): Likewise.
780 (LAST_SOURCE_LINE): Strengthen first param from const line_map *
781 to const line_map_ordinary *.
782 (LAST_SOURCE_COLUMN): Likewise.
783 (INCLUDED_FROM): Strengthen return type from line_map * to
784 line_map_ordinary *., and second param from const line_map *
785 to const line_map_ordinary *, removing call to
786 linemap_check_ordinary.
787 (MAIN_FILE_P): Strengthen param from const line_map * to
788 const line_map_ordinary *, removing call to
789 linemap_check_ordinary.
790 (linemap_position_for_line_and_column): Strengthen param from
791 const line_map * to const line_map_ordinary *.
792 (LINEMAP_FILE): Strengthen param from const line_map * to
793 const line_map_ordinary *, removing call to
794 linemap_check_ordinary.
795 (LINEMAP_LINE): Likewise.
796 (LINEMAP_SYSP): Likewise.
797 (linemap_resolve_location): Strengthen final param from
798 const line_map ** to const line_map_ordinary **.
799 * internal.h (CPP_INCREMENT_LINE): Likewise for local "map".
800 (linemap_enter_macro): Strengthen return type from
801 const line_map * to const line_map_macro *.
802 (linemap_add_macro_token): Likewise for first param.
803 * line-map.c (linemap_check_files_exited): Strengthen local "map"
804 from const line_map * to const line_map_ordinary *.
805 (new_linemap): Introduce local "map_size" and use it when
806 calculating how large the buffer should be. Rewrite based
807 on change of info_macro and info_ordinary into distinct types.
808 (linemap_add): Strengthen locals "map" and "from" from line_map *
809 to line_map_ordinary *.
810 (linemap_enter_macro): Strengthen return type from
811 const line_map * to const line_map_macro *, and local "map" from
812 line_map * to line_map_macro *.
813 (linemap_add_macro_token): Strengthen param "map" from
814 const line_map * to const line_map_macro *.
815 (linemap_line_start): Strengthen local "map" from line_map * to
816 line_map_ordinary *.
817 (linemap_position_for_column): Likewise.
818 (linemap_position_for_line_and_column): Strengthen first param
819 from const line_map * to const line_map_ordinary *.
820 (linemap_position_for_loc_and_offset): Strengthen local "map" from
821 const line_map * to const line_map_ordinary *.
822 (linemap_ordinary_map_lookup): Likewise for return type and locals
823 "cached" and "result".
824 (linemap_macro_map_lookup): Strengthen return type and locals
825 "cached" and "result" from const line_map * to
826 const line_map_macro *.
827 (linemap_macro_map_loc_to_exp_point): Likewise for param "map".
828 (linemap_macro_map_loc_to_def_point): Likewise.
829 (linemap_macro_map_loc_unwind_toward_spelling): Likewise.
830 (linemap_get_expansion_line): Strengthen local "map" from
831 const line_map * to const line_map_ordinary *.
832 (linemap_get_expansion_filename): Likewise.
833 (linemap_map_get_macro_name): Strengthen param from
834 const line_map * to const line_map_macro *.
835 (linemap_location_in_system_header_p): Add call to
836 linemap_check_ordinary in region guarded by
837 !linemap_macro_expansion_map_p. Introduce local "macro_map" via
838 linemap_check_macro in other region, using it in place of "map"
839 for typesafety.
840 (first_map_in_common_1): Add calls to linemap_check_macro.
841 (trace_include): Strengthen param "map" from const line_map * to
842 const line_map_ordinary *.
843 (linemap_macro_loc_to_spelling_point): Strengthen final param from
844 const line_map ** to const line_map_ordinary **. Replace a
845 C-style cast with a const_cast, and add calls to
846 linemap_check_macro and linemap_check_ordinary.
847 (linemap_macro_loc_to_def_point): Likewise.
848 (linemap_macro_loc_to_exp_point): Likewise.
849 (linemap_resolve_location): Strengthen final param from
850 const line_map ** to const line_map_ordinary **.
851 (linemap_unwind_toward_expansion): Introduce local "macro_map" via
852 a checked cast and use it in place of *map.
853 (linemap_unwind_to_first_non_reserved_loc): Strengthen local
854 "map1" from const line_map * to const line_map_ordinary *.
855 (linemap_expand_location): Introduce local "ord_map" via a checked
856 cast and use it in place of map.
857 (linemap_dump): Make local "map" const. Strengthen local
858 "includer_map" from line_map * to const line_map_ordinary *.
859 Introduce locals "ord_map" and "macro_map" via checked casts and
860 use them in place of "map" for typesafety.
861 (linemap_dump_location): Strengthen local "map" from
862 const line_map * to const line_map_ordinary *.
863 (linemap_get_file_highest_location): Update for elimination of
864 union.
865 (linemap_get_statistics): Strengthen local "cur_map" from
866 line_map * to const line_map_macro *. Update uses of sizeof to
867 use the appropriate line_map subclasses.
868 * macro.c (_cpp_warn_if_unused_macro): Add call to
869 linemap_check_ordinary.
870 (builtin_macro): Strengthen local "map" from const line_map * to
871 const line_map_macro *.
872 (enter_macro_context): Likewise.
873 (replace_args): Likewise.
874 (tokens_buff_put_token_to): Likewise for param "map".
875 (tokens_buff_add_token): Likewise.
876
877 2015-05-13 David Malcolm <dmalcolm@redhat.com>
878
879 * include/line-map.h (source_location): Add a reference to
880 location-example.txt to the descriptive comment.
881 * location-example.txt: New file.
882
883 2015-05-13 David Malcolm <dmalcolm@redhat.com>
884
885 * include/line-map.h (MAX_SOURCE_LOCATION): Convert from a macro
886 to a const source_location.
887 (RESERVED_LOCATION_COUNT): Likewise.
888 (linemap_check_ordinary): Convert from a macro to a pair of inline
889 functions, for const/non-const arguments.
890 (MAP_START_LOCATION): Likewise.
891 (ORDINARY_MAP_STARTING_LINE_NUMBER): Likewise.
892 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
893 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
894 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Convert from a macro to a
895 pair of inline functions, for const/non-const arguments, where the
896 latter is named...
897 (SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): New function.
898 (ORDINARY_MAP_FILE_NAME): Convert from a macro to a pair of inline
899 functions, for const/non-const arguments.
900 (MACRO_MAP_MACRO): Likewise.
901 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
902 (MACRO_MAP_LOCATIONS): Likewise.
903 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
904 (LINEMAPS_MAP_INFO): Likewise.
905 (LINEMAPS_MAPS): Likewise.
906 (LINEMAPS_ALLOCATED): Likewise.
907 (LINEMAPS_USED): Likewise.
908 (LINEMAPS_CACHE): Likewise.
909 (LINEMAPS_ORDINARY_CACHE): Likewise.
910 (LINEMAPS_MACRO_CACHE): Likewise.
911 (LINEMAPS_MAP_AT): Convert from a macro to an inline function.
912 (LINEMAPS_LAST_MAP): Likewise.
913 (LINEMAPS_LAST_ALLOCATED_MAP): Likewise.
914 (LINEMAPS_ORDINARY_MAPS): Likewise.
915 (LINEMAPS_ORDINARY_MAP_AT): Likewise.
916 (LINEMAPS_ORDINARY_ALLOCATED): Likewise.
917 (LINEMAPS_ORDINARY_USED): Likewise.
918 (LINEMAPS_LAST_ORDINARY_MAP): Likewise.
919 (LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
920 (LINEMAPS_MACRO_MAPS): Likewise.
921 (LINEMAPS_MACRO_MAP_AT): Likewise.
922 (LINEMAPS_MACRO_ALLOCATED): Likewise.
923 (LINEMAPS_MACRO_USED): Likewise.
924 (LINEMAPS_MACRO_LOWEST_LOCATION): Likewise.
925 (LINEMAPS_LAST_MACRO_MAP): Likewise.
926 (LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
927 (IS_ADHOC_LOC): Likewise.
928 (COMBINE_LOCATION_DATA): Likewise.
929 (SOURCE_LINE): Likewise.
930 (SOURCE_COLUMN): Likewise.
931 (LAST_SOURCE_LINE_LOCATION): Likewise.
932 (LAST_SOURCE_LINE): Likewise.
933 (LAST_SOURCE_COLUMN): Likewise.
934 (LAST_SOURCE_LINE_LOCATION)
935 (INCLUDED_FROM): Likewise.
936 (MAIN_FILE_P): Likewise.
937 (LINEMAP_FILE): Likewise.
938 (LINEMAP_LINE): Likewise.
939 (LINEMAP_SYSP): Likewise.
940 (linemap_location_before_p): Likewise.
941 * line-map.c (linemap_check_files_exited): Make local "map" const.
942 (linemap_add): Use SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS.
943 (linemap_line_start): Likewise.
944
945 2015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
946
947 * aclocal.m4: Regenerated with automake-1.11.6.
948
949 2015-05-13 David Malcolm <dmalcolm@redhat.com>
950
951 * include/line-map.h (linemap_assert): Move up within the file to
952 before all of the map accessor macros.
953 (linemap_assert_fails): Likewise.
954 (linemap_check_ordinary): Likewise.
955 (linemap_macro_expansion_map_p): Likewise.
956
957 2015-05-12 David Malcolm <dmalcolm@redhat.com>
958
959 * directives.c (do_line): Set seen_line_directive on line_table.
960 (do_linemarker): Likewise.
961 * include/line-map.h (struct line_maps): Add new field
962 "seen_line_directive".
963
964 2015-05-08 Jason Merrill <jason@redhat.com>
965
966 * include/cpplib.h: Add CPP_W_CXX11_COMPAT.
967 (struct cpp_options): Add cpp_warn_cxx11_compat.
968 * init.c (cpp_create_reader): Initialize it.
969 * lex.c (lex_string): Add -Wc++11-compat warning.
970
971 2015-05-05 David Malcolm <dmalcolm@redhat.com>
972
973 * pch.c (cpp_valid_state): Fix indentation so that it reflects the
974 block structure.
975
976 2015-05-05 David Malcolm <dmalcolm@redhat.com>
977
978 * include/line-map.h: Fix comment at the top of the file.
979 (source_location): Rewrite and expand the comment for this
980 typedef, adding an ascii-art table to clarify how source_location
981 values are allocated.
982 * line-map.c: Fix comment at the top of the file.
983
984 2015-04-09 Richard Biener <rguenther@suse.de>
985
986 PR pch/65550
987 * files.c (pch_open_file): Allow main and pre-included files
988 when trying to open a PCH.
989
990 2015-04-06 Jakub Jelinek <jakub@redhat.com>
991
992 PR preprocessor/61977
993 * lex.c (cpp_peek_token): If peektok is CPP_EOF, back it up
994 with all tokens peeked by the current function.
995
996 2015-04-02 Jakub Jelinek <jakub@redhat.com>
997
998 PR preprocessor/61977
999 * lex.c (cpp_peek_token): Temporarily clear pfile->cb.line_change.
1000
1001 2015-03-23 Jakub Jelinek <jakub@redhat.com>
1002
1003 PR preprocessor/65238
1004 * internal.h (_cpp_scan_out_logical_line): Add third argument.
1005 * directives.c (prepare_directive_trad): Pass false to it.
1006 * traditional.c (_cpp_read_logical_line_trad,
1007 _cpp_create_trad_definition): Likewise.
1008 (struct fun_macro): Add paramc field.
1009 (fun_like_macro): New function.
1010 (maybe_start_funlike): Handle NODE_BUILTIN macros. Initialize
1011 macro->paramc field.
1012 (save_argument): Use macro->paramc instead of
1013 macro->node->value.macro->paramc.
1014 (push_replacement_text): Formatting fix.
1015 (recursive_macro): Use fun_like_macro helper.
1016 (_cpp_scan_out_logical_line): Likewise. Add BUILTIN_MACRO_ARG
1017 argument. Initialize fmacro.paramc field. Handle builtin
1018 function-like macros.
1019
1020 2015-03-16 Edward Smith-Rowland <3dw4rd@verizon.net>
1021
1022 PR c++/64626
1023 * lex.c (lex_number): If a number ends with digit-seps (') skip back
1024 and let lex_string take them.
1025
1026 2015-03-02 Markus Trippelsdorf <markus@trippelsdorf.de>
1027
1028 PR target/65261
1029 * lex.c (search_line_fast): Silence ubsan errors.
1030
1031 2015-02-03 <dodji@redhat.com>
1032
1033 PR preprocessor/64803
1034 * internal.h (cpp_reader::top_most_macro_node): New data member.
1035 * macro.c (enter_macro_context): Pass the location of the end of
1036 the top-most invocation of the function-like macro, or the
1037 location of the expansion point of the top-most object-like macro.
1038 (cpp_get_token_1): Store the top-most macro node in the new
1039 pfile->top_most_macro_node data member.
1040 (_cpp_pop_context): Clear the new cpp_reader::top_most_macro_node
1041 data member.
1042
1043 2015-01-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
1044
1045 * lex.c (search_line_fast): Change __ARM_NEON__ to __ARM_NEON.
1046
1047 2015-01-23 Marek Polacek <polacek@redhat.com>
1048
1049 DR#412
1050 PR preprocessor/60570
1051 * directives.c (do_elif): Don't evaluate #elif conditionals
1052 when they don't need to be.
1053
1054 2015-01-16 Jakub Jelinek <jakub@redhat.com>
1055
1056 * expr.c (cpp_classify_number): Add N_() around ?: string
1057 literals used in cpp_error_with_line call as format string.
1058
1059 2015-01-05 Jakub Jelinek <jakub@redhat.com>
1060
1061 Update copyright years.
1062
1063 2014-12-19 Jakub Jelinek <jakub@redhat.com>
1064
1065 PR preprocessor/63831
1066 * directives.c (lex_macro_node): Remove __has_attribute__ handling.
1067 * internal.h (struct spec_node): Remove n__has_attribute__ field.
1068 (struct lexer_state): Remove in__has_attribute__ field.
1069 * macro.c (_cpp_builtin_macro_text): Handle BT_HAS_ATTRIBUTE.
1070 * identifiers.c (_cpp_init_hashtable): Remove __has_attribute__
1071 handling.
1072 * init.c (builtin_array): Add __has_attribute and __has_cpp_attribute.
1073 (cpp_init_special_builtins): Don't initialize __has_attribute
1074 or __has_cpp_attribute if CLK_ASM or pfile->cb.has_attribute is NULL.
1075 * traditional.c (enum ls): Remove ls_has_attribute,
1076 ls_has_attribute_close.
1077 (_cpp_scan_out_logical_line): Remove __has_attribute__ handling.
1078 * include/cpplib.h (enum cpp_builtin_type): Add BT_HAS_ATTRIBUTE.
1079 * pch.c (cpp_read_state): Remove __has_attribute__ handling.
1080 * expr.c (eval_token): Likewise.
1081 (parse_has_attribute): Removed.
1082
1083 2014-12-11 Uros Bizjak <ubizjak@gmail.com>
1084
1085 * directives.c (cpp_define_formatted): Use xvasprintf.
1086
1087 2014-12-05 Manuel López-Ibáñez <manu@gcc.gnu.org>
1088
1089 * line-map.c (linemap_position_for_loc_and_offset): Add new
1090 linemap_assert_fails.
1091
1092 2014-12-02 Manuel López-Ibáñez <manu@gcc.gnu.org>
1093
1094 * include/line-map.h (linemap_assert_fails): Declare.
1095 * line-map.c (linemap_position_for_loc_and_offset): Use it.
1096
1097 2014-12-02 Manuel López-Ibáñez <manu@gcc.gnu.org>
1098
1099 * line-map.c (linemap_add): Fix typo.
1100 (linemap_line_start): Fix whitespace.
1101
1102 2014-11-29 John Schmerge <jbschmerge@gmail.com>
1103
1104 PR preprocessor/41698
1105 * charset.c (one_utf8_to_utf16): Do not produce surrogate pairs
1106 for 0xffff.
1107
1108 2014-11-25 Jakub Jelinek <jakub@redhat.com>
1109
1110 PR preprocessor/60436
1111 * line-map.c (linemap_line_start): If highest is above 0x60000000
1112 and we are still tracking columns or highest is above 0x70000000,
1113 force add_map.
1114
1115 2014-11-20 Uros Bizjak <ubizjak@gmail.com>
1116
1117 PR target/63966
1118 * lex.c [__i386__ || __x86_64__]: Compile special SSE functions
1119 only for (__GNUC__ >= 5 || !defined(__PIC__)).
1120
1121 2014-11-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
1122
1123 * include/line-map.h: Include EXPR, so that unused variable warnings
1124 do not occur.
1125
1126 2014-11-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
1127
1128 PR fortran/44054
1129 * include/line-map.h (linemap_position_for_loc_and_offset):
1130 Declare.
1131 * line-map.c (linemap_position_for_loc_and_offset): New.
1132
1133 2014-11-11 David Malcolm <dmalcolm@redhat.com>
1134
1135 * ChangeLog.jit: New.
1136
1137 2014-11-10 Edward Smith-Rowland <3dw4rd@verizon.net>
1138
1139 * include/cpplib.h (cpp_callbacks): Add has_attribute.
1140 * internal.h (lexer_state): Add in__has_attribute__.
1141 * directives.c (lex_macro_node): Prevent use of __has_attribute__
1142 as a macro.
1143 * expr.c (parse_has_attribute): New function; (eval_token): Look for
1144 __has_attribute__ and route to parse_has_attribute.
1145 * identifiers.c (_cpp_init_hashtable): Initialize n__has_attribute__.
1146 * pch.c (cpp_read_state): Initialize n__has_attribute__.
1147 * traditional.c (enum ls): Add ls_has_attribute, ls_has_attribute_close;
1148 (_cpp_scan_out_logical_line): Attend to __has_attribute__.
1149
1150 2014-11-06 Joseph Myers <joseph@codesourcery.com>
1151
1152 * include/cpp-id-data.h (struct cpp_macro): Update comment
1153 regarding parameters.
1154 * include/cpplib.h (struct cpp_macro_arg, struct cpp_identifier):
1155 Add spelling fields.
1156 (struct cpp_token): Update comment on macro_arg.
1157 * internal.h (_cpp_save_parameter): Add extra argument.
1158 (_cpp_spell_ident_ucns): New declaration.
1159 * lex.c (lex_identifier): Add SPELLING argument. Set *SPELLING to
1160 original spelling of identifier.
1161 (_cpp_lex_direct): Update calls to lex_identifier.
1162 (_cpp_spell_ident_ucns): New function, factored out of
1163 cpp_spell_token.
1164 (cpp_spell_token): Adjust FORSTRING argument semantics to return
1165 original spelling of identifiers. Use _cpp_spell_ident_ucns in
1166 !FORSTRING case.
1167 (_cpp_equiv_tokens): Check spellings of identifiers and macro
1168 arguments are identical.
1169 * macro.c (macro_arg_saved_data): New structure.
1170 (paste_tokens): Use original spellings of identifiers from
1171 cpp_spell_token.
1172 (_cpp_save_parameter): Add argument SPELLING. Save both canonical
1173 node and its value.
1174 (parse_params): Update calls to _cpp_save_parameter.
1175 (lex_expansion_token): Save spelling of macro argument tokens.
1176 (_cpp_create_definition): Extract canonical node from saved data.
1177 (cpp_macro_definition): Use UCNs in spelling of macro name. Use
1178 original spellings of macro argument tokens and identifiers.
1179 * traditional.c (scan_parameters): Update call to
1180 _cpp_save_parameter.
1181
1182 2014-11-05 Joseph Myers <joseph@codesourcery.com>
1183
1184 PR preprocessor/9449
1185 * init.c (lang_defaults): Enable extended identifiers for C++ and
1186 C99-based standards.
1187
1188 2014-10-22 Alan Modra <amodra@gmail.com>
1189
1190 * symtab.c (ht_create): Use obstack_specify_allocation in place of
1191 _obstack_begin.
1192 * files.c (_cpp_init_files): Likewise.
1193 * init.c (cpp_create_reader): Likewise.
1194 * identifiers.c (_cpp_init_hashtable): Likewise.
1195
1196 2014-10-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
1197
1198 * include/line-map.h (linemap_location_from_macro_expansion_p):
1199 const struct line_maps * argument.
1200 (linemap_position_for_line_and_column): const struct line_map *
1201 argument.
1202 * line-map.c (linemap_add_macro_token): Use correct argument name
1203 in comment.
1204 (linemap_position_for_line_and_column): const struct line_map *
1205 argument.
1206 (linemap_macro_map_loc_to_def_point): Fix comment. Make static.
1207 (linemap_location_from_macro_expansion_p): const struct line_maps *
1208 argument.
1209 (linemap_resolve_location): Fix argument names in comment.
1210
1211 2014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1212
1213 * lex.c (search_line_fast): Add new version to be used for Power8
1214 and later targets when Altivec is enabled. Restrict the existing
1215 Altivec version to big-endian systems so that lvsr is not used on
1216 little endian, where it is deprecated. Remove LE-specific code
1217 from the now-BE-only version.
1218
1219 2014-10-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
1220 Jeff Law <law@redhat.com>
1221
1222 * charset.c (convert_no_conversion): Reallocate memory with 25%
1223 headroom.
1224
1225 2014-10-01 Edward Smith-Rowland <3dw4rd@verizon.net>
1226
1227 Implement SD-6: SG10 Feature Test Recommendations
1228 * internal.h (lexer_state, spec_nodes): Add in__has_include__.
1229 * directives.c: Support __has_include__ builtin.
1230 * expr.c (parse_has_include): New function to parse __has_include__
1231 builtin; (eval_token()): Use it.
1232 * files.c (_cpp_has_header()): New funtion to look for header;
1233 (open_file_failed()): Not an error to not find a header file for
1234 __has_include__.
1235 * identifiers.c (_cpp_init_hashtable()): Add entry for __has_include__.
1236 * pch.c (cpp_read_state): Lookup __has_include__.
1237 * traditional.c (enum ls, _cpp_scan_out_logical_line()): Walk through
1238 __has_include__ statements.
1239
1240 2014-09-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
1241
1242 PR preprocessor/58893
1243 * errors.c (cpp_diagnostic): Fix possible out of bounds access.
1244 * files.c (_cpp_stack_include): Initialize src_loc for IT_CMDLINE.
1245
1246 2014-09-24 Marek Polacek <polacek@redhat.com>
1247
1248 PR c/61405
1249 PR c/53874
1250 * include/cpplib.h (enum cpp_ttype): Define CPP_KEYWORD.
1251
1252 2014-09-17 Jan Hubicka <hubicka@ucw.cz>
1253
1254 * charset.c (conversion): Rename to ...
1255 (cpp_conversion): ... this one; update.
1256 * files.c (file_hash_entry): Rename to ...
1257 (cpp_file_hash_entry): ... this one ; update.
1258
1259 2014-09-17 Marek Polacek <polacek@redhat.com>
1260
1261 PR c/61854
1262 * init.c (struct lang_flags): Remove cplusplus_comments.
1263 (cpp_set_lang): Likewise.
1264 (post_options): Likewise.
1265 * lex.c (_cpp_lex_direct): Disallow C++ style comments in C90/C94.
1266
1267 2014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
1268
1269 * include/cpplib.h (struct cpp_options): Declare warn_normalize as
1270 int instead of enum.
1271
1272 2014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
1273
1274 * macro.c (replace_args): Use cpp_pedwarning, cpp_warning and
1275 CPP_W flags.
1276 * include/cpplib.h: Add CPP_W_C90_C99_COMPAT and CPP_W_PEDANTIC.
1277 * init.c (cpp_create_reader): Do not init to -1 here.
1278 * expr.c (num_binary_op): Use cpp_pedwarning.
1279
1280 2014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
1281
1282 * directives.c (check_eol_1): New.
1283 (check_eol_endif_labels): New.
1284 (check_eol): Call check_eol_1.
1285 (do_else,do_endif): Call check_eol_endif_labels.
1286
1287 2014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
1288
1289 * macro.c (warn_of_redefinition): Suppress warnings for builtins
1290 that lack the NODE_WARN flag, unless Wbuiltin-macro-redefined.
1291 (_cpp_create_definition): Use Wbuiltin-macro-redefined for
1292 builtins that lack the NODE_WARN flag.
1293 * directives.c (do_undef): Likewise.
1294 * init.c (cpp_init_special_builtins): Do not change flags
1295 depending on Wbuiltin-macro-redefined.
1296
1297 2014-08-28 Edward Smith-Rowland <3dw4rd@verizon.net>
1298
1299 PR cpp/23827 - standard C++ should not have hex float preprocessor
1300 tokens
1301 * libcpp/init.c (lang_flags): Change CXX98 flag for extended numbers
1302 from 1 to 0.
1303 * libcpp/expr.c (cpp_classify_number): Weite error message for improper
1304 use of hex floating literal.
1305
1306 2014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
1307
1308 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX1Z, CLK_CXX1Z;
1309 Rename CLK_GNUCXX1Y, CLK_CXX1Y to CLK_GNUCXX14, CLK_CXX14;
1310 * init.c (struct lang_flags lang_defaults): Add column for trigraphs;
1311 Add rows for CLK_GNUCXX1Z, CLK_CXX1Z; (cpp_set_lang): Set trigraphs;
1312 (cpp_init_builtins): Set __cplusplus to 201402L for C++14;
1313 Set __cplusplus to 201500L for C++17.
1314 * expr.c (cpp_classify_number): Change C++1y to C++14 in binary
1315 constants error message.
1316
1317 2014-08-20 Marek Polacek <polacek@redhat.com>
1318
1319 * include/cpplib.h (cpp_options): Use signed char.
1320 * lex.c (_cpp_lex_direct): Don't warn in C++ mode.
1321
1322 2014-08-19 Marek Polacek <polacek@redhat.com>
1323
1324 * lex.c (_cpp_lex_direct): Fix a typo.
1325
1326 2014-08-19 Marek Polacek <polacek@redhat.com>
1327
1328 * charset.c (_cpp_valid_ucn): Warn only if -Wc90-c99-compat.
1329 * lex.c (_cpp_lex_direct): Likewise.
1330 * macro.c (replace_args): Likewise.
1331 (parse_params): Likewise.
1332 * include/cpplib.h (cpp_options): Change cpp_warn_c90_c99_compat
1333 to char.
1334
1335 2014-08-10 Marek Polacek <polacek@redhat.com>
1336
1337 PR c/51849
1338 * lex.c (_cpp_lex_direct): Warn when -Wc90-c99-compat is in effect.
1339 * charset.c (_cpp_valid_ucn): Likewise.
1340 * include/cpplib.h (cpp_options): Add cpp_warn_c90_c99_compat.
1341 * macro.c (replace_args): Warn when -Wc90-c99-compat is in effect.
1342 (parse_params): Likewise.
1343
1344 2014-07-27 Marek Polacek <polacek@redhat.com>
1345
1346 PR c/61861
1347 * macro.c (builtin_macro): Add location parameter. Set
1348 location of builtin macro to the expansion point.
1349 (enter_macro_context): Pass location to builtin_macro.
1350
1351 2014-07-16 Dodji Seketeli <dodji@redhat.com>
1352
1353 Support location tracking for built-in macro tokens
1354 * include/line-map.h (line_maps::builtin_location): New data
1355 member.
1356 (line_map_init): Add a new parameter to initialize the new
1357 line_maps::builtin_location data member.
1358 * line-map.c (linemap_init): Initialize the
1359 line_maps::builtin_location data member.
1360 * macro.c (builtin_macro): Create a macro map and track the token
1361 resulting from the expansion of a built-in macro.
1362
1363 2014-07-10 Edward Smith-Rowland <3dw4rd@verizon.net>
1364 Jonathan Wakely <jwakely@redhat.com>
1365
1366 PR preprocessor/61389
1367 * macro.c (_cpp_arguments_ok, parse_params, create_iso_definition):
1368 Warning messages mention C++11 in c++ mode and C99 in c mode.
1369 * lex.c (lex_identifier_intern, lex_identifier): Ditto
1370
1371 2014-07-09 Edward Smith-Rowland <3dw4rd@verizon.net>
1372
1373 PR c++/58155 - -Wliteral-suffix warns about tokens which are skipped
1374 by preprocessor
1375 * lex.c (lex_raw_string ()): Do not warn about invalid suffix
1376 if skipping. (lex_string ()): Ditto.
1377
1378 2014-06-04 Edward Smith-Rowland <3dw4rd@verizon.net>
1379
1380 PR c++/61038
1381 * macro.c (stringify_arg (cpp_reader *, macro_arg *)):
1382 Combine user-defined escape logic with the other string and char logic.
1383
1384 2014-05-26 Richard Biener <rguenther@suse.de>
1385
1386 * configure.ac: Remove long long and __int64 type checks,
1387 add check for uint64_t and fail if that wasn't found.
1388 * include/cpplib.h (cpp_num_part): Use uint64_t.
1389 * config.in: Regenerate.
1390 * configure: Likewise.
1391
1392 2014-05-21 Marek Polacek <polacek@redhat.com>
1393
1394 PR c/61212
1395 * files.c (find_file_in_dir): Add parens around &&.
1396
1397 2014-05-20 Edward Smith-Rowland <3dw4rd@verizon.net>
1398
1399 PR c++/61038
1400 * macro.c (stringify_arg (cpp_reader *, macro_arg *)):
1401 Check for user-defined literal strings and user-defined literal chars
1402 to escape necessary characters.
1403
1404 2014-05-20 Richard Biener <rguenther@suse.de>
1405
1406 * configure.ac: Copy gcc logic of detecting a 64bit type.
1407 Remove HOST_WIDE_INT define.
1408 * include/cpplib.h: typedef cpp_num_part to a 64bit type,
1409 similar to how hwint.h does it.
1410 * config.in: Regenerate.
1411 * configure: Likewise.
1412
1413 2014-05-09 Joey Ye <joey.ye@arm.com>
1414
1415 * files.c (find_file_in_dir): Always try to shorten for DOS
1416 non-system headers.
1417 * init.c (ENABLE_CANONICAL_SYSTEM_HEADERS): Default enabled for DOS.
1418
1419 2014-05-07 Richard Biener <rguenther@suse.de>
1420
1421 * configure.ac: Always set need_64bit_hwint to yes.
1422 * configure: Regenerated.
1423
1424 2014-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
1425
1426 * lex.c: Remove Solaris 9 reference.
1427
1428 2014-02-24 Walter Lee <walt@tilera.com>
1429
1430 * configure.ac: Change "tilepro" triplet to "tilepro*".
1431 * configure: Regenerate.
1432
1433 2014-02-19 Jakub Jelinek <jakub@redhat.com>
1434
1435 PR preprocessor/58844
1436 * macro.c (enter_macro_context): Only push
1437 macro_real_token_count (macro) tokens rather than
1438 macro->count tokens, regardless of
1439 CPP_OPTION (pfile, track-macro-expansion).
1440
1441 2014-02-07 Jakub Jelinek <jakub@redhat.com>
1442
1443 PR preprocessor/56824
1444 * line-map.c (get_combined_adhoc_loc, linemap_get_expansion_line,
1445 linemap_get_expansion_filename, linemap_location_in_system_header_p,
1446 linemap_location_from_macro_expansion_p,
1447 linemap_macro_loc_to_spelling_point, linemap_macro_loc_to_def_point,
1448 linemap_macro_loc_to_exp_point, linemap_expand_location): Fix
1449 formatting.
1450 (linemap_compare_locations): Look through adhoc locations for both
1451 l0 and l1.
1452
1453 2014-01-23 Dodji Seketeli <dodji@redhat.com>
1454
1455 PR PR preprocessor/58580
1456 * include/line-map.h (linemap_get_file_highest_location): Declare
1457 new function.
1458 * line-map.c (linemap_get_file_highest_location): Define it.
1459
1460 2014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
1461
1462 Update copyright years
1463
1464 2013-12-09 Joseph Myers <joseph@codesourcery.com>
1465
1466 PR preprocessor/55715
1467 * expr.c (num_binary_op): Implement subtraction directly rather
1468 than with negation and falling through into addition case.
1469
1470 2013-11-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
1471
1472 * lex.c (search_line_fast): Correct for little endian.
1473
1474 2013-11-15 Joseph Myers <joseph@codesourcery.com>
1475
1476 * ucnid.tab: Add C11 and C11NOSTART data.
1477 * makeucnid.c (digit): Rename enum value to N99.
1478 (C11, N11, all_languages): New enum values.
1479 (NUM_CODE_POINTS, MAX_CODE_POINT): New macros.
1480 (flags, decomp, combining_value): Use NUM_CODE_POINTS as array
1481 size.
1482 (decomp): Use unsigned int as element type.
1483 (all_decomp): New array.
1484 (read_ucnid): Handle C11 and C11NOSTART. Use MAX_CODE_POINT.
1485 (read_table): Use MAX_CODE_POINT. Store all decompositions in
1486 all_decomp.
1487 (read_derived): Use MAX_CODE_POINT.
1488 (write_table): Use NUM_CODE_POINTS. Print N99, C11 and N11
1489 flags. Print whole array variable declaration rather than just
1490 array contents.
1491 (char_id_valid, write_context_switch): New functions.
1492 (main): Call write_context_switch.
1493 * ucnid.h: Regenerate.
1494 * include/cpplib.h (struct cpp_options): Add c11_identifiers.
1495 * init.c (struct lang_flags): Add c11_identifiers.
1496 (cpp_set_lang): Set c11_identifiers option from selected language.
1497 * internal.h (struct normalize_state): Document "previous" as
1498 previous starter character.
1499 (NORMALIZE_STATE_UPDATE_IDNUM): Take character as argument.
1500 * charset.c (DIG): Rename enum value to N99.
1501 (C11, N11): New enum values.
1502 (struct ucnrange): Give name to struct. Use short for flags and
1503 unsigned int for end of range. Include ucnid.h for whole variable
1504 declaration.
1505 (ucn_valid_in_identifier): Allow for characters up to 0x10FFFF.
1506 Allow for C11 in determining valid characters and valid start
1507 characters. Use check_nfc for non-Hangul context-dependent
1508 checks. Only store starter characters in nst->previous.
1509 (_cpp_valid_ucn): Pass new argument to
1510 NORMALIZE_STATE_UPDATE_IDNUM.
1511 * lex.c (lex_identifier): Pass new argument to
1512 NORMALIZE_STATE_UPDATE_IDNUM. Call NORMALIZE_STATE_UPDATE_IDNUM
1513 after initial non-UCN part of identifier.
1514 (lex_number): Pass new argument to NORMALIZE_STATE_UPDATE_IDNUM.
1515
1516 2013-11-15 Joseph Myers <joseph@codesourcery.com>
1517
1518 * ucnid.tab: Mark C99 digits as [C99DIG].
1519 * makeucnid.c (read_ucnid): Handle [C99DIG].
1520 (read_table): Don't check for digit characters.
1521 * ucnid.h: Regenerate.
1522
1523 2013-11-06 Tobias Burnus <burnus@net-b.de>
1524
1525 * macro.c (_cpp_builtin_macro_text): Correct
1526 wording of two warnings.
1527
1528 2013-11-05 Tobias Burnus <burnus@net-b.de>
1529
1530 * include/cpplib.h (CPP_W_DATE_TIME): Added.
1531 (cpp_options): Add warn_date_time.
1532 * init.c (cpp_create_reader): Init it.
1533 * macro.c (_cpp_builtin_macro_text): Warn when
1534 __DATE__/__TIME__/__TIMESTAMP__ is used.
1535
1536 2013-10-31 Edward Smith-Rowland <3dw4rd@verizon.net>
1537
1538 Implement C++14 digit separators.
1539 * include/cpplib.h (cpp_options): Add digit_separators flag.
1540 * internal.h (DIGIT_SEP(c)): New macro.
1541 * expr.c (cpp_classify_number): Check improper placement of digit sep;
1542 (cpp_interpret_integer): Skip over digit separators.
1543 * init.c (lang_flags): Add digit_separators flag; (lang_defaults): Add
1544 digit separator flags per language; (cpp_set_lang): Set
1545 digit_separators
1546 * lex.c (lex_number): Add digits separator to allowable characters for
1547 C++14.
1548
1549 2013-10-15 David Malcolm <dmalcolm@redhat.com>
1550
1551 * Makefile.in (PICFLAG): New.
1552 (ALL_CFLAGS): Add PICFLAG.
1553 (ALL_CXXFLAGS): Likewise.
1554 * configure.ac: Add --enable-host-shared, setting up new
1555 PICFLAG variable.
1556 * configure: Regenerate.
1557
1558 2013-08-07 Richard Earnshaw <rearnsha@arm.com>
1559
1560 * configure.ac: Set need_64bit_hwint for all arm targets.
1561 * configure: Regenerated.
1562
1563 2013-07-20 Jakub Jelinek <jakub@redhat.com>
1564
1565 PR preprocessor/57620
1566 * lex.c (lex_raw_string): Undo phase1 and phase2 transformations
1567 between R" and final " rather than only in between R"del( and )del".
1568
1569 2013-07-10 Jakub Jelinek <jakub@redhat.com>
1570
1571 PR preprocessor/57824
1572 * lex.c (lex_raw_string): Allow reading new-lines if
1573 in_deferred_pragma or if parsing_args and there is still
1574 data in the current buffer.
1575
1576 * include/cpplib.h (cpp_token_val_index): Change parameter type to
1577 const cpp_token *.
1578 * lex.c (cpp_token_val_index): Likewise.
1579
1580 PR preprocessor/57757
1581 * lex.c (cpp_avoid_paste): Avoid pasting CPP_{,W,UTF8}STRING
1582 or CPP_STRING{16,32} with CPP_NAME or SPELL_LITERAL token that
1583 starts if a-zA-Z_.
1584
1585 2013-06-28 Ed Smith-Rowland <3dw4rd@verizon.net>
1586
1587 * lex.c (lex_raw_string(), lex_string()): Constrain suffixes treated
1588 as concatenated literal and macro to just the patterns found in
1589 inttypes.h; (is_macro()): New.
1590
1591 2013-06-24 Dehao Chen <dehao@google.com>
1592
1593 * files.c (_cpp_stack_include): Fix the highest_location when header
1594 file is guarded by #ifndef and is included twice.
1595
1596 2013-04-28 Jakub Jelinek <jakub@redhat.com>
1597
1598 N3472 binary constants
1599 * include/cpplib.h (struct cpp_options): Fix a typo in user_literals
1600 field comment. Add binary_constants field.
1601 * init.c (struct lang_flags): Add binary_constants field.
1602 (lang_defaults): Add bin_cst column to the table.
1603 (cpp_set_lang): Initialize CPP_OPTION (pfile, binary_constants).
1604 * expr.c (cpp_classify_number): Talk about C++11 instead of C++0x
1605 in diagnostics. Accept binary constants if
1606 CPP_OPTION (pfile, binary_constants) even when pedantic. Adjust
1607 pedwarn message.
1608
1609 2013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
1610
1611 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX1Y and CLK_CXX1Y.
1612 * init.c (lang_defaults): Add defaults for the latter.
1613 (cpp_init_builtins): Define __cplusplus as 201300L for the latter.
1614 * lex.c (_cpp_lex_direct): Update.
1615
1616 2013-04-03 Sebastian Huber <sebastian.huber@embedded-brains.de>
1617
1618 PR target/56771
1619 * configure.ac: Require 64-bit int for arm*-*-rtems*.
1620 * configure: Regenerate.
1621
1622 2013-03-06 Jakub Jelinek <jakub@redhat.com>
1623
1624 PR middle-end/56461
1625 * internal.h (struct cpp_buffer): Add to_free field.
1626 (_cpp_pop_file_buffer): Add third argument.
1627 * files.c (_cpp_stack_file): Set buffer->to_free.
1628 (_cpp_pop_file_buffer): Add to_free argument. Free to_free
1629 if non-NULL, and if equal to file->buffer_start, also clear
1630 file->buffer{,_start,_valid}.
1631 * directives.c (_cpp_pop_buffer): Pass buffer->to_free
1632 to _cpp_pop_file_buffer.
1633
1634 2013-03-01 Jakub Jelinek <jakub@redhat.com>
1635
1636 PR middle-end/56461
1637 * files.c (_cpp_save_file_entries): Free result at the end.
1638 * pch.c (cpp_string_free): New function.
1639 (cpp_save_state): Use it in htab_create call.
1640 (cpp_write_pch_deps): Free ss->defs. Destroy ss->definedhash.
1641
1642 2013-02-28 Jakub Jelinek <jakub@redhat.com>
1643
1644 * files.c (_cpp_find_file): If returning early, before storing
1645 something to *hash_slot and *hash_slot is NULL, call htab_clear_slot
1646 on it. Access *hash_slot using void * type rather than
1647 struct file_hash_entry * to avoid aliasing issues.
1648
1649 * configure.ac: Don't define ENABLE_CHECKING whenever
1650 --enable-checking is seen, instead use similar --enable-checking=yes
1651 vs. --enable-checking=release default as gcc/ subdir has and
1652 define ENABLE_CHECKING if ENABLE_CHECKING is defined in gcc/.
1653 Define ENABLE_VALGRIND_CHECKING if requested.
1654 * lex.c (new_buff): If ENABLE_VALGRIND_CHECKING, put _cpp_buff
1655 struct first in the allocated buffer and result->base after it.
1656 (_cpp_free_buff): If ENABLE_VALGRIND_CHECKING, free buff itself
1657 instead of buff->base.
1658 * config.in: Regenerated.
1659 * configure: Regenerated.
1660
1661 2013-02-13 Ed Smith-Rowland <3dw4rd@verizon.net>
1662
1663 PR c++/55582
1664 * lex.c (lex_raw_string): Allow string literal with suffix
1665 beginning with 's' to be parsed as a C++11 user-defined literal.
1666
1667 2013-01-14 Richard Sandiford <rdsandiford@googlemail.com>
1668
1669 Update copyright years.
1670
1671 2013-01-04 Paolo Carlini <paolo.carlini@oracle.com>
1672
1673 PR c++/54526 (again)
1674 * lex.c (_cpp_lex_direct): In C++11 mode, implement 2.5 p3, bullet 2.
1675
1676 2013-01-03 Marc Glisse <marc.glisse@inria.fr>
1677
1678 PR bootstrap/50177
1679 * line-map.c (get_combined_adhoc_loc): Cast from extern "C" type.
1680 (new_linemap): Likewise.
1681 (linemap_enter_macro): Likewise.
1682
1683 2012-12-03 Jakub Jelinek <jakub@redhat.com>
1684
1685 PR bootstrap/55380
1686 PR other/54691
1687 * files.c (read_file_guts): Allocate extra 16 bytes instead of
1688 1 byte at the end of buf. Pass size + 16 instead of size
1689 to _cpp_convert_input.
1690 * charset.c (_cpp_convert_input): Reallocate if there aren't
1691 at least 16 bytes beyond to.len in the buffer. Clear 16 bytes
1692 at to.text + to.len.
1693
1694 2012-11-21 Steve Ellcey <sellcey@mips.com>
1695
1696 PR pch/55399
1697 * files.c (pch_open_file): Fix check for implicit_preinclude.
1698
1699 2012-11-16 Simon Baldwin <simonb@google.com>
1700
1701 * include/cpplib.h (struct cpp_options): Add canonical_system_headers.
1702 * files.c (find_file_in_dir): Call maybe_shorter_path() only if
1703 canonical_system_headers is set.
1704 * init.c (cpp_create_reader): Initialize canonical_system_headers.
1705 * configure.ac: Add new --enable-canonical-system-headers.
1706 * configure: Regenerate.
1707 * config.in: Regenerate.
1708
1709 2012-11-09 Ed Smith-Rowland <3dw4rd@verizon.net>
1710
1711 PR c++/54413
1712 * include/cpplib.h (cpp_interpret_float_suffix): Add cpp_reader* arg.
1713 (cpp_interpret_int_suffix): Add cpp_reader* arg.
1714 * init.c (cpp_create_reader): Iitialize new flags.
1715 * expr.c (interpret_float_suffix): Use new flags.
1716 (cpp_interpret_float_suffix): Add cpp_reader* arg.
1717 (interpret_int_suffix): Use new flags.
1718 (cpp_interpret_int_suffix): Add cpp_reader* arg.
1719 (cpp_classify_number): Adjust calls to interpret_x_suffix.
1720
1721 2012-10-23 Ian Bolton <ian.bolton@arm.com>
1722 Jim MacArthur <jim.macarthur@arm.com>
1723 Marcus Shawcroft <marcus.shawcroft@arm.com>
1724 Nigel Stephens <nigel.stephens@arm.com>
1725 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
1726 Richard Earnshaw <rearnsha@arm.com>
1727 Sofiane Naci <sofiane.naci@arm.com>
1728 Stephen Thomas <stephen.thomas@arm.com>
1729 Tejas Belagod <tejas.belagod@arm.com>
1730 Yufeng Zhang <yufeng.zhang@arm.com>
1731
1732 * configure.ac: Enable AArch64.
1733 * configure: Regenerate.
1734
1735 2012-10-23 Joseph Myers <joseph@codesourcery.com>
1736
1737 * files.c (struct _cpp_file): Add implicit_preinclude.
1738 (pch_open_file): Allow a previously opened implicitly included
1739 file.
1740 (_cpp_find_file): Add implicit_preinclude argument. Free file and
1741 do not call open_file_failed if implicit_preinclude. Store
1742 implicit_preinclude value.
1743 (_cpp_stack_include, _cpp_fake_include, _cpp_compare_file_date):
1744 Update calls to _cpp_find_file.
1745 (_cpp_stack_include): Handle IT_DEFAULT.
1746 (cpp_push_default_include): New.
1747 * include/cpplib.h (cpp_push_default_include): Declare.
1748 * init.c (cpp_read_main_file): Update call to _cpp_find_file.
1749 * internal.h (enum include_type): Add IT_DEFAULT.
1750 (_cpp_find_file): Update prototype.
1751
1752 2012-10-15 Tobias Burnus <burnus@net-b.de>
1753
1754 * files.c (read_file_guts, _cpp_save_file_entries): Free memory
1755 before returning.
1756 * lex.c (warn_about_normalization): Ditto.
1757 * mkdeps.c (deps_save): Ditto.
1758 * pch.c (cpp_valid_state): Ditto.
1759
1760 2012-10-04 Florian Weimer <fweimer@redhat.com>
1761
1762 * directives.c (do_pragma_warning_or_error): New.
1763 (do_pragma_warning): New.
1764 (do_pragma_error): New.
1765 (_cpp_init_internal_pragmas): Register new pragmas.
1766
1767 2012-09-25 Dehao Chen <dehao@google.com>
1768
1769 PR middle-end/54704
1770 * line-map.c (location_adhoc_data_hash): Fix the hash function.
1771
1772 2012-09-25 Dehao Chen <dehao@google.com>
1773
1774 PR middle-end/54645
1775 * include/line-map.h (location_adhoc_data): Move location_adhoc_data
1776 into GC.
1777 (location_adhoc_data_map): Likewise.
1778 (line_maps): Likewise.
1779 (rebuild_location_adhoc_htab): New Function.
1780 * line-map.c (+rebuild_location_adhoc_htab): new Funcion.
1781 (get_combined_adhoc_loc): Move location_adhoc_data into GC.
1782 (location_adhoc_data_fini): Likewise.
1783 (linemap_init): Likewise.
1784 (location_adhoc_data_init): Remove Function.
1785
1786 2012-09-19 Dehao Chen <dehao@google.com>
1787
1788 * include/line-map.h (MAX_SOURCE_LOCATION): New value.
1789 (location_adhoc_data_fini): New.
1790 (get_combined_adhoc_loc): New.
1791 (get_data_from_adhoc_loc): New.
1792 (get_location_from_adhoc_loc): New.
1793 (location_adhoc_data_map): New.
1794 (COMBINE_LOCATION_DATA): New.
1795 (IS_ADHOC_LOC): New.
1796 (expanded_location): New field.
1797 (line_maps): New field.
1798 * line-map.c (location_adhoc_data): New.
1799 (location_adhoc_data_hash): New.
1800 (location_adhoc_data_eq): New.
1801 (location_adhoc_data_update): New.
1802 (get_combined_adhoc_loc): New.
1803 (get_data_from_adhoc_loc): New.
1804 (get_location_from_adhoc_loc): New.
1805 (location_adhoc_data_init): New.
1806 (location_adhoc_data_fini): New.
1807 (linemap_init): Initialize location_adhoc_data.
1808 (linemap_lookup): Change to use new location.
1809 (linemap_ordinary_map_lookup): Likewise.
1810 (linemap_macro_map_lookup): Likewise.
1811 (linemap_macro_map_loc_to_def_point): Likewise.
1812 (linemap_macro_map_loc_unwind_toward_spel): Likewise.
1813 (linemap_get_expansion_line): Likewise.
1814 (linemap_get_expansion_filename): Likewise.
1815 (linemap_location_in_system_header_p): Likewise.
1816 (linemap_location_from_macro_expansion_p): Likewise.
1817 (linemap_macro_loc_to_spelling_point): Likewise.
1818 (linemap_macro_loc_to_def_point): Likewise.
1819 (linemap_macro_loc_to_exp_point): Likewise.
1820 (linemap_resolve_location): Likewise.
1821 (linemap_unwind_toward_expansion): Likewise.
1822 (linemap_unwind_to_first_non_reserved_loc): Likewise.
1823 (linemap_expand_location): Likewise.
1824 (linemap_dump_location): Likewise.
1825 (linemap_line_start): Likewise.
1826
1827 2012-05-25 Dodji Seketeli <dodji@redhat.com>
1828
1829 PR preprocessor/53469
1830 * directives.c (do_pragma): Use the virtual location for the
1831 pragma token, instead of its spelling location.
1832
1833 2012-08-14 Diego Novillo <dnovillo@google.com>
1834
1835 Merge from cxx-conversion branch. Configury.
1836
1837 * Makefile.in: Remove all handlers of ENABLE_BUILD_WITH_CXX.
1838 * configure.ac: Likewise.
1839 * configure: Regenerate.
1840
1841 2012-08-14 Lawrence Crowl <crowl@google.com>
1842
1843 Merge from cxx-conversion branch. New C++ hash table.
1844
1845 * include/symtab.h (typedef struct ht hash_table): Change the typedef
1846 name to cpp_hash_table. Update all users of the typedef.
1847
1848 2012-07-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
1849
1850 * include/line-map.h (line_map_macro): Use the "atomic" GTY option
1851 for the macro_locations field.
1852
1853 2011-06-19 Uros Bizjak <ubizjak@gmail.com>
1854
1855 * lex.c (search_line_sse42): Use __builtin_ia32_loaddqu and
1856 __builtin_ia32_pcmpestri128 instead of asm.
1857
1858 2012-06-04 Dimitrios Apostolou <jimis@gmx.net>
1859
1860 * line-map.c (linemap_enter_macro): Don't zero max_column_hint in
1861 every macro. This improves performance by reducing the number of
1862 reallocations when track-macro-expansion is on.
1863
1864 2012-06-04 Dodji Seketeli <dodji@redhat.com>
1865
1866 PR preprocessor/53463
1867 * line-map.c (linemap_location_in_system_header_p): For built-in
1868 macro tokens, check the first expansion point location that is not
1869 for a token coming from a built-in macro.
1870
1871 2012-05-29 Joseph Myers <joseph@codesourcery.com>
1872
1873 * directives.c: Fix typos.
1874 * include/line-map.h: Fix typos.
1875 * line-map.c: Fix typos.
1876 * macro.c: Fix typos.
1877
1878 2012-05-25 Dodji Seketeli <dodji@redhat.com>
1879
1880 PR bootstrap/53459
1881 * lex.c (search_line_fast): Avoid unused local typedefs to simulate
1882 a static assertion.
1883
1884 2012-05-29 Dodji Seketeli <dodji@redhat.com>
1885
1886 PR preprocessor/53229
1887 * internal.h (cpp_reader::set_invocation_location): Remove.
1888 (cpp_reader::about_to_expand_macro_p): New member flag.
1889 * directives.c (do_pragma): Remove Kludge as
1890 pfile->set_invocation_location is no more.
1891 * macro.c (cpp_get_token_1): Do away with the use of
1892 cpp_reader::set_invocation_location. Just collect the macro
1893 expansion point when we are about to expand the top-most macro.
1894 Do not override cpp_reader::about_to_expand_macro_p.
1895 This fixes gcc.dg/cpp/paste12.c by making get_token_no_padding
1896 properly handle locations of expansion points.
1897 (cpp_get_token_with_location): Adjust, as
1898 cpp_reader::set_invocation_location is no more.
1899 (paste_tokens): Take a virtual location parameter for
1900 the LHS of the pasting operator. Use it in diagnostics. Update
1901 comments.
1902 (paste_all_tokens): Tighten the assert. Propagate the location of
1903 the expansion point when no virtual locations are available.
1904 Pass the virtual location to paste_tokens.
1905 (in_macro_expansion_p): New static function.
1906 (enter_macro_context): Set the cpp_reader::about_to_expand_macro_p
1907 flag until we really start expanding the macro.
1908
1909 2012-05-16 Dodji Seketeli <dodji@redhat.com>
1910
1911 PR preprocessor/7263
1912 * include/cpplib.h (cpp_classify_number): Take a location
1913 parameter.
1914 * expr.c (SYNTAX_ERROR_AT, SYNTAX_ERROR2_AT): New diagnostic
1915 macros that take a location parameter.
1916 (cpp_classify_number): Take a (virtual) location parameter. Use
1917 it for diagnostics. Adjust comments.
1918 (eval_token): Take a location parameter. Pass it to
1919 cpp_classify_number and to diagnostic routines.
1920 (_cpp_parse_expr): Use virtual locations of tokens when parsing
1921 expressions. Pass a virtual location to eval_token and to
1922 diagnostic routines.
1923
1924 2012-05-10 Tristan Gingold <gingold@adacore.com>
1925
1926 * expr.c (interpret_float_suffix): Add a guard.
1927
1928 2012-05-02 Dodji Seketeli <dodji@redhat.com>
1929
1930 Properly initialize cpp_context in destringize_and_run
1931 * directives.c (destringize_and_run): Properly initialize the new
1932 context.
1933 * macro.c (_cpp_pop_context): Assert that we shouldn't try to pop
1934 the initial base context, which has the same life time as the
1935 current instance of cpp_file.
1936
1937 2012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
1938 Dodji Seketeli <dodji@seketeli.org>
1939
1940 PR c++/52974
1941 * libcpp/files.c (maybe_shorter_path): New.
1942 (find_file_in_dir): Use it.
1943
1944 2012-04-30 Dodji Seketeli <dodji@redhat.com>
1945
1946 Switch -ftrack-macro-expansion=2 on by default.
1947 * init.c (cpp_create_reader): Switch -ftrack-macro-expansion=2 on
1948 by default. Add comments.
1949
1950 Strip "<built-in>" loc from displayed expansion context
1951 * include/line-map.h (linemap_unwind_toward_expansion): Fix typo
1952 in comment.
1953 (linemap_unwind_to_first_non_reserved_loc): Declare new function.
1954 * line-map.c (linemap_unwind_to_first_non_reserved_loc): Define
1955 new function.
1956
1957 Fix expansion point loc for macro-like tokens
1958 * macro.c (macro_of_context): New static function.
1959 (_cpp_push_token_context, push_extended_tokens_context): If the
1960 macro argument is NULL, it means we are continuing the expansion
1961 of the current macro, if any. Update comments.
1962 (_cpp_pop_context): Re-enable expansion of the macro only when we
1963 are really out of the context of the current expansion.
1964
1965 Fix token pasting with -ftrack-macro-expansion
1966 * macro.c (paste_all_tokens): Put the token resulting from pasting
1967 into an extended token context with -ftrack-macro-location is in
1968 effect.
1969
1970 Fix cpp_sys_macro_p with -ftrack-macro-expansion
1971 * macro.c (cpp_sys_macro_p): Support -ftrack-macro-expansion.
1972
1973 2012-04-29 Dodji Seketeli <dodji@redhat.com>
1974
1975 * lex.c (lex_raw_string): Change C++ style comments into C style
1976 comments.
1977 (lex_string): Likewise.
1978
1979 2012-04-27 Ollie Wild <aaw@google.com>
1980
1981 * include/cpplib.h (struct cpp_options): Add new field,
1982 warn_literal_suffix.
1983 (CPP_W_LITERAL_SUFFIX): New enum.
1984 * init.c (cpp_create_reader): Default initialization of
1985 warn_literal_suffix.
1986 * lex.c (lex_raw_string): Treat user-defined literals which don't
1987 begin with '_' as separate tokens and produce a warning.
1988 (lex_string): Ditto.
1989
1990 2012-04-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
1991
1992 * line-map.c (linemap_resolve_location): Synchronize comments with
1993 those in line-map.h.
1994 * include/line-map.h (linemap_resolve_location): Fix spelling in
1995 comment.
1996
1997 2012-03-22 Richard Earnshaw <rearnsha@arm.com>
1998
1999 * lex.c (search_line_fast): Provide Neon-optimized version for ARM.
2000
2001 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2002
2003 * lex.c: Remove Solaris 8 reference.
2004
2005 2012-02-14 Walter Lee <walt@tilera.com>
2006
2007 * configure.ac: Require 64-bit hwint for tilegx and tilepro.
2008 * configure: Regenerate.
2009
2010 2012-01-09 Richard Guenther <rguenther@suse.de>
2011
2012 * macro.c (_cpp_builtin_macro_text): Remove unused variable map.
2013
2014 2012-01-09 Gary Funck <gary@intrepid.com>
2015
2016 PR preprocessor/33919
2017 * files.c (_cpp_get_file_name): New. Implement file name
2018 access function.
2019 * internal.h (_cpp_get_file_name): New prototype.
2020 * macro.c (_cpp_builtin_macro_text): Call _cpp_get_file_name()
2021 to use pfile->main_file in lieu of traversing INCLUDED_FROM chain.
2022
2023 2012-01-03 Olivier Hainque <hainque@adacore.com>
2024
2025 * system.h: Prior to #define, #undef fopen and freopen unconditionally.
2026
2027 2011-12-20 Joseph Myers <joseph@codesourcery.com>
2028
2029 * include/cpplib.h (CLK_GNUC1X): Change to CLK_GNUC11.
2030 (CLK_STDC1X): Change to CLK_STDC11.
2031 * init.c (lang_defaults): Update comments.
2032 (cpp_init_builtins): Update language tests. Use 201112L for C11
2033 __STDC_VERSION__.
2034
2035 2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
2036
2037 * configure: Regenerate.
2038
2039 2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
2040
2041 * configure: Regenerate.
2042
2043 2011-12-07 Jakub Jelinek <jakub@redhat.com>
2044
2045 PR bootstrap/50237
2046 * internal.h (_cpp_init_lexer): New prototype.
2047 * init.c (init_library): Call it.
2048 * lex.c (init_vectorized_lexer): Remove constructor attribute,
2049 add inline keyword.
2050 (HAVE_init_vectorized_lexer): Define.
2051 (_cpp_init_lexer): New function.
2052
2053 2011-12-03 Dodji Seketeli <dodji@redhat.com>
2054
2055 * macro.c (tokens_buff_remove_last_token)
2056 (tokens_buff_put_token_to): Add an 'inline' function specifier to
2057 the prototype.
2058
2059 2011-11-22 Diego Novillo <dnovillo@google.com>
2060
2061 * include/line-map.h (linemap_dump): Declare.
2062 (line_table_dump): Declare.
2063 * line-map.c (linemap_dump): New.
2064 (line_table_dump): New.
2065
2066 2011-11-21 Ed Smith-Rowland <3dw4rd@verizon.net>
2067
2068 PR c++/50958
2069 * expr.c (cpp_userdef_char_remove_type): Fix typo.
2070
2071 2011-11-03 Michael Matz <matz@suse.de>
2072
2073 PR bootstrap/50857
2074 * configure.ac: Check for -fno-exceptions -fno-rtti.
2075 * configure: Regenerate.
2076 * Makefile.in (NOEXCEPTION_FLAGS): New flag.
2077 (ALL_CXXFLAGS): Use it.
2078
2079 2011-11-02 Paolo Carlini <paolo.carlini@oracle.com>
2080
2081 * internal.h (uxstrdup, ustrchr): Return const unsigned char *.
2082
2083 2011-11-02 Jason Merrill <jason@redhat.com>
2084
2085 PR c++/50810
2086 * configure.ac: Add -Wno-narrowing to warning options.
2087
2088 2011-10-31 Jason Merrill <jason@redhat.com>
2089
2090 PR libstdc++/1773
2091 * init.c (cpp_init_builtins): Set __cplusplus for C++11.
2092
2093 PR c++/50920
2094 * include/cpplib.h (enum c_lang): Rename CLK_CXX0X to CLK_CXX11,
2095 CLK_GNUCXX0X to CLK_GNUCXX11.
2096
2097 2011-10-26 Ed Smith-Rowland <3dw4rd@verizon.net>
2098
2099 Implement C++11 user-defined literals.
2100 * expr.c: (cpp_interpret_float_suffix, cpp_interpret_int_suffix,
2101 cpp_userdef_string_remove_type, cpp_userdef_string_add_type,
2102 cpp_userdef_char_remove_type, cpp_userdef_char_add_type,
2103 cpp_userdef_string_p, cpp_userdef_char_p, cpp_get_userdef_suffix): New.
2104 (cpp_classify_number): Classify unrecognized tokens as user-defined
2105 literals.
2106 * include/cpplib.h: Add new tokens for user-defined literals.
2107 * init.c: Add new preprocessor flag (cxx11).
2108 * lex.c: (lex_string, lex_raw_string): Handle user-defined literals
2109 including concatenation and promotion with suffixes.
2110
2111 2011-10-24 Dodji Seketeli <dodji@redhat.com>
2112
2113 * line-map.c (linemap_macro_map_lookup): Fix logic.
2114
2115 2011-10-24 Dodji Seketeli <dodji@redhat.com>
2116
2117 * include/line-map.h (linemap_expand_location): Take a line table
2118 parameter. Update comment.
2119 (linemap_resolve_location): Update comment.
2120 (linemap_expand_location_full): Remove.
2121 * line-map.c (linemap_resolve_location): Handle reserved
2122 locations; return a NULL map in those cases.
2123 (linemap_expand_location): If location is reserved, return a
2124 zeroed expanded location. Update comment. Take a line table to
2125 assert that the function takes non-virtual locations only.
2126 (linemap_expand_location_full): remove.
2127 (linemap_dump_location): Handle the fact that
2128 linemap_resolve_location can return NULL line maps when the
2129 location resolves to a reserved location.
2130
2131 * line-map.c (linemap_macro_map_lookup): Fix logic.
2132
2133 2011-10-22 Dodji Seketeli <dodji@redhat.com>
2134
2135 PR bootstrap/50778
2136 * include/internal.h (_cpp_remaining_tokens_num_in_context): Take the
2137 context to act upon.
2138 * lex.c (_cpp_remaining_tokens_num_in_context): Likewise. Update
2139 comment.
2140 (cpp_token_from_context_at): Likewise.
2141 (cpp_peek_token): Use the context to peek tokens from.
2142
2143 2011-10-20 Dodji Seketeli <dodji@redhat.com>
2144
2145 PR bootstrap/50801
2146 * lex.c (_cpp_remaining_tokens_num_in_context): Fix computation of
2147 number of tokens.
2148
2149 2011-10-18 Dodji Seketeli <dodji@redhat.com>
2150
2151 PR bootstrap/50760
2152 * include/line-map.h (struct linemap_stats): Change the type of
2153 the members from size_t to long.
2154 * macro.c (macro_arg_token_iter_init): Unconditionally initialize
2155 iter->location_ptr.
2156
2157 2011-10-17 Dodji Seketeli <dodji@redhat.com>
2158
2159 * line-map.c (linemap_macro_map_loc_to_exp_point): Avoid setting a
2160 variable without using it if ENABLE_CHECKING is not defined. Mark
2161 the LOCATION parameter as being unused.
2162
2163 2011-10-15 Tom Tromey <tromey@redhat.com>
2164 Dodji Seketeli <dodji@redhat.com>
2165
2166 * include/line-map.h (struct line_maps::alloced_size_for_request):
2167 New member.
2168 * line-map.c (new_linemap): Use set->alloced_size_for_request to
2169 get the actual allocated size of line maps.
2170
2171 2011-10-15 Tom Tromey <tromey@redhat.com>
2172 Dodji Seketeli <dodji@redhat.com>
2173
2174 * line-map.h (struct linemap_stats): Declare new struct.
2175 (linemap_get_statistics): Declare ...
2176 * line-map.c (linemap_get_statistics): ... new function.
2177 * macro.c (num_expanded_macros_counter, num_macro_tokens_counter):
2178 Declare new counters.
2179 (enter_macro_context, replace_args): Update
2180 num_macro_tokens_counter.
2181 (cpp_get_token_1): Update num_expanded_macros_counter.
2182
2183 2011-10-15 Tom Tromey <tromey@redhat.com>
2184 Dodji Seketeli <dodji@redhat.com>
2185
2186 * include/cpplib.h (struct cpp_options)<debug>: New struct member.
2187 * include/line-map.h (linemap_dump_location): Declare ...
2188 * line-map.c (linemap_dump_location): ... new function.
2189
2190 2011-10-15 Tom Tromey <tromey@redhat.com>
2191 Dodji Seketeli <dodji@redhat.com>
2192
2193 * include/cpplib.h (struct cpp_options)<track_macro_expansion>:
2194 New option.
2195 * internal.h (struct macro_context): New struct.
2196 (enum context_tokens_kind): New enum.
2197 (struct cpp_context)<tokens_kind>: New member of type enum
2198 context_tokens_kind.
2199 (struct cpp_context)<macro>: Remove this. Replace it with an enum
2200 of macro and macro_context.
2201 (struct cpp_context)<direct_p>: Remove.
2202 (_cpp_remaining_tokens_num_in_context): Declare new function.
2203 * directives.c (destringize_and_run): Adjust.
2204 * lex.c (_cpp_remaining_tokens_num_in_context)
2205 (_cpp_token_from_context_at): Define new functions
2206 (cpp_peek_token): Use them.
2207 * init.c (cpp_create_reader): Initialize the base context to zero.
2208 (_cpp_token_from_context_at): Define new static function.
2209 (cpp_peek_token): Use new _cpp_remaining_tokens_num_in_context and
2210 _cpp_token_from_context_at.
2211 * macro.c (struct macro_arg)<virt_locs, expanded_virt_locs>: New
2212 members.
2213 (enum macro_arg_token_kind): New enum.
2214 (struct macro_arg_token_iter): New struct.
2215 (maybe_adjust_loc_for_trad_cpp, push_extended_tokens_context)
2216 (alloc_expanded_arg_mem, ensure_expanded_arg_room)
2217 (delete_macro_args, set_arg_token, get_arg_token_location)
2218 (arg_token_ptr_at, macro_arg_token_iter_init)
2219 (macro_arg_token_iter_get_token)
2220 (macro_arg_token_iter_get_location, macro_arg_token_iter_forward)
2221 (expanded_token_index, tokens_buff_new, tokens_buff_count)
2222 (tokens_buff_last_token_ptr, tokens_buff_put_token_to)
2223 (tokens_buff_add_token, tokens_buff_remove_last_token)
2224 (reached_end_of_context, consume_next_token_from_context): New
2225 static functions.
2226 (cpp_get_token_1): New static function. Split and extended from
2227 cpp_get_token. Use reached_end_of_context and
2228 consume_next_token_from_context. Unify its return point. Move
2229 the location tweaking from cpp_get_token_with_location in here.
2230 (cpp_get_token): Use cpp_get_token_1
2231 (stringify_arg): Use the new arg_token_at.
2232 (paste_all_tokens): Support tokens coming from extended tokens
2233 contexts.
2234 (collect_args): Return the number of collected arguments, by
2235 parameter. Store virtual locations of tokens that constitute the
2236 collected args.
2237 (funlike_invocation_p): Return the number of collected arguments,
2238 by parameter.
2239 (enter_macro_context): Add a parameter for macro expansion point.
2240 Pass it to replace_args and to the "used" cpp callback. Get the
2241 number of function-like macro arguments from funlike_invocation_p,
2242 pass it to the new delete_macro_args to free the memory used by
2243 macro args. When -ftrack-macro-expansion is in effect, for macros
2244 that have no arguments, create a macro map for the macro expansion
2245 and use it to allocate proper virtual locations for tokens
2246 resulting from the expansion. Push an extended tokens context
2247 containing the tokens resulting from macro expansion and their
2248 virtual locations.
2249 (replace_args): Rename the different variables named 'count' into
2250 variables with more meaningful names. Create a macro map;
2251 allocate virtual locations of tokens resulting from this
2252 expansion. Use macro_arg_token_iter to iterate over tokens of a
2253 given macro. Handle the case of the argument of
2254 -ftrack-macro-expansion being < 2. Don't free macro arguments
2255 memory resulting from expand_arg here, as these are freed by the
2256 caller of replace_arg using delete_macro_args now. Push extended
2257 token context.
2258 (next_context, push_ptoken_context, _cpp_push_token_context)
2259 (_cpp_push_text_context): Properly initialize the context.
2260 (expand_arg): Use the new alloc_expanded_arg_mem,
2261 push_extended_tokens_context, cpp_get_token_1, and set_arg_token.
2262 (_cpp_pop_context): Really free the memory held by the context.
2263 Handle freeing memory used by extended tokens contexts.
2264 (cpp_get_token_with_location): Use cpp_get_token_1.
2265 (cpp_sys_macro_p): Adjust.
2266 (_cpp_backup_tokens): Support the new kinds of token contexts.
2267 * traditional.c (recursive_macro): Adjust.
2268
2269 2011-10-15 Tom Tromey <tromey@redhat>
2270 Dodji Seketeli <dodji@redhat.com>
2271
2272 * include/line-map.h (enum lc_reason)<LC_ENTER_MACRO>: New enum
2273 member.
2274 (MAX_SOURCE_LOCATION): New constant.
2275 (struct line_map_ordinary, struct line_map_macro): New structs.
2276 (struct line_map): Turn this into a union of the two above. Add
2277 comments.
2278 (struct maps_info): New struct.
2279 (struct line_maps)<info_ordinary, info_macro>: Two new fields.
2280 These now carry the map information that was previously scattered
2281 in struct line_maps.
2282 (struct map_info::allocated): Fix comment.
2283 (MAP_START_LOCATION, ORDINARY_MAP_FILE_NAME)
2284 (ORDINARY_MAP_STARTING_LINE_NUMBER)
2285 (ORDINARY_MAP_INCLUDER_FILE_INDEX)
2286 (ORDINARY_MAP_IN_SYSTEM_HEADER_P)
2287 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS, MACRO_MAP_MACRO)
2288 (MACRO_MAP_NUM_MACRO_TOKENS MACRO_MAP_LOCATIONS)
2289 (MACRO_MAP_EXPANSION_POINT_LOCATION)
2290 (LOCATION_POSSIBLY_IN_MACRO_MAP_P, LINEMAPS_MAP_INFO)
2291 (LINEMAPS_MAPS, LINEMAPS_ALLOCATE, LINEMAPS_USED, LINEMAPS_CACHE)
2292 (LINEMAPS_LAST_MAP, LINEMAPS_LAST_ALLOCATED_MAP)
2293 (LINEMAPS_ORDINARY_MAPS, LINEMAPS_ORDINARY_ALLOCATED)
2294 (LINEMAPS_ORDINARY_USED, LINEMAPS_ORDINARY_CACHE)
2295 (LINEMAPS_LAST_ORDINARY_MAP, LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP)
2296 (LINEMAPS_MACRO_MAPS, LINEMAPS_MACRO_ALLOCATED)
2297 (LINEMAPS_MACRO_USED, LINEMAPS_MACRO_CACHE)
2298 (LINEMAPS_LAST_MACRO_MAP, LINEMAPS_LAST_ALLOCATED_MACRO_MAP)
2299 (LINEMAPS_MAP_AT, LINEMAPS_ORDINARY_MAP_AT)
2300 (LINEMAPS_MACRO_MAP_AT): New accessors for ordinary and macro map
2301 information.
2302 (linemap_check_ordinary, linemap_assert)
2303 (linemap_location_before_p): New macros.
2304 (linemap_position_for_line_and_column)
2305 (linemap_tracks_macro_expansion_locs_p, linemap_add_macro_token)
2306 (linemap_macro_expansion_map_p)
2307 (linemap_macro_map_loc_to_def_point)
2308 (linemap_macro_map_loc_unwind_once)
2309 (linemap_macro_map_loc_to_exp_point, linemap_step_out_once)
2310 (linemap_get_source_line linemap_get_source_column)
2311 (linemap_map_get_macro_name, linemap_get_file_path)
2312 (linemap_location_in_system_header_p)
2313 (linemap_location_from_macro_expansion_p): Declare new functions.
2314 (SOURCE_LINE, SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION)
2315 (LINEMAP_FILE, LINEMAP_LINE, LINEMAP_SYSP): Assert that this
2316 accessors act on ordinary maps only.
2317 (INCLUDED_FROM): Return NULL for main files; use the new
2318 accessors.
2319 (LINEMAP_POSITION_FOR_COLUMN): Use the new accessors.
2320 (struct expanded_location): Move here from gcc/input.h
2321 (linemap_resolve_location, linemap_expand_location)
2322 (linemap_expand_location_full): Declare new functions.
2323 * line-map.c: Include cpplib.h, internal.h
2324 (linemap_enter_macro, linemap_add_macro_token)
2325 (linemap_get_expansion_line, linemap_get_expansion_filename): New
2326 functions that are private to libcpp.
2327 (linemap_assert): New macro.
2328 (linemap_macro_loc_to_exp_point, linemap_macro_loc_to_exp_point)
2329 (linemap_macro_loc_unwind, linemap_macro_map_loc_to_def_point)
2330 (linemap_macro_map_loc_unwind_toward_spelling)
2331 (linemap_macro_map_loc_to_exp_point)
2332 (first_map_in_common_1, first_map_in_common): New static
2333 functions.
2334 (new_linemap): Define new static functions. Extracted and
2335 enhanced from ...
2336 (linemap_add): ... here. Use linemap_assert in lieu of abort
2337 previously.
2338 (linemap_tracks_macro_expansion_locs_p)
2339 (linemap_add_macro_token, linemap_macro_expansion_map_p)
2340 (linemap_check_ordinary, linemap_macro_map_loc_to_exp_point)
2341 (linemap_macro_map_loc_to_def_point)
2342 (linemap_macro_map_loc_unwind_once)
2343 (linemap_step_out_once, linemap_map_get_index)
2344 (linemap_get_source_line,linemap_get_source_column)
2345 (linemap_get_file_path, linemap_map_get_macro_name)
2346 (linemap_location_in_system_header_p)
2347 (linemap_location_originated_from_system_header_p)
2348 (linemap_location_from_macro_expansion_p)
2349 (linemap_tracks_macro_expansion_locs_p)
2350 (linemap_resolve_location, linemap_expand_location)
2351 (linemap_expand_location_full)
2352 (linemap_tracks_macro_expansion_locs_p)
2353 (linemap_position_for_line_and_column, linemap_compare_locations):
2354 Define new public functions.
2355 (linemap_init): Initialize ordinary and macro maps information in
2356 the map set.
2357 (linemap_check_files_exited): Use the new accessors.
2358 (linemap_free): Remove this dead code.
2359 (linemap_line_start): Assert this uses an ordinary map. Adjust to
2360 use the new ordinary map accessors and data structures. Don't
2361 overflow past the lowest possible macro token's location.
2362 (linemap_position_for_column): Assert the ordinary maps of the map
2363 set are really ordinary. Use ordinary map accessors.
2364 (linemap_lookup): Keep the same logic but generalize to allow
2365 lookup of both ordinary and macro maps. Do not crash when called
2366 with an empty line table.
2367 * directives-only.c (_cpp_preprocess_dir_only): Adjust to use the
2368 new API of line-map.h.
2369 * directives.c (start_directive, do_line, do_linemarker)
2370 (do_linemarker): Likewise.
2371 * files.c (_cpp_find_file, _cpp_stack_include, open_file_failed)
2372 (make_cpp_dir, cpp_make_system_header): Likewise.
2373 * init.c (cpp_read_main_file): Likewise.
2374 * internal.h (CPP_INCREMENT_LINE): Likewise.
2375 (linemap_enter_macro, linemap_add_macro_token)
2376 (linemap_get_expansion_line, linemap_get_expansion_filename): New
2377 functions private to libcpp.
2378 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment)
2379 (skip_line_comment, skip_whitespace, lex_raw_string)
2380 (_cpp_lex_direct): Likewise.
2381 * macro.c (_cpp_builtin_macro_text): Likewise.
2382 (_cpp_aligned_alloc): Initialize the new name member of the macro.
2383 * traditional.c (copy_comment, _cpp_scan_out_logical_line):
2384 Likewise.
2385 * errors.c (cpp_diagnostic): Adjust to new linemap API.
2386
2387 2011-08-28 Dodji Seketeli <dodji@redhat.com>
2388
2389 * line-map.c (linemap_add): Assert that reason must not be
2390 LC_RENAME when called for the first time on a "main input file".
2391
2392 2011-08-22 Gabriel Charette <gchare@google.com>
2393
2394 * init.c (cpp_create_reader): Inititalize forced_token_location_p.
2395 * internal.h (struct cpp_reader): Add field forced_token_location_p.
2396 * lex.c (_cpp_lex_direct): Use forced_token_location_p.
2397 (cpp_force_token_locations): New.
2398 (cpp_stop_forcing_token_locations): New.
2399
2400 2011-08-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2401
2402 PR libstdc++/1773
2403 * init.c (cpp_init_builtins): Define __cplusplus 19971L.
2404
2405 2011-08-18 Joseph Myers <joseph@codesourcery.com>
2406
2407 * include/cpplib.h (struct cpp_options): Fix typo.
2408
2409 2011-08-18 Joseph Myers <joseph@codesourcery.com>
2410
2411 * include/cpplib.h (struct cpp_options): Add rliterals.
2412 * init.c (struct lang_flags, lang_defaults): Add rliterals.
2413 (cpp_set_lang): Set rliterals option.
2414 (cpp_init_builtins): Define __STDC_UTF_16__ and __STDC_UTF_32__.
2415 * lex.c (_cpp_lex_direct): Only accept raw strings if rliterals.
2416
2417 2011-08-15 Gabriel Charette <gchare@google.com>
2418
2419 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Remove.
2420 Update all users to use linemap_position_for_column instead.
2421
2422 2011-07-28 Gabriel Charette <gchare@google.com>
2423
2424 * include/line-map.h (struct line_maps):
2425 Remove unused field last_listed. Update all users.
2426
2427 2011-07-28 H.J. Lu <hongjiu.lu@intel.com>
2428
2429 * configure.ac: Set need_64bit_hwint to yes for x86 targets.
2430 * configure: Regenerated.
2431
2432 2011-07-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2433
2434 * system.h [__cplusplus]: Wrap C function declarations in extern "C".
2435
2436 2011-07-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2437 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2438
2439 PR bootstrap/49794
2440 * configure.ac: Test AM_ICONV with CXX.
2441 * configure: Regenerate.
2442 * system.h (HAVE_DESIGNATED_INITIALIZERS): Never define for C++.
2443
2444 2011-07-15 Dodji Seketeli <dodji@redhat.com>
2445
2446 * directives.c (struct if_stack): Use source_location as type
2447 here.
2448 * include/cpplib.h (struct cpp_callbacks)<include, define, undef,
2449 indent, def_pragma, used_define, used_undef>: Properly use
2450 source_location as parameter type, rather than unsigned int.
2451
2452 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2453
2454 PR target/39150
2455 * configure.ac (host_wide_int): Handle x86_64-*-solaris2.1[0-9]
2456 like i[34567]86-*-solaris2.1[0-9]*.
2457 * configure: Regenerate.
2458
2459 2011-06-16 Jason Merrill <jason@redhat.com>
2460
2461 PR c++/45399
2462 * lex.c (lex_raw_string): Don't check for embedded NUL.
2463
2464 2011-06-06 Dodji Seketeli <dodji@redhat.com>
2465
2466 PR preprocessor/48532
2467 * directives.c (do_pragma): Don't forget the invocation location
2468 when parsing the pragma name of a namespaced pragma directive.
2469
2470 2011-05-29 John Tytgat <John.Tytgat@aaug.net>
2471
2472 * files.c (read_file_guts): Add test on non-zero value of S_ISREG.
2473
2474 2011-05-22 Uros Bizjak <ubizjak@gmail.com>
2475
2476 PR target/49104
2477 * lex.c (init_vectorized_lexer): Do not set "minimum" when __3dNOW_A__
2478 is defined. Check bit_MMXEXT and bit_CMOV to use search_line_mmx.
2479
2480 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
2481
2482 * system.h (ENUM_BITFIELD): Remove.
2483
2484 2011-04-24 Jakub Jelinek <jakub@redhat.com>
2485
2486 PR preprocessor/48740
2487 * lex.c (lex_raw_string): When raw string ends with
2488 ??) followed by raw prefix and ", ensure it is preprocessed
2489 with ??) rather than ??].
2490
2491 2011-04-20 Jim Meyering <meyering@redhat.com>
2492
2493 * files.c (destroy_cpp_file): Remove useless if-before-free.
2494 * init.c (cpp_destroy): Likewise.
2495 * macro.c (replace_args): Likewise.
2496 * pch.c (cpp_valid_state): Likewise.
2497
2498 2011-03-25 Kai Tietz <ktietz@redhat.com>
2499
2500 * files.c (file_hash_eq): Use filename_cmp
2501 instead of strcmp.
2502 (nonexistent_file_hash_eq): Likewise.
2503 (remap_filename): Likewise.
2504 Handle absolute DOS-path,
2505 (append_file_to_dir): Check for IS_DIR_SEPARATOR
2506 instead of slash.
2507 (read_name_map): Likewise.
2508 * linemap.c (linemap_add): Use filename_cmp
2509 instead of strcmp.
2510 * mkdeps.c (apply_vpath): Use filename_ncmp
2511 instead of strncmp.
2512 (deps_restore): Use filename_cmp instead of
2513 strcmp.
2514 * init.c (read_original_directory): Use
2515 IS_DIR_SEPARATOR instead of checking for slash.
2516
2517 2011-03-21 Michael Meissner <meissner@linux.vnet.ibm.com>
2518
2519 PR preprocessor/48192
2520 * directives.c (do_ifdef): Do not consider conditional macros as
2521 being defined.
2522 (do_ifndef): Ditto.
2523 * expr.c (parse_defined): Ditto.
2524
2525 2011-03-18 Richard Henderson <rth@redhat.com>
2526
2527 PR bootstrap/45381
2528 * lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5.
2529
2530 2011-11-04 Eric Botcazou <ebotcazou@adacore.com>
2531 Jakub Jelinek <jakub@redhat.com>
2532
2533 PR preprocessor/39213
2534 * directives.c (end_directive): Call _cpp_remove_overlay for deferred
2535 pragmas as well in traditional mode.
2536
2537 2010-11-17 Ian Lance Taylor <iant@google.com>
2538
2539 PR bootstrap/45538
2540 * configure.ac: Use AC_USE_SYSTEM_EXTENSIONS. Remove switch of
2541 AC_LANG based on ENABLE_BUILD_WITH_CXX.
2542
2543 2010-11-16 Kai Tietz <kai.tietz@onevision.com>
2544
2545 PR preprocessor/17349
2546 * lex.c (save_comment): Handle in argument passing c++
2547 comments special.
2548
2549 2010-11-02 Ian Lance Taylor <iant@google.com>
2550
2551 * configure.ac: Use AC_SYS_LARGEFILE.
2552 * configure: Rebuild.
2553 * config.in: Rebuild.
2554
2555 2010-10-19 Basile Starynkevitch <basile@starynkevitch.net>
2556
2557 * line-map.h (source_location): Remove obsolete comment
2558 mentioning location_s.
2559
2560 2010-09-29 Kai Tietz <kai.tietz@onevision.com>
2561
2562 PR preprocessor/45362
2563 * directives.c (cpp_pop_definition): Make static.
2564 (do_pragma_push_macro): Reworked to store text
2565 definition.
2566 (do_pragma_pop_macro): Add free text definition.
2567 (cpp_push_definition): Removed.
2568 * include/cpplib.h (cpp_push_definition): Removed.
2569 (cpp_pop_definition): Likewise.
2570 * internal.h (def_pragma_macro): Remove member 'value'
2571 and add new members 'definition', 'line',
2572 'syshdr', 'sued' and 'is_undef'.
2573 * pch.c (_cpp_restore_pushed_macros): Rework to work
2574 on text definition and store additional macro flags.
2575 (_cpp_save_pushed_macros): Likewise.
2576
2577 2010-09-29 Joseph Myers <joseph@codesourcery.com>
2578
2579 * include/cpplib.h (cpp_options): Rename warn_deprecated,
2580 warn_traditional, warn_long_long and pedantic.
2581 * directives.c (directive_diagnostics, _cpp_handle_directive):
2582 Update names of cpp_options members.
2583 * expr.c (cpp_classify_number, eval_token): Update names of
2584 cpp_options members.
2585 * init.c (cpp_create_reader, post_options): Update names of
2586 cpp_options members.
2587 * internal.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Update names of
2588 cpp_options members.
2589 * macro.c (parse_params): Update names of cpp_options members.
2590
2591 2010-09-15 Ian Lance Taylor <iant@google.com>
2592
2593 * init.c: Fix type name in comment.
2594
2595 2010-08-31 Jakub Jelinek <jakub@redhat.com>
2596
2597 PR preprocessor/45457
2598 * expr.c (parse_defined): Call pfile->cb.user_builtin_macro hook if
2599 needed.
2600 * directives.c (do_ifdef, do_ifndef): Likewise.
2601
2602 2010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2603
2604 * system.h [HAVE_INTTYPES_H]: Include inttypes.h.
2605
2606 2010-08-24 Richard Henderson <rth@redhat.com>
2607
2608 PR bootstrap/45376
2609 * configure.ac (HAVE_SSE4): New check.
2610 * configure, config.in: Rebuild.
2611 * lex.c (search_line_sse42): Omit if !HAVE_SSE4.
2612
2613 2010-08-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
2614
2615 * lex.c [__sun__ && __svr4__]: Disable init_vectorized_lexer
2616 etc. on Solaris 2/x86.
2617
2618 2010-08-21 Richard Henderson <rth@redhat.com>
2619 Andi Kleen <ak@linux.intel.com>
2620 David S. Miller <davem@davemloft.net>
2621
2622 * configure.ac (AC_C_BIGENDIAN, AC_TYPE_UINTPTR_T): New tests.
2623 (ssize_t): Check via AC_TYPE_SSIZE_T instead of AC_CHECK_TYPE.
2624 (ptrdiff_t): Check via AC_CHECK_TYPE.
2625 * config.in, configure: Rebuild.
2626 * system.h: Include stdint.h, if available.
2627 * lex.c (WORDS_BIGENDIAN): Provide default.
2628 (acc_char_mask_misalign, acc_char_replicate, acc_char_cmp,
2629 acc_char_index, search_line_acc_char, repl_chars, search_line_mmx,
2630 search_line_sse2, search_line_sse42, init_vectorized_lexer,
2631 search_line_fast): New.
2632 (_cpp_clean_line): Use search_line_fast. Restructure the fast
2633 loop to make it clear when we're leaving the loop. Stay in the
2634 fast loop for non-trigraph '?'.
2635
2636 2010-06-11 Jakub Jelinek <jakub@redhat.com>
2637
2638 * include/cpplib.h (struct cpp_callbacks): Add user_builtin_macro
2639 callback.
2640 (enum cpp_builtin_type): Add BT_FIRST_USER and BT_LAST_USER.
2641 (cpp_macro_definition): Remove const qual from second argument.
2642 * macro.c (enter_macro_context): Call user_builtin_macro callback for
2643 NODE_BUILTIN !NODE_USED macros.
2644 (warn_of_redefinition): Likewise. Remove const qual from second
2645 argument.
2646 (cpp_macro_definition): Likewise.
2647 * pch.c (write_macdef, save_macros): Call user_builtin_macro callback
2648 for NODE_BUILTIN !NODE_USED macros.
2649
2650 2010-06-10 Joseph Myers <joseph@codesourcery.com>
2651
2652 * include/cpplib.h (struct cpp_options): Remove show_column.
2653 * init.c (cpp_create_reader, post_options): Don't set show_column.
2654
2655 2010-06-09 Joern Rennecke <joern.rennecke@embecosm.com>
2656
2657 PR bootstrap/44432
2658 * configure.ac: Before using ZW_PROG_COMPILER_DEPENDENCIES for C++,
2659 check that C++ compiler works.
2660 * configure: Regenerate.
2661
2662 2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
2663
2664 * include/symtab.h (ht_identifier_ptr): New.
2665
2666 2010-06-03 Joern Rennecke <joern.rennecke@embecosm.com>
2667 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2668
2669 PR bootstrap/42798
2670 * configure.ac: Check for declaration of 'basename(char *)'.
2671 * configure: Regenerate.
2672 * config.in: Regenerate.
2673
2674 2010-04-25 Joseph Myers <joseph@codesourcery.com>
2675
2676 * include/cpplib.h (enum c_lang): Add CLK_GNUC1X and CLK_STDC1X.
2677 * init.c (lang_defaults): Add entries for new language variants.
2678 (cpp_init_builtins): Define __STDC_VERSION__ to 201000L for C1X
2679 variants.
2680
2681 2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
2682
2683 PR cpp/43195
2684 * files.c (report_missing_guard): Test for #pragma once.
2685
2686 2010-04-07 Simon Baldwin <simonb@google.com>
2687
2688 * directives.c (do_diagnostic): Add warning reason argument,
2689 call appropriate error reporting function for code.
2690 (directive_diagnostics): Call specific warning functions with
2691 warning reason where appropriate.
2692 (do_error, do_warning, do_pragma_dependency): Add warning reason
2693 argument to do_diagnostic calls.
2694 * macro.c (_cpp_warn_if_unused_macro, enter_macro_context,
2695 _cpp_create_definition): Call specific warning functions with
2696 warning reason where appropriate.
2697 * Makefile.in: Add new diagnostic functions to gettext translations.
2698 * include/cpplib.h (struct cpp_callbacks): Add warning reason code
2699 to error callback.
2700 (CPP_DL_WARNING, CPP_DL_WARNING_SYSHDR, CPP_DL_PEDWARN, CPP_DL_ERROR,
2701 CPP_DL_ICE, CPP_DL_NOTE, CPP_DL_FATAL): Replace macros with enums.
2702 (CPP_W_NONE, CPP_W_DEPRECATED, CPP_W_COMMENTS,
2703 CPP_W_MISSING_INCLUDE_DIRS, CPP_W_TRIGRAPHS, CPP_W_MULTICHAR,
2704 CPP_W_TRADITIONAL, CPP_W_LONG_LONG, CPP_W_ENDIF_LABELS,
2705 CPP_W_NUM_SIGN_CHANGE, CPP_W_VARIADIC_MACROS,
2706 CPP_W_BUILTIN_MACRO_REDEFINED, CPP_W_DOLLARS, CPP_W_UNDEF,
2707 CPP_W_UNUSED_MACROS, CPP_W_CXX_OPERATOR_NAMES, CPP_W_NORMALIZE,
2708 CPP_W_INVALID_PCH, CPP_W_WARNING_DIRECTIVE): New enums for cpp
2709 warning reason codes.
2710 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
2711 cpp_warning_with_line, cpp_pedwarning_with_line,
2712 cpp_warning_with_line_syshdr): New specific error reporting functions.
2713 * pch.c (cpp_valid_state): Call specific warning functions with
2714 warning reason where appropriate.
2715 * errors.c (cpp_diagnostic, cpp_diagnostic_with_line): New central
2716 diagnostic handlers.
2717 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
2718 cpp_warning_with_line, cpp_pedwarning_with_line,
2719 cpp_warning_with_line_syshdr): New specific error reporting functions.
2720 * expr.c (cpp_classify_number, eval_token, num_unary_op): Call
2721 specific warning functions with warning reason where appropriate.
2722 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment,
2723 warn_about_normalization, lex_identifier_intern, lex_identifier,
2724 _cpp_lex_direct): Ditto.
2725 * charset.c (_cpp_valid_ucn, convert_hex, convert_escape,
2726 narrow_str_to_charconst): Ditto.
2727
2728 2010-04-06 Jakub Jelinek <jakub@redhat.com>
2729
2730 PR preprocessor/43642
2731 * lex.c (lex_raw_string): Change type of TYPE variable to
2732 unsigned char.
2733
2734 2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2735
2736 * aclocal.m4: Regenerate.
2737
2738 2010-03-29 Jason Merrill <jason@redhat.com>
2739
2740 More N3077 raw string changes
2741 * charset.c (cpp_interpret_string): Don't transform UCNs in raw
2742 strings.
2743 * lex.c (bufring_append): Split out from...
2744 (lex_raw_string): ...here. Undo trigraph and line splicing
2745 transformations. Do process line notes in multi-line literals.
2746 (_cpp_process_line_notes): Ignore notes that were already handled.
2747
2748 Some raw string changes from N3077
2749 * charset.c (cpp_interpret_string): Change inner delimiters to ().
2750 * lex.c (lex_raw_string): Likewise. Also disallow '\' in delimiter.
2751
2752 2010-02-11 Jakub Jelinek <jakub@redhat.com>
2753
2754 * init.c (read_original_filename): Don't call read_original_directory
2755 if _cpp_handle_directive returns 0.
2756
2757 2010-01-01 Joseph Myers <joseph@codesourcery.com>
2758
2759 PR preprocessor/41947
2760 * expr.c (cpp_classify_number): Give error for hexadecimal
2761 floating-point constant with no digits before or after point.
2762
2763 2009-11-20 Arnaud Charlet <charlet@adacore.com>
2764
2765 * macro.c (enter_macro_context): Call cb.used callback if defined.
2766 * directives.c (do_idef, do_ifndef): Ditto.
2767 * include/cpplib.h (struct cpp_callbacks): Add used callback.
2768
2769 2009-11-11 Kai Tietz <kai.tietz@onevision.com>
2770
2771 * directives.c (do_pragma_push_macro): New pragma handler.
2772 (do_pragma_pop_macro): Likewise.
2773 (_cpp_init_internal_pragmas): Add push_macro and
2774 pop_macro handler to internal pragmas.
2775 (lex_macro_node_from_str): Removed.
2776 (cpp_push_definition): Replace lex_macro_node_from_str
2777 by _cpp_lex_identifier.
2778 (cpp_pop_definition): Likewise.
2779 * internal.h (_cpp_lex_identifier): New prototype.
2780 (def_pragma_macro): New structure.
2781 (cpp_reader): New member pushed_macros.
2782 * lex.c (_cpp_lex_identifier): New function.
2783 (lex_identifier_intern): New function.
2784 * init.c (cpp_create_reader): Initialize pushed_macros
2785 member.
2786 (cpp_destroy): Free elements in pushed_macros member.
2787 * pch.c (_cpp_save_pushed_macros): New function.
2788 (_cpp_restore_pushed_macros): Likewise.
2789 (_cpp_restore_pushed_macros): Use _cpp_save_pushed_macros.
2790 (cpp_read_state): Use _cpp_restore_pushed_macros.
2791
2792 2009-10-19 Jakub Jelinek <jakub@redhat.com>
2793
2794 * charset.c (cpp_init_iconv): Initialize utf8_cset_desc.
2795 (_cpp_destroy_iconv): Destroy utf8_cset_desc, char16_cset_desc
2796 and char32_cset_desc.
2797 (converter_for_type): Handle CPP_UTF8STRING.
2798 (cpp_interpret_string): Handle CPP_UTF8STRING and raw-strings.
2799 * directives.c (get__Pragma_string): Handle CPP_UTF8STRING.
2800 (parse_include): Reject raw strings.
2801 * include/cpplib.h (CPP_UTF8STRING): New token type.
2802 * internal.h (struct cpp_reader): Add utf8_cset_desc field.
2803 * lex.c (lex_raw_string): New function.
2804 (lex_string): Handle u8 string literals, call lex_raw_string
2805 for raw string literals.
2806 (_cpp_lex_direct): Call lex_string even for u8" and {,u,U,L,u8}R"
2807 sequences.
2808 * macro.c (stringify_arg): Handle CPP_UTF8STRING.
2809
2810 2009-10-14 Jakub Jelinek <jakub@redhat.com>
2811
2812 PR preprocessor/41543
2813 * include/line-map.h (RESERVED_LOCATION_COUNT): Define.
2814 * line-map.c (linemap_init): Initialize highest_location and
2815 highest_line to RESERVED_LOCATION_COUNT-1 instead of 0.
2816
2817 2009-10-09 Jason Merrill <jason@redhat.com>
2818
2819 * charset.c (_cpp_valid_ucn): Update C++0x restrictions.
2820
2821 2009-10-09 Neil Vachharajani <nvachhar@google.com>
2822
2823 * directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and
2824 sccs.
2825
2826 2009-09-23 Loren J. Rittle <ljrittle@acm.org>
2827
2828 * configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h.
2829 * configure: Rebuilt.
2830
2831 2009-09-22 Richard Guenther <rguenther@suse.de>
2832
2833 PR pch/38987
2834 * files.c (pch_open_file): Disallow non-toplevel PCH inclusion.
2835
2836 2009-09-18 Chris Demetriou <cgd@google.com>
2837
2838 PR preprocessor/28435:
2839 * include/cpplib.h (struct cpp_options): Add new member
2840 deps.need_preprocessor_output.
2841 * files.c (open_file_failed): If preprocessor output is needed
2842 always report an error.
2843
2844 2009-09-13 Kai Tietz <kai.tietz@onevision.com>
2845
2846 * configure.ac: Set for i?86-w64-mingw*
2847 need_64bit_hwint to yes.
2848 * configure: Regenerated.
2849
2850 2009-09-10 Jason Merrill <jason@redhat.com>
2851
2852 * directives.c (cpp_define): constify.
2853
2854 2009-09-02 Ian Lance Taylor <iant@google.com>
2855
2856 * macro.c (stringify_arg): Escape CPP_WCHAR tokens.
2857
2858 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2859
2860 * configure.ac (AC_PREREQ): Bump to 2.64.
2861
2862 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
2863
2864 * aclocal.m4: Regenerate.
2865 * config.in: Regenerate.
2866 * configure: Regenerate.
2867
2868 2009-08-17 Tom Tromey <tromey@redhat.com>
2869
2870 PR preprocessor/41067:
2871 * charset.c (convert_escape): Add missing ":" to error text.
2872
2873 2009-07-27 Douglas B Rupp <rupp@gnat.com>
2874
2875 * include/cpplib.h (INO_T_CPP): New macro.
2876 (struct cpp_dir): Use it.
2877
2878 2009-07-20 Jerry Quinn <jlquinn@optonline.net>
2879
2880 PR regression/40800
2881 * configure.ac: Use = instead of == for testing
2882 ENABLE_BUILD_WITH_CXX.
2883 * configure: Rebuild.
2884
2885 2009-07-17 Jerry Quinn <jlquinn@optonline.net>
2886
2887 * directives.c (do_linemarker, do_line): Use CPP_STRING for
2888 ignored enum value.
2889 * files.c (find_file_in_dir): Add cast from void* to char*.
2890 * symtab.c (ht_lookup_with_hash): Add cast from void* to char*.
2891 * Makefile.in: (WARN_CFLAGS): Use general and C-specific
2892 warnings.
2893 (CXX, CXXFLAGS, WARN_CXXFLAGS, ALL_CXXFLAGS,
2894 ENABLE_BUILD_WITH_CXX, CCDEPMODE, CXXDEPMODE, COMPILER,
2895 COMPILER_FLAGS): New.
2896 (DEPMODE): Set from CCDEPMODE or CXXDEPMODE.
2897 (COMPILE.base): Use COMPILER instead of CC. Use COMPILER_FLAGS
2898 instead of ALL_CFLAGS.
2899 * configure.ac: Invoke AC_PROG_CXX. Separate C-specific warnings
2900 from other warnings. Add -Wc++-compat to C-specific warnings.
2901 Check for --enable-build-with-cxx. Set and substitute
2902 ENABLE_BUILD_WITH_CXX. Invoke ZW_PROG_COMPILER_DEPENDENCIES
2903 according to ENABLE_BUILD_WITH_CXX. Invoke AC_LANG before
2904 AC_CHECK_HEADERS.
2905 * configure: Rebuild.
2906 * include/cpp-id-data.h: Remove extern "C".
2907 * include/line-map.h: Likewise.
2908 * include/mkdeps.h: Likewise.
2909 * include/symtab.h: Likewise.
2910 * internal.h: Likewise.
2911
2912 2009-06-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2913
2914 * directives.c (parse_include): Add location argument. Update all
2915 calls.
2916 (parse_answer): Likewise.
2917 (do_include_common): Error with exact location.
2918 (parse_assertion): Likewise.
2919
2920 2009-06-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
2921
2922 * expr.c (num_div_op): Take explicit location.
2923
2924 2009-06-17 Ian Lance Taylor <iant@google.com>
2925
2926 * include/cpplib.h (progname): Don't declare.
2927
2928 2009-06-12 Ian Lance Taylor <iant@google.com>
2929
2930 * include/cpplib.h (struct cpp_options): Add
2931 warn_cxx_operator_names field.
2932 (NODE_WARN_OPERATOR): Define.
2933 (struct cpp_hashnode): Increase flags field to 10 bits, decrease
2934 type to 6 bits.
2935 * init.c (mark_named_operators): Add flags parameter.
2936 (cpp_post_options): Pick flags value to pass to
2937 mark_named_operators.
2938 * lex.c (lex_identifier): If NODE_WARN_OPERATOR is set, warn that
2939 identifier is an operator name in C++.
2940
2941 2009-06-01 Aldy Hernandez <aldyh@redhat.com>
2942
2943 * include/line-map.h (LAST_SOURCE_COLUMN): New.
2944
2945 2009-06-01 Ian Lance Taylor <iant@google.com>
2946
2947 * include/cpp-id-data.h: Add extern "C".
2948 * include/line-map.h: Likewise.
2949 * include/mkdeps.h: Likewise.
2950 * include/symtab.h: Likewise.
2951 * internal.h: Likewise.
2952
2953 2009-05-15 Ian Lance Taylor <iant@google.com>
2954
2955 * include/cpplib.h (enum cpp_builtin_type): Rename from enum
2956 builtin_type. Change all uses.
2957
2958 2009-05-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
2959
2960 PR cpp/36674
2961 * directives (do_linemarker): Compensate for the increment in
2962 location that occurs when we reach the end of line.
2963 * files (_cpp_stack_include): Mention _cpp_find_file in the
2964 comment.
2965
2966 2009-05-10 Joseph Myers <joseph@codesourcery.com>
2967
2968 * include/cpplib.h (enum cpp_token_fld_kind): Add
2969 CPP_TOKEN_FLD_TOKEN_NO.
2970 (struct cpp_macro_arg, struct cpp_identifier): Define.
2971 (union cpp_token_u): Use struct cpp_identifier for identifiers.
2972 Use struct cpp_macro_arg for macro arguments. Add token_no for
2973 CPP_PASTE token numbers.
2974 * directives.c (_cpp_handle_directive, lex_macro_node, do_pragma,
2975 do_pragma_poison, parse_assertion): Use val.node.node in place of
2976 val.node.
2977 * expr.c (parse_defined, eval_token): Use val.node.node in place
2978 of val.node.
2979 * lex.c (cpp_ideq, _cpp_lex_direct, cpp_token_len,
2980 cpp_spell_token, cpp_output_token, _cpp_equiv_tokens,
2981 cpp_token_val_index): Use val.macro_arg.arg_no or val.token_no in
2982 place of val.arg_no. Use val.node.node in place of val.node.
2983 * macro.c (replace_args, cpp_get_token, parse_params,
2984 lex_expansion_token, create_iso_definition, cpp_macro_definition):
2985 Use val.macro_arg.arg_no or val.token_no in place of val.arg_no.
2986 Use val.node.node in place of val.node.
2987
2988 2009-05-03 Joseph Myers <joseph@codesourcery.com>
2989
2990 * charset.c (one_utf8_to_cppchar): Correct mask used for 5-byte
2991 UTF-8 sequences.
2992
2993 2009-04-25 Joseph Myers <joseph@codesourcery.com>
2994
2995 PR preprocessor/39559
2996 * expr.c (cpp_interpret_integer): Use a pedwarn for decimal
2997 constants larger than intmax_t in C99 mode.
2998
2999 2009-04-21 Taras Glek <tglek@mozilla.com>
3000
3001 * include/cpp-id-data.h: Update GTY annotations to new syntax.
3002 * include/cpplib.h: Likewise.
3003 * include/line-map.h: Likewise.
3004 * include/symtab.h: Likewise.
3005
3006 2009-04-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3007
3008 PR c++/14875
3009 * lex.c (cpp_type2name): Take a flags parameter. Call
3010 cpp_named_operator2name for named operators and cpp_digraph2name
3011 for digraphs.
3012 (cpp_digraph2name): New.
3013 (cpp_spell_token): Use it.
3014 (cpp_output_token): Likewise.
3015 * include/cpplib.h (cpp_type2name): Update declaration.
3016 * init.c (cpp_named_operator2name): New.
3017 * internal.h (cpp_named_operator2name): Declare.
3018
3019 2009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3020
3021 PR c++/13358
3022 * init.c (cpp_create_reader): Wlong_long is disabled by default.
3023 * expr.c (cpp_classify_number): Give different messages for C and
3024 C++ front-ends.
3025
3026 2009-04-19 Joseph Myers <joseph@codesourcery.com>
3027
3028 PR preprocessor/20078
3029 * include/cpp-id-data.h (struct cpp_macro): Add extra_tokens
3030 field.
3031 * include/cpplib.h (SP_DIGRAPH, SP_PREV_WHITE): Define.
3032 (struct cpp_token): Change flags to unsigned short.
3033 * lex.c (_cpp_lex_direct): Initialize arg_no for CPP_PASTE tokens.
3034 (_cpp_equiv_tokens): Check arg_no for CPP_PASTE tokens.
3035 (cpp_token_val_index): Return CPP_TOKEN_FLD_ARG_NO for CPP_PASTE
3036 tokens.
3037 * macro.c (macro_real_token_count): New.
3038 (enter_macro_context, replace_args): Use macro_real_token_count.
3039 (create_iso_definition): Record whitespace surrounding and digraph
3040 spelling of # and ## tokens using SP_PREV_WHITE and SP_DIGRAPH.
3041 Set extra_tokens and save CPP_PASTE tokens with arg_no set for
3042 multiple consecutive ## tokens.
3043 (_cpp_create_definition): Initialize extra_tokens.
3044 (cpp_macro_definition): Use macro_real_token_count.
3045
3046 2009-04-18 Joseph Myers <joseph@codesourcery.com>
3047
3048 * directives.c (parse_include): Pass true to check_eol.
3049
3050 2009-04-18 Joseph Myers <joseph@codesourcery.com>
3051
3052 PR preprocessor/39646
3053 * include/line-map.h (enum lc_reason): Add LC_RENAME_VERBATIM.
3054 * line-map.c (linemap_add): Handle LC_RENAME_VERBATIM.
3055 * directives.c (do_line, do_linemarker): Use LC_RENAME_VERBATIM in
3056 place of LC_RENAME.
3057
3058 2009-04-18 Joseph Myers <joseph@codesourcery.com>
3059
3060 PR preprocessor/39647
3061 * directives.c (check_eol): Add parameter expand.
3062 (do_undef, parse_include, do_line, do_linemarker, do_ident,
3063 do_pragma_once, do_pragma_system_header, do_ifdef, do_ifndef,
3064 do_else, do_endif, do_assert, do_unassert): All callers changed.
3065 Pass true from do_line, false elsewhere.
3066
3067 2009-04-12 Joseph Myers <joseph@codesourcery.com>
3068
3069 PR preprocessor/31869
3070 * macro.c (stringify_arg): Handle NULL source token in padding
3071 token where previous padding token did not have source token with
3072 preceding whitespace.
3073
3074 2009-04-09 Jakub Jelinek <jakub@redhat.com>
3075
3076 * Makefile.in: Change copyright header to refer to version
3077 3 of the GNU General Public License and to point readers at the
3078 COPYING3 file and the FSF's license web page.
3079 * charset.c: Likewise.
3080 * directives-only.c: Likewise.
3081 * directives.c: Likewise.
3082 * errors.c: Likewise.
3083 * expr.c: Likewise.
3084 * files.c: Likewise.
3085 * identifiers.c: Likewise.
3086 * include/cpp-id-data.h: Likewise.
3087 * include/cpplib.h: Likewise.
3088 * include/line-map.h: Likewise.
3089 * include/mkdeps.h: Likewise.
3090 * include/symtab.h: Likewise.
3091 * init.c: Likewise.
3092 * internal.h: Likewise.
3093 * lex.c: Likewise.
3094 * line-map.c: Likewise.
3095 * macro.c: Likewise.
3096 * makeucnid.c: Likewise.
3097 * mkdeps.c: Likewise.
3098 * pch.c: Likewise.
3099 * symtab.c: Likewise.
3100 * system.h: Likewise.
3101 * traditional.c: Likewise.
3102 * ucnid.tab: Likewise.
3103 * ucnid.h: Regenerate.
3104
3105 2009-04-01 Janis Johnson <janis187@us.ibm.com>
3106
3107 PR c/39027
3108 * include/cpplib.h (CPP_N_DEFAULT): Define.
3109 * expr.c (interpret_float_suffix): Recognize d or D for double,
3110 return new value for default.
3111 (cpp_classify_number): Issue pedwarn for use of d or D in suffix.
3112
3113 PR c/33466
3114 * expr.c (interpret_float_suffix): Reject invalid suffix that uses
3115 letters from decimal float and fixed-point suffixes.
3116
3117 2009-03-31 Joseph Myers <joseph@codesourcery.com>
3118
3119 PR preprocessor/15638
3120 * files.c (_cpp_find_file): Call open_file_failed after diagnosing
3121 invalid PCH.
3122 (open_file_failed): Make error for missing file fatal.
3123 * include/cpplib.h (CPP_DL_FATAL): Define.
3124
3125 2009-03-30 Sergiy Vyshnevetskiy <serg@vostok.net>
3126
3127 PR preprocessor/31932:
3128 * internal.h: Don't mention HAVE_ICONV_H.
3129 * configure, config.in: Rebuild.
3130 * configure.ac: Don't check for iconv.h.
3131
3132 2009-03-30 Tom Tromey <tromey@redhat.com>
3133
3134 PR preprocessor/39512:
3135 * line-map.c (linemap_init): Initialize 'reallocator' field.
3136
3137 2009-03-30 Jakub Jelinek <jakub@redhat.com>
3138
3139 PR target/39558
3140 * macro.c (cpp_get_token): If macro_to_expand returns NULL
3141 and used some tokens, add CPP_PADDING before next token.
3142
3143 2009-03-29 Joseph Myers <joseph@codesourcery.com>
3144
3145 PR preprocessor/34695
3146 * makedepend.c: Remove.
3147 * Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
3148 (all, clean, TAGS_SOURCES, include): Remove makedepend handling.
3149 * directives.c (cpp_errors): Remove.
3150 * errors.c (print_location, _cpp_begin_message, v_message):
3151 Remove.
3152 (cpp_error, cpp_error_with_line): Always use error callback.
3153 (cpp_error, cpp_error_with_line, cpp_errno): Return bool.
3154 * include/cpplib.h (cpp_options): Remove pedantic_errors,
3155 inhibit_warnings, warn_system_headers, inhibit_errors,
3156 warnings_are_errors, client_diagnostic.
3157 (cpp_callbacks): Add extra arguments to error callback; make it
3158 return bool.
3159 (cpp_finish): Return void.
3160 (cpp_destroy): Remove inaccurate comment about return value.
3161 (cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
3162 (CPP_DL_NOTE): Define.
3163 * include/line-map.h (linemap_print_containing_files): Remove.
3164 * init.c (cpp_finish): Do not check for or return number of
3165 errors.
3166 * internal.h (cpp_reader): Remove errors field.
3167 * line-map.c (linemap_print_containing_files): Remove.
3168 * macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
3169 about previous definition. Only emit it if previous diagnostic
3170 was emitted.
3171
3172 2009-03-28 Joseph Myers <joseph@codesourcery.com>
3173
3174 * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
3175 mkinstalldirs.
3176
3177 2009-03-18 Jakub Jelinek <jakub@redhat.com>
3178
3179 * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
3180
3181 2009-02-21 Joseph Myers <joseph@codesourcery.com>
3182
3183 * lex.c (lex_string): Return a CPP_LESS token for missing '>' in a
3184 header name.
3185 (_cpp_lex_direct): Handle this.
3186
3187 2009-02-15 Richard Guenther <rguenther@suse.de>
3188
3189 Revert last change.
3190
3191 2009-02-13 Richard Guenther <rguenther@suse.de>
3192
3193 * configure.ac: Enable LFS.
3194 * configure: Re-generate.
3195 * config.in: Likewise.
3196
3197 2009-01-05 Ben Elliston <bje@au.ibm.com>
3198
3199 * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
3200 (.po.pox): Likewise.
3201 (po/$(PACKAGE).pot): Likewise.
3202
3203 2008-12-10 Alexandre Oliva <aoliva@redhat.com>
3204
3205 PR target/37033
3206 * pch.c (cpp_valid_state): Improve message for poisoned symbols.
3207 Allow for differences in __GCC_HAVE_DWARF2_CFI_ASM.
3208
3209 2008-11-29 Joseph Myers <joseph@codesourcery.com>
3210
3211 * lex.c (cpp_token_len): Use 6 as default length.
3212
3213 2008-10-31 Manuel López-Ibáñez <manu@gcc.gnu.org>
3214
3215 * expr.c (struct op): Add location.
3216 (_cpp_parse_expr): Propagate locations throught the stack
3217 of expressions.
3218 (reduce): Likewise.
3219 (check_promotion): Use explicit location in errors.
3220
3221 2008-10-05 Matthew Gingell <gingell@adacore.com>
3222 Arnaud Charlet <charlet@adacore.com>
3223
3224 * include/cpplib.h (cpp_comments, cpp_comment_table): New structs.
3225 (cpp_get_comments): New function.
3226 * internal.h (struct cpp_reader): Add comments field.
3227 * init.c (cpp_destroy): Free comments.
3228 * lex.c (store_comment, cpp_get_comments): New functions.
3229 (comments): New struct.
3230 (save_comment): Store comments in comments struct.
3231
3232 2008-09-18 Simon Baldwin <simonb@google.com>
3233
3234 * include/cpplib.h (struct cpp_options): Add new boolean flag
3235 warn_builtin_macro_redefined.
3236 * init.c (cpp_create_reader): Initialize warn_builtin_macro_redefined.
3237 * (struct builtin_operator): Split out from previous struct builtin,
3238 enhance extra const correctness.
3239 * (struct builtin_macro): Split out from previous struct builtin, add
3240 new always_warn_if_redefined flag, enhance const correctness.
3241 * (mark_named_operators): Use struct builtin_operator.
3242 * (cpp_init_special_builtins): Use struct builtin_macro, add NODE_WARN
3243 to builtins selectively.
3244 * macro.c (warn_of_redefinition): Return false if a builtin macro
3245 is not flagged with NODE_WARN.
3246
3247 2008-07-31 Jakub Jelinek <jakub@redhat.com>
3248
3249 PR preprocessor/36649
3250 * files.c (struct report_missing_guard_data): New type.
3251 (report_missing_guard): Put paths into an array instead of printing
3252 them right away. Return 1 rather than 0.
3253 (report_missing_guard_cmp): New function.
3254 (_cpp_report_missing_guards): Sort and print paths gathered by
3255 report_missing_guard callback.
3256
3257 2008-07-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3258
3259 PR 28079
3260 * directives.c (strtolinenum): Handle overflow.
3261 (do_line): Give a warning if line number overflowed.
3262 (do_linemarker): Update call to strtolinenum.
3263
3264 2008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
3265
3266 * include/line-map.h (linenum_type): New typedef.
3267 (struct line_map): Use it.
3268 (SOURCE_LINE): Second arguments is a LOCATION not a LINE.
3269 (SOURCE_COLUMN): Likewise.
3270 * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store
3271 source_location values in a variable of type linenum_type.
3272 * directives.c (struct if_stack): Use linenum_type.
3273 (strtoul_for_line): Rename as strtolinenum.
3274 (do_line): Use linenum_type.
3275 (do_linemarker): Use linenum_type and strtolinenum.
3276 (_cpp_do_file_change): Use linenum_t.
3277 * line-map.c (linemap_add): Likewise.
3278 (linemap_line_start): Likewise.
3279 * traditional.c (struct fun_macro): 'line' is a source_location.
3280 * errors.c (print_location): Use linenum_type.
3281 * directives-only.c (_cpp_preprocess_dir_only): Likewise.
3282 * internal.h (CPP_INCREMENT_LINE): Likewise.
3283 * lex.c (_cpp_skip_block_comment): Use source_location.
3284
3285 2008-07-14 Ben Elliston <bje@au.ibm.com>
3286
3287 * include/cpplib.h (NODE_CONDITIONAL): New.
3288 (struct cpp_callbacks): New macro_to_expand field.
3289 (struct cpp_hashnode): Adjust size of flags and type fields.
3290 (cpp_peek_token): Prototype.
3291 * lex.c (cpp_peek_token): New function.
3292 (_cpp_temp_token): Protect pre-existing lookaheads.
3293 * macro.c (cpp_get_token): Expand any conditional macros.
3294 (_cpp_backup_tokens_direct): New.
3295 (_cpp_backup_tokens): Call _cpp_backup_tokens_direct.
3296 (warn_of_redefinition): Silently allow redefined conditional
3297 macros.
3298 (_cpp_create_definition): Remove the conditional flag when a user
3299 defines one of the conditional macros.
3300 * internal.h (_cpp_backup_tokens_direct): New prototype.
3301
3302 2008-06-13 Andrew Haley <aph@redhat.com>
3303
3304 PR preprocessor/33305
3305 * macro.c (replace_args): Print a warning for empty macro
3306 arguments in C89 and C++.
3307
3308 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3309
3310 * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies.
3311 * configure: Regenerate.
3312
3313 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3314
3315 * Makefile.in (datarootdir): New variable.
3316
3317 2008-06-12 H.J. Lu <hongjiu.lu@intel.com>
3318
3319 PR preprocessor/36479
3320 * charset.c (cpp_interpret_string_notranslate): Also set
3321 narrow_cset_desc.width.
3322
3323 2008-06-07 Joseph Myers <joseph@codesourcery.com>
3324
3325 * configure.ac (parisc*64*-*-*): Remove.
3326 * configure: Regenerate.
3327
3328 2008-05-30 Tom Tromey <tromey@redhat.com>
3329
3330 PR preprocessor/36320:
3331 * internal.h (_cpp_parse_expr): Update.
3332 * expr.c (_cpp_parse_expr): Add 'is_if' argument. Update error
3333 messages.
3334 * directives.c (do_if): Update.
3335 (do_elif): Require expression if processing group.
3336
3337 2008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
3338
3339 * include/cpplib.h (struct cpp_dir): Add new field, canonical_name.
3340
3341 2008-05-21 Tom Tromey <tromey@redhat.com>
3342
3343 PR preprocessor/27777:
3344 * lex.c (cpp_output_line_to_string): New function.
3345 * internal.h (_cpp_begin_message): Don't declare.
3346 * errors.c (_cpp_begin_message): Now static.
3347 * include/cpplib.h (cpp_output_line_to_string): Declare.
3348 * directives.c (do_diagnostic): Rewrote. Use
3349 cpp_output_line_to_string. Don't use _cpp_begin_message.
3350
3351 2008-05-21 Tom Tromey <tromey@redhat.com>
3352
3353 * include/symtab.h (HT_ALLOCED): Remove.
3354 (ht_purge): Declare.
3355 * symtab.c (DELETED): New define.
3356 (ht_lookup): Update comment.
3357 (ht_lookup_with_hash): Handle deleted entries. Remove HT_ALLOCED
3358 code. Use subobject allocator for strings, if it exists.
3359 (ht_expand): Handle deleted entries.
3360 (ht_forall): Likewise.
3361 (ht_purge): New function.
3362 (ht_dump_statistics): Print deletion statistics.
3363
3364 2008-05-13 Tom Tromey <tromey@redhat.com>
3365
3366 PR preprocessor/22168:
3367 * include/cpplib.h (struct cpp_options) <objc>: Update
3368 documentation.
3369 * expr.c (eval_token): Warn for use of assertions.
3370 * directives.c (directive_diagnostics): Warn about extensions.
3371 (DEPRECATED): New define.
3372 (DIRECTIVE_TABLE): Use it.
3373
3374 2008-05-06 Tom Tromey <tromey@redhat.com>
3375
3376 PR preprocessor/35313, PR preprocessor/36088:
3377 * expr.c (optab) <QUERY, COMMA>: Set precedence to 4.
3378 (reduce) <case CPP_QUERY>: Special case CPP_COMMA and CPP_COLON.
3379
3380 2008-05-04 David S. Miller <davem@davemloft.net>
3381
3382 * configure.ac (sparc*-*-*): Always set need_64bit_hwint to yes.
3383 * configure: Regenerate.
3384
3385 2008-04-22 Daniel Franke <franke.daniel@gmail.com>
3386
3387 * include/cpplib.h (cpp_define_formatted): New.
3388 * directives.c (cpp_define_formatted): New.
3389
3390 2008-04-21 Tom Tromey <tromey@redhat.com>
3391
3392 PR libcpp/33415:
3393 * charset.c (_cpp_convert_input): Add buffer_start argument.
3394 Ignore UTF-8 BOM if seen.
3395 * internal.h (_cpp_convert_input): Add argument.
3396 * files.c (struct _cpp_file) <buffer_start>: New field.
3397 (destroy_cpp_file): Free buffer_start, not buffer.
3398 (_cpp_pop_file_buffer): Likewise.
3399 (read_file_guts): Update.
3400
3401 2008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
3402
3403 * include/cpp-id-data.h (UC): Was U, conflicts with U"..." literal.
3404 * include/cpplib.h (CHAR16, CHAR32, STRING16, STRING32): New tokens.
3405 (struct cpp_options): Added uliterals.
3406 (cpp_interpret_string): Update prototype.
3407 (cpp_interpret_string_notranslate): Idem.
3408 * charset.c (init_iconv_desc): New width member in cset_converter.
3409 (cpp_init_iconv): Add support for char{16,32}_cset_desc.
3410 (convert_ucn): Idem.
3411 (emit_numeric_escape): Idem.
3412 (convert_hex): Idem.
3413 (convert_oct): Idem.
3414 (convert_escape): Idem.
3415 (converter_for_type): New function.
3416 (cpp_interpret_string): Use converter_for_type, support u and U prefix.
3417 (cpp_interpret_string_notranslate): Match changed prototype.
3418 (wide_str_to_charconst): Use converter_for_type.
3419 (cpp_interpret_charconst): Add support for CPP_CHAR{16,32}.
3420 * directives.c (linemarker_dir): Macro U changed to UC.
3421 (parse_include): Idem.
3422 (register_pragma_1): Idem.
3423 (restore_registered_pragmas): Idem.
3424 (get__Pragma_string): Support CPP_STRING{16,32}.
3425 * expr.c (eval_token): Support CPP_CHAR{16,32}.
3426 * init.c (struct lang_flags): Added uliterals.
3427 (lang_defaults): Idem.
3428 * internal.h (struct cset_converter) <width>: New field.
3429 (struct cpp_reader) <char16_cset_desc>: Idem.
3430 (struct cpp_reader) <char32_cset_desc>: Idem.
3431 * lex.c (digraph_spellings): Macro U changed to UC.
3432 (OP, TK): Idem.
3433 (lex_string): Add support for u'...', U'...', u"..." and U"...".
3434 (_cpp_lex_direct): Idem.
3435 * macro.c (_cpp_builtin_macro_text): Macro U changed to UC.
3436 (stringify_arg): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
3437
3438 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
3439
3440 PR bootstrap/35457
3441 * aclocal.m4: Regenerate.
3442 * configure: Regenerate.
3443
3444 2008-04-17 Tom Tromey <tromey@redhat.com>
3445
3446 PR libcpp/34866:
3447 * errors.c (cpp_error): Don't reference a token before the start
3448 of the current run.
3449
3450 2008-04-16 Tom Tromey <tromey@redhat.com>
3451
3452 * Makefile.in (TAGS_SOURCES): New variable.
3453 (TAGS): New target.
3454
3455 2008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
3456
3457 * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-*
3458 and shbe-*-*.
3459 * configure: Rebuilt.
3460
3461 2008-04-02 Joseph Myers <joseph@codesourcery.com>
3462
3463 * include/cpplib.h (struct cpp_callbacks): Add used_define,
3464 used_undef and before_define.
3465 (NODE_USED): Define.
3466 * directives.c (do_define, do_undef, undefine_macros, do_ifdef,
3467 do_ifndef, cpp_pop_definition): Handle new flag and use new
3468 callbacks.
3469 * expr.c (parse_defined): Handle new flag and use new callbacks.
3470 * macro.c (enter_macro_context, _cpp_free_definition): Handle new
3471 flag and use new callbacks.
3472
3473 2008-04-01 Jakub Jelinek <jakub@redhat.com>
3474
3475 PR pch/13675
3476 * files.c (struct _cpp_file): Remove pch field.
3477 (pch_open_file): Don't set file->pch, just file->pchname.
3478 (should_stack_file): After pfile->cb.read_pch call
3479 free pchname and clear pchname, don't close file->fd.
3480 Test file->pchname instead of file->pch. Don't close fd after cb.
3481 (_cpp_stack_include): Test file->pchname instead of file->pch.
3482
3483 2008-03-28 Tom Tromey <tromey@redhat.com>
3484
3485 * Makefile.in (POSTCOMPILE): New variable.
3486 (.c.o): Use it.
3487
3488 2008-03-13 Tom Tromey <tromey@redhat.com>
3489
3490 PR libcpp/35322:
3491 * directives.c (destringize_and_run): Set pfile->directive.
3492
3493 2008-03-06 Markus Milleder <markus.milleder@generali.at>
3494
3495 PR preprocessor/35458
3496 * mkdeps.c (munge): Quote '#' with a '\'.
3497
3498 2008-02-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
3499
3500 PR preprocessor/35379
3501 * mkdeps.c (deps_write): Ensure the first target always appears
3502 in the first column, without leading backslash newline. Avoid
3503 some more extra whitespace.
3504
3505 2008-02-25 Thiemo Seufer <ths@mips.com>
3506
3507 * Makefile.in ($(srcdir)/config.in): Depend on configure.ac.
3508
3509 2008-02-19 Tom Tromey <tromey@redhat.com>
3510
3511 * traditional.c (lex_identifier): Use CPP_HASHNODE.
3512 * lex.c (lex_identifier): Use CPP_HASHNODE.
3513 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
3514 do-while.
3515 * identifiers.c (alloc_node): Change return type.
3516 (_cpp_init_hashtable): Don't cast 'alloc_node'.
3517 (proxy_assertion_broken): New declaration.
3518 (cpp_forall_identifiers): Move comment.
3519 * line-map.c (linemap_add): Comment fix.
3520 (linemap_line_start): Indentation fix.
3521
3522 2008-01-25 Jakub Jelinek <jakub@redhat.com>
3523
3524 PR preprocessor/34692
3525 * macro.c (collect_args): Add pragma_buff argument. Push
3526 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens to *pragma_buff, rather
3527 than into arguments. Reset prevent_expansion and parsing_args
3528 state at CPP_PRAGMA_EOL/CPP_EOF.
3529 (funlike_invocation_p): Add pragma_buff argument, pass it through
3530 to collect_args.
3531 (enter_macro_context): Add result argument. Adjust
3532 funlike_invocation_p caller. Emit all deferred pragma tokens
3533 gathered during collect_args before the expansion, add a padding
3534 token. Return 2 instead of 1 if any pragma tokens were prepended.
3535 (cpp_get_token): If enter_macro_context returns 2, don't return
3536 a padding token, instead cycle to grab CPP_PRAGMA token.
3537 * directives.c (_cpp_handle_directive): If was_parsing_args
3538 in deferred pragma, leave parsing_args and prevent_expansion as is.
3539
3540 2008-01-22 Tom Tromey <tromey@redhat.com>
3541
3542 PR c++/34859
3543 * macro.c (_cpp_create_definition): Handle __STDC_LIMIT_MACROS and
3544 __STDC_CONSTANT_MACROS.
3545
3546 2008-01-07 Fred Fish <fnf@specifix.com>
3547
3548 PR preprocessor/30363
3549 * traditional.c (replace_args_and_push): Add local variable
3550 cxtquote, calculate the replacement text size assuming a
3551 worst case of every input character quoted with backslash,
3552 and properly handle output quoting of quote characters in
3553 actual arguments used in function-like macros.
3554
3555 2008-01-03 Tom Tromey <tromey@redhat.com>
3556
3557 PR preprocessor/34602
3558 * directives.c (do_line): Don't try to spell EOF token.
3559 (do_linemarker): Add comment.
3560
3561 2007-12-11 DJ Delorie <dj@redhat.com>
3562
3563 * charset.c (convert_using_iconv): Close out any shift states,
3564 returning to the initial state.
3565
3566 2007-12-06 Tom Tromey <tromey@redhat.com>
3567
3568 PR c/29172
3569 * internal.h (struct cpp_reader) <file_hash_entries>: Changed
3570 type.
3571 <file_hash_entries_allocated, file_hash_entries_used>: Removed.
3572 * files.c (FILE_HASH_POOL_SIZE): New macro.
3573 (struct file_hash_entry_pool): New.
3574 (destroy_all_cpp_files): New function.
3575 (allocate_file_hash_entries): Allocate a file_hash_entry_pool.
3576 (new_file_hash_entry): Update.
3577 (free_file_hash_entries): New function.
3578 (_cpp_cleanup_files): Call free_file_hash_entries and
3579 destroy_all_cpp_files.
3580 (cpp_clear_file_cache): New function.
3581 * include/cpplib.h (cpp_clear_file_cache): Declare.
3582
3583 2007-12-03 Tom Tromey <tromey@redhat.com>
3584
3585 PR preprocessor/34288
3586 * configure.ac, config.in: Rebuilt.
3587 * configure.ac: Check for ssize_t.
3588
3589 2007-11-30 Tom Tromey <tromey@redhat.com>
3590
3591 PR preprocessor/32868
3592 * macro.c (_cpp_create_definition): Special case
3593 __STDC_FORMAT_MACROS.
3594
3595 2007-11-16 Michael Matz <matz@suse.de>
3596
3597 * files.c (search_path_head): Fix check for absolute paths.
3598
3599 2007-11-11 Tom Tromey <tromey@redhat.com>
3600
3601 PR c++/17557
3602 * include/cpplib.h (cpp_included_before): Declare.
3603 * files.c (struct file_hash_entry) <location>: New field.
3604 (_cpp_find_file): Initialize new field.
3605 (make_cpp_dir): Likewise.
3606 (cpp_included_before): New function.
3607
3608 2007-11-01 Tom Tromey <tromey@redhat.com>
3609
3610 PR preprocessor/30805
3611 * macro.c (paste_tokens): Handle padding token.
3612 (paste_tokens): Don't abort unless padding has PASTE_LEFT flag.
3613
3614 2007-10-31 Tom Tromey <tromey@redhat.com>
3615
3616 PR preprocessor/30786
3617 * macro.c (builtin_macro): Return result of _cpp_do__Pragma.
3618 * directives.c (_cpp_do__Pragma): Return error status.
3619 * internal.h (_cpp_do__Pragma): Update.
3620 * directives.c (get__Pragma_string): Back up if EOF seen.
3621
3622 2007-09-06 Tom Tromey <tromey@redhat.com>
3623
3624 * internal.h (struct cpp_reader) <invocation_location>: New
3625 field.
3626 (struct cpp_reader) <set_invocation_location>: Likewise.
3627 * init.c (cpp_set_line_map): New function.
3628 * line-map.c (linemap_add): Use linemap's allocator.
3629 * include/line-map.h (GTY): Define.
3630 (line_map_realloc): New typedef.
3631 (struct line_map): Mark with GTY.
3632 (struct line_maps): Likewise.
3633 (struct line_maps) <maps>: Likewise.
3634 (struct line_maps) <reallocator>: New field.
3635 * include/symtab.h (GTY): Conditionally define.
3636 * include/cpplib.h (cpp_set_line_map): Declare.
3637 (cpp_get_token_with_location): Declare.
3638 * macro.c (cpp_get_token): Set invocation_location on the reader.
3639 (cpp_get_token_with_location): New function.
3640
3641 2007-08-30 Chao-ying Fu <fu@mips.com>
3642
3643 * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
3644 ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
3645 (cpp_classify_number): Support decimal fixed-point constants without
3646 exponents.
3647 Warn about fixed-point constants when -pedantic.
3648 * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
3649 comments to support fixed-point values.
3650 (CPP_N_FRACT, CPP_N_ACCUM): Define.
3651
3652 2007-08-18 Tom Tromey <tromey@redhat.com>
3653
3654 PR preprocessor/32974
3655 * directives.c (parse_include): Don't check for EOL when
3656 processing #pragma dependency.
3657
3658 2007-07-30 Ollie Wild <aaw@google.com>
3659
3660 * directives-only.c: New file.
3661 * internal.h (struct _cpp_dir_only_callbacks): New.
3662 (_cpp_preprocess_dir_only): New function.
3663 * directives.c (_cpp_handle_directive): Check directives_only before
3664 disabling execution of indented directives.
3665 * files.c (_cpp_stack_file): Add directives_only check.
3666 * include/cpplib.h (struct cpp_options): Add directives_only.
3667 (cpp_init_special_builtins): New function.
3668 * init.c (cpp_init_special_builtins): New function.
3669 (cpp_init_builtins): Move builtin_array initialization to
3670 cpp_init_special_builtins.
3671 (post_options): Check directives_only before setting
3672 pfile->state.prevent_expansion = 1.
3673 * macro.c (_cpp_builtin_macro_text): Print an error if __COUNTER__
3674 is expanded inside a directive while -fdirectives-only is enabled.
3675 * Makefile.in (libcpp_a_OBJS): Add directives-only.o.
3676 (libcpp_a_SOURCES): Add directives-only.c.
3677
3678 2007-07-04 Uros Bizjak <ubizjak@gmail.com>
3679
3680 * traditional.c (_cpp_scan_out_logical_line): Initialize
3681 fmacro.args, fmacro.node, fmacro.offset, fmacro.line and
3682 fmacro.args to prevent 'may be used uninitialized' warning.
3683
3684 2007-07-03 Uros Bizjak <ubizjak@gmail.com>
3685
3686 * include/cpplib.h (CPP_N_WIDTH_MD, CPP_N_MD_W, CPP_N_MD_Q):
3687 Add new constants.
3688 * expr.c (interpret_float_suffix): Process 'w', 'W', 'q' and 'Q'
3689 suffixes. Return CPP_N_MD_W for 'w' or 'W' suffixes and CPP_N_MD_Q
3690 for 'q' or 'Q' suffixes.
3691
3692 2007-06-17 Danny Smith <dannysmith@users.sourceforge.net
3693
3694 * files.c (open_file): Correct typo.
3695
3696 2007-06-16 Vladimir Prus <vladimir@codesourcery.com>
3697
3698 * files.c (open_file): Prevent the call
3699 for stat from overwriting errno.
3700
3701 2007-06-09 Vladimir Prus <vladimir@codesourcery.com>
3702
3703 * files.c (open_file): Account for the
3704 fact that on windows, opening a directory gives
3705 EACCES.
3706
3707 2007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
3708
3709 PR preprocessor/23479
3710 * expr.c (cpp_classify_number): Implement 0b-prefixed binary
3711 integer constants.
3712 (append_digit): Likewise.
3713 * include/cpplib.h: Add CPP_N_BINARY, to be used for 0b-prefixed
3714 binary integer constants.
3715
3716 2007-05-31 Dave Korn <dave.korn@artimi.com>
3717
3718 PR preprocessor/14331
3719 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
3720
3721 2007-05-24 Ollie Wild <aaw@google.com>
3722
3723 * macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
3724 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
3725 (cpp_write_pch_state): Save __COUNTER__ state.
3726 (cpp_valid_state): Check valid __COUNTER__ state.
3727 (cpp_read_state): Read new __COUNTER__ state.
3728 * include/cpplib.h (enum builtin_type): Add BT_COUNTER enumerator.
3729 * init.c (builtin_array): Add __COUNTER__/BT_COUNTER.
3730 * internal.h (struct cpp_reader): Add counter member.
3731
3732 2007-05-23 Simon Martin <simartin@users.sourceforge.net>
3733
3734 PR preprocessor/20077
3735 * macro.c (create_iso_definition): Fixed the method to determine
3736 whether the token-pasting operator appears at the beginning or the end
3737 of a macro.
3738
3739 2007-05-21 Ian Lance Taylor <iant@google.com>
3740
3741 * internal.h (struct cpp_reader): Add new fields:
3742 nonexistent_file_hash and nonexistent_file_ob.
3743 * files.c: Include "obstack.h".
3744 (find_file_in_dir): Before trying to open the file, look up the
3745 path name in the hash table of nonexistent files. After failing
3746 to open the file, add the path name to the hash table.
3747 (_cpp_find_file): Cache the results of looking up the file name
3748 starting with the quote and bracket chain heads, if we can.
3749 (nonexistent_file_hash_eq): New static function.
3750 (_cpp_init_files): Initialize pfile->nonexistent_file_hash and
3751 pfile->nonexistent_file_ob.
3752 (_cpp_cleanup_files): Free pfile->nonexistent_file_hash and
3753 pfile->nonexistent_file_ob.
3754
3755 2007-05-14 Janis Johnson <janis187@us.ibm.com>
3756
3757 * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
3758
3759 PR c/31924
3760 * expr.c (interpret_float_suffix): Check for invalid suffix.
3761
3762 2007-05-02 Eric Christopher <echristo@apple.com>
3763
3764 * expr.c (num_div_op): Don't overflow if the result is
3765 zero.
3766
3767 2007-05-02 Tom Tromey <tromey@redhat.com>
3768
3769 PR preprocessor/28709
3770 * macro.c (paste_tokens): Remove PASTE_LEFT from the old lhs.
3771
3772 2007-03-30 Michael Meissner <michael.meissner@amd.com>
3773
3774 * directives.c (lex_macro_node_from_str): Fix alloca call to be
3775 type correct.
3776
3777 2007-03-30 Richard Henderson <rth@redhat.com>
3778
3779 * directives.c (lex_macro_node_from_str): New.
3780 (cpp_push_definition, cpp_pop_definition): New.
3781 * include/cpplib.h (cpp_push_definition, cpp_pop_definition): Declare.
3782
3783 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
3784
3785 * Makefile.in: Add dummy install-pdf target.
3786
3787 2007-01-30 Tom Tromey <tromey@redhat.com>
3788
3789 PR preprocessor/30468
3790 * mkdeps.c (apply_vpath): Strip successive '/'s if we stripped
3791 './'.
3792
3793 2007-01-30 Tom Tromey <tromey@redhat.com>
3794
3795 PR preprocessor/29966
3796 * macro.c (lex_expansion_token): Save and restore cpp_reader's
3797 cur_token.
3798 (_cpp_create_definition): Don't restore cur_token here.
3799 * lex.c (_cpp_lex_token): Added assertion.
3800
3801 2007-01-27 Tom Tromey <tromey@redhat.com>
3802
3803 * configure: Rebuilt.
3804
3805 2007-01-12 Tom Tromey <tromey@redhat.com>
3806
3807 PR preprocessor/28227
3808 * directives.c (lex_macro_node): Added 'is_def_or_undef'
3809 argument.
3810 (do_define): Update.
3811 (do_undef): Update.
3812 (do_ifdef): Update.
3813 (do_ifndef): Update.
3814
3815 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
3816
3817 * configure: Regenerate.
3818
3819 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
3820
3821 * configure: Regenerate.
3822
3823 2007-01-04 Tom Tromey <tromey@redhat.com>
3824
3825 PR preprocessor/28165
3826 * internal.h (cpp_in_primary_file): New function.
3827 * directives.c (do_include_next): Use cpp_in_primary_file.
3828 (do_pragma_once): Likewise.
3829 (do_pragma_system_header): Likewise.
3830
3831 2006-12-29 Ian Lance Taylor <iant@google.com>
3832
3833 * lex.c (_cpp_clean_line): Add uses of __builtin_expect. Don't
3834 look backward at the end of the line unless we saw a backslash.
3835
3836 2006-12-29 Jakub Jelinek <jakub@redhat.com>
3837
3838 PR preprocessor/29612
3839 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not
3840 only when new_sysp is non-zero.
3841
3842 2006-12-28 Tom Tromey <tromey@redhat.com>
3843
3844 PR preprocessor/30001
3845 * charset.c (_cpp_convert_input): Check that to.len is greater
3846 than zero.
3847
3848 2006-11-20 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
3849
3850 * configure.ac (need_64bit_hwint): Need 64bit hwint for SPU.
3851 * configure: Rebuilt.
3852
3853 2006-11-01 Douglas Gregor <doug.gregor@gmail.com>
3854
3855 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX0X and CLK_CXX0X
3856 for experimental C++0x mode.
3857 * init.c (lang_defaults): Add defaults for C++0x modes. C++0x has
3858 adopted the preprocessor changes introduced in C99.
3859
3860 2006-10-29 Joseph Myers <joseph@codesourcery.com>
3861
3862 * configure.ac (need_64bit_hwint): Set for i[34567]86-*-linux*
3863 depending on --enable-targets=all.
3864 * configure: Regenerate.
3865
3866 2006-10-12 Jakub Jelinek <jakub@redhat.com>
3867
3868 PR preprocessor/28709
3869 * macro.c (paste_tokens): Do error reporting here, use BUF with the
3870 spelled LHS token as opposed to spelling it again.
3871 (paste_all_tokens): Don't report errors here, just break on failure.
3872
3873 2006-10-10 Brooks Moses <bmoses@stanford.edu>
3874
3875 * Makefile.in: Added empty "pdf" target.
3876
3877 2006-09-22 Geoffrey Keating <geoffk@apple.com>
3878
3879 * configure.ac: Make need_64_bit_hwint case for x86-darwin
3880 match exactly the glob in gcc/config.gcc.
3881 * configure: Regenerate.
3882
3883 2006-09-13 Joseph S. Myers <joseph@codesourcery.com>
3884
3885 PR c/28768
3886 PR preprocessor/14634
3887 * lex.c (lex_string): Pedwarn for unterminated literals.
3888
3889 2006-09-08 Eric Christopher <echristo@apple.com>
3890
3891 * configure.ac: Add 64-bit HWI support for i?86-darwin.
3892
3893 2006-08-14 Steve Ellcey <sje@cup.hp.com>
3894
3895 PR c++/28288
3896 PR c++/14556
3897 * include/cpplib.h: Remove <?, >?, <?=, and >?= tokens.
3898 (CPP_LAST_EQ): Change.
3899 (CPP_LAST_PUNCTUATOR): Change.
3900 * expr.c (cpp_operator): Remove MIN and MAX.
3901 (reduce): Remove CPP_MIN and CPP_MAX.
3902 (num_binary_op): Ditto.
3903 * lex.c (_cpp_lex_direct): Ditto.
3904 (cpp_avoid_paste): Remove ? as legal symbol after > or <.
3905
3906 2006-06-09 Jakub Jelinek <jakub@redhat.com>
3907
3908 PR preprocessor/27746
3909 * directives.c (do_pragma): Handle pragma with valid namespace
3910 and invalid name coming from macro expansion.
3911 * directives.c (destringize_and_run): Initialize next field in
3912 context.
3913
3914 PR c/27747
3915 PR c++/27748
3916 * directives.c (destringize_and_run): Set NO_EXPAND on the
3917 tokens.
3918
3919 * macro.c (_cpp_backup_tokens): Fix comment typo.
3920
3921 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
3922
3923 * Makefile.in (CATALOGS): Add po/ prefix.
3924 * configure: Regenerated.
3925
3926 2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
3927
3928 * Makefile.in: Add install-html target. Add install-html to .PHONY
3929
3930 2006-02-17 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
3931
3932 * macro.c (_cpp_builtin_macro_text): Handle BT_TIMESTAMP.
3933 * files.c (_cpp_get_file_stat): New function.
3934 * include/cpplib.h (builtin_type): Add BT_TIMESTAMP.
3935 * init.c (builtin_array): Add support for __TIMESTAMP__/BT_TIMESTAMP.
3936 * internal.h (_cpp_get_file_stat): Prototype.
3937 (struct cpp_buffer): Add timestamp.
3938
3939 2006-01-23 Jakub Jelinek <jakub@redhat.com>
3940
3941 PR preprocessor/25717
3942 * init.c (cpp_init_builtins): If __STDC__ will not change value
3943 between system headers and other sources, define it as a normal
3944 macro rather than a builtin.
3945 * macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
3946 cpp_in_system_header condition.
3947
3948 2006-01-05 Paolo Bonzini <bonzini@gnu.org>
3949
3950 * Makefile.in: Use -MMD instead of -MD.
3951
3952 2006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
3953 Richard Henderson <rth@redhat.com>
3954
3955 Merge from gomp branch:
3956 * directives.c (struct pragma_entry): Add is_deferred. Add ident
3957 entry to value union.
3958 (end_directive): Don't eat the line if in_deferred_pragma.
3959 (run_directive): Remove pragma hacks.
3960 (insert_pragma_entry): Remove.
3961 (new_pragma_entry): New.
3962 (register_pragma_1): Split out of register_pragma. Only handle
3963 the lookup tree and return the new entry.
3964 (cpp_register_pragma): Fill in the pragma entry here.
3965 (cpp_register_deferred_pragma): New.
3966 (register_pragma_internal): New.
3967 (_cpp_init_internal_pragmas): Use register_pragma_internal.
3968 (do_pragma): Allow pragma expansion after namespace. For deferred
3969 pragmas, don't slurp the line into a string.
3970 (destringize_and_run): Save tokens for deferred pragmas.
3971 (cpp_handle_deferred_pragma): Remove.
3972 * macro.c (builtin_macro): Remove pragma token hack.
3973 (_cpp_push_token_context): Rename from push_token_context and export.
3974 * internal.h (struct lexer_state): Add pragma_allow_expansion.
3975 (_cpp_push_token_context): Declare.
3976 * lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
3977 a token. Update the line number correctly if so.
3978 (_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
3979 (cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
3980 * include/cpplib.h (PRAGMA_EOL): New.
3981 (CPP_TOKEN_FLD_PRAGMA): New.
3982 (struct cpp_token): Add val.pragma.
3983 (struct cpp_options): Remove defer_pragmas.
3984 (cpp_handle_deferred_pragma): Remove.
3985 (cpp_register_deferred_pragma): Declare.
3986
3987 2006-01-01 Jakub Jelinek <jakub@redhat.com>
3988
3989 PR c++/25294
3990 * directives.c (do_pragma): If pragma line ends with multi-line
3991 block comment, end the saved deferred pragma string before that
3992 comment. Handle embedded '\0' chars on the pragma line.
3993
3994 2005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
3995
3996 PR c++/23333
3997 * include/cpplib.h: Add PURE_ZERO to flags for the cpp_token structure.
3998
3999 2005-12-07 Jon Grimm <jgrimm2@us.ibm.com>
4000 Ben Elliston <bje@au.ibm.com>
4001
4002 * include/cpplib.h (CPP_N_DFLOAT): New.
4003 * expr.c (interpret_float_suffix): Identify df, dd, and dl
4004 suffixes as decimal floating point constants.
4005 (cpp_classify_number): Disallow hexadecimal DFP constants.
4006
4007 2005-11-14 Gerald Pfeifer <gerald@pfeifer.com>
4008 Ian Lance Taylor <ian@airs.com>
4009
4010 * include/cpplib.h (struct cpp_callbacks): Annotate error with
4011 ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
4012
4013 2005-11-09 Per Bothner <per@bothner.com>
4014 Uros Bizjak <uros@kss-loka.si>
4015
4016 PR c/24101
4017 * init.c (read_original_filename): Temporarily set
4018 state.in_directive before calling _cpp_lex_direct for
4019 CPP_HASH tokens.
4020
4021 2005-11-03 James E Wilson <wilson@specifix.com>
4022
4023 PR preprocessor/24202
4024 * files.c (_cpp_pop_file_buffer): Set buffer_valid to false.
4025
4026 2005-11-04 Joseph S. Myers <joseph@codesourcery.com>
4027
4028 * include/cpplib.h (struct cpp_callbacks): Make error take
4029 va_list* parameter.
4030 * errors.c (cpp_error): Update call to callback.
4031
4032 2005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
4033
4034 PR preprocessor/22042
4035 * macro.c (_cpp_builtin_macro_text): Lower the needed max
4036 buffer size.
4037 (cpp_quote_string): Don't octalify non printable
4038 charactors.
4039
4040 2005-11-03 Joseph S. Myers <joseph@codesourcery.com>
4041
4042 PR c++/17964
4043 * include/cpplib.h (struct cpp_options): Add client_diagnostic.
4044 (struct cpp_callbacks): Add error.
4045 * errors.c (cpp_error): If client_diagnostic, use error callback.
4046 * charset.c (convert_escape): Don't use %03o in diagnostic.
4047
4048 2005-10-21 James E Wilson <wilson@specifix.com>
4049
4050 PR preprocessor/15220
4051 * files.c (_cpp_find_file): New parameter angle_brackets. Fix all
4052 callers. Pass to open_file_failed.
4053 (open_file_failed): New parameter angle_brackets. Fix all callers.
4054 Use in print_dep assignment.
4055 * init.c (cpp_read_main_file): Pass additional arg to _cpp_find_file.
4056 * internal.h (_cpp_find_file): Add new parm to declaration.
4057
4058 2005-10-08 Kazu Hirata <kazu@codesourcery.com>
4059
4060 * configure.ac: Require 64-bit int for arm*-*-*eabi*.
4061 * configure: Regenerate.
4062
4063 2005-10-04 Ian Lance Taylor <ian@airs.com>
4064
4065 PR preprocessor/13726
4066 * directives.c (check_eol_return_comments): New static function.
4067 (parse_include): Add buf parameter. Change all callers.
4068 (do_include_common): If not discard comments, turn on
4069 save_comments. Pass collected comments to include callback.
4070 * include/cpplib.h (struct cpp_callbacks): Add new parameter to
4071 include callback: cpp_token list.
4072
4073 2005-09-20 Joseph S. Myers <joseph@codesourcery.com>
4074
4075 * include/cpplib.h (struct cpp_options): Add extended_identifiers.
4076 * init.c (struct lang_flags, lang_defaults): Add
4077 extended_identifiers.
4078 (cpp_set_lang): Use it.
4079 * lex.c (forms_identifier_p): Check extended_identifiers.
4080
4081 2005-08-30 Jakub Jelinek <jakub@redhat.com>
4082
4083 PR preprocessor/20348
4084 PR preprocessor/20356
4085 * files.c (_cpp_find_file, search_cache): Revert 2004-06-26 and
4086 2004-06-05 changes.
4087
4088 2005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4089
4090 * configure.ac (ACX_PROG_CC_WARNING_OPTS): add
4091 -Wmissing-format-attribute.
4092
4093 * configure: Regenerate.
4094
4095 2005-06-29 Kelley Cook <kcook@gcc.gnu.org>
4096
4097 * all files: Update FSF address in copyright headers.
4098 * makeucnid.c (write_copyright): Update outputted FSF address.
4099
4100 2005-06-13 Zack Weinberg <zack@codesourcery.com>
4101
4102 * configure.ac: Invoke ZW_CREATE_DEPDIR and
4103 ZW_PROG_COMPILER_DEPENDENCIES.
4104 * aclocal.m4, configure: Regenerate.
4105 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.base, COMPILE):
4106 New variables.
4107 (distclean): Clean up $(DEPDIR) and its contents.
4108 (.c.o): Use $(COMPILE).
4109 Include $(DEPDIR)/*.Po for most object->header dependencies.
4110
4111 2005-05-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
4112
4113 * configure.ac: Check declarations for asprintf and vasprintf.
4114 * config.in: Regenerate.
4115 * configure: Likewise.
4116
4117 * charset.c (conversion_loop): Use XRESIZEVEC.
4118 (convert_no_conversion): Likewise.
4119 (convert_using_iconv): Likewise.
4120 (init_iconv_desc): Cast return value of alloca.
4121 (cpp_host_to_exec_charset): Use XNEWVEC.
4122 (emit_numeric_escape): Use XRESIZEVEC.
4123 (cpp_interpret_string): Use XNEWVEC.
4124 (cpp_interpret_string): Use XRESIZEVEC.
4125 (_cpp_interpret_identifier): Cast return value of alloca.
4126 (_cpp_convert_input): Use XNEWVEC and XRESIZEVEC.
4127 * directives.c (glue_header_name): Use XNEWVEC and XRESIZEVEC.
4128 (parse_include): Use XNEWVEC.
4129 (insert_pragma_entry): Rename local variable "new" to
4130 "new_entry".
4131 (save_registered_pragmas): Cast return value of xmemdup.
4132 (destringize_and_run): Same for alloca.
4133 (parse_assertion): Likewise.
4134 (do_assert): Cast allocated storage to proper type.
4135 (cpp_define): Likewise.
4136 (_cpp_define_builtin): Likewise.
4137 (cpp_undef): Likewise.
4138 (handle_assertion): Likewise.
4139 (cpp_push_buffer): Rename local variable "new" to "new_buffer".
4140 * expr.c (CPP_UPLUS): Cast value to type cpp_ttype.
4141 (CPP_UMINUS): Likewise.
4142 (struct cpp_operator): Rename from struct operator.
4143 (_cpp_expand_op_stack): Use XRESIZEVEC.
4144 * files.c (pch_open_file): Use XNEWVEC.
4145 (pch_open_file): Use XRESIZEVEC.
4146 (read_file_guts): Use XNEWVEC and XRESIZEVEC.
4147 (dir_name_of_file): Use XNEWVEC.
4148 (make_cpp_file): Use XCNEW.
4149 (make_cpp_dir): Likewise.
4150 (allocate_file_hash_entries): USE XNEWVEC.
4151 (cpp_included): Cast return value of htab_find_with_hash.
4152 (append_file_to_dir): Use XNEWVEC.
4153 (read_filename_string): Likewise. Use XRESIZEVEC too.
4154 (read_name_map): Cast return value of alloca. Use XRESIZEVEC.
4155 (remap_filename): Use XNEWVEC.
4156 (struct pchf_entry): Move definition out of struct pchf_data.
4157 (_cpp_save_file_entries): Use XCNEWVAR.
4158 (_cpp_read_file_entries): Use XNEWVAR.
4159 * identifiers.c (alloc_node): Use XOBNEW.
4160 * init.c (cpp_create_reader): Use XCNEW.
4161 (cpp_init_builtins): Cast of b->value to enum builtin_type.
4162 (read_original_directory): Cast return value of alloca.
4163 * lex.c (add_line_note): Use XRESIZEVEC.
4164 (warn_about_normalization): Use XNEWVEC.
4165 (_cpp_lex_direct): Cast node->directive_index to (enum cpp_ttype).
4166 (new_buff): Use XNEWVEC.
4167 * line-map.c (linemap_add): Use XRESIZEVEC.
4168 * macro.c (builtin_macro): Cast return value of alloca.
4169 (paste_tokens): Likewise.
4170 (expand_arg): Use XNEWVEC and XRESIZEVEC.
4171 (_cpp_save_parameter): Use XRESIZEVEC.
4172 (create_iso_definition): Cast allocated storage to proper type.
4173 (_cpp_create_definition): Likewise.
4174 (cpp_macro_definition): Use XRESIZEVEC.
4175 * makedepend.c (add_clm): Use XNEW.
4176 (add_dir): Likewise.
4177 * mkdeps.c (munge): Use XNEWVEC.
4178 (deps_init): Use XCNEW.
4179 (deps_add_target): Use XRESIZEVEC.
4180 (deps_add_default_target): Cast return value of alloca.
4181 (deps_add_dep): Use XRESIZEVEC.
4182 (deps_add_vpath): Likewise. Use XNEWVEC too.
4183 (deps_restore): Likewise.
4184 * pch.c (save_idents): Use XNEW and XNEWVEC.
4185 (cpp_save_state): Use XNEW.
4186 (count_defs): Cast return value of htab_find.
4187 (write_defs): Likewise.
4188 (cpp_write_pch_deps): Use XNEWVEC.
4189 (collect_ht_nodes): Use XRESIZEVEC.
4190 (cpp_valid_state): Use XNEWVEC.
4191 (save_macros): Use XRESIZEVEC. Cast return value of xmemdup.
4192 * symtab.c (ht_create): Use XCNEW.
4193 (ht_lookup_with_hash): Cast return value of obstack_copy0.
4194 (ht_expand): Use XCNEWVEC.
4195 * system.h (HAVE_DESIGNATED_INITIALIZERS): False if __cplusplus.
4196 (bool): Do not define if __cplusplus.
4197
4198 2005-05-12 Zack Weinberg <zack@codesourcery.com>
4199
4200 * directives.c (#sccs table entry): Mark IN_I, consistent with #ident.
4201 (do_sccs): Delete function definition, #define to do_ident.
4202 (do_ident): Don't hardwire directive name.
4203
4204 2005-05-12 Ryota Kunisawa <kunisawa@access.co.jp>
4205
4206 PR bootstrap/21230
4207 * configure: Regenerate.
4208
4209 2005-04-27 Andris Pavenis <pavenis@latnet.lv>
4210
4211 * files.c: Include io.h for DJGPP to get prototype of setmode.
4212
4213 2005-04-19 Per Bothner <per@bothner.com>
4214
4215 PR preprocessor/20907
4216 * line-map.c (linemap_line_start): Fix bug when we need to increse
4217 column_bits but can re-use the current line_map.
4218
4219 2005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4220
4221 * system.h (fopen, fdopen, freopen): Define these to the unlocked
4222 libiberty functions.
4223
4224 2005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
4225
4226 * configure.ac (libcpp_UNLOCKED_FUNCS): New.
4227 (AC_CHECK_FUNCS, AC_CHECK_DECLS): Check for libcpp_UNLOCKED_FUNCS.
4228 * system.h (putchar, getc, getchar, clearerr, feof, fileno,
4229 fflush, fgetc, fgets, ferror, fread): Redefine to the associated
4230 _unlocked function.
4231 (fwrite_unlocked): Fix prototype.
4232
4233 * configure, config.in: Regenerate.
4234
4235 2005-04-05 Jakub Jelinek <jakub@redhat.com>
4236
4237 PR preprocessor/19475
4238 * macro.c (create_iso_definition): For < ISO C99, don't
4239 pedwarn if there is no whitespace between macro name and its
4240 replacement, but the replacement starts with a basic character
4241 set character.
4242
4243 2005-03-28 Andreas Jaeger <aj@suse.de>
4244
4245 * lex.c (warn_about_normalization): Cast field width to int to
4246 avoid warning.
4247
4248 2005-03-19 Joseph S. Myers <joseph@codesourcery.com>
4249
4250 * configure.ac: Consistently use solaris2.1[0-9]* instead of
4251 solaris2.1[0-9].
4252 * configure: Regenerate.
4253
4254 2005-03-15 Geoffrey Keating <geoffk@apple.com>
4255
4256 * charset.c (_cpp_valid_ucn): In identifiers, reject a partial
4257 UCN rather than printing an error.
4258
4259 2005-03-14 Geoffrey Keating <geoffk@apple.com>
4260
4261 * lex.c (forms_identifier_p): Disable UCNs in C89 mode.
4262
4263 2005-03-14 Geoffrey Keating <geoffk@apple.com>
4264
4265 * init.c (cpp_create_reader): Default warn_normalize to normalized_C.
4266 * charset.c: Update for new format of ucnid.h.
4267 (ucn_valid_in_identifier): Update for new format of ucnid.h.
4268 Add NST parameter, and update it; update callers.
4269 (cpp_valid_ucn): Add NST parameter, update callers. Replace abort
4270 with cpp_error.
4271 (convert_ucn): Pass normalize_state to cpp_valid_ucn.
4272 * internal.h (struct normalize_state): New.
4273 (INITIAL_NORMALIZE_STATE): New.
4274 (NORMALIZE_STATE_RESULT): New.
4275 (NORMALIZE_STATE_UPDATE_IDNUM): New.
4276 (_cpp_valid_ucn): New.
4277 * lex.c (warn_about_normalization): New.
4278 (forms_identifier_p): Add normalize_state parameter, update callers.
4279 (lex_identifier): Add normalize_state parameter, update callers. Keep
4280 the state current.
4281 (lex_number): Likewise.
4282 (_cpp_lex_direct): Pass normalize_state to subroutines. Check
4283 it with warn_about_normalization.
4284 * makeucnid.c: New.
4285 * ucnid.h: Replace.
4286 * ucnid.pl: Remove.
4287 * ucnid.tab: Make appropriate for input to makeucnid.c. Remove
4288 comments about obsolete version of C++.
4289 * include/cpplib.h (enum cpp_normalize_level): New.
4290 (struct cpp_options): Add warn_normalize field.
4291
4292 2005-03-11 Geoffrey Keating <geoffk@apple.com>
4293
4294 * directives.c (glue_header_name): Update call to cpp_spell_token.
4295 * internal.h (_cpp_interpret_identifier): New.
4296 * charset.c (_cpp_interpret_identifier): New.
4297 (_cpp_valid_ucn): Allow UCN version of '$'.
4298 * lex.c (lex_identifier): Add extra parameter to indicate if initial
4299 character was '$' or '\'. Support identifiers with UCNs.
4300 (forms_identifier_p): Allow UCNs.
4301 (_cpp_lex_direct): Pass extra parameter to lex_identifier.
4302 (utf8_to_ucn): New.
4303 (cpp_spell_token): Add FORSTRING parameter. Use it.
4304 (cpp_token_as_text): Update call to cpp_spell_token.
4305 (cpp_output_token): Write UCNs back out.
4306 (stringify_arg): Update call to cpp_spell_token.
4307 (paste_tokens): Likewise.
4308 (cpp_macro_definition): Likewise.
4309 * macro.c (stringify_arg): Likewise.
4310 (paste_tokens): Likewise.
4311 (cpp_macro_definition): Likewise.
4312 * include/cpplib.h: Add parameter to cpp_spell_token.
4313
4314 2005-03-04 Jakub Jelinek <jakub@redhat.com>
4315
4316 PR bootstrap/20282
4317 PR bootstrap/20305
4318 * macro.c (replace_args, cpp_get_token): Copy whole
4319 cpp_token_u instead of just cpp_string field from it.
4320
4321 2005-02-28 Devang Patel <dpatel@apple.com>
4322
4323 * directives.c (do_line): Save sysp early before line table is
4324 realloc'ed.
4325
4326 2005-02-20 Zack Weinberg <zack@codesourcery.com>
4327
4328 PR 18785
4329 * charset.c (LAST_POSSIBLY_BASIC_SOURCE_CHAR): New helper macro.
4330 (cpp_host_to_exec_charset): New function.
4331 * include/cpplib.h: Declare cpp_host_to_exec_charset.
4332
4333 2005-02-19 Devang Patel <dpatel@apple.com>
4334
4335 * charset.c (_cpp_convert_input): Check '\r' before inserting
4336 '\n' at the end.
4337
4338 2005-02-15 Eric Christopher <echristo@redhat.com>
4339
4340 PR preprocessor/19077
4341 * macro.c (cpp_macro_definition): Move handling of whitespace
4342 to PREV_WHITE conditional. Remove overloading of len
4343 variable.
4344
4345 2005-02-14 Kazu Hirata <kazu@cs.umass.edu>
4346
4347 * directives.c, files.c, init.c, internal.h, macro.c, pch.c,
4348 traditional.c: Update copyright.
4349
4350 2005-02-14 Paolo Bonzini <bonzini@gnu.org>
4351
4352 PR bootstrap/19818
4353 * configure.ac: Check for declaration of basename and getopt.
4354 * config.in: Regenerate.
4355 * configure: Regenerate.
4356 * internal.h (ustrcspn): New.
4357 * macro.c (create_iso_definition): Fix allocation of memory.
4358 (padding_token): Add cast to remove const-ness.
4359 * pch.c (cpp_read_state): Use ustrcspn.
4360
4361 2005-02-08 Mike Stump <mrs@apple.com>
4362
4363 * files.c (pchf_adder): Remove.
4364 (struct pchf_adder_info): Likewise.
4365 (_cpp_save_file_entries): Write out all files so that #import works.
4366
4367 2005-01-23 Joseph S. Myers <joseph@codesourcery.com>
4368
4369 * configure: Regenerate.
4370
4371 2005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
4372
4373 * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader.
4374
4375 * include/cpplib.h: Also update copyright years.
4376
4377 2005-01-03 Geoffrey Keating <geoffk@apple.com>
4378
4379 * files.c (_cpp_find_file): Add files found by search_path_exhausted
4380 to the list of all files.
4381
4382 2005-01-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
4383
4384 * internal.h: Update references to Cpp lib filenames.
4385 * directives.c: Likewise.
4386 * init.c: Likewise.
4387 * macro.c: Likewise.
4388 * traditional.c: Likewise.
4389
4390 2004-12-15 Eric Botcazou <ebotcazou@libertysurf.fr>
4391
4392 PR preprocessor/15167
4393 * files.c (destroy_cpp_file): New function.
4394 (should_stack_file): Make a new file if the
4395 compared file is still stacked.
4396
4397 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
4398
4399 PR preprocessor/17610
4400 * directives.c (do_include_common): Error out if an empty filename
4401 is given for #include (or #include_next or #import).
4402
4403 2004-11-27 Roger Sayle <roger@eyesopen.com>
4404 Zack Weinberg <zack@codesourcery.com>
4405
4406 * internal.h: Replace all uses of uchar with unsigned char.
4407 * include/cpp-id-data.h: Likewise. Guard typedef of uchar
4408 with !IN_GCC, so uchar is only defined whilst building libcpp.
4409
4410 2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
4411
4412 * aclocal.m4: Regenerate.
4413
4414 2004-11-24 Roger Sayle <roger@eyesopen.com>
4415
4416 PR preprocessor/15824
4417 * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
4418 directly, instead of the non-existant "system.h" and "ansidecl.h".
4419 * configure: Regenerate.
4420
4421 2004-11-23 Daniel Jacobowitz <dan@codesourcery.com>
4422 Joseph Myers <joseph@codesourcery.com>
4423
4424 * internal.h (struct lexer_state): Add in_deferred_pragma.
4425 * directives.c (struct pragma_entry): Add allow_expansion.
4426 (insert_pragma_entry): Take allow_expansion flag.
4427 (register_pragma): Likewise.
4428 (cpp_register_pragma): Likewise.
4429 (_cpp_init_internal_pragmas): Update calls to cpp_register_pragma.
4430 (do_pragma): Honor allow_expansion.
4431 (cpp_handle_deferred_pragma): Set in_deferred_pragma.
4432 * include/cpplib.h (cpp_register_pragma): Update prototype.
4433
4434 2004-11-18 Daniel Jacobowitz <dan@codesourcery.com>
4435 Mark Mitchell <mark@codesourcery.com>
4436
4437 * configure.ac (i[34567]86-*-solaris2.1[0-9]*): Set
4438 need_64bit_hwint=yes.
4439 * configure: Regenerate.
4440
4441 2004-11-09 Joseph S. Myers <joseph@codesourcery.com>
4442
4443 * Makefile.in ($(PACKAGE).pot): New rule. Depend on
4444 po/$(PACKAGE).pot.
4445 (po/$(PACKAGE).pot): Use ":" instead of "," in --keyword
4446 arguments. Add keywords _, N_, SYNTAX_ERROR and SYNTAX_ERROR2.
4447 Remove local srcdir path from generated file.
4448
4449 2004-11-04 Zack Weinberg <zack@codesourcery.com>
4450 Gerald Pfeifer <gerald@pfeifer.com>
4451
4452 * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H
4453 as well.
4454
4455 2004-10-27 Zack Weinberg <zack@codesourcery.com>
4456
4457 PR 18075
4458 * directives.c (do_pragma): Do not defer pragmas which are unknown.
4459 (cpp_handle_deferred_pragma): Add cast to silence warning.
4460
4461 2004-10-14 Joseph S. Myers <jsm@polyomino.org.uk>
4462
4463 * errors.c (_cpp_begin_message): Print "error: " for errors.
4464
4465 2004-10-10 Andreas Jaeger <aj@suse.de>
4466
4467 * makedepend.c: Include mkdeps.h for prototype of deps_add_vpath.
4468 * Makefile.in (makedepend.o): Add dependency on mkdeps.h.
4469
4470 2004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
4471
4472 * pch.c (cpp_write_pch_state): Remove variable z as it is not
4473 used.
4474 (cpp_read_state): Remove unused variables, m, d and mac_count.
4475
4476 2004-09-29 Per Bothner <per@bothner.com>
4477
4478 * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
4479 cb.line_change. Otherwise do_pragma will call the line_change
4480 call-back with a meaningless line number.
4481
4482 2004-09-24 Zack Weinberg <zack@codesourcery.com>
4483
4484 * configure.ac: Move AC_PROG_MAKE_SET, AC_PROG_INSTALL to
4485 programs cluster. Use ACX_PROG_CC_WARNING_OPTS,
4486 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_PROG_CC_WARNINGS_ARE_ERRORS.
4487 * aclocal.m4, configure: Regenerate.
4488 * init.c: Include localedir.h.
4489 * Makefile.in (WARN_CFLAGS, ALL_CFLAGS): New variables.
4490 (DEFS): Delete.
4491 (.c.o): Use $(ALL_CFLAGS).
4492 (localedir.h, localedir.hs): New rules.
4493 (clean): Use rm -rf to remove directories.
4494 (distclean): Also delete localedir.h and localedir.hs.
4495 (init.o): Update dependencies.
4496
4497 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
4498
4499 * Makefile.in (aclocal.m4): Update dependencies.
4500 * configure.ac (AC_CONFIG_MACRO_DIR): New.
4501 * aclocal.m4, configure: Regenerate.
4502
4503 2004-09-17 Zack Weinberg <zack@codesourcery.com>
4504
4505 * charset.c (_cpp_destroy_iconv, emit_numeric_escape)
4506 (_cpp_convert_input, _cpp_default_encoding): Add comments.
4507 Some other comments in this file also tweaked.
4508
4509 * directives.c (do_pragma): Save current buffer position
4510 before lexing the pragma keywords; don't call
4511 _cpp_backup_tokens in the defer_pragmas case.
4512
4513 2004-09-15 Per Bothner <per@bothner.com>
4514
4515 * include/line-map.h (line_map_start): Add parameter names so
4516 preceding comment makes sense.
4517 (linemap_add): Remove from comment mention of non-existing parameter.
4518
4519 2004-09-09 Matt Austern <austern@apple.com>
4520 Zack Weinberg <zack@codesourcery.com>
4521
4522 * include/cpplib.h (TTYPE_TABLE): Remove CPP_ and SPELL_
4523 prefixes throughout. Add entry for PRAGMA. Remove
4524 unnecessary "= 0" from EQ.
4525 (enum cpp_ttype): Adjust OP and TK definitions to restore
4526 prefixes, via token-paste.
4527 (CPP_LAST_EQ, CPP_FIRST_DIGRAPH, CPP_LAST_PUNCTUATOR, CPP_LAST_CPP_OP):
4528 Change from #defines to additional cpp_ttype enumerators.
4529 (struct cpp_options): Add defer_pragmas.
4530 (cpp_handle_deferred_pragma): Prototype new interface.
4531
4532 * internal.h (struct cpp_reader): Add directive_result.
4533 * directives.c (struct pragma_entry): Add is_internal field;
4534 give boolean fields type bool.
4535 (start_directive): Initialize pfile->directive_result.type.
4536 (_cpp_do__Pragma): Likewise.
4537 (run_directive): Do not crash if pfile->buffer->prev is NULL.
4538 (insert_pragma_entry): Add 'internal' argument; set new->is_internal
4539 from it.
4540 (register_pragma): New static function, bulk of former
4541 cpp_register_pragma here; add 'internal' argument, pass along
4542 to insert_pragma_entry.
4543 (cpp_register_pragma): Now a wrapper around register_pragma which
4544 always passes false for 'internal' argument.
4545 (_cpp_init_internal_pragmas): Call register_pragma directly, passing
4546 true for 'internal'.
4547 (do_pragma): If CPP_OPTION (pfile, defer_pragmas) and this isn't
4548 an internal pragma, save text till the end of the line as a CPP_PRAGMA
4549 token instead of executing the pragma.
4550 (cpp_handle_deferred_pragma): New interface.
4551 * lex.c (token_spellings): Adjust OP and TK definitions to
4552 match changes to cpplib.h.
4553 (_cpp_lex_token): Check for a directive-result token and
4554 return it if present.
4555 (cpp_token_val_index): Handle CPP_PRAGMA.
4556 * macro.c (cpp_builtin_macro_text): Correct comment.
4557 (builtin_macro): Handle directive-result tokens from _cpp_do__Pragma.
4558
4559 2004-09-06 Serge Belyshev <belyshev@lubercy.com>
4560
4561 PR preprocessor/14699
4562 * symtab.c (ht_dump_statistics): Change type of sum_of_squares
4563 from size_t to double.
4564
4565 2004-08-28 Andreas Schwab <schwab@suse.de>
4566 Andreas Jaeger <aj@suse.de>
4567
4568 * configure.ac: Set PACKAGE correctly.
4569 * configure: Regenerated.
4570
4571 2004-08-25 Paolo Bonzini <bonzini@gnu.org>
4572
4573 * Makefile.in: Add back top_builddir.
4574
4575 2004-08-25 Paolo Bonzini <bonzini@gnu.org>
4576
4577 * configure.ac: Replace Automake macro invocations
4578 with manual Autoconf checks and substitutions.
4579 * configure: Regenerate.
4580 * aclocal.m4: Regenerate.
4581 * config.in: Regenerate.
4582 * Makefile.am: Removed.
4583 * Makefile.in: Heavy simplification and reorganization.
4584
4585 2004-08-09 Mark Mitchell <mark@codesourcery.com>
4586
4587 * configure.ac (arm*-*-eabi*): New target.
4588 (arm*-*-symbianelf*): Likewise.
4589 * configure: Regenerated.
4590
4591 2004-07-24 Bernardo Innocenti <bernie@develer.com>
4592
4593 * internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
4594 * directives.c: Use XNEW-family macros from libiberty.
4595 * lex.c: Likewise.
4596 * macro.c: Likewise.
4597 * cpplib.h (cpp_deps_style): Export enum with name.
4598
4599 2004-07-23 Matthias Klose <doko@debian.org>
4600
4601 * init.c (init_library): Use PACKAGE for the text domain.
4602
4603 2004-07-16 Andris Pavenis <pavenis@latnet.lv>
4604
4605 PR preprocessor/16366
4606 * internal.h (struct cpp_reader): New field dir_hash.
4607 * files.c (make_cpp_dir): Use dir_hash, not file_hash.
4608 (_cpp_init_files, _cpp_cleanup_files): Update for new field.
4609
4610 2004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
4611
4612 PR preprocessor/16192
4613 PR preprocessor/15913
4614 PR preprocessor/15572
4615 * expr.c (_cpp_parse_expr): Handle remaining cases where an
4616 expression is missing.
4617 * init.c (post_options): Traditional cpp doesn't do // comments.
4618
4619 2004-06-30 Per Bothner <per@bothner.com>
4620
4621 * include/line-map.h (fileline): Remove old typedef.
4622 * internal.h (struct cpp_reader): Use source_location typedef instead.
4623
4624 2004-06-26 Zack Weinberg <zack@codesourcery.com>
4625
4626 Partially revert patch of 2004-06-05.
4627 * files.c (search_cache): Remove pfile argument. Don't check
4628 for file that would be found by "" or <> search here...
4629 (_cpp_find_file): ...do it here, before calling find_file_in_dir.
4630 Do not apply directory-of-current-file correction to files
4631 found by this check. Rearrange code slightly.
4632
4633 2004-06-21 Geoffrey Keating <geoffk@apple.com>
4634
4635 * files.c (should_stack_file): Correct swapped parameters to call
4636 to cb.read_pch.
4637 * pch.c (cpp_valid_state): Handle -fpreprocessed.
4638
4639 2004-06-15 Paolo Bonzini <bonzini@gnu.org>
4640
4641 * Makefile.in: Regenerate with automake 1.8.5.
4642 * aclocal.m4: Likewise.
4643 * configure: Regenerate.
4644
4645 2004-06-11 Zack Weinberg <zack@codesourcery.com>
4646
4647 * configure.ac: Don't invoke ACX_HEADER_STDBOOL.
4648 * configure, config.in: Regenerate.
4649 * system.h: Unconditionally define bool as unsigned char,
4650 BOOL_BITFIELD as unsigned int.
4651 * .cvsignore: New file.
4652
4653 2004-06-09 Geoffrey Keating <geoffk@apple.com>
4654
4655 * traditional.c (push_replacement_text): Set macro->traditional.
4656 (save_replacement_text): Likewise.
4657 * pch.c (cpp_write_pch_state): Don't write list of defined macros.
4658 (struct save_macro_item): Delete.
4659 (struct save_macro_data): Use a character array not the previous
4660 structured format.
4661 (save_macros): Save macro as text not as internal structures.
4662 (cpp_prepare_state): Update for changes to save_macro_data.
4663 (cpp_read_state): Don't read macros defined in PCH. Restore
4664 -D macros as text.
4665 * macro.c (create_iso_definition): Honour alloc_subobject.
4666 Clear traditional flag.
4667 (_cpp_create_definition): Honour alloc_subobject.
4668 * lex.c (cpp_token_val_index): New.
4669 * internal.h: Include cpp-id-data.h.
4670 (uchar): Move definition to cpp-id-data.h.
4671 (U): Likewise.
4672 (cpp_macro): Likewise.
4673 * directives.c (struct answer): Move to cpp-id-data.h.
4674 (do_assert): Honour alloc_subobject.
4675
4676 * include/symtab.h (struct ht): Add field 'alloc_subobject'.
4677 * include/cpplib.h (struct cpp_string): Add GTY marker.
4678 (enum cpp_token_fld_kind): New.
4679 (struct cpp_token): Add GTY markers.
4680 (cpp_token_val_index): Prototype.
4681 (CPP_HASHNODE_VALUE_IDX): New.
4682 (struct cpp_hashnode): Don't skip fields of 'value' when marking.
4683 * include/cpp-id-data.h: New file.
4684
4685 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
4686
4687 * Makefile.am (all-local): New.
4688 * Makefile.in: Regenerate.
4689
4690 2004-06-06 Roger Sayle <roger@eyesopen.com>
4691
4692 * Makefile.am (LIBICONV): Declare.
4693 (makedepend_LDADD): Use LIBICONV.
4694 * Makefile.in: Regenerate.
4695
4696 2004-06-05 Andrew Pinski <pinskia@physics.uc.edu>
4697
4698 * Makefile.am (LIBINTL): Declare
4699 (makedepend_LDADD): Use LIBINTL.
4700 * Makefile.in: Regenerate.
4701
4702 2004-06-05 Zack Weinberg <zack@codesourcery.com>
4703
4704 * Makefile.am: Add makedepend.
4705 * Makefile.in, aclocal.m4: Regenerate.
4706 * charset.c: Insert a space to avoid a warning.
4707 * directives.c: Include mkdeps.h.
4708 (_cpp_handle_directive): Reenable macro expander if appropriate.
4709 (undefine_macros): Inline body of _cpp_free_definition for speed.
4710 Do not call undef callback or _cpp_warn_if_unused_macro.
4711 (cpp_get_deps): New interface.
4712 * files.c (search_cache): Add pfile argument. Check for file
4713 that would be found by "" or <> search here...
4714 (_cpp_find_file): ...not here. Correct recorded start_dir of
4715 files found by directory-of-current-file search that would be
4716 found by "" or <> search.
4717 * init.c (cpp_add_dependency_target): Delete.
4718 * internal.h (struct lexer_state): Add discarding_output flag.
4719 * lex.c (lex_identifier): Compute hash function while scanning.
4720 * macro.c (cpp_scan_nooutput): Disable macro expansion outside
4721 directives.
4722 * makedepend.c: New file.
4723 * mkdeps.c (struct deps): Add vpath vector.
4724 (apply_vpath, deps_add_vpath): New function.
4725 (deps_free): Free vpath vector.
4726 (deps_add_dep, deps_add_target): Use apply_vpath.
4727 * symtab.c (calc_hash): Use HT_HASHSTEP and HT_FINISH.
4728 (ht_lookup_with_hash): New function.
4729 * cpplib.h, mkdeps.h: Update prototypes.
4730 * symtab.h: Update prototypes.
4731 (HT_HASHSTEP, HT_FINISH): New macros.
4732
4733 2004-05-29 Geoffrey Keating <geoffk@apple.com>
4734
4735 * symtab.c (ht_create): Set entries_owned.
4736 (ht_destroy): Honour entries_owned.
4737 (ht_expand): Likewise.
4738 (ht_load): New.
4739 * include/symtab.h (struct ht): New field 'entries_owned'
4740 (ht_load): New prototype.
4741
4742 2004-05-26 Paolo Bonzini <bonzini@gnu.org>
4743
4744 PR bootstrap/15651
4745 * configure.ac: Fix m4 quoting when picking
4746 the size of HOST_WIDE_INT.
4747 * configure: Regenerate.
4748
4749 2004-05-25 Paolo Bonzini <bonzini@gnu.org>
4750
4751 * Makefile.am: the correct directory for
4752 gettext include files is given by @INCINTL@.
4753 * Makefile.in: Regenerate.
4754
4755 2004-05-24 Paolo Bonzini <bonzini@gnu.org>
4756
4757 * system.h [!ENABLE_NLS]: dgettext takes two
4758 parameters.
4759
4760 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
4761
4762 Moved libcpp from the gcc subdirectory to the toplevel.
4763 * Makefile.am: New file.
4764 * Makefile.in: Regenerate.
4765 * configure.ac: New file.
4766 * configure: Regenerate.
4767 * config.in: Regenerate.
4768 * charset.c: Moved from gcc/cppcharset.c. Add note about
4769 brokenness of input charset detection. Adjust for change
4770 in name of cppucnid.h.
4771 * errors.c: Moved from gcc/cpperror.c. Do not include intl.h.
4772 * expr.c: Moved from gcc/cppexp.c.
4773 * files.c: Moved from gcc/cppfiles.c. Do not include intl.h.
4774 Remove #define of O_BINARY, it is in system.h.
4775 * identifiers.c: Moved from gcc/cpphash.c.
4776 * internal.h: Moved from gcc/cpphash.h. Change header
4777 guard name. All other files adjusted to match name change.
4778 * init.c: Moved from gcc/cppinit.c.
4779 (init_library) [ENABLE_NLS]: Call bindtextdomain.
4780 * lex.c: Moved from gcc/cpplex.c.
4781 * directives.c: Moved from gcc/cpplib.c.
4782 * macro.c: Moved from gcc/cppmacro.c.
4783 * pch.c: Moved from gcc/cpppch.c. Do not include intl.h.
4784 * traditional.c: Moved from gcc/cpptrad.c.
4785 * ucnid.h: Moved from gcc/cppucnid.h. Change header
4786 guard name.
4787 * ucnid.pl: Moved from gcc/cppucnid.pl.
4788 * ucnid.tab: Moved from gcc/cppucnid.tab. Change header
4789 guard name.
4790 * symtab.c: Moved from gcc/hashtable.c.
4791 * line-map.c: Moved from gcc. Do not include intl.h.
4792 * mkdeps.c: Moved from gcc.
4793 * system.h: New file.
4794 * include/cpplib.h: Moved from gcc. Change header guard name.
4795 * include/line-map.h: Moved from gcc. Change header guard name.
4796 * include/mkdeps.h: Moved from gcc. Change header guard name.
4797 * include/symtab.h: Moved from gcc/hashtable.h. Change header
4798 guard name.
4799 \f
4800 Copyright (C) 2004-2016 Free Software Foundation, Inc.
4801
4802 Copying and distribution of this file, with or without modification,
4803 are permitted in any medium without royalty provided the copyright
4804 notice and this notice are preserved.