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