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