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