]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/ChangeLog
Update cpplib eo.po.
[thirdparty/gcc.git] / libcpp / ChangeLog
CommitLineData
d97a92dc
GA
12021-03-02 David Malcolm <dmalcolm@redhat.com>
2
3 PR c/99323
4 * line-map.c (rich_location::maybe_add_fixit): Reject fix-it hints
5 at column 0.
6
4028d01a
GA
72021-02-24 Nathan Sidwell <nathan@acm.org>
8
9 PR c++/98718
10 * include/line-map.h
11 * line-map.c
12
132021-02-24 Nathan Sidwell <nathan@acm.org>
14
15 PR c++/99072
16 * init.c (read_original_filename): Expunge all evidence of the
17 original filename.
18
bf81237e
GA
192021-02-18 Nathan Sidwell <nathan@acm.org>
20
21 PR c++/99023
22 * include/cpplib.h (cpp_find_header_unit): Rename to ...
23 (cpp_probe_header_unit): ... this.
24 * internal.h (_cp_find_header_unit): Declare.
25 * files.c (cpp_find_header_unit): Break apart to ..
26 (test_header_unit): ... this, and ...
27 (_cpp_find_header_unit): ... and, or and ...
28 (cpp_probe_header_unit): ... this.
29 * macro.c (cpp_get_token_1): Call _cpp_find_header_unit.
30
0e804ce3
GA
312021-02-16 Nathan Sidwell <nathan@acm.org>
32
33 * files.c (_cpp_stack_file): Make buffers end in unread \n.
34
4b37c3ea
GA
352021-02-10 David Malcolm <dmalcolm@redhat.com>
36
37 PR preprocessor/96391
38 * line-map.c (linemap_compare_locations): Require that
39 the location be <= LINE_MAP_MAX_LOCATION_WITH_COLS when
40 treating locations as coming from the same macro expansion.
41
a19dd5e6
GA
422021-02-04 Jakub Jelinek <jakub@redhat.com>
43
44 * expr.c (cpp_classify_number): Use make_signed_t<size_t> instead of
45 make_signed<size_t>::type in the diagnostics.
46
9faaa807
GA
472021-02-03 Jakub Jelinek <jakub@redhat.com>
48
49 PR preprocessor/98882
50 * lex.c (cpp_directive_only_process): Don't assert that rlimit[-1]
51 is a newline, instead assert that rlimit[0] is either newline or
52 carriage return. When seeing '\\' followed by '\r', check limit
53 before accessing pos[1].
54
552021-02-03 Ed Smith-Rowland <3dw4rd@verizon.net>
56
57 * expr.c (interpret_int_suffix): Detect 'z' integer suffix.
58 (cpp_classify_number): Compat warning for use of 'z' suffix.
59 * include/cpplib.h (struct cpp_options): New flag.
60 (enum cpp_warning_reason): New flag.
61 (CPP_N_USERDEF): Comment C++0x -> C++11.
62 (CPP_N_SIZE_T): New flag for cpp_classify_number.
63 * init.c (cpp_set_lang): Initialize new flag.
64
aa69f0a8
GA
652021-01-27 liuhongt <hongtao.liu@intel.com>
66
67 PR target/98833
68 * lex.c (search_line_sse2): Replace builtins with == operator.
69
e62bb7f0
GA
702021-01-26 Paul Fee <paul.f.fee@gmail.com>
71
72 * include/cpplib.h (c_lang): Add CXX23 and GNUCXX23.
73 * init.c (lang_defaults): Add rows for CXX23 and GNUCXX23.
74 (cpp_init_builtins): Set __cplusplus to 202100L for C++23.
75
2f7f0d32
GA
762021-01-15 Nathan Sidwell <nathan@acm.org>
77
78 PR preprocessor/95253
79 * mkdeps.c (munge): Do not escape ':'.
80
d52945ce
GA
812020-12-14 Nathan Sidwell <nathan@acm.org>
82
83 * include/cpplib.h (struct cpp_macro): Add imported_p field.
84 (struct cpp_hashnode): Tweak deferred field documentation.
85 * macro.c (_cpp_new_macro): Clear new field.
86 (cpp_get_deferred_macro, get_deferred_or_lazy_macro): Assert
87 more.
88
35af8778
GA
892020-12-10 Jason Merrill <jason@redhat.com>
90
91 * init.c (cpp_init_builtins): Update __cplusplus for C++20.
92
e0f5e792
GA
932020-12-01 JeanHeyd Meneide <phdofthehouse@gmail.com>
94
95 * charset.c (init_iconv_desc): Initialize "to" and "from" fields.
96 * directives.c (cpp_get_narrow_charset_name): New function.
97 (cpp_get_wide_charset_name): Likewise.
98 * include/cpplib.h (cpp_get_narrow_charset_name): Prototype.
99 (cpp_get_wide_charset_name): Likewise.
100 * internal.h (cset_converter): Add "to" and "from" fields.
101
e87559d2
GA
1022020-11-27 Joseph Myers <joseph@codesourcery.com>
103
104 PR preprocessor/97602
105 * directives.c (strtolinenum): Check for overflow before it
106 occurs. Correct comment.
107
1e2c9a27
GA
1082020-11-24 Nathan Sidwell <nathan@acm.org>
109
110 * include/cpplib.h (struct cpp_hashnode): Add deferred field.
111 (cpp_set_deferred_macro): Define.
112 (cpp_get_deferred_macro): Declare.
113 (cpp_macro_definition): Reformat, add overload.
114 (cpp_macro_definition_location): Deal with deferred macro.
115 (cpp_alloc_token_string, cpp_compare_macro): Declare.
116 * internal.h (_cpp_notify_macro_use): Return bool
117 (_cpp_maybe_notify_macro_use): Likewise.
118 * directives.c (do_undef): Check macro is not undef before
119 warning.
120 (do_ifdef, do_ifndef): Deal with deferred macro.
121 * expr.c (parse_defined): Likewise.
122 * lex.c (cpp_allocate_token_string): Break out of ...
123 (create_literal): ... here. Call it.
124 (cpp_maybe_module_directive): Deal with deferred macro.
125 * macro.c (cpp_get_token_1): Deal with deferred macro.
126 (warn_of_redefinition): Deal with deferred macro.
127 (compare_macros): Rename to ...
128 (cpp_compare_macro): ... here. Make extern.
129 (cpp_get_deferred_macro): New.
130 (_cpp_notify_macro_use): Deal with deferred macro, return bool
131 indicating definedness.
132 (cpp_macro_definition): Deal with deferred macro.
133
d62586ee
GA
1342020-11-19 Nathan Sidwell <nathan@acm.org>
135
136 * include/cpplib.h (enum cpp_main_search): New.
137 (struct cpp_options): Add main_search field.
138 (cpp_main_loc): Declare.
139 (cpp_retrofit_as_include): Declare.
140 * internal.h (struct cpp_reader): Add main_loc field.
141 (_cpp_in_main_source_file): Not main if main is a header.
142 * init.c (cpp_read_main_file): Use main_search option to locate
143 main file. Set main_loc
144 * files.c (cpp_retrofit_as_include): New.
145
1462020-11-19 Nathan Sidwell <nathan@acm.org>
147
148 * internal.h (cpp_in_system_header): Rename to ...
149 (_cpp_in_system_header): ... here.
150 (cpp_in_primary_file): Rename to ...
151 (_cpp_in_main_source_file): ... here. Compare main_file equality
152 and check main_search value.
153 * lex.c (maybe_va_opt_error, _cpp_lex_direct): Adjust for rename.
154 * macro.c (_cpp_builtin_macro_text): Likewise.
155 (replace_args): Likewise.
156 * directives.c (do_include_next): Likewise.
157 (do_pragma_once, do_pragma_system_header): Likewise.
158 * files.c (struct _cpp_file): Delete main_file field.
159 (pch_open): Check pfile->main_file equality.
160 (make_cpp_file): Drop cpp_reader parm, don't set main_file.
161 (_cpp_find_file): Adjust.
162 (_cpp_stack_file): Check pfile->main_file equality.
163 (struct report_missing_guard_data): Add cpp_reader field.
164 (report_missing_guard): Check pfile->main_file equality.
165 (_cpp_report_missing_guards): Adjust.
166
25bb75f8
GA
1672020-11-18 Nathan Sidwell <nathan@acm.org>
168
169 * include/cpplib.h (struct cpp_options): Add module_directives
170 option.
171 (NODE_MODULE): New node flag.
172 (struct cpp_hashnode): Make rid-code a bitfield, increase bits in
173 flags and swap with type field.
174 * init.c (post_options): Create module-directive identifier nodes.
175 * internal.h (struct lexer_state): Add directive_file_token &
176 n_modules fields. Add module node enumerator.
177 * lex.c (cpp_maybe_module_directive): New.
178 (_cpp_lex_token): Call it.
179 (cpp_output_token): Add '"' around CPP_HEADER_NAME token.
180 (do_peek_ident, do_peek_module): New.
181 (cpp_directives_only): Detect module-directive lines.
182 * macro.c (cpp_get_token_1): Deal with directive_file_token
183 triggering.
184
1852020-11-18 Nathan Sidwell <nathan@acm.org>
186
187 * files.c (struct _cpp_file): Add header_unit field.
188 (_cpp_stack_file): Add header unit support.
189 (cpp_find_header_unit): New.
190 * include/cpplib.h (cpp_find_header_unit): Declare.
191
1922020-11-18 Nathan Sidwell <nathan@acm.org>
193
194 * include/cpplib.h (struct cpp_options): Add modules to
195 dep-options.
196 * include/mkdeps.h (deps_add_module_target): Declare.
197 (deps_add_module_dep): Declare.
198 * mkdeps.c (class mkdeps): Add modules, module_name, cmi_name,
199 is_header_unit fields. Adjust cdtors.
200 (deps_add_module_target, deps_add_module_dep): New.
201 (make_write): Write module dependencies, if enabled.
202
4dabb037
GA
2032020-11-17 Nathan Sidwell <nathan@acm.org>
204
205 * include/cpplib.h (struct cpp_callbacks): Add
206 user_deferred_macro & translate_include.
207
2082020-11-17 Nathan Sidwell <nathan@acm.org>
209
210 * include/line-map.h (enum lc_reason): Add LC_MODULE.
211 (MAP_MODULE_P): New.
212 (line_map_new_raw): Declare.
213 (linemap_enter_macro): Move declaration from internal.h
214 (linemap_module_loc, linemap_module_reparent)
215 (linemap_module_restore): Declare.
216 (linemap_lookup_macro_indec): Declare.
217 * internal.h (linemap_enter_macro): Moved to line-map.h.
218 * line-map.c (linemap_new_raw): New, broken out of ...
219 (new_linemap): ... here. Call it.
220 (LAST_SOURCE_LINE_LOCATION): New.
221 (liemap_module_loc, linemap_module_reparent)
222 (linemap_module_restore): New.
223 (linemap_lookup_macro_index): New, broken out of ...
224 (linemap_macro_map_lookup): ... here. Call it.
225 (linemap_dump): Add module dump.
226
2272020-11-17 Nathan Sidwell <nathan@acm.org>
228
229 PR preprocessor/97858
230 * mkdeps.c (munge): Drop varadic args, we only ever use one.
231
77f67db2
GA
2322020-11-13 Joseph Myers <joseph@codesourcery.com>
233
234 * expr.c (cpp_classify_number): Update diagnostic for binary
235 constants for C. Also diagnose binary constants for
236 -Wc11-c2x-compat.
237 * init.c (lang_defaults): Enable binary constants for GNUC2X and
238 STDC2X.
239
2402020-11-13 Piotr H. Dabrowski <phd@phd.re>
241
242 PR c++/91318
243 * include/cpplib.h: Added cpp_define_unused(), cpp_define_formatted_unused()
244 * directives.c: Likewise.
245
a5a11525
GA
2462020-11-12 Joseph Myers <joseph@codesourcery.com>
247
248 * include/cpplib.h (struct cpp_callbacks): Add bool argument to
249 has_attribute.
250 (enum cpp_builtin_type): Add BT_HAS_STD_ATTRIBUTE.
251 * init.c (builtin_array): Add __has_c_attribute.
252 (cpp_init_special_builtins): Handle BT_HAS_STD_ATTRIBUTE.
253 * macro.c (_cpp_builtin_macro_text): Handle BT_HAS_STD_ATTRIBUTE.
254 Update call to has_attribute for BT_HAS_ATTRIBUTE.
255 * traditional.c (fun_like_macro): Handle BT_HAS_STD_ATTRIBUTE.
256
2572020-11-12 Nicholas Guriev <guriev-ns@ya.ru>
258
259 PR pch/86674
260 * files.c (_cpp_find_file): Use CPP_DL_NOTE not CPP_DL_ERROR in call to
261 cpp_error.
262
2da7ee05
GA
2632020-11-07 Lewis Hyatt <lhyatt@gmail.com>
264
265 * generated_cpp_wcwidth.h: Regenerated from Unicode 13.0.0 data.
266
44cab2d8
GA
2672020-11-06 Nathan Sidwell <nathan@acm.org>
268
269 * include/cpplib.h (enum class CPP_time_kind): New.
270 (cpp_get_date): Declare.
271 * internal.h (struct cpp_reader): Replace source_date_epoch with
272 time_stamp and time_stamp_kind.
273 * init.c (cpp_create_reader): Initialize them.
274 * macro.c (_cpp_builtin_macro_text): Use cpp_get_date.
275 (cpp_get_date): Broken out from _cpp_builtin_macro_text and
276 genericized.
277
fd2325ea
GA
2782020-11-03 Nathan Sidwell <nathan@acm.org>
279
280 * lex.c (cpp_peek_token): Do not peek past CPP_PRAGMA.
281 (_cpp_lex_direct): Handle EOF in pragma when setting need_line,
282 not when needing a line.
283
2842020-11-03 Nathan Sidwell <nathan@acm.org>
285
286 * lex.c (_cpp_clean_line): Fix DOS off-by-one error.
287
2882020-11-03 Nathan Sidwell <nathan@acm.org>
289
290 * init.c (cpp_read_main_file): Use cpp_get_deps result.
291
2922020-11-03 Nathan Sidwell <nathan@acm.org>
293
294 * include/mkdeps.h: Include cpplib.h
295 (deps_write): Adjust first parm type.
296 * mkdeps.c: Include internal.h
297 (make_write): Adjust first parm type. Check phony option
298 directly.
299 (deps_write): Adjust first parm type.
300 * init.c (cpp_read_main_file): Use get_deps.
301 * directives.c (cpp_get_deps): Check option before initializing.
302
88ce3d5f
GA
3032020-11-02 Nathan Sidwell <nathan@acm.org>
304
305 * internal.h (_cpp_notify_macro_use): Add location parm.
306 (_cpp_maybe_notify_macro_use): Likewise.
307 * directives.c (_cpp_do_file_change): Check we've not changed file
308 when optimizing a rewind.
309 (do_ifdef): Pass location to _cpp_maybe_notify_macro_use.
310 (do_ifndef): Likewise. Delete obsolete comment about powerpc.
311 * expr.c (parse_defined): Pass location to
312 _cpp_maybe_notify_macro_use.
313 * macro.c (enter_macro_context): Likewise.
314 (warn_of_redefinition): Break out helper function. Call it.
315 (compare_macros): New function broken out of warn_of_redefinition.
316 (_cpp_new_macro): Zero all fields.
317 (_cpp_notify_macro_use): Add location parameter.
318
e2e04288
GA
3192020-10-20 Nathan Sidwell <nathan@acm.org>
320
321 * lex.c (_cpp_lex_direct): Do not complete EOF processing when
322 parsing_args.
323 * macro.c (collect_args): Do not unwind fake EOF.
324 (funlike_invocation_p): Do not unwind fake EOF.
325 (cpp_context): Replace abort with gcc_assert.
326
970d683f
GA
3272020-10-19 Nathan Sidwell <nathan@acm.org>
328
329 * internal.h (struct cpp_reader): Rename 'eof' field to 'endarg'.
330 * init.c (cpp_create_reader): Adjust.
331 * macro.c (collect_args): Use endarg for separator. Always rewind
332 in the not-fn case.
333
da9df699
GA
3342020-10-08 Nathan Sidwell <nathan@acm.org>
335
336 * internal.h (enum include_type): Rename IT_MAIN_INJECT to
337 IT_PRE_MAIN.
338 * init.c (cpp_read_main_file): If there is no line marker, adjust
339 the initial line marker.
340 (read_original_filename): Return bool, peek the buffer directly
341 before trying to tokenize.
342 (read_original_directory): Likewise. Directly prod the string
343 literal.
344 * files.c (_cpp_stack_file): Adjust for IT_PRE_MAIN change.
345
91dd4a38
GA
3462020-09-26 Jakub Jelinek <jakub@redhat.com>
347
348 PR bootstrap/97163
349 * lex.c (search_line_fast): Only use _ARCH_PWR8 Altivec version
350 for GCC >= 4.5.
351
2aad20c0
GA
3522020-09-17 Patrick Palka <ppalka@redhat.com>
353
354 PR c/80076
355 * include/line-map.h (first_map_in_common): Declare.
356 * line-map.c (first_map_in_common): Remove static.
357
a995c40d
GA
3582020-09-07 Martin Storsjö <martin@martin.st>
359
360 * files.c (remap_filename): Make a strchr return value pointer
361 to const.
362
d48cca8f
GA
3632020-07-30 H.J. Lu <hjl.tools@gmail.com>
364
365 PR bootstrap/96202
366 * configure: Regenerated.
367
bea7a391
GA
3682020-07-29 Tiziano Müller <tiziano.mueller@chem.uzh.ch>
369
370 * init.c (builtin_array): Add xref comment.
371 * traditional.c (fun_like_macro): Add HAS_INCLUDE codes.
372
7ebb7d0c
GA
3732020-07-28 Jakub Jelinek <jakub@redhat.com>
374
375 PR preprocessor/96323
376 * lex.c (lex_raw_string): For c == '\n' don't continue after reporting
377 an prefix delimiter error.
378
3792020-07-28 Nathan Sidwell <nathan@acm.org>
380
381 * init.c (cpp_read_main_file): Always use the last map for
382 the return value.
383
0933f508
GA
3842020-07-20 Nathan Sidwell <nathan@acm.org>
385
386 * line-map.c (linemap_add): Simplify column overflow calculation.
387 Add comment about range and column bit init.
388 (linemap_ordinary_map_lookup): Refactor for RAII
389 (linemap_macro_map_lookup): Likewise.
390
8ca07a30
GA
3912020-07-14 Lewis Hyatt <lhyatt@gmail.com>
392
393 PR preprocessor/49973
394 PR other/86904
395 * include/cpplib.h (struct cpp_options): Removed support for -ftabstop,
396 which is now handled by diagnostic_context.
397 (class cpp_display_width_computation): New class.
398 (cpp_byte_column_to_display_column): Add optional tabstop argument.
399 (cpp_display_width): Likewise.
400 (cpp_display_column_to_byte_column): Likewise.
401 * charset.c
402 (cpp_display_width_computation::cpp_display_width_computation): New
403 function.
404 (cpp_display_width_computation::advance_display_cols): Likewise.
405 (compute_next_display_width): Removed and implemented this
406 functionality in a new function...
407 (cpp_display_width_computation::process_next_codepoint): ...here.
408 (cpp_byte_column_to_display_column): Added tabstop argument.
409 Reimplemented in terms of class cpp_display_width_computation.
410 (cpp_display_column_to_byte_column): Likewise.
411 * init.c (cpp_create_reader): Remove handling of -ftabstop, which is now
412 handled by diagnostic_context.
413
f60ee68d
GA
4142020-07-07 Nathan Sidwell <nathan@acm.org>
415
416 * directives.c (do_linemarker): Optimize rewinding to line zero.
417 * files.c (_cpp_stack_file): Start on line zero when about to inject
418 headers.
419 (cpp_push_include, cpp_push_default_include): Use highest_line as
420 the location.
421 * include/cpplib.h (cpp_read_main_file): Add injecting parm.
422 * init.c (cpp_read_main_file): Likewise, inform _cpp_stack_file.
423 * internal.h (enum include_type): Add IT_MAIN_INJECT.
424
885ef72f
GA
4252020-05-29 H.J. Lu <hjl.tools@gmail.com>
426
427 PR bootstrap/95413
428 * configure: Regenerated.
429
731c4ce0
DE
4302020-05-23 David Edelsohn <dje.gcc@gmail.com>
431
432 * Makefile.in (AR): Substitute @AR@.
433 * configure.ac (CHECK_PROG AR): New.
434 * configure: Regenerate.
435
4623a6f2
NS
4362020-05-20 Nathan Sidwell <nathan@acm.org>
437
438 * internal.h (typedef _cpp_file): Delete, unnecessary in C++.
439 (enum _cpp_find_file_kind): New.
440 (_cpp_find_file): Use it, not 3 bools.
441 * files.c (_cpp_find_file): Use _cpp_find_file_kind enum, not
442 bools.
443 (cpp_make_system_header): Break overly long line.
444 (_cpp_stack_include, _cpp_fake_include)
445 (_cpp_do_file_change, _cpp_compare_file_date, _cpp_has_header): Adjust.
446 * init.c (cpp_read_main): Adjust _cpp_find_file call.
447
a641d6d3
NS
4482020-05-18 Nathan Sidwell <nathan@acm.org>
449
7cf3f604
NS
450 * include/cpplib.h (cpp_get_otions, cpp_get_callbacks)
451 (cpp_get_deps): Mark as PURE.
452 * include/line-map.h (get_combined_adhoc_loc)
453 (get_location_from_adhoc_loc, get_pure_location): Reformat decls.
454 * internal.h (struct lexer_state): Clarify comment.
455 * system.h: Remove now-unneeded bool hackery.
456 * files.c (_cpp_find_file): Store LOC not highest_location.
457
ed63c387
NS
458 PR preprocessor/95149
459 * lex.c (struct lit_accum): New.
460 (bufring_append): Replace by lit_accum::append.
461 (lex_raw_string): Reimplement, using fragments of the old version.
462 (lex_string): Adjust lex_raw_string call.
463
a641d6d3
NS
464 PR preprocessor/95182
465 * macro.c (collect_args): Preserve EOFif we fell out of the main
466 file.
467 (cpp_get_token_1): Reformat a couple of short lines.
468
8d286dd1
L
4692020-05-14 H.J. Lu <hongjiu.lu@intel.com>
470
471 * configure: Regenerated.
472
b04445d4
JM
4732020-05-13 Jason Merrill <jason@redhat.com>
474
475 * include/cpplib.h (enum c_lang): Change CXX2A to CXX20.
476 * init.c, lex.c: Adjust.
477
2a0225e4
NS
4782020-05-12 Nathan Sidwell <nathan@acm.org>
479
480 EOF location is at end of file
481 PR preprocessor/95013
482 * lex.c (lex_raw_string): Process line notes before incrementing.
483 Correct incrementing condition. Adjust for new
484 _cpp_get_fresh_line EOF behaviour.
485 (_cpp_get_fresh_line): Do not pop buffer at EOF, increment line
486 instead.
487 (_cpp_lex_direct): Adjust for new _cpp_get_fresh_line behaviour.
488 (cpp_directive_only_process): Assert we got a fresh line.
489 * traditional.c (_cpp_read_logical_line_trad): Adjust for new
490 _cpp_get_fresh_line behaviour.
491
051da742
L
4922020-05-12 H.J. Lu <hongjiu.lu@intel.com>
493
494 * Makefile.in (CET_HOST_FLAGS): New.
495 (COMPILER): Add $(CET_HOST_FLAGS).
496 * configure.ac: Add GCC_CET_HOST_FLAGS(CET_HOST_FLAGS) and
497 AC_SUBST(CET_HOST_FLAGS). Clear CET_HOST_FLAGS if jit isn't
498 enabled.
499 * aclocal.m4: Regenerated.
500 * configure: Likewise.
501
b224c376
NS
5022020-05-08 Nathan Sidwell <nathan@acm.org>
503
504 Reimplement directives only processing, support raw literals.
505 * directives-only.c: Delete.
506 * Makefile.in (libcpp_a_OBJS, libcpp_a_SOURCES): Remove it.
507 * include/cpplib.h (enum CPP_DO_task): New enum.
508 (cpp_directive_only_preprocess): Declare.
509 * internal.h (_cpp_dir_only_callbacks): Delete.
510 (_cpp_preprocess_dir_only): Delete.
511 * lex.c (do_peek_backslask, do_peek_next, do_peek_prev): New.
512 (cpp_directives_only_process): New implementation.
513
e235031d
JJ
5142020-02-14 Jakub Jelinek <jakub@redhat.com>
515
516 Partially implement P1042R1: __VA_OPT__ wording clarifications
517 PR preprocessor/92319
518 * macro.c (expand_arg): Move declarations before vaopt_state
519 definition.
520 (class vaopt_state): Move enum update_type definition earlier. Remove
521 m_allowed member, add m_arg and m_update members.
522 (vaopt_state::vaopt_state): Change last argument from bool any_args
523 to macro_arg *arg, initialize m_arg and m_update instead of m_allowed.
524 (vaopt_state::update): When bumping m_state from 1 to 2 and m_update
525 is ERROR, determine if __VA_ARGS__ expansion has any non-CPP_PADDING
526 tokens and set m_update to INCLUDE if it has any, DROP otherwise.
527 Return m_update instead of m_allowed ? INCLUDE : DROP in m_state >= 2.
528 (replace_args, create_iso_definition): Adjust last argument to
529 vaopt_state ctor.
530
297aa668
MS
5312020-02-05 Martin Sebor <msebor@redhat.com>
532
533 * include/cpplib.h (cpp_builtin_type): Remove trailing comma to
534 avoid pedantic warnings in C++ 98 mode.
535
c04babd9
JJ
5362020-02-04 Jakub Jelinek <jakub@redhat.com>
537
f8d6e448
JJ
538 * macro.c (builtin_has_include): Diagnose __has_include* use outside
539 of preprocessing directives.
540
c04babd9
JJ
541 PR preprocessor/93545
542 * macro.c (cpp_get_token_no_padding): New function.
543 (builtin_has_include): Use it instead of cpp_get_token. Don't check
544 SEEN_EOL.
545
20fa702b
AB
5462020-02-01 Andrew Burgess <andrew.burgess@embecosm.com>
547
548 * configure: Regenerate.
549
3d056cbf
NS
5502020-01-28 Nathan Sidwell <nathan@acm.org>
551
552 PR preprocessor/93452
553 * internal.h (struct spec_nodes): Drop n__has_include{,_next}.
554 * directives.c (lex_macro_node): Don't check __has_include redef.
555 * expr.c (eval_token): Drop __has_include eval.
556 (parse_has_include): Move to ...
557 * macro.c (builtin_has_include): ... here.
558 (_cpp_builtin_macro_text): Eval __has_include{,_next}.
559 * include/cpplib.h (enum cpp_builtin_type): Add BT_HAS_INCLUDE{,_NEXT}.
560 * init.c (builtin_array): Add them.
561 (cpp_init_builtins): Drop __has_include{,_next} init here ...
562 * pch.c (cpp_read_state): ... and here.
563 * traditional.c (enum ls): Drop has_include states ...
564 (_cpp_scan_out_logical_line): ... and here.
565
e7c26e04
AB
5662020-01-27 Andrew Burgess <andrew.burgess@embecosm.com>
567
568 * configure: Regenerate.
569
a1f6eff2
NS
5702020-01-24 Nathan Sidwell <nathan@acm.org>
571
572 * expr.c (parse_has_include): Remove bogus controlling macro code.
573
ad1a3914
NS
5742020-01-20 Nathan Sidwell <nathan@acm.org>
575
576 PR preprocessor/80005
577 * include/cpplib.h (BT_HAS_ATTRIBUTE): Fix comment.
578 * internal.h (struct lexer_state): Delete in__has_include field.
579 (struct spec_nodes): Rename n__has_include{,_next}__ fields.
580 (_cpp_defined_macro_p): New.
581 (_cpp_find_file): Add has_include parm.
582 * directives.c (lex_macro_node): Combine defined,
583 __has_inline{,_next} checking.
584 (do_ifdef, do_ifndef): Use _cpp_defined_macro_p.
585 (_cpp_init_directives): Refactor.
586 * expr.c (parse_defined): Use _cpp_defined_macro_p.
587 (eval_token): Adjust parse_has_include calls.
588 (parse_has_include): Add OP parameter. Reimplement.
589 * files.c (_cpp_find_file): Add HAS_INCLUDE parm. Use it to
590 inhibit error message.
591 (_cpp_stack_include): Adjust _cpp_find_file call.
592 (_cpp_fake_include, _cpp_compare_file_date): Likewise.
593 (open_file_failed): Remove in__has_include check.
594 (_cpp_has_header): Adjust _cpp_find_file call.
595 * identifiers.c (_cpp_init_hashtable): Don't init
596 __has_include{,_next} here ...
597 * init.c (cpp_init_builtins): ... init them here. Define as
598 macros.
599 (cpp_read_main_file): Adjust _cpp_find_file call.
600 * pch.c (cpp_read_state): Adjust __has_include{,_next} access.
601 * traditional.c (_cpp_scan_out_locgical_line): Likewise.
bf09d886
NS
602
603 PR preprocessor/93306
604 * expr.c (parse_has_include): Refactor. Check skip_eval before
605 looking.
606
4bc1899b
DM
6072020-01-10 David Malcolm <dmalcolm@redhat.com>
608
609 * include/line-map.h (class diagnostic_path): New forward decl.
610 (rich_location::get_path): New accessor.
611 (rich_location::set_path): New function.
612 (rich_location::m_path): New field.
613 * line-map.c (rich_location::rich_location): Initialize m_path.
614
8d9254fc
JJ
6152020-01-01 Jakub Jelinek <jakub@redhat.com>
616
617 Update copyright years.
618
6dd0c820
DM
6192019-12-18 David Malcolm <dmalcolm@redhat.com>
620
621 PR preprocessor/92982
622 * charset.c
623 (cpp_string_location_reader::cpp_string_location_reader): Delete
624 initialization of m_line_table.
625 * include/cpplib.h (cpp_string_location_reader::m_line_table):
626 Delete unused member.
627
937a778e
JJ
6282019-12-14 Jakub Jelinek <jakub@redhat.com>
629
630 PR preprocessor/92919
631 * charset.c (wide_str_to_charconst): If str contains just the
632 NUL terminator, punt quietly.
633
d68f5d45
DM
6342019-12-09 David Malcolm <dmalcolm@redhat.com>
635
636 * include/line-map.h (label_text::label_text): Make private.
637 (label_text::borrow): New.
638 (label_text::take): New.
639 (label_text::take_or_copy): New.
640
ee925640
LH
6412019-12-09 Lewis Hyatt <lhyatt@gmail.com>
642
643 PR preprocessor/49973
644 * generated_cpp_wcwidth.h: New file generated by
645 ../contrib/unicode/gen_wcwidth.py, supports new cpp_wcwidth function.
646 * charset.c (compute_next_display_width): New function to help
647 implement display columns.
648 (cpp_byte_column_to_display_column): Likewise.
649 (cpp_display_column_to_byte_column): Likewise.
650 (cpp_wcwidth): Likewise.
651 * include/cpplib.h (cpp_byte_column_to_display_column): Declare.
652 (cpp_display_column_to_byte_column): Declare.
653 (cpp_wcwidth): Declare.
654 (cpp_display_width): New function.
655
7c5890cc
JM
6562019-11-14 Joseph Myers <joseph@codesourcery.com>
657
658 * charset.c (narrow_str_to_charconst): Make CPP_UTF8CHAR constants
659 unsigned for C.
660 * init.c (lang_defaults): Set utf8_char_literals for GNUC2X and
661 STDC2X.
662
2c03d736
JJ
6632019-11-07 Jakub Jelinek <jakub@redhat.com>
664
665 PR c++/91370 - Implement P1041R4 and P1139R2 - Stronger Unicode reqs
666 * charset.c (narrow_str_to_charconst): Add TYPE argument. For
667 CPP_UTF8CHAR diagnose whenever number of chars is > 1, using
668 CPP_DL_ERROR instead of CPP_DL_WARNING.
669 (wide_str_to_charconst): For CPP_CHAR16 or CPP_CHAR32, use
670 CPP_DL_ERROR instead of CPP_DL_WARNING when multiple char16_t
671 or char32_t chars are needed.
672 (cpp_interpret_charconst): Adjust narrow_str_to_charconst caller.
673
b7689b96
JM
6742019-11-05 Tim van Deurzen <tim@kompiler.org>
675
676 * cpplib.h: Add spaceship operator for C++.
677 * lex.c: Implement conditional lexing of spaceship operator for C++20.
678
aa23e73b
JJ
6792019-10-31 Jakub Jelinek <jakub@redhat.com>
680
681 PR preprocessor/92296
682 * internal.h (struct def_pragma_macro): Add is_builtin bitfield.
683 (_cpp_restore_special_builtin): Declare.
684 * init.c (_cpp_restore_special_builtin): New function.
685 * directives.c (do_pragma_push_macro): For NT_BUILTIN_MACRO
686 set is_builtin and don't try to grab definition.
687 (cpp_pop_definition): Use _cpp_restore_special_builtin to restore
688 builtin macros.
689
9158f0ba
NS
6902019-10-15 Nathan Sidwell <nathan@acm.org>
691
692 * include/line-map.h (struct maps_info_ordinary): Make cache
693 mutable.
694 (struct maps_info_macro): Likewise.
695 (LINEMAPS_CACHE): Remove non-ref accessor. Constify ref accessor.
696 (LINEMAPS_ORDINARY_CACHE, LINEMAPS_MACRO_CACHE): Likewise.
697 (LINEMAPS_ORDINARY_MAP_AT, LINEMAPS_MACRO_MAP_AT): Use
698 LINEMAPS_USED and LINEMAPS_MAP_AT.
699 (linemap_lookup): Constify line_map arg.
700 linemap.c (linemap_ordinary_map_lookup, linemap_macro_map_lookup):
701 Constify line_map arg.
702
175a85b2
JM
7032019-10-11 Joseph Myers <joseph@codesourcery.com>
704
705 * include/cpplib.h (struct cpp_options): Add dfp_constants and
706 cpp_warn_c11_c2x_compat.
707 (enum cpp_warning_reason): Add CPP_W_C11_C2X_COMPAT.
708 * init.c (struct lang_flags): Add dfp_constants.
709 (lang_defaults): Set dfp_constants to 1 for GNUC2X and STDC2X and
710 0 for other languages.
711 (cpp_set_lang): Set dfp_constants from language.
712 (cpp_create_reader): Set cpp_warn_c11_c2x_compat to -1.
713 * expr.c (interpret_float_suffix): Mention DFP constants as C2X in
714 comment.
715 (cpp_classify_number): Do not diagnose DFP constants for languages
716 setting dfp_constants, unless cpp_warn_c11_c2x_compat.
717
924b9276
NS
7182019-10-04 Nathan Sidwell <nathan@acm.org>
719
720 PR preprocessor/91991
721 * line-map.c (linemap_line_start): Clear max_column_hint if we run
722 out of locations.
723
68710ac7
RB
7242019-10-02 Richard Biener <rguenther@suse.de>
725
726 * internal.h (enum include_type): Remove trailing comma.
727
93313b94
JM
7282019-10-02 Joseph Myers <joseph@codesourcery.com>
729
730 * include/cpplib.h (struct cpp_options): Add member scope.
731 * init.c (struct lang_flags, lang_defaults): Likewise.
732 (cpp_set_lang): Set scope member of pfile.
733 * lex.c (_cpp_lex_direct): Test CPP_OPTION (pfile, scope) not
734 CPP_OPTION (pfile, cplusplus) for creating CPP_SCOPE tokens.
735
0900e29c
EB
7362019-09-26 Eric Botcazou <ebotcazou@adacore.com>
737
738 * charset.c (UCS_LIMIT): New macro.
739 (ucn_valid_in_identifier): Use it instead of a hardcoded constant.
740 (_cpp_valid_ucn): Issue a pedantic warning for UCNs larger than
741 UCS_LIMIT outside of identifiers in C and in C++2a or later.
742
7d112d66
LH
7432019-09-19 Lewis Hyatt <lhyatt@gmail.com>
744
745 PR c/67224
746 * charset.c (_cpp_valid_utf8): New function to help lex UTF-8 tokens.
747 * internal.h (_cpp_valid_utf8): Declare.
748 * lex.c (forms_identifier_p): Use it to recognize UTF-8 identifiers.
749 (_cpp_lex_direct): Handle UTF-8 in identifiers and CPP_OTHER tokens.
750 Do all work in "default" case to avoid slowing down typical code paths.
751 Also handle $ and UCN in the default case for consistency.
752
400b8274
NS
7532019-08-30 Nathan Sidwell <nathan@acm.org>
754
755 New # semantics for popping to "" name.
756 libcpp/
757 * directives.c (do_linemarker): Popping to "" name means get the
758 name from the include stack..
759
056f95ec
NS
7602019-09-05 Nathan Sidwell <nathan@acm.org>
761
762 PR preprocessor/91639
763 * directives.c (do_include_common): Tell lexer we're a #include.
764 * files.c (_cpp_stack_file): Lexer will have always incremented.
765 * internal.h (struct cpp_context): Extend in_directive's
766 semantics.
767 * lex.c (_cpp_lex_direct): Increment line for final \n when lexing
768 for an ISO #include.
769 * line-map.c (linemap_line_start): Remember if we overflowed.
770
2f2aeda9
UW
7712019-09-03 Ulrich Weigand <uweigand@de.ibm.com>
772
773 * directives.c: Remove references to spu from comments.
774 * expr.c: Likewise.
775
b0d11f1e
NS
7762019-08-29 Nathan Sidwell <nathan@acm.org>
777
778 * internal.h (enum include_type): Add IT_MAIN, IT_DIRECTIVE_HWM,
779 IT_HEADER_HWM.
780 (_cpp_stack_file): Take include_type, not a bool.
781 * files.c (_cpp_find_file): Refactor to not hide an if inside a
782 for conditional.
783 (should_stack_file): Break apart to ...
784 (is_known_idempotent_file, has_unique_contents): ... these.
785 (_cpp_stack_file): Replace IMPORT boolean with include_type enum.
786 Refactor to use new predicates. Do linemap compensation here ...
787 (_cpp_stack_include): ... not here.
788 * init.c (cpp_read_main_file): Pass IT_MAIN to _cpp_stack_file.
789
a0be978a
NS
7902019-08-28 Nathan Sidwell <nathan@acm.org>
791
792 * directives-only.c (_cpp_preprocess_dir_only): Use false, not
793 zero for _cpp_handle_directive call.
794 * directives.c (_cpp_handle_directive): Indented is bool.
795 * files.c (struct _cpp_file): Make bools 1 bit bitfields.
796 * internal.h (enum include_type): Reformat and comment.
797 (struct cpp_buffer): Make flags 1 bit bitfields.
798 (_cpp_handle_directive): Indented is bool.
799
6c1dae73
MS
8002019-07-09 Martin Sebor <msebor@redhat.com>
801
802 * include/line-map.h: Change class-key from class to struct and vice
803 versa to match convention and avoid -Wclass-is-pod and -Wstruct-no-pod.
804 * mkdeps.c: Same.
805
8ba6ea87
ML
8062019-07-03 Martin Liska <mliska@suse.cz>
807
808 * line-map.c (linemap_get_expansion_filename): Remove
809 dead assignemts.
810 * mkdeps.c (make_write): Likewise.
811
1c6ffbab
QZ
8122019-07-02 qing zhao <qing.zhao@oracle.com>
813
814 PR preprocessor/90581
815 * directives.c (do_include_common): Replace CPP_STACK_MAX with
816 CPP_OPTION (pfile, max_include_depth).
817 * include/cpplib.h (struct cpp_options): Add new field
818 max_include_depth.
819 * init.c (cpp_create_reader): Initiate new field max_include_depth.
820 * internal.h: Delete CPP_STACK_MAX.
821
66d7749b
NS
8222019-06-26 Nathan Sidwell <nathan@acm.org>
823
824 PR preprocessor/90927
825 * mkdeps.c (mkdeps::vec::operator[]): Add non-const variant.
826 (deps_add_target): Deal with out of order unquoted targets.
827
3f23e487
AP
8282019-05-19 Andrew Pinski <apinski@marvell.com>
829
830 PR pch/81721
831 * lex.c (cpp_token_val_index <case SPELL_OPERATOR>): If tok->flags
832 has NAMED_OP set, then return CPP_TOKEN_FLD_NODE.
833
19eda56d
ML
8342019-05-14 Martin Liska <mliska@suse.cz>
835
836 PR preprocessor/90382
837 * line-map.c (first_map_in_common_1): Handle ADHOC
838 locations.
839
e6fc8353
ML
8402019-05-14 Martin Liska <mliska@suse.cz>
841
842 PR preprocessor/90382
843 * include/line-map.h (get_data_from_adhoc_loc): Add const to
844 the first argument.
845 (get_location_from_adhoc_loc): Likewise.
846 * line-map.c(get_data_from_adhoc_loc): Add const to
847 the first argument.
848 (get_location_from_adhoc_loc): Likewise.
849 (get_combined_adhoc_loc): Use get_location_from_adhoc_loc
850 (or get_data_from_adhoc_loc).
851 (get_range_from_adhoc_loc): Likewise.
852 (get_pure_location): Likewise.
853 (linemap_position_for_loc_and_offset): Likewise.
854 (linemap_lookup): Likewise.
855 (linemap_ordinary_map_lookup): Likewise.
856 (linemap_macro_map_lookup): Likewise.
857 (linemap_get_expansion_line): Likewise.
858 (linemap_get_expansion_filename): Likewise.
859 (linemap_location_in_system_header_p): Likewise.
860 (linemap_location_from_macro_expansion_p): Likewise.
861 (linemap_macro_loc_to_exp_point): Likewise.
862 (linemap_resolve_location): Likewise.
863 (linemap_unwind_toward_expansion): Likewise.
864 (linemap_unwind_to_first_non_reserved_loc): Likewise.
865 (linemap_expand_location): Likewise.
866 (linemap_dump_location): Likewise.
867
d7b6aee8
NS
8682019-05-07 Nathan Sidwell <nathan@acm.org>
869
61145d93
NS
870 * files.c (_cpp_stack_file): Empty filenames aren't dependencies.
871 * mkdeps.c (deps_add_dep): Assert not empty.
872
d7b6aee8
NS
873 * include/mkdeps.h (deps_write): Add PHONY arg.
874 (deps_phony_targets): Delete.
875 * init.c (cpp_finish): Just call deps_write.
876 * mkdeps.c (struct mkdeps): Add local vector class. Reimplement
877 vector handling.
878 (munge): Munge to static buffer.
879 (apply_vpath): Adjust vector handling.
880 (deps_init, deps_free): Use new, delete.
881 (deps_add_target): Do not munge here. Record quoting low water mark.
882 (deps_add_dep): Do not munge here.
883 (deps_add_vpath): Adjust vector handling.
884 (make_write_name): New. Munge on demand here.
885 (make_write_vec): New.
886 (deps_phony_targets): Delete.
887 (make_write): New.
888 (deps_write): Forward to deps_Write.
889 (deps_save, deps_restore): Adjust vector handling.
890
b744fc85
NS
8912019-05-06 Nathan Sidwell <nathan@acm.org>
892
893 * include/mkdeps.h: Rename struct deps to struct mkdeps.
894 * mkdeps.c: Likewise.
895 * include/cpplib.h (cpp_get_deps): Rename return type..
896 * directives.c (cpp_get_deps): Likewise.
897 * internal.h (struct cpp_reader): Rename deps field type.
898
0bf12a52
JW
8992019-04-03 Jonathan Wakely <jwakely@redhat.com>
900
901 * files.c (search_path_exhausted): Fix typo in comment.
902
60448173
ML
9032019-02-26 Martin Liska <mliska@suse.cz>
904
905 * symtab.c (ht_dump_statistics): Make
906 horizontal alignment for statistics.
907
200a8e1a
DM
9082019-02-20 David Malcolm <dmalcolm@redhat.com>
909
910 PR c/89410
911 * include/line-map.h (linenum_arith_t): New typedef.
912 (compare): Use it.
913
a5f87af7
ML
9142019-02-18 Martin Liska <mliska@suse.cz>
915
916 PR c++/89383
917 * line-map.c (linemap_line_start): Use 1UL in order
918 to not overflow.
919
a4553534
DM
9202019-02-11 Martin Liska <mliska@suse.cz>
921
922 PR lto/88147
923 * line-map.c (linemap_line_start): Don't reuse the existing line
924 map if the line offset is sufficiently large to cause overflow
925 when computing location_t values.
926
18f5df94
JJ
9272019-01-26 Jakub Jelinek <jakub@redhat.com>
928
929 PR preprocessor/88974
930 * directives.c (SEEN_EOL): Move macro to ...
931 * internal.h (SEEN_EOL): ... here.
932 * expr.c (parse_has_include): Don't cpp_get_token if SEEN_EOL ().
933
a5544970
JJ
9342019-01-01 Jakub Jelinek <jakub@redhat.com>
935
936 Update copyright years.
937
bc65bad2
MG
9382018-11-27 Mike Gulick <mgulick@mathworks.com>
939
940 PR preprocessor/83173
941 * location-example.txt: Update example -fdump-internal-locations
942 output.
943
56c79e7f
MG
9442018-11-27 Mike Gulick <mgulick@mathworks.com>
945
946 PR preprocessor/83173
947 * files.c (_cpp_stack_include): Check if
948 line_table->highest_location is past current line before
949 decrementing.
950
620e594b
DM
9512018-11-13 David Malcolm <dmalcolm@redhat.com>
952
953 * charset.c: Replace "source_location" with "location_t".
954 * directives-only.c: Likewise.
955 * directives.c: Likewise.
956 * errors.c: Likewise.
957 * expr.c: Likewise.
958 * files.c: Likewise.
959 * include/cpplib.h: Likewise. Rename MAX_SOURCE_LOCATION to
960 MAX_LOCATION_T.
961 * include/line-map.h: Likewise.
962 * init.c: Likewise.
963 * internal.h: Likewise.
964 * lex.c: Likewise.
965 * line-map.c: Likewise.
966 * location-example.txt: Likewise.
967 * macro.c: Likewise.
968 * pch.c: Likewise.
969 * traditional.c: Likewise.
970
e9f3803d
HAQ
9712018-11-07 Hafiz Abid Qadeer <abidh@codesourcery.com>
972
973 * configure: Regenerated.
974
546f678c
ML
9752018-11-05 Martin Liska <mliska@suse.cz>
976
977 * symtab.c (ht_dump_statistics): Replace %zu with %lu format.
978
037903cb
ML
9792018-11-05 Martin Liska <mliska@suse.cz>
980
981 * symtab.c (ht_dump_statistics): Fix format and
982 pass missing argument.
983
46aeb07f
ML
9842018-11-05 Martin Liska <mliska@suse.cz>
985
986 * symtab.c (ht_dump_statistics): Make dump conditional
987 based on alloc_subobject.
988
22e05272
JM
9892018-10-31 Joseph Myers <joseph@codesourcery.com>
990
991 PR bootstrap/82856
992 * configure.ac: Remove AC_PREREQ. Use AC_LANG_SOURCE.
993 * aclocal.m4, config.in, configure: Regenerate.
994
ff65e980
NS
9952018-10-31 Nathan Sidwell <nathan@acm.org>
996
f3f6029d
NS
997 * internal.h (struct cpp_reader): Rename forced_token_location_p
998 to forced_token_location and drop its pointerness.
999 * include/cpplib.h (cpp_force_token_locations): Take location, not
1000 pointer to one.
1001 * init.c (cpp_create_reader): Adjust.
1002 * lex.c (cpp_read_main_file):
1003
705b0c05
NS
1004 * directives.c (do_include_common): Commonize cleanup path.
1005 (_cpp_pop_buffer): Fix leak.
1006
87bacc2b
NS
1007 * include/line-map.h (IS_ORDINARY_LOC, IS_MACRO_LOC): New
1008 predicates.
1009 (IS_ADHOC_LOC): Move earlier.
1010 (MAP_ORDINARY_P): Use IS_ORDINARY_LOC.
1011 * line-map.c (linemap_location_from_macro_expansion_p): Use
1012 IS_MACRO_LOC.
1013
c9fb347e
NS
1014 * include/cpplib.h (cpp_macro_definition_location): Make inline.
1015 * macro.c (warn_of_redefinition): Fix comments, examine macro
1016 type, use C++ for.
1017 (cpp_macro_definition_location): Don't define here.
1018
43af5ef1
NS
1019 * include/cpplib.h (HT_NODE): Don't cast NODE.
1020 (NODE_LEN, NODE_NAME): Use HT_NODE.
1021
ff65e980
NS
1022 * directives.c (DIRECTIVE_TABLE): Drop historical frequency
1023 comments.
1024 * files.c (_cpp_stack_file): Fix indentation.
1025
9f936c86
JM
10262018-10-17 Joseph Myers <joseph@codesourcery.com>
1027
1028 * include/cpplib.h (enum c_lang): Add CLK_GNUC2X and CLK_STDC2X.
1029 * init.c (lang_defaults): Add GNUC2X and STDC2X entries.
1030 (cpp_init_builtins): Define __STDC_VERSION__ to 202000L for C2X.
1031
954ad112
DM
10322018-10-11 David Malcolm <dmalcolm@redhat.com>
1033
1034 * macro.c (_cpp_arguments_ok): If the argument count is wrong, add
1035 a note showing the definition of the macro.
1036
c1b48b29
NS
10372018-10-11 Nathan Sidwell <nathan@acm.org>
1038
1039 * include/line-map.h (LINEMAPS_MACRO_LOWEST_LOCATION): Fix
1040 off-by-one error.
1041 * line-map.c (linemap_enter_macro): Use RAII. Clear all of the
1042 macro_locations.
1043
c24300ba
DM
10442018-10-09 David Malcolm <dmalcolm@redhat.com>
1045
1046 * charset.c (noop_error_cb): Rename to...
1047 (noop_diagnostic_cb): ...this, converting params to enums.
1048 (cpp_interpret_string_ranges): Update for renaming and enums.
1049 * directives.c (check_eol_1): Convert reason to enum.
1050 (do_diagnostic): Convert code and reason to enum.
1051 (do_error): Use CPP_W_NONE rather than 0.
1052 (do_pragma_dependency): Likewise.
1053 * errors.c (cpp_diagnostic_at): Convert level and reason to enums.
1054 Update for renaming.
1055 (cpp_diagnostic): Convert level and reason to enums.
1056 (cpp_error): Convert level to enum.
1057 (cpp_warning): Convert reason to enums.
1058 (cpp_pedwarning): Likewise.
1059 (cpp_warning_syshdr): Likewise.
1060 (cpp_diagnostic_with_line): Convert level and reason to enums.
1061 Update for renaming.
1062 (cpp_error_with_line): Convert level to enum.
1063 (cpp_warning_with_line): Convert reason to enums.
1064 (cpp_pedwarning_with_line): Likewise.
1065 (cpp_warning_with_line_syshdr): Likewise.
1066 (cpp_error_at): Convert level to enum.
1067 (cpp_errno): Likewise.
1068 (cpp_errno_filename): Likewise.
1069 * include/cpplib.h (enum cpp_diagnostic_level): Name this enum,
1070 and move to before struct cpp_callbacks.
1071 (enum cpp_warning_reason): Likewise.
1072 (cpp_callbacks::diagnostic): Convert params from int to enums.
1073 (cpp_error): Convert int param to enum cpp_diagnostic_level.
1074 (cpp_warning): Convert int param to enum cpp_warning_reason.
1075 (cpp_pedwarning): Likewise.
1076 (cpp_warning_syshdr): Likewise.
1077 (cpp_errno): Convert int param to enum cpp_diagnostic_level.
1078 (cpp_errno_filename): Likewise.
1079 (cpp_error_with_line): Likewise.
1080 (cpp_warning_with_line): Convert int param to enum
1081 cpp_warning_reason.
1082 (cpp_pedwarning_with_line): Likewise.
1083 (cpp_warning_with_line_syshdr): Likewise.
1084 (cpp_error_at): Convert int param to enum cpp_diagnostic_level.
1085 * macro.c (create_iso_definition): Convert int to enum.
1086 (_cpp_create_definition): Likewise.
1087
9c4a4b3c
DM
10882018-09-17 David Malcolm <dmalcolm@redhat.com>
1089
1090 * include/line-map.h (range_label::get_text): Add param
1091 "range_idx".
1092
24c35f68
NS
10932018-08-30 Nathan Sidwell <nathan@acm.org>
1094
1095 * include/line-map.h (enum lc_reason): Comment each member
1096 separately.
1097 (struct line_maps): Fix reallocator comment.
1098
85204e23
DM
10992018-08-27 David Malcolm <dmalcolm@redhat.com>
1100
1101 PR 87091
1102 * include/line-map.h (enum range_display_kind): New enum.
1103 (struct location_range): Replace field "m_show_caret_p" with
1104 "m_range_display_kind", converting from bool to the new enum.
1105 (class rich_location): Add example of line insertion fix-it hint.
1106 (rich_location::add_range): Convert param "show_caret_p" from bool
1107 to enum range_display_kind and rename to "range_display_kind",
1108 giving it a default of SHOW_RANGE_WITHOUT_CARET.
1109 (rich_location::set_range): Likewise, albeit without a default.
1110 * line-map.c (rich_location::rich_location): Update for conversion
1111 of show_caret_p to tri-state enum.
1112 (rich_location::add_range): Likewise.
1113 (rich_location::set_range): Likewise.
1114
cf806c7d
L
11152018-08-24 H.J. Lu <hongjiu.lu@intel.com>
1116
1117 PR bootstrap/86872
1118 * line-map.c (pure_location_p): Return true if linemap_lookup
1119 returns NULL.
1120 (linemap_add): Set start_location to 0 if we run out of line map
1121 space.
1122
3fb558b1
NS
11232018-08-20 Nathan Sidwell <nathan@acm.org>
1124
a5a35247
NS
1125 * include/cpplib.h: Fixup some whitespace.
1126 (cpp_hashnode): Reduce type to 2 bit & flags to 8.
1127
a570d97f
NS
1128 * include/cpplib.h (NODE_BUILTIN, NODE_MACRO_ARG): Delete.
1129 Renumber others.
1130 (enum node_type): Replace NT_MACRO with NT_USER_MACRO,
1131 NT_BUILTIN_MACRO, NT_MACRO_ARG. Delete NT_ASSERTION.
1132 (NTV_MACRO, NTV_ANSWER, NTV_BUILTIN, NTV_ARGUMENT, NTV_NONE):
1133 Delete.
1134 (CPP_HASHNODE_VALUE_IDX): Delete.
1135 (union _cpp_hashnode_value): GTY tag from enum node_type directly.
1136 (struct cpp_hashnode): Adjust GTY desc for value field.
1137 (cpp_user_macro_p, cpp_builtin_macro_p, cpp_macro_p): Adjust.
1138 * directives.c (undefine_macros): Clear value.anwers, adjust flag
1139 clearing.
1140 (_cpp_test_assertion): No need to check NT_ASSERTION.
1141 (do_assert, do_unassert): Likewise.
1142 * init.c (cpp_init_special_builtins): Set type not flags.
1143 * macro.c (struct macro_arg_saved_data): Add type field.
1144 (cpp_get_token_1): Check type not NT_VOID.
1145 (_cpp_free_definition): Adjust flag clearing. Nullify
1146 value.answers.
1147 (_cpp_save_parameter, _cpp_unsave_parameters): Save and restore
1148 type.
1149 (lex_expansion_token): Check type not flags.
1150 (_cpp_create_definition): Set type to NT_USER_MACRO.
1151 (_cpp_notify_macro_use): Adjust type checking.
1152 * pch.c (write_macdef, count_defs, write_defs, cpp_valid_state)
1153 (save_macros): Adjust node type/flag handling.
1154 * traditional.c (_cpp_scan_out_logical_line): Check type not flags.
1155
7692e253
NS
1156 * directives.c (do_undef): Use cpp_macro_p & cpp_builtin_macro_p.
1157 * include/cpplib.h (enum cpp_macro_kind): Remove trailing comma.
1158 (cpp_fun_like_macro_p): Make inline, define.
1159 * macro.c (cpp_define_lazily): Use UCHAR_MAX.
1160 (cpp_fun_like_macro_p): Delete.
1161
abcd1775
NS
1162 * Makefile.in (TAGS_SOURCES): Remove cpp-id-data.h.
1163 * include/cpp-id-data.h: Delete.
1164 * internal.h: Include cpplib.h not cpp-id-data.h.
1165
3fb558b1
NS
1166 * include/cpp-id-data.h (struct answer): Delete.
1167 * include/cpplib.h (struct answer): Don't forward-declare.
1168 (enum cpp_macro_kind): Add cmk_assert.
1169 (struct cpp_macro): Union parms and next assert chain.
1170 (union _cpp_hashnode_value): 'answer' field is cpp_macro.
1171 * directives.c (parse_answer): Convert to use cpp_macro. Return
1172 true on success.
1173 (parse_assertion, find_answer, _cpp_test_assertion, cpp_do_assert)
1174 (cpp_do_unassert): Convert to use cpp_macro.
1175 * macro.c (warn_of_redefinition, _cpp_new_macro)
1176 (check_trad_stringification, cpp_macro_definition): Adjust macro
1177 parm access.
1178 * traditional.c (_cpp_replacement_text_len)
1179 (_cpp_copy_replacement_text, _cpp_create_trad_definition): Likewise.
1180
c5d725c0
NS
11812018-08-17 Nathan Sidwell <nathan@acm.org>
1182
800c0e98
NS
1183 * include/cpplib.h (struct cpp_callbacks): Replace
1184 user_builtin_macro with user_lazy_macro.
1185 (struct cpp_macro): add lazy field.
1186 (enum cpp_builtin_type): Remove BT_FIRST_USER, BT_LAST_USER.
1187 (cpp_define_lazily): Declare.
1188 * macro.c (enter_macro_context) Use _cpp_maybe_notify_macro_use.
1189 (warn_of_redefinition): Use cpp_builtin_macro_p, directly call
1190 user_lazy_macro hook.
1191 (_cpp_new_macro): Clear lazy field.
1192 (cpp_define_lazily): Define.
1193 (_cpp_notify_macro_use): Adjust lazy definition code.
1194 (cpp_macro_definition): No need to do lazy definition here.
1195 * pch.c (write_macdef, save_macros): Likewise.
1196
10f04917
NS
1197 * include/cpplib.h (enum cpp_macro_kind): New.
1198 (struct cpp_macro): Make body trailing array. Add kind field,
1199 delete traditional flag.
1200 * internal.h (_cpp_new_macro): Declare.
1201 (_cpp_reserve_room): New inline.
1202 (_cpp_commit_buf): Declare.
1203 (_cpp_create_trad_definition): Return new macro.
1204 * lex.c (_cpp_commit_buff): New.
1205 * macro.c (macro_real_token_count): Count backwards.
1206 (replace_args): Pointer equality not orderedness.
1207 (_cpp_save_parameter): Use _cpp_reserve_room.
1208 (alloc_expansion_token): Delete.
1209 (lex_expansion_token): Return macro pointer. Use _cpp_reserve_room.
1210 (create_iso_definition): Allocate macro itself. Adjust for
1211 different allocation ordering.
1212 (_cpp_new_macro): New.
1213 (_cpp_create_definition): Adjust for API changes.
1214 * traditional.c (push_replacement_text): Don't set traditional
1215 flag.
1216 (save_replacement_text): Likewise.
1217 (_cpp_create_trad_definition): Allocate macro itself, Adjust for
1218 different allocation ordering.
1219
c5d725c0
NS
1220 * cpp-id-data.h (uchar, UC): Move to internal.h
1221 (struct cpp_macro): Move to cpplib.h.
1222 * internal.h (uchar, UC): From cpp-id-data.h.
1223 * include/cpplib.h (struct cpp_macro): From cpp-id-data.h.
1224
3f6677f4
NS
12252018-08-16 Nathan Sidwell <nathan@acm.org>
1226
729a01f7
NS
1227 * internal.h (_cpp_save_parameter): Take parmno, not macro.
1228 (_cpp_unsave_parameters): Declare.
1229 * macro.c (_cpp_save_parameter): Take parm number, not macro.
1230 Return true on success.
1231 (_cpp_unsave_parameters): New.
1232 (parse_params): Take parm_no and variadic pointers, not macro.
1233 Reimplement parsing logic.
1234 (create_iso_definition): Adjust parse_params changes. Call
1235 _cpp_unsave_parameters here.
1236 (_cpp_create_definition): Don't unsave params here.
1237 * traditional.c (scan_parameters): Take n_param pointer, adjust.
1238 (_cpp_create_trad_definition): Ajust scan_parameters change. Call
1239 _cpp_unsave_parameters.
1240
3f6677f4
NS
1241 * include/cpplib.h (cpp_user_macro_p, cpp_builtin_macro_p)
1242 (cpp_macro_p): New inlines.
1243 * directives.c (do_pragma_poison): Use cpp_macro_p.
1244 (do_ifdef, do_ifndef): Likewise. Use _cpp_maybe_notify_macro_use.
1245 (cpp_pop_definition): Use cpp_macro_p. Move _cpp_free_definition
1246 earlier. Don't zap node directly.
1247 * expr.c (parse_defined): Use _cpp_maybe_notify_macro_use &
1248 cpp_macro_p.
1249 * files.c (should_stack_file): Use cpp_macro_p.
1250 * identifiers.c (cpp_defined): Likewise.
1251 * internal.h (_cpp_mark_macro): Use cpp_user_macro_p.
1252 (_cpp_notify_macro_use): Declare.
1253 (_cpp_maybe_notify_macro_use): New inline.
1254 * lex.c (is_macro): Use cpp_macro_p.
1255 * macro.c (_cpp_warn_if_unused_macro): Use cpp_user_macro_p.
1256 (enter_macro_context): Likewise.
1257 (_cpp_create_definition): Use cpp_builtin_macro_p,
1258 cpp_user_macro_p. Move _cpp_free_definition earlier.
1259 (_cpp_notify_macro_use): New, broken out of multiple call sites.
1260 * traditional.c (fun_like_macro_p): Use cpp_builtin_macro_p.
1261 (maybe_start_funlike, _cpp_scan_out_logical_line)
1262 (push_replacement_text): Likewise.
1263
96e6ae57
DM
12642018-08-15 David Malcolm <dmalcolm@redhat.com>
1265
1266 * include/line-map.h (struct location_range): Add "m_label" field.
1267 (class rich_location): Add description of labels to leading
1268 comment.
1269 (rich_location::rich_location): Add "label" param, defaulting to
1270 NULL.
1271 (rich_location::add_range): Likewise.
1272 (struct label_text): New struct.
1273 (class range_label): New abstract base class.
1274 * line-map.c (rich_location::rich_location): Add "label" param;
1275 use it.
1276 (rich_location::add_range): Likewise.
1277
f10a9135
NS
12782018-08-08 Nathan Sidwell <nathan@acm.org>
1279
1280 Make linemap::included_from a location
1281 libcpp/
1282 * include/line-map.h (struct line_map_ordinary): Replace
1283 included_from map index with included_at source_location.
1284 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Delete.
1285 (LAST_SOURCE_LINE_LOCATION): Delete.
1286 (LAST_SOURCE_LINE, LAST_SOURCE_COLUMN): Delete.
1287 (linemap_included_from): New.
1288 (linemap_included_from_linemap): Declare.
1289 (MAIN_FILE_P): Adjust.
1290 * line-map.c (linemap_included_from_linemap): New.
1291 (lonemap_check_files_exited): Use linemap_included_at.
1292 (linemap_add): Adjust inclusion setting.
1293 (linemap_dump, linemap_dump_location): Adjust.
1294 * directives.c (do_linemarker): Use linemap_included_at.
1295
e81c3c4d
NS
12962018-08-07 Nathan Sidwell <nathan@acm.org>
1297
1298 * line-map.c: (linemap_init): Set default allocator here.
1299 (new_linemap): Rather than here. Refactor allocation logic.
1300
181463c2
DM
13012018-07-20 David Malcolm <dmalcolm@redhat.com>
1302
1303 * include/line-map.h (rich_location::set_range): Remove redundant
1304 line_maps * parameter.
1305 * line-map.c (rich_location::set_range): Likewise.
1306
6f41f92b
BE
13072018-07-18 Bernd Edlinger <bernd.edlinger@hotmail.de>
1308
1309 PR 69558
1310 * macro.c (enter_macro_context): Change the location info for builtin
1311 macros and _Pragma from location of the closing parenthesis to location
1312 of the macro expansion point.
1313
0c86a39d
JJ
13142018-07-17 Jason Franklin <j_fra@fastmail.us>
1315 Jakub Jelinek <jakub@redhat.com>
1316
1317 * lex.c (_cpp_lex_direct): Use CPP_DL_NOTE instead of CPP_DL_PEDWARN,
1318 CPP_DL_WARNING or CPP_DL_ERROR for note that diagnostics for C++ style
1319 comments is reported only once per file and guard those calls on the
1320 preceding cpp_error returning true.
1321
42a98b43
NS
13222018-07-03 Nathan Sidwell <nathan@acm.org>
1323
1324 Reorg line_map data structures for better packing.
1325 * include/line-map.h (enum lc_reason): Add LC_HWM.
1326 (LINE_MAP_MAX_LOCATION): Define here.
1327 (struct line_map): Move reason field to line_map_ordinary. Adjust
1328 GTY tagging.
1329 (struct line_map_ordinary): Reorder fields for less padding.
1330 (struct line_map_macro): Likewise.
1331 (MAP_ORDINARY_P): New.
1332 (linemap_check_ordinary, linemap_check_macro): Adjust.
1333 * line-map.c (LINE_MAP_MAX_SOURCE_LOCATION): Delete.
1334 (new_linemap): Take start_location, not reason. Adjust.
1335 (linemap_add, linemap_enter_macro): Adjust.
1336 (linemap_line_start): Likewise.
1337 (linemap_macro_expansion_map_p): Use MAP_ORDINARY_P.
1338 (linemap_macro_loc_to_spelling_point): Likewise.
1339 (linemap_macro_loc_to_def_point): Likewise.
1340 (linemap_dump): Likewise.
1341
a6b29221
JM
13422018-05-23 Jason Merrill <jason@redhat.com>
1343
1344 * system.h: #include <new> earlier.
1345
b2ff7457
JM
13462018-05-17 Jason Merrill <jason@redhat.com>
1347
1348 * line-map.c (linemap_init): Use placement new.
1349 * system.h: #include <new>.
1350
082284da
DM
13512018-03-14 David Malcolm <dmalcolm@redhat.com>
1352
1353 * include/line-map.h (compare): New function on linenum_type.
1354
b44f8ad8
JW
13552018-02-28 Jonathan Wakely <jwakely@redhat.com>
1356
1357 PR preprocessor/84517
1358 * lex.c (is_macro_not_literal_suffix): New function.
1359 (lex_raw_string, lex_string): Use is_macro_not_literal_suffix to
1360 decide when to issue -Wliteral-suffix warnings.
1361
fe74f9b4
RB
13622018-02-16 Richard Biener <rguenther@suse.de>
1363
1364 PR bootstrap/82939
1365 * line-map.c (linemap_init): Avoid broken value-init when compiling
1366 with GCC 4.2.
1367
60887f8c
JM
13682018-02-15 Jason Merrill <jason@redhat.com>
1369 Jakub Jelinek <jakub@redhat.com>
1370
1371 PR preprocessor/83063 - __VA_OPT__ and ##
1372 PR preprocessor/83708
1373 * macro.c (vaopt_state): Reorder m_last_was_paste before m_state.
1374 (vaopt_state::vaopt_state): Adjust.
1375 (vaopt_state::update_flags): Add BEGIN and END.
1376 (vaopt_state::update): Return them.
1377 (copy_paste_flag): Factor out of replace_args.
1378 (last_token_is): New.
1379 (replace_args): Handle BEGIN and END. Avoid padding there.
1380 (tokens_buff_last_token_ptr): Return NULL if no tokens.
1381
1306a81d
JJ
13822018-01-31 Jakub Jelinek <jakub@redhat.com>
1383
1384 PR preprocessor/69869
1385 * traditional.c (skip_macro_block_comment): Return bool, true if
1386 the macro block comment is unterminated.
1387 (copy_comment): Use return value from skip_macro_block_comment instead
1388 of always false.
1389
53723269
JJ
13902018-01-27 Jakub Jelinek <jakub@redhat.com>
1391
1392 * include/cpplib.h (enum cpp_builtin_type): Change BT_LAST_USER from
1393 BT_FIRST_USER + 31 to BT_FIRST_USER + 63.
1394
7365279f
BK
13952018-01-18 Boris Kolpackov <boris@codesynthesis.com>
1396
92a285c1
ML
1397 PR other/70268
1398 * include/cpplib.h (cpp_callbacks::remap_filename): New callback.
1399 * macro.c (_cpp_builtin_macro_text): Call remap_filename for
1400 __FILE__ and __BASE_FILE__.
7365279f 1401
a3a821c9
KN
14022018-01-10 Kelvin Nilsen <kelvin@gcc.gnu.org>
1403
1404 * lex.c (search_line_fast): Remove illegal coercion of an
1405 unaligned pointer value to vector pointer type and replace with
1406 use of __builtin_vec_vsx_ld () built-in function, which operates
1407 on unaligned pointer values.
1408
85ec4feb
JJ
14092018-01-03 Jakub Jelinek <jakub@redhat.com>
1410
1411 Update copyright years.
1412
35c4515b
MW
14132017-12-20 Michael Weiser <michael.weiser@gmx.de>
1414
1415 PR preprocessor/83492
1416 * lex.c (search_line_fast) [__ARM_NEON && __ARM_64BIT_STATE]:
1417 Fix selection of big-endian shift parameters by using
1418 __ARM_BIG_ENDIAN.
1419
c65e18d3
BE
14202017-12-14 Bernd Edlinger <bernd.edlinger@hotmail.de>
1421
1422 * internal.h (maybe_print_line): Change signature.
7365279f 1423
a7b1ce04
JJ
14242017-12-05 Jakub Jelinek <jakub@redhat.com>
1425
1426 PR c++/79228
1427 * expr.c (interpret_float_suffix): Avoid memcmp.
1428 (interpret_int_suffix): Likewise. Don't check for if.
1429
f2b8b8ad
JM
14302017-12-01 Jason Merrill <jason@redhat.com>
1431
1432 PR c++/79228 - extensions hide C++14 complex literal operators
1433 * expr.c (interpret_float_suffix): Ignore 'i' in C++14 and up.
1434 (interpret_int_suffix): Likewise.
1435
6df8934f
DM
14362017-11-28 David Malcolm <dmalcolm@redhat.com>
1437
1438 PR c/82050
1439 * include/line-map.h (LINE_MAP_MAX_COLUMN_NUMBER): Move here.
1440 * line-map.c (LINE_MAP_MAX_COLUMN_NUMBER): ...from here.
1441 (rich_location::maybe_add_fixit): Reject fix-it hints in which
1442 the start column exceeds the next column.
1443
34b81eb9
EG
14442017-11-20 Eric Gallager <egall@gwmail.gwu.edu>
1445
1446 PR preprocessor/81794
1447 * macro.c (check_trad_stringification): Have warning be controlled
1448 by -Wtraditional.
1449
01ada121
DM
14502017-11-20 David Malcolm <dmalcolm@redhat.com>
1451
1452 PR c++/72786
1453 * include/cpplib.h (cpp_macro_definition_location): New decl.
1454 * macro.c (cpp_macro_definition): New function.
1455
fb771b9d
TT
14562017-11-13 Tom Tromey <tom@tromey.com>
1457
1458 * pch.c (cpp_read_state): Set n__VA_OPT__.
1459 * macro.c (vaopt_state): New class.
1460 (_cpp_arguments_ok): Check va_opt flag.
1461 (replace_args, create_iso_definition): Use vaopt_state.
1462 * lex.c (lex_identifier_intern): Possibly issue errors for
1463 __VA_OPT__.
1464 (lex_identifier): Likewise.
1465 (maybe_va_opt_error): New function.
1466 * internal.h (struct lexer_state) <va_args_ok>: Update comment.
1467 (struct spec_nodes) <n__VA_OPT__>: New field.
1468 * init.c (struct lang_flags) <va_opt>: New field.
1469 (lang_defaults): Add entries for C++2A. Update all entries for
1470 va_opt.
1471 (cpp_set_lang): Initialize va_opt.
1472 * include/cpplib.h (struct cpp_options) <va_opt>: New field.
1473 * identifiers.c (_cpp_init_hashtable): Initialize n__VA_OPT__.
1474
846b84fb
DM
14752017-11-13 David Malcolm <dmalcolm@redhat.com>
1476
1477 * include/line-map.h (linenum_type): Move this typedef and the
1478 comment describing column numbering to near the top of the file.
1479
7d19c460
MK
14802017-11-06 Mukesh Kapoor <mukesh.kapoor@oracle.com>
1481
1482 PR c++/80955
1483 * lex.c (lex_string): When checking for a valid macro for the
1484 warning related to -Wliteral-suffix (CPP_W_LITERAL_SUFFIX),
1485 check that the macro name does not start with an underscore
1486 before calling is_macro().
1487
c830c7d5
TV
14882017-11-05 Tom de Vries <tom@codesourcery.com>
1489
1490 PR other/82784
1491 * lex.c (BUF_APPEND): Remove semicolon after
1492 "do {} while (0)".
1493
64a5912c
DM
14942017-10-31 David Malcolm <dmalcolm@redhat.com>
1495
1496 * directives.c (_cpp_handle_directive): Update for renaming of
1497 cpp_error_at_richloc to cpp_error_at.
1498 * errors.c (cpp_diagnostic_at_richloc): Rename to...
1499 (cpp_diagnostic_at): ...this, dropping the location_t-based
1500 implementation.
1501 (cpp_diagnostic): Update for removal of location_t-based
1502 cpp_diagnostic_at.
1503 (cpp_error_at): Likewise.
1504 (cpp_error_at_richloc): Rename to...
1505 (cpp_error_at): ...this, and update for renaming of
1506 cpp_diagnostic_at_richloc.
1507 * include/cpplib.h (cpp_error_at_richloc): Rename to...
1508 (cpp_error_at): ...this.
1509
c76dc9c3
JM
15102017-10-30 Joseph Myers <joseph@codesourcery.com>
1511
1512 * include/cpplib.h (enum c_lang): Add CLK_GNUC17 and CLK_STDC17.
1513 * init.c (lang_defaults): Add GNUC17 and STDC17 data.
1514 (cpp_init_builtins): Handle C17 value of __STDC_VERSION__.
1515
35b82d26
NS
15162017-10-10 Nathan Sidwell <nathan@acm.org>
1517
1518 PR preprocessor/82506
1519 * macro.c (cpp_quote_string): Escape raw LFs.
1520
026a79f7
AS
15212017-09-15 Andrew Sutton <andrew.n.sutton@gmail.com>
1522 Jakub Jelinek <jakub@redhat.com>
1523
1524 Add support for -std=c++2a.
1525 * include/cpplib.h (c_lang): Add CXX2A and GNUCXX2A.
1526 * init.c (lang_defaults): Add rows for CXX2A and GNUCXX2A.
1527 (cpp_init_builtins): Set __cplusplus to 201709L for C++2a.
1528
7b936140
JJ
15292017-09-15 Jakub Jelinek <jakub@redhat.com>
1530
1531 * include/cpplib.h (enum c_lang): Rename CLK_GNUCXX1Z
1532 to CLK_GNUCXX17 and CLK_CXX1Z to CLK_CXX17.
1533 * init.c (lang_defaults, cpp_init_builtins): Likewise.
1534 * expr.c (cpp_classify_number): Use C++17 instead of C++1z
1535 in diagnostics.
1536
738f7c2e
DM
15372017-07-07 David Malcolm <dmalcolm@redhat.com>
1538
1539 PR c++/79300
1540 * line-map.c (linemap_macro_loc_to_def_point): Preserve range
1541 information for macro expansions by delaying resolving ad-hoc
1542 locations until within the loop.
1543
c471c6ed
DM
15442017-07-06 David Malcolm <dmalcolm@redhat.com>
1545
1546 PR c++/79300
1547 * include/line-map.h (enum location_aspect): New enum.
1548 (linemap_client_expand_location_to_spelling_point): Add
1549 enum location_aspect param.
1550 * line-map.c (rich_location::get_expanded_location): Update for
1551 new param of linemap_client_expand_location_to_spelling_point.
1552 (rich_location::maybe_add_fixit): Likewise.
1553 (fixit_hint::affects_line_p): Likewise.
1554
6d522731
JJ
15552017-06-21 Jakub Jelinek <jakub@redhat.com>
1556
1557 * line-map.c (location_adhoc_data_update): Perform addition in
1558 uintptr_t type rather than char * type. Read *data using
1559 ptrdiff_t type instead of int64_t.
1560 (get_combined_adhoc_loc): Change offset type to ptrdiff_t from
1561 int64_t.
1562
c7a980b8
DM
15632017-06-20 David Malcolm <dmalcolm@redhat.com>
1564
1565 * include/line-map.h (class rich_location): Document that attempts
1566 to delete or replace a range *affecting* multiple lines will fail.
1567 * line-map.c (rich_location::maybe_add_fixit): Implement this
1568 restriction.
1569
b09649fd
DM
15702017-06-09 David Malcolm <dmalcolm@redhat.com>
1571
1572 * include/line-map.h
1573 (rich_location::fixits_cannot_be_auto_applied): New method.
1574 (rich_location::fixits_can_be_auto_applied_p): New accessor.
1575 (rich_location::m_fixits_cannot_be_auto_applied): New field.
1576 * line-map.c (rich_location::rich_location): Initialize new field.
1577
05945a1b
DM
15782017-06-05 David Malcolm <dmalcolm@redhat.com>
1579
1580 * include/cpplib.h (struct cpp_callbacks): Add "comment"
1581 callback.
1582 * lex.c (_cpp_lex_direct): Call the comment callback if non-NULL.
1583
ad53f123
DM
15842017-05-02 David Malcolm <dmalcolm@redhat.com>
1585
1586 * include/line-map.h (class rich_location): Update description of
1587 newline handling.
1588 (class fixit_hint): Likewise.
1589 (fixit_hint::ends_with_newline_p): New decl.
1590 * line-map.c (rich_location::maybe_add_fixit): Support newlines
1591 in fix-it hints that are insertions of single lines at the start
1592 of a line. Don't consolidate into such fix-it hints.
1593 (fixit_hint::ends_with_newline_p): New method.
1594
338035aa
DM
15952017-05-01 David Malcolm <dmalcolm@redhat.com>
1596
1597 * include/line-map.h (source_range::intersects_line_p): Delete.
1598 (rich_location::add_fixit): Delete.
1599 (rich_location::maybe_add_fixit): New method.
1600 (class fixit_hint): Reimplement in terms of...
1601 (class fixit_replace): ...this.
1602 (class fixit_insert): Delete.
1603 * line-map.c (linemap_position_for_loc_and_offset): Drop overzealous
1604 linemap_assert_fails.
1605 (source_range::intersects_line_p): Rename to...
1606 (fixit_hint::affects_line_p): New function.
1607 (rich_location::add_fixit_insert_before): Reimplement in terms of
1608 maybe_add_fixit, moving validation there.
1609 (rich_location::add_fixit_insert_after): Likewise.
1610 (column_before_p): Delete.
1611 (rich_location::add_fixit_replace): Reimplement in terms of
1612 maybe_add_fixit, moving validation there. Convert closed input range
1613 to half-open range.
1614 (rich_location::add_fixit): Delete.
1615 (rich_location::maybe_add_fixit): New function.
1616 (fixit_insert::fixit_insert): Delete.
1617 (fixit_insert::~fixit_insert): Delete.
1618 (fixit_insert::affects_line_p): Delete.
1619 (fixit_insert::maybe_append_replace): Delete.
1620 (fixit_replace::fixit_replace): Rename to...
1621 (fixit_hint::fixit_hint): ...this, rewriting as necessary.
1622 (fixit_replace::~fixit_replace): Delete.
1623 (fixit_replace::affects_line_p): Delete.
1624 (fixit_replace::maybe_append_replace): Rename to...
1625 (fixit_hint::maybe_append): ...this, rewriting as necessary.
1626
5764ee3c
JW
16272017-04-03 Jonathan Wakely <jwakely@redhat.com>
1628
1629 * include/line-map.h (LINEMAPS_MACRO_MAPS): Fix typo in comment.
1630 * lex.c (search_line_fast): Likewise.
1631 * pch.h (cpp_valid_state): Likewise.
1632
8c00ae24
AS
16332017-03-21 Andreas Schwab <schwab@suse.de>
1634
1635 * lex.c (search_line_fast) [__ARM_NEON && __ARM_64BIT_STATE]:
1636 Convert 64-bit value to boolean before passing to
1637 __builtin_expect.
1638
85e653c9
JM
16392017-03-16 Jason Merrill <jason@redhat.com>
1640
1641 * init.c (cpp_init_builtins): Update __cplusplus for C++17.
1642
e228c50f
GP
16432017-02-09 Gerald Pfeifer <gerald@pfeifer.com>
1644
1645 * Makefile.in (po/$(PACKAGE).pot): Adjust bug reporting URL.
1646
b9f4757f
DM
16472017-01-10 David Malcolm <dmalcolm@redhat.com>
1648
1649 PR c++/77949
1650 * line-map.c (linemap_position_for_column): When calling
1651 linemap_start_line, detect if a new linemap was created with
1652 0 column bits, and bail out early if this is the case.
1653 (linemap_position_for_loc_and_offset): Replace overzealous
1654 linemap_assert_fails with a simple conditional; use correct
1655 bit count.
1656
5ccf1d8d
DM
16572017-01-07 David Malcolm <dmalcolm@redhat.com>
1658
1659 PR c++/72803
1660 * line-map.c (linemap_line_start): When determining if the highest
1661 column given out so far will fit into a proposed change to the
1662 current map, use the effective number of column bits, rather than
1663 the total number of column + range bits.
1664
cbe34bb5
JJ
16652017-01-01 Jakub Jelinek <jakub@redhat.com>
1666
1667 Update copyright years.
1668
a3998c2f
DM
16692016-12-15 David Malcolm <dmalcolm@redhat.com>
1670
1671 PR preprocessor/78680
1672 PR preprocessor/78811
1673 * lex.c (_cpp_lex_direct): Only determine the end-location of
1674 the token and build a range for non-reserved start locations.
1675 Do not do it for EOF tokens.
1676
470a60b2
DM
16772016-12-12 David Malcolm <dmalcolm@redhat.com>
1678
1679 PR preprocessor/78680
1680 * lex.c (_cpp_lex_direct): Ensure line notes are processed before
1681 computing the end-point of the token.
1682
fb2675cb
PB
16832016-11-23 Paolo Bonzini <bonzini@gnu.org>
1684
1685 * include/cpplib.h (struct cpp_options): Add new member
1686 warn_expansion_to_defined.
1687 (CPP_W_EXPANSION_TO_DEFINED): New enum member.
1688 * expr.c (parse_defined): Warn for all uses of "defined"
1689 in macros, and tie warning to CPP_W_EXPANSION_TO_DEFINED.
1690 Make it a pedwarning instead of a warning.
1691 * system.h (HAVE_DESIGNATED_INITIALIZERS): Do not use
1692 "defined" in macros.
1693
b8f56412
DM
16942016-11-17 David Malcolm <dmalcolm@redhat.com>
1695
1696 * charset.c (cpp_interpret_string_1): Skip locations from
1697 loc_reader when advancing 'p' when handling raw strings.
1698
3549e181
JJ
16992016-11-16 Jakub Jelinek <jakub@redhat.com>
1700
1701 PR bootstrap/72823
1702 * configure.ac (ENABLE_ASSERT_CHECKING): Define if gcc configure
1703 would define that macro.
1704 * configure: Regenerated.
1705 * config.in: Regenerated.
1706
a6ac871c
RE
17072016-11-08 Richard Earnshaw <rearnsha@arm.com>
1708
1709 * lex.c (search_line_fast): New implementation for AArch64.
1710
f5ea989d
DM
17112016-10-25 David Malcolm <dmalcolm@redhat.com>
1712
1713 * files.c (destroy_cpp_file): Free file->path.
1714
2be1b796
DM
17152016-10-25 David Malcolm <dmalcolm@redhat.com>
1716
1717 * include/line-map.h (line_maps::~line_maps): New dtor.
1718 (location_adhoc_data_fini): Delete decl.
1719 * line-map.c (line_maps::~line_maps): New dtor.
1720 (location_adhoc_data_fini): Delete.
1721
58f30963
AP
17222016-10-21 Andris Pavenis <andris.pavenis@iki.fi>
1723
1724 PR preprocessor/71681
1725 * files.c (remap_filename): Fix handling -remap in subdirectories.
1726
70f6d5e1
JJ
17272016-10-12 Jakub Jelinek <jakub@redhat.com>
1728
1729 * include/cpplib.h (struct cpp_options): Add
1730 cpp_warn_implicit_fallthrough.
1731 * init.c (cpp_create_reader): Initialize it to 0.
1732 * lex.c (fallthrough_comment_p): Handle different
1733 cpp_warn_implicit_fallthrough levels. Whitespace fixes.
1734
7bad794a
JJ
17352016-10-08 Jakub Jelinek <jakub@redhat.com>
1736
ee19ef45
JJ
1737 * lex.c (fallthrough_comment_p): Accept Else, fallthrough.
1738
81b02905
JJ
1739 * lex.c (fallthrough_comment_p): Extend to handle more common FALLTHRU
1740 comment styles.
1741
7bad794a
JJ
1742 * lex.c (fallthrough_comment_p): Fix off-by-one size comparison
1743 errors, cleanup.
1744 (_cpp_lex_direct): Allow arbitrary comments in between
1745 fallthrough_comment_p comment and following token.
1746
67ef83c6
KN
17472016-10-04 Kelvin Nilsen <kelvin@gcc.gnu.org>
1748
1749 PR target/77847
1750 * lex.c (search_line_fast): Add a FALLTHROUGH comment to correct
1751 compiler error in the version of this function that is
1752 conditionally compiled when GCC_VERSION >= 4005 and both
1753 __ALTIVEC__ and __BIG_ENDIAN__ symbols are defined.
1754
81fea426
MP
17552016-09-26 Marek Polacek <polacek@redhat.com>
1756 Jakub Jelinek <jakub@redhat.com>
1757
1758 PR c/7652
1759 * include/cpplib.h (PREV_FALLTHROUGH): Define.
1760 * internal.h (CPP_FALLTHRU): Define.
1761 * lex.c (fallthrough_comment_p): New function.
1762 (_cpp_lex_direct): Set PREV_FALLTHROUGH on tokens succeeding a falls
1763 through comment.
1764
bbd6fcf3
DM
17652016-09-23 David Malcolm <dmalcolm@redhat.com>
1766
1767 PR preprocessor/77672
1768 * charset.c (cpp_interpret_string_1): Add a source_range for the
1769 NUL-terminator, using the location of the trailing quote of the
1770 final string.
1771
63cb3926
JM
17722016-09-21 Jason Merrill <jason@redhat.com>
1773
1774 * line-map.c (linemap_location_from_macro_definition_p): New.
1775 * line-map.h: Declare it.
1776
31316208
DM
17772016-09-15 David Malcolm <dmalcolm@redhat.com>
1778
1779 * include/line-map.h (class rich_location): Note that newlines
1780 aren't supported in fix-it text.
1781 * line-map.c (rich_location::add_fixit_insert_before): Reject
1782 attempts to add fix-its containing newlines.
1783 (rich_location::add_fixit_replace): Likewise.
1784
254830ba
DM
17852016-09-13 David Malcolm <dmalcolm@redhat.com>
1786
1787 * include/line-map.h (class rich_location): Add description of
1788 fix-it hints to leading comment.
1789 (rich_location::add_fixit_insert): Rename both overloaded methods
1790 to..
1791 (rich_location::add_fixit_insert_before): ...this, updating their
1792 comments.
1793 (rich_location::add_fixit_insert_after): Two new overloaded
1794 methods.
1795 (rich_location::stop_supporting_fixits): New method.
1796 * line-map.c (rich_location::add_fixit_insert): Rename both
1797 overloaded methods to..
1798 (rich_location::add_fixit_insert_before): ...this, updating their
1799 comments.
1800 (rich_location::add_fixit_insert_after): Two new methods.
1801 (rich_location::reject_impossible_fixit): Split out
1802 failure-handling into...
1803 (rich_location::stop_supporting_fixits): New method.
1804
c65236d6
DM
18052016-09-02 David Malcolm <dmalcolm@redhat.com>
1806
1807 * include/line-map.h (rich_location::seen_impossible_fixit_p): New
1808 accessor.
1809
3d4f9f87
DM
18102016-08-31 David Malcolm <dmalcolm@redhat.com>
1811
1812 * include/line-map.h (class fixit_remove): Remove stray decl.
1813 (fixit_hint::affects_line_p): Make const.
1814 (fixit_insert::affects_line_p): Likewise.
1815 (fixit_replace::affects_line_p): Likewise.
1816 * line-map.c (fixit_insert::affects_line_p): Likewise.
1817 (fixit_replace::affects_line_p): Likewise.
1818
b816477a
DM
18192016-08-30 David Malcolm <dmalcolm@redhat.com>
1820
1821 * include/line-map.h (class semi_embedded_vec): New class.
1822 (semi_embedded_vec<T, NUM_EMBEDDED>::semi_embedded_vec): New ctor.
1823 (semi_embedded_vec<T, NUM_EMBEDDED>::~semi_embedded_vec): New
1824 dtor.
1825 (semi_embedded_vec<T, NUM_EMBEDDED>::operator[]): New methods.
1826 (semi_embedded_vec<T, NUM_EMBEDDED>::push): New method.
1827 (semi_embedded_vec<T, NUM_EMBEDDED>::truncate): New method.
1828 (rich_location::get_num_locations): Reimplement in terms of
1829 m_ranges.
1830 (rich_location::get_range): Make non-inline.
1831 (rich_location::get_num_fixit_hints): Reimplement in terms of
1832 m_fixit_hints.
1833 (rich_location::add_fixit): New function.
1834 (rich_location::MAX_RANGES): Rename to...
1835 (rich_location::STATICALLY_ALLOCATED_RANGES): ...this.
1836 (rich_location::MAX_FIXIT_HINTS): Rename to...
1837 (rich_location::STATICALLY_ALLOCATED_RANGES): ...this, and make
1838 private.
1839 (rich_location::m_num_ranges): Eliminate in favor of...
1840 (rich_location::m_ranges): ...this, converting from a fixed-size
1841 array to a semi_embedded_vec.
1842 (rich_location::m_num_fixit_hints): Eliminate in favor of...
1843 (rich_location::m_fixit_hints): ...this, converting from a
1844 fixed-size array to a semi_embedded_vec.
1845 * line-map.c (rich_location::rich_location): Update for above
1846 changes.
1847 (rich_location::~rich_location): Likewise.
1848 (rich_location::get_loc): Likewise.
1849 (rich_location::get_range): New methods.
1850 (rich_location::add_range): Update for above changes.
1851 (rich_location::set_range): Likewise.
1852 (rich_location::add_fixit_insert): Likewise.
1853 (rich_location::add_fixit_replace): Likewise.
1854 (rich_location::get_last_fixit_hint): Likewise.
1855 (rich_location::reject_impossible_fixit): Likewise.
1856 (rich_location::add_fixit): New method.
1857
f9087798
DM
18582016-08-30 David Malcolm <dmalcolm@redhat.com>
1859
1860 * include/line-map.h (rich_location::add_fixit_insert): Add
1861 comments. Add overload omitting the source_location param.
1862 (rich_location::add_fixit_remove): Add comments. Add overloads
1863 omitting the range, and accepting a source_location.
1864 (rich_location::add_fixit_replace): Likewise.
1865 * line-map.c (rich_location::add_fixit_insert): Add comments. Add
1866 overload omitting the source_location param.
1867 (rich_location::add_fixit_remove): Add comments. Add overloads
1868 omitting the range, and accepting a source_location.
1869 (rich_location::add_fixit_replace): Likewise.
1870
2aa51413
DM
18712016-08-26 David Malcolm <dmalcolm@redhat.com>
1872
1873 * include/line-map.h (get_pure_location): New decl.
1874 * line-map.c (get_pure_location): Move here, from gcc/input.c, adding
1875 a line_maps * param.
1876 (rich_location::add_fixit_insert): Call get_pure_location on "where".
1877 (rich_location::add_fixit_replace): Call get_pure_location on the
1878 end-points.
1879
ee908516
DM
18802016-08-26 David Malcolm <dmalcolm@redhat.com>
1881
1882 * include/line-map.h (rich_location): Eliminate unimplemented
1883 constructor based on source_range.
1884 (rich_location::get_last_fixit_hint): New method.
1885 (rich_location::reject_impossible_fixit): New method.
1886 (rich_location): Add fields m_line_table and
1887 m_seen_impossible_fixit.
1888 (fixit_hint::maybe_append_replace): New pure virtual function.
1889 (fixit_insert::maybe_append_replace): New function.
1890 (fixit_replace::maybe_append_replace): New function.
1891 * line-map.c (rich_location::rich_location): Initialize
1892 m_line_table and m_seen_impossible_fixit.
1893 (rich_location::add_fixit_insert): Call
1894 reject_impossible_fixit and bail out if true.
1895 (column_before_p): New function.
1896 (rich_location::add_fixit_replace): Call reject_impossible_fixit
1897 and bail out if true. Attempt to consolidate with neighboring
1898 fixits.
1899 (rich_location::get_last_fixit_hint): New method.
1900 (rich_location::reject_impossible_fixit): New method.
1901 (fixit_insert::maybe_append_replace): New method.
1902 (fixit_replace::maybe_append_replace): New method.
1903
d672cded
DM
19042016-08-23 David Malcolm <dmalcolm@redhat.com>
1905
1906 * include/line-map.h (source_range::from_locations): New method.
1907
2ffe0809
DM
19082016-08-19 David Malcolm <dmalcolm@redhat.com>
1909
1910 * include/line-map.h (fixit_hint::kind): Delete REPLACE.
1911 (class fixit_remove): Delete.
1912 * line-map.c (rich_location::add_fixit_remove): Reimplement
1913 by calling add_fixit_replace with an empty string.
1914 (fixit_remove::fixit_remove): Delete.
1915 (fixit_remove::affects_line_p): Delete.
1916
c65699ef
JM
19172016-08-19 Joseph Myers <joseph@codesourcery.com>
1918
1919 PR c/32187
1920 * include/cpplib.h (CPP_N_FLOATN, CPP_N_FLOATNX)
1921 (CPP_N_WIDTH_FLOATN_NX, CPP_FLOATN_SHIFT, CPP_FLOATN_MAX): New
1922 macros.
1923 * expr.c (interpret_float_suffix): Handle fN, fNx, FN and FNx
1924 suffixes.
1925
fcf830ab
PK
19262016-08-19 Prathamesh Kulkarni <prathamesh.kulkarni@linaro.org>
1927
1928 * expr.c (eval_token): Append "evaluates to 0" to Wundef diagnostic.
1929
cb18fd07
DM
19302016-08-18 David Malcolm <dmalcolm@redhat.com>
1931
1932 * directives.c (directive_names): New array.
1933 (_cpp_handle_directive): Offer spelling suggestions for misspelled
1934 directives.
1935 * errors.c (cpp_diagnostic_at_richloc): New function.
1936 (cpp_error_at_richloc): New function.
1937 * include/cpplib.h (struct cpp_callbacks): Add field
1938 "get_suggestion".
1939 (cpp_error_at_richloc): New decl.
1940
9c62c873
MP
19412016-08-18 Marek Polacek <polacek@redhat.com>
1942
1943 PR c/7652
1944 * pch.c (write_macdef): Add CPP_FALLTHRU.
1945
191816a3
MP
19462016-08-12 Marek Polacek <polacek@redhat.com>
1947
1948 PR c/7652
1949 * lex.c (search_line_fast): Add FALLTHRU.
1950 (_cpp_lex_direct): Likewise.
1951 (cpp_token_val_index): Adjust fall through comment.
1952 * macro.c (parse_params): Add FALLTHRU.
1953 * pch.c (count_defs): Adjust fall through comment.
1954 (write_defs): Likewise.
1955
e7864d68
DM
19562016-08-06 David Malcolm <dmalcolm@redhat.com>
1957
1958 PR bootstrap/72823
1959 * charset.c (_cpp_valid_ucn): Replace overzealous assert with one
1960 that allows for char_range to be non-NULL when loc_reader is NULL.
1961
88fa5555
DM
19622016-08-05 David Malcolm <dmalcolm@redhat.com>
1963
1964 * charset.c (cpp_substring_ranges::cpp_substring_ranges): New
1965 constructor.
1966 (cpp_substring_ranges::~cpp_substring_ranges): New destructor.
1967 (cpp_substring_ranges::add_range): New method.
1968 (cpp_substring_ranges::add_n_ranges): New method.
1969 (_cpp_valid_ucn): Add "char_range" and "loc_reader" params; if
1970 they are non-NULL, read position information from *loc_reader
1971 and update char_range->m_finish accordingly.
1972 (convert_ucn): Add "char_range", "loc_reader", and "ranges"
1973 params. If loc_reader is non-NULL, read location information from
1974 it, and update *ranges accordingly, using char_range.
1975 Conditionalize the conversion into tbuf on tbuf being non-NULL.
1976 (convert_hex): Likewise, conditionalizing the call to
1977 emit_numeric_escape on tbuf.
1978 (convert_oct): Likewise.
1979 (convert_escape): Add params "loc_reader" and "ranges". If
1980 loc_reader is non-NULL, read location information from it, and
1981 update *ranges accordingly. Conditionalize the conversion into
1982 tbuf on tbuf being non-NULL.
1983 (cpp_interpret_string): Rename to...
1984 (cpp_interpret_string_1): ...this, adding params "loc_readers" and
1985 "out". Use "to" to conditionalize the initialization and usage of
1986 "tbuf", such as running the converter. If "loc_readers" is
1987 non-NULL, use the instances within it, reading location
1988 information from them, and passing them to convert_escape; likewise
1989 write to "out" if loc_readers is non-NULL. Check for leading
1990 quote and issue an error if it is not present. Update boundary
1991 check from "== limit" to ">= limit" to protect against erroneous
1992 location values to calls that are not parsing string literals.
1993 (cpp_interpret_string): Reimplement in terms to
1994 cpp_interpret_string_1.
1995 (noop_error_cb): New function.
1996 (cpp_interpret_string_ranges): New function.
1997 (cpp_string_location_reader::cpp_string_location_reader): New
1998 constructor.
1999 (cpp_string_location_reader::get_next): New method.
2000 * include/cpplib.h (class cpp_string_location_reader): New class.
2001 (class cpp_substring_ranges): New class.
2002 (cpp_interpret_string_ranges): New prototype.
2003 * internal.h (_cpp_valid_ucn): Add params "char_range" and
2004 "loc_reader".
2005 * lex.c (forms_identifier_p): Pass NULL for new params to
2006 _cpp_valid_ucn.
2007
8204be6c
AS
20082016-08-01 Andreas Schwab <schwab@suse.de>
2009
2010 * include/cpplib.h: Fix comment typo.
2011
a01fc549
DM
20122016-07-27 David Malcolm <dmalcolm@redhat.com>
2013
2014 * include/line-map.h (source_location): Fix line numbers in
2015 comment.
2016
741d3be5
DM
20172016-07-11 David Malcolm <dmalcolm@redhat.com>
2018
2019 * include/line-map.h (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES):
2020 Move here from line-map.c.
2021 (LINE_MAP_MAX_LOCATION_WITH_COLS): Likewise.
2022 * line-map.c (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES): Move from
2023 here to line-map.h.
2024 (LINE_MAP_MAX_LOCATION_WITH_COLS): Likewise.
2025
ac81cf0b
DM
20262016-06-22 David Malcolm <dmalcolm@redhat.com>
2027
2028 * directives.c (do_include_common): Pass on "location" to
2029 _cpp_stack_include.
2030 * errors.c (cpp_diagnostic): Reimplement in terms of...
2031 (cpp_diagnostic_at): New function.
2032 (cpp_error_at): New function.
2033 (cpp_errno_filename): Add "loc" param and use it by using
2034 cpp_error_at rather than cpp_error.
2035 * files.c (find_file_in_dir): Add "loc" param and pass it to
2036 open_file_failed.
2037 (_cpp_find_file): Add "loc" param. Use it to convert calls to
2038 cpp_error to cpp_error_at, and pass it to find_file_in_dir and
2039 open_file_failed.
2040 (read_file_guts): Add "loc" param. Use it to convert calls to
2041 cpp_error to cpp_error_at. Pass it to cpp_errno_filename.
2042 (read_file): Add "loc" param. Pass it to open_file_failed and
2043 read_file_guts.
2044 (should_stack_file): Add "loc" param. Pass it to read_file.
2045 (_cpp_stack_file): Add "loc" param. Pass it to should_stack_file.
2046 (_cpp_stack_include): Add "loc" param. Pass it to
2047 _cpp_find_file and _cpp_stack_file.
2048 (open_file_failed): Add "loc" param. Pass it to
2049 cpp_errno_filename.
2050 (_cpp_fake_include): Add 0 as a source_location in call to
2051 _cpp_find_file.
2052 (_cpp_compare_file_date): Likewise.
2053 (cpp_push_include): Likewise for call to _cpp_stack_include.
2054 (cpp_push_default_include): Likewise.
2055 (_cpp_save_file_entries): Likewise for call to open_file_failed.
2056 (_cpp_has_header): Likewise for call to _cpp_find_file.
2057 * include/cpplib.h (cpp_errno_filename): Add source_location
2058 param.
2059 (cpp_error_at): New declaration.
2060 * init.c (cpp_read_main_file): Add 0 as a source_location in calls
2061 to _cpp_find_file and _cpp_stack_file.
2062 * internal.h (_cpp_find_file): Add source_location param.
2063 (_cpp_stack_file): Likewise.
2064 (_cpp_stack_include): Likewise.
2065
a93eac6a
DM
20662016-06-22 David Malcolm <dmalcolm@redhat.com>
2067
2068 * include/line-map.h (fixit_hint::get_start_loc): New pure virtual
2069 function.
2070 (fixit_hint::maybe_get_end_loc): Likewise.
2071 (fixit_insert::get_start_loc): New function, implementing
2072 fixit_hint::get_start_loc.
2073 (fixit_insert::maybe_get_end_loc): New function, implementing
2074 fixit_hint::maybe_get_end_loc.
2075 (fixit_remove::get_start_loc): New function, implementing
2076 fixit_hint::get_start_loc.
2077 (fixit_remove::maybe_get_end_loc): New function, implementing
2078 fixit_hint::maybe_get_end_loc.
2079 (fixit_replace::get_start_loc): New function, implementing
2080 fixit_hint::get_start_loc.
2081 (fixit_replace::maybe_get_end_loc): New function, implementing
2082 fixit_hint::maybe_get_end_loc.
2083
fe55692c
JDA
20842016-06-21 John David Anglin <danglin@gcc.gnu.org>
2085
2086 * line-map.c (location_adhoc_data_update): Use int64_t instead of
2087 long long.
2088 (get_combined_adhoc_loc): Likewise.
2089
15c98b2e
ES
20902016-06-01 Eduard Sanou <dhole@openmailbox.org>
2091
2092 * include/cpplib.h (cpp_callbacks): Add get_source_date_epoch
2093 callback.
2094 * include/cpplib.h (cpp_init_source_date_epoch): Remove prototype.
2095 * init.c (cpp_init_source_date_epoch): Remove function.
2096 * init.c (cpp_create_reader): Initialize pfile->source_date_epoch.
2097 * internal.h (cpp_reader): Extend comment about source_date_epoch.
2098 * macro.c (_cpp_builtin_macro_text): Use get_source_date_epoch
2099 callback only once, read pfile->source_date_epoch on future passes.
2100 Check that get_source_date_epoch callback is not NULL.
2101
ceb17928
ML
21022016-05-20 Martin Liska <mliska@suse.cz>
2103
2104 * config.in: Regenerated.
2105 * configure: Likewise.
2106 * configure.ac: Handle --enable-valgrind-annotations.
2107 * lex.c (new_buff): Use ENABLE_VALGRIND_ANNOTATIONS instead
2108 of ENABLE_VALGRIND_CHECKING.
2109 (_cpp_free_buff): Likewise.
2110
174f6622
ES
21112016-04-28 Eduard Sanou <dhole@openmailbox.org>
2112 Matthias Klose <doko@debian.org>
2113
2114 * include/cpplib.h (cpp_init_source_date_epoch): Prototype.
2115 * init.c (cpp_init_source_date_epoch): New function.
2116 * internal.h: Added source_date_epoch variable to struct
2117 cpp_reader to store a reproducible date.
7365279f
BK
2118 * macro.c (_cpp_builtin_macro_text): Set pfile->date timestamp from
2119 pfile->source_date_epoch instead of localtime if source_date_epoch is
2120 set, to be used for __DATE__ and __TIME__ macros to help reproducible
174f6622
ES
2121 builds.
2122
12de2245
BS
21232016-04-13 Bernd Schmidt <bschmidt@redhat.com>
2124
2125 Patch from Roger Orr <rogero@howzatt.demon.co.uk>
2126 PR preprocessor/69650
2127 * directives.c (do_linemarker): Reread map after calling
2128 cpp_get_token.
2129
64824205
RH
21302016-04-06 Richard Henderson <rth@redhat.com>
2131
2132 PR preprocessor/61817
2133 PR preprocessor/69391
2134 * internal.h (_cpp_builtin_macro_text): Update decl.
2135 * macro.c (_cpp_builtin_macro_text): Accept location for __LINE__.
2136 (builtin_macro): Accept a second location for __LINE__.
2137 (enter_macro_context): Compute both virtual and real expansion
2138 locations for the macro.
2139
3caf0ca1
BS
21402016-03-25 Bernd Schmidt <bschmidt@redhat.com>
2141
2142 PR lto/69650
2143 * directives.c (do_linemarker): Test for file left but not entered
2144 here.
2145 * line-map.c (linemap_add): Not here.
2146
6b366948
JJ
21472016-03-21 Jakub Jelinek <jakub@redhat.com>
2148
2149 PR target/70296
2150 * include/cpplib.h (cpp_fun_like_macro_p): New prototype.
2151 * macro.c (cpp_fun_like_macro_p): New function.
2152
64567cfd
RH
21532016-03-15 Richard Henderson <rth@redhat.com>
2154
2155 * line-map.c (new_linemap): Make alloc_size a size_t.
2156
2aaeea19
JM
21572016-03-14 Jason Merrill <jason@redhat.com>
2158
2159 * expr.c (cpp_classify_number): Hex floats are new in C++1z.
2160 * init.c (lang_defaults): Likewise.
2161
b4f3232d
DM
21622016-03-09 David Malcolm <dmalcolm@redhat.com>
2163
2164 PR c/68473
2165 PR c++/70105
2166 * line-map.c (linemap_macro_map_loc_unwind_toward_spelling): Move
2167 decl...
2168 * include/line-map.h
2169 (linemap_macro_map_loc_unwind_toward_spelling): ...here,
2170 converting from static to extern.
2171
40499f81
DM
21722016-03-09 David Malcolm <dmalcolm@redhat.com>
2173
2174 PR c/68473
2175 PR c++/70105
2176 * include/line-map.h (source_range::debug): Delete.
2177 (struct location_range): Update comment. Replace
2178 expanded_location fields "m_start", "m_finish", and "m_caret" with
2179 a source_location field: "m_loc".
2180 (class rich_location): Reword comment.
2181 (rich_location::get_loc): Reimplement in terms of a new overloaded
2182 variant which takes an unsigned int.
2183 (rich_location::get_loc_addr): Delete.
2184 (rich_location::add_range): Drop params "start" and "finish" in
2185 favor of param "loc". Drop overloaded variants taking a
2186 source_range or location_range *.
2187 (rich_location::lazily_expand_location): Delete in favor of...
2188 (rich_location::get_expanded_location): New decl.
2189 (rich_location::m_loc): Delete field.
2190 (rich_location::m_column_override): New field.
2191 * line-map.c (rich_location::rich_location): Drop name of
2192 line_maps * param. Update initializations for deletion of field
2193 "m_loc" and addition of field "m_column_override". Reimplement
2194 body as a call to add_range. Delete overloaded variant taking a
2195 source_range.
2196 (rich_location::get_loc): New function.
2197 (rich_location::lazily_expand_location): Delete in favor of...
2198 (rich_location::get_expanded_location): New function.
2199 (rich_location::override_column): Reimplement.
2200 (rich_location::add_range): Drop params "start" and "finish" in
2201 favor of param "loc". Eliminate location expansion in favor of
2202 simply storing loc. Drop overloaded variants taking a
2203 source_range or location_range *.
2204 (rich_location::set_range): Eliminate location expansion.
2205
7168133a
DM
22062016-02-29 David Malcolm <dmalcolm@redhat.com>
2207
2208 PR preprocessor/69985
2209 (linemap_position_for_loc_and_offset): Rename param from "offset"
2210 to "column_offset". Right-shift the column_offset by m_range_bits
2211 of the pertinent ordinary map whenever offsetting a
2212 source_location. For clarity, offset the column by the column
2213 offset, rather than the other way around.
2214
196440f8
DM
22152016-02-23 David Malcolm <dmalcolm@redhat.com>
2216
2217 PR preprocessor/69126
2218 PR preprocessor/69543
2219 * line-map.c (linemap_compare_locations): At the function top,
2220 replace inlined bodies of get_location_from_adhoc_loc with calls
2221 to get_location_from_adhoc_loc. Add a pair of calls to
2222 get_location_from_adhoc_loc at the bottom of the function, to
2223 avoid meaningless comparisons of ad-hoc and non-ad-hoc locations.
2224
44714d8c
DM
22252016-02-08 David Malcolm <dmalcolm@redhat.com>
2226
2227 PR preprocessor/69664
2228 * errors.c (cpp_diagnostic_with_line): Only call
2229 rich_location::override_column if the column is non-zero.
2230 * line-map.c (rich_location::override_column): Update columns
2231 within m_ranges[0]. Add assertions to verify that doing so is
2232 sane.
2233
b5c1c988
JJ
22342016-02-05 Jakub Jelinek <jakub@redhat.com>
2235
2236 PR c++/69628
2237 * charset.c (cpp_interpret_charconst): Clear *PCHARS_SEEN
2238 and *UNSIGNEDP if bailing out early due to errors.
2239
e2eb5056
JJ
22402016-01-28 Jakub Jelinek <jakub@redhat.com>
2241
4bda5946
JJ
2242 PR pch/68176
2243 * files.c (_cpp_find_file): Set file->implicit_preinclude even if
2244 included from file->implicit_preinclude header.
2245
e2eb5056
JJ
2246 * directives.c (destringize_and_run): Adjust prototype.
2247
0afff540
DM
22482016-01-27 David Malcolm <dmalcolm@redhat.com>
2249
2250 PR preprocessor/69126
2251 * directives.c (destringize_and_run): Add expansion_loc param; use
2252 it when handling unexpanded pragmas to fixup the locations of the
2253 synthesized tokens.
2254 (_cpp_do__Pragma): Add expansion_loc param and use it when calling
2255 destringize_and_run.
2256 * internal.h (_cpp_do__Pragma): Add expansion_loc param.
2257 * macro.c (builtin_macro): Pass expansion location of _Pragma to
2258 _cpp_do__Pragma.
2259
c7df95d8
DM
22602016-01-14 David Malcolm <dmalcolm@redhat.com>
2261
2262 PR preprocessor/69177
2263 * line-map.c (LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES): New
2264 constant.
2265 (LINE_MAP_MAX_LOCATION_WITH_COLS): Add note about unit tests
2266 to comment.
2267 (can_be_stored_compactly_p): Reduce threshold from
2268 LINE_MAP_MAX_LOCATION_WITH_COLS to
2269 LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES.
2270 (get_combined_adhoc_loc): Likewise.
2271 (get_range_from_loc): Likewise.
2272 (linemap_line_start): Ensure that a new ordinary map is created
2273 when transitioning from range-packing being enabled to disabled,
2274 at the LINE_MAP_MAX_LOCATION_WITH_PACKED_RANGES threshold. Set
2275 range_bits to 0 for new ordinary maps when beyond this limit.
2276 Prevent the "increase the column bits of a freshly created map"
2277 optimization if the range bits has reduced.
2278
53290e07
JJ
22792016-01-08 Jakub Jelinek <jakub@redhat.com>
2280
2281 PR c++/69145
2282 * files.c (cpp_included_before): If IS_ADHOC_LOC (location), lookup
2283 real location from the line_table.
2284
818ab71a
JJ
22852016-01-04 Jakub Jelinek <jakub@redhat.com>
2286
2287 Update copyright years.
2288
329590d7
DM
22892015-12-22 David Malcolm <dmalcolm@redhat.com>
2290
2291 * line-map.c (get_combined_adhoc_loc): Remove condition
2292 on locus < RESERVED_LOCATION_COUNT when considering
2293 whether a caret == start == finish location can be
2294 simply stored as the caret location.
2295
f79520bb
DM
22962015-12-07 David Malcolm <dmalcolm@redhat.com>
2297
2298 * include/line-map.h (rich_location::set_range): Add line_maps *
2299 param; convert param from source_range to source_location. Drop
2300 "overwrite_loc_p" param.
2301 * line-map.c (rich_location::set_range): Likewise, acting as if
2302 "overwrite_loc_p" were true, and getting range from the location.
2303
a87a86e1
DM
23042015-11-20 David Malcolm <dmalcolm@redhat.com>
2305
2306 PR 62314
2307 * include/line-map.h (source_range::intersects_line_p): New
2308 method.
2309 (rich_location::~rich_location): New.
2310 (rich_location::add_fixit_insert): New method.
2311 (rich_location::add_fixit_remove): New method.
2312 (rich_location::add_fixit_replace): New method.
2313 (rich_location::get_num_fixit_hints): New accessor.
2314 (rich_location::get_fixit_hint): New accessor.
2315 (rich_location::MAX_FIXIT_HINTS): New constant.
2316 (rich_location::m_num_fixit_hints): New field.
2317 (rich_location::m_fixit_hints): New field.
2318 (class fixit_hint): New class.
2319 (class fixit_insert): New class.
2320 (class fixit_remove): New class.
2321 (class fixit_replace): New class.
2322 * line-map.c (source_range::intersects_line_p): New method.
2323 (rich_location::rich_location): Add initialization of
2324 m_num_fixit_hints to both ctors.
2325 (rich_location::~rich_location): New.
2326 (rich_location::add_fixit_insert): New method.
2327 (rich_location::add_fixit_remove): New method.
2328 (rich_location::add_fixit_replace): New method.
2329 (fixit_insert::fixit_insert): New.
2330 (fixit_insert::~fixit_insert): New.
2331 (fixit_insert::affects_line_p): New.
2332 (fixit_remove::fixit_remove): New.
2333 (fixit_remove::affects_line_p): New.
2334 (fixit_replace::fixit_replace): New.
2335 (fixit_replace::~fixit_replace): New.
2336 (fixit_replace::affects_line_p): New.
2337
46ce03de
JJ
23382015-11-19 Jakub Jelinek <jakub@redhat.com>
2339
2340 PR preprocessor/60736
2341 * include/cpplib.h (cpp_errno_filename): New prototype.
2342 * errors.c (cpp_errno): Don't handle msgid "" specially, use
2343 _(msgid) instead of msgid as argument to cpp_error.
2344 (cpp_errno_filename): New function.
2345 * files.c (read_file_guts): Use cpp_errno_filename instead of
2346 cpp_errno.
2347 (open_file_failed): Likewise. Use file->name if file->path is NULL
2348 in diagnostics.
2349
ebedc9a3
DM
23502015-11-13 David Malcolm <dmalcolm@redhat.com>
2351
2352 * errors.c (cpp_diagnostic): Pass pfile->line_table to
2353 rich_location ctor.
2354 (cpp_diagnostic_with_line): Likewise.
2355 * include/cpplib.h (struct cpp_token): Update comment for src_loc
2356 to indicate that the range of the token is "baked into" the
2357 source_location.
2358 * include/line-map.h (source_location): Update the descriptive
2359 comment to reflect the packing scheme for short ranges, adding
2360 worked examples of location encoding.
2361 (struct line_map_ordinary): Drop field "column_bits" in favor
2362 of field "m_column_and_range_bits"; add field "m_range_bits".
2363 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
2364 (location_adhoc_data): Add source_range field.
2365 (struct line_maps): Add fields "default_range_bits",
2366 "num_optimized_ranges" and "num_unoptimized_ranges".
2367 (get_combined_adhoc_loc): Add source_range param.
2368 (get_range_from_loc): New declaration.
2369 (pure_location_p): New prototype.
2370 (COMBINE_LOCATION_DATA): Add source_range param.
2371 (SOURCE_LINE): Update for renaming of column_bits.
2372 (SOURCE_COLUMN): Likewise. Shift the column right by the map's
2373 range_bits.
2374 (LAST_SOURCE_LINE_LOCATION): Update for renaming of column_bits.
2375 (linemap_position_for_line_and_column): Add line_maps * params.
2376 (rich_location::rich_location): Likewise.
2377 * lex.c (_cpp_lex_direct): Capture the range of the token, baking
2378 it into token->src_loc via a call to COMBINE_LOCATION_DATA.
2379 * line-map.c (LINE_MAP_MAX_COLUMN_NUMBER): Reduce from 1U << 17 to
2380 1U << 12.
2381 (location_adhoc_data_hash): Add the src_range into
2382 the hash value.
2383 (location_adhoc_data_eq): Require equality of the src_range
2384 values.
2385 (can_be_stored_compactly_p): New function.
2386 (get_combined_adhoc_loc): Add src_range param, and store it,
2387 via a bit-packing scheme for short ranges, otherwise within the
2388 lookaside table. Remove the requirement that data is non-NULL.
2389 (get_range_from_adhoc_loc): New function.
2390 (get_range_from_loc): New function.
2391 (pure_location_p): New function.
2392 (linemap_add): Ensure that start_location has zero for the
2393 range_bits, unless we're past LINE_MAP_MAX_LOCATION_WITH_COLS.
2394 Initialize range_bits to zero. Assert that the start_location
2395 is "pure".
2396 (linemap_line_start): Assert that the
2397 column_and_range_bits >= range_bits.
2398 Update determinination of whether we need to start a new map
2399 using the effective column bits, without the range bits.
2400 Use the set's default_range_bits in new maps, apart from
2401 those with column_bits == 0, which should also have 0 range_bits.
2402 Increase the column bits for new maps by the range bits.
2403 When adding lines to an existing map, use set->highest_line
2404 directly rather than offsetting highest by SOURCE_COLUMN.
2405 Add assertions to sanity-check the return value.
2406 (linemap_position_for_column): Offset to_column by range_bits.
2407 Update set->highest_location if necessary.
2408 (linemap_position_for_line_and_column): Add line_maps * param.
2409 Update the calculation to offset the column by range_bits, and
2410 conditionalize it on being <= LINE_MAP_MAX_LOCATION_WITH_COLS.
2411 Bound it by LINEMAPS_MACRO_LOWEST_LOCATION. Update
2412 set->highest_location if necessary.
2413 (linemap_position_for_loc_and_offset): Handle ad-hoc locations;
2414 pass "set" to linemap_position_for_line_and_column.
2415 (linemap_macro_map_loc_unwind_toward_spelling): Add line_maps
2416 param. Handle ad-hoc locations.
2417 (linemap_location_in_system_header_p): Pass on "set" to call to
2418 linemap_macro_map_loc_unwind_toward_spelling.
2419 (linemap_macro_loc_to_spelling_point): Retain ad-hoc locations.
2420 Pass on "set" to call to
2421 linemap_macro_map_loc_unwind_toward_spelling.
2422 (linemap_resolve_location): Retain ad-hoc locations. Pass on
2423 "set" to call to linemap_macro_map_loc_unwind_toward_spelling.
2424 (linemap_unwind_toward_expansion): Pass on "set" to call to
2425 linemap_macro_map_loc_unwind_toward_spelling.
2426 (linemap_expand_location): Extract the data pointer before
2427 extracting the location.
2428 (rich_location::rich_location): Add line_maps param; use it to
2429 extract the range from the source_location.
2430 * location-example.txt: Regenerate, showing new representation.
2431
8a645150
DM
24322015-11-06 David Malcolm <dmalcolm@redhat.com>
2433
2434 * errors.c (cpp_diagnostic): Update for change in signature
2435 of "error" callback.
2436 (cpp_diagnostic_with_line): Likewise, calling override_column
2437 on the rich_location.
2438 * include/cpplib.h (struct cpp_callbacks): Within "error"
2439 callback, convert param from source_location to rich_location *,
2440 and drop column_override param.
2441 * include/line-map.h (struct source_range): New struct.
2442 (struct location_range): New struct.
2443 (class rich_location): New class.
2444 (linemap_client_expand_location_to_spelling_point): New declaration.
2445 * line-map.c (rich_location::rich_location): New ctors.
2446 (rich_location::lazily_expand_location): New method.
2447 (rich_location::override_column): New method.
2448 (rich_location::add_range): New methods.
2449 (rich_location::set_range): New method.
2450
ee015909
DM
24512015-11-06 David Malcolm <dmalcolm@redhat.com>
2452
2453 * include/line-map.h (struct linemap_stats): Add fields
2454 "adhoc_table_size" and "adhoc_table_entries_used".
2455 * line-map.c (linemap_get_statistics): Populate above fields.
2456
a6c764d0
MM
24572015-11-04 Mikhail Maltsev <maltsevm@gmail.com>
2458
2459 * config.in: Regenerate.
2460 * configure: Regenerate.
2461 * configure.ac: Remove ENABLE_CHECKING.
2462
49445904
UB
24632015-11-03 Uros Bizjak <ubizjak@gmail.com>
2464
2465 * lex.c (search_line_sse42): Correctly advance the pointer to an
2466 aligned address.
2467
525ce910
DM
24682015-11-02 David Malcolm <dmalcolm@redhat.com>
2469
2470 * include/line-map.h (source_location): In the table in the
2471 descriptive comment, show UNKNOWN_LOCATION, BUILTINS_LOCATION,
2472 LINE_MAP_MAX_LOCATION_WITH_COLS, LINE_MAP_MAX_SOURCE_LOCATION.
2473 Add notes about ad-hoc values.
2474
7ec491c0
MM
24752015-10-21 Mikhail Maltsev <maltsevm@gmail.com>
2476
22d66382
MM
2477 * include/line-map.h: Use CHECKING_P instead of ENABLE_CHECKING.
2478 * init.c: Likewise.
2479 * macro.c (struct macro_arg_token_iter, set_arg_token,
2480 macro_arg_token_iter_init, macro_arg_token_iter_forward,
2481 macro_arg_token_iter_get_token, macro_arg_token_iter_get_location,
2482 alloc_expanded_arg_mem, _cpp_backup_tokens): Likewise.
2483
7ec491c0
MM
2484 * config.in: Regenerate.
2485 * configure: Regenerate.
2486 * configure.ac (CHECKING_P): Define.
2487 * system.h (fancy_abort): Declare.
2488 (abort): Define.
2489 (gcc_assert): Define. Use CHECKING_P.
2490
179b8d05
MM
24912015-10-13 Mikhail Maltsev <maltsevm@gmail.com>
2492
2493 * system.h (CHECKING_P, gcc_checking_assert): Define.
2494
87b470b3
MLI
24952015-09-21 Manuel López-Ibáñez <manu@gcc.gnu.org>
2496
2497 PR c/66415
2498 * line-map.c (linemap_position_for_loc_and_offset): Handle the
2499 case of long lines encoded in multiple maps.
2500
85bc8baa
MP
25012015-09-07 Marek Polacek <polacek@redhat.com>
2502
2503 * system.h (INTTYPE_MINIMUM): Rewrite to avoid shift warning.
2504
bf5372e7
YS
25052015-08-06 Yaakov Selkowitz <yselkowi@redhat.com>
2506
2507 * configure: Regenerate.
2508
d17f7d59
TS
25092015-07-08 Thomas Schwinge <thomas@codesourcery.com>
2510
2511 * include/line-map.h (RESERVED_LOCATION_COUNT): Change type to
2512 source_location.
2513
fbb22910
PC
25142015-07-02 Paolo Carlini <paolo.carlini@oracle.com>
2515
d885793d 2516 PR preprocessor/53690
fbb22910
PC
2517 * charset.c (_cpp_valid_ucn): Add cppchar_t * parameter and change
2518 return type to bool. Fix encoding of \u0000 and \U00000000 in C++.
2519 (convert_ucn): Adjust call.
2520 * lex.c (forms_identifier_p): Likewise.
2521 * internal.h (_cpp_valid_ucn): Adjust declaration.
2522
fe95b036
ESR
25232015-06-30 Edward Smith-Rowland <3dw4rd@verizon.net>
2524
2525 Implement N4197 - Adding u8 character literals
2526 * include/cpplib.h (UTF8CHAR, UTF8CHAR_USERDEF): New cpp tokens;
2527 (struct cpp_options): Add utf8_char_literals.
2528 * init.c (struct lang_flags): Add utf8_char_literals;
2529 (struct lang_flags lang_defaults): Add column for utf8_char_literals.
fbb22910 2530 * macro.c (stringify_arg()): Treat CPP_UTF8CHAR token;
fe95b036
ESR
2531 * expr.c (cpp_userdef_char_remove_type(), cpp_userdef_char_add_type()):
2532 Treat CPP_UTF8CHAR_USERDEF, CPP_UTF8CHAR tokens;
2533 (cpp_userdef_char_p()): Treat CPP_UTF8CHAR_USERDEF token;
2534 (eval_token(), _cpp_parse_expr()): Treat CPP_UTF8CHAR token.
2535 * lex.c (lex_string(), _cpp_lex_direct()): Include CPP_UTF8CHAR tokens.
2536 * charset.c (converter_for_type(), cpp_interpret_charconst()):
2537 Treat CPP_UTF8CHAR token.
2538
dc6bcf52
UB
25392015-06-30 Uros Bizjak <ubizjak@gmail.com>
2540
2541 * lex.c (search_line_sse42) [__GCC_ASM_FLAG_OUTPUTS__]: New main
2542 loop using asm flag outputs.
2543
a1661b90
MP
25442015-06-08 Marek Polacek <polacek@redhat.com>
2545
2546 PR c/66415
2547 * line-map.c (linemap_position_for_loc_and_offset): Remove
2548 linemap_assert_fails; reverse conditions.
2549
815facd3
MLI
25502015-05-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
2551
2552 * line-map.c (LINE_MAP_MAX_COLUMN_NUMBER
2553 LINE_MAP_MAX_LOCATION_WITH_COLS,LINE_MAP_MAX_SOURCE_LOCATION):
2554 New constants.
2555 (linemap_line_start): Use them.
2556 (linemap_position_for_column): Use them.
2557
c819ed29
DM
25582015-05-20 David Malcolm <dmalcolm@redhat.com>
2559
2560 * include/line-map.h (MAP_START_LOCATION): Eliminate the non-const
2561 variant, and tweak comment for the const variant.
2562 (ORDINARY_MAP_STARTING_LINE_NUMBER): Drop the non-const variant.
2563 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
2564 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
2565 (SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Delete.
2566 (ORDINARY_MAP_FILE_NAME): Drop the non-const variant.
2567 (MACRO_MAP_MACRO): Likewise.
2568 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
2569 (MACRO_MAP_LOCATIONS): Likewise.
2570 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
2571 * line-map.c (linemap_add): Replace writes through macros with
2572 direct field accesses.
2573 (linemap_enter_macro): Likewise.
2574 (linemap_line_start): Likewise.
2575
0e50b624
DM
25762015-05-19 David Malcolm <dmalcolm@redhat.com>
2577
2578 * directives.c (do_line): Strengthen local "map" from
2579 const line_map * to const line_map_ordinary *.
2580 (do_linemarker): Likewise.
2581 (_cpp_do_file_change): Assert that we're not dealing with
2582 a macro map. Introduce local "ord_map" via a call to
2583 linemap_check_ordinary, guarded within the check for
2584 non-NULL. Use it for typesafety.
2585 * files.c (cpp_make_system_header): Strengthen local "map" from
2586 const line_map * to const line_map_ordinary *.
2587 * include/cpplib.h (struct cpp_callbacks): Likewise for second
2588 parameter of "file_change" callback.
2589 * include/line-map.h (struct line_map): Convert from a struct
2590 containing a union to a base class.
2591 (struct line_map_ordinary): Convert to a subclass of line_map.
2592 (struct line_map_macro): Likewise.
2593 (linemap_check_ordinary): Strengthen return type from line_map *
2594 to line_map_ordinary *, and add a const-variant.
2595 (linemap_check_macro): New pair of functions.
2596 (ORDINARY_MAP_STARTING_LINE_NUMBER): Strengthen param from
2597 const line_map * to const line_map_ordinary *, eliminating call
2598 to linemap_check_ordinary. Likewise for the non-const variant.
2599 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
2600 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
2601 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Likewise.
2602 (ORDINARY_MAP_FILE_NAME): Likewise.
2603 (MACRO_MAP_MACRO): Strengthen param from const line_map * to
2604 const line_map_macro *. Likewise for the non-const variant.
2605 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
2606 (MACRO_MAP_LOCATIONS): Likewise.
2607 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
2608 (struct maps_info): Replace with...
2609 (struct maps_info_ordinary):...this and...
2610 (struct maps_info_macro): ...this.
2611 (struct line_maps): Convert fields "info_ordinary" and
2612 "info_macro" to the above new structs.
2613 (LINEMAPS_MAP_INFO): Delete both functions.
2614 (LINEMAPS_MAPS): Likewise.
2615 (LINEMAPS_ALLOCATED): Rewrite both variants to avoid using
2616 LINEMAPS_MAP_INFO.
2617 (LINEMAPS_USED): Likewise.
2618 (LINEMAPS_CACHE): Likewise.
2619 (LINEMAPS_MAP_AT): Likewise.
2620 (LINEMAPS_ORDINARY_MAPS): Strengthen return type from line_map *
2621 to line_map_ordinary *.
2622 (LINEMAPS_ORDINARY_MAP_AT): Likewise.
2623 (LINEMAPS_LAST_ORDINARY_MAP): Likewise.
2624 (LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
2625 (LINEMAPS_MACRO_MAPS): Strengthen return type from line_map * to
2626 line_map_macro *.
2627 (LINEMAPS_MACRO_MAP_AT): Likewise.
2628 (LINEMAPS_LAST_MACRO_MAP): Likewise.
2629 (LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
2630 (linemap_map_get_macro_name): Strengthen param from
2631 const line_map * to const line_map_macro *.
2632 (SOURCE_LINE): Strengthen first param from const line_map * to
2633 const line_map_ordinary *, removing call to
2634 linemap_check_ordinary.
2635 (SOURCE_COLUMN): Likewise.
2636 (LAST_SOURCE_LINE_LOCATION): Likewise.
2637 (LAST_SOURCE_LINE): Strengthen first param from const line_map *
2638 to const line_map_ordinary *.
2639 (LAST_SOURCE_COLUMN): Likewise.
2640 (INCLUDED_FROM): Strengthen return type from line_map * to
2641 line_map_ordinary *., and second param from const line_map *
2642 to const line_map_ordinary *, removing call to
2643 linemap_check_ordinary.
2644 (MAIN_FILE_P): Strengthen param from const line_map * to
2645 const line_map_ordinary *, removing call to
2646 linemap_check_ordinary.
2647 (linemap_position_for_line_and_column): Strengthen param from
2648 const line_map * to const line_map_ordinary *.
2649 (LINEMAP_FILE): Strengthen param from const line_map * to
2650 const line_map_ordinary *, removing call to
2651 linemap_check_ordinary.
2652 (LINEMAP_LINE): Likewise.
2653 (LINEMAP_SYSP): Likewise.
2654 (linemap_resolve_location): Strengthen final param from
2655 const line_map ** to const line_map_ordinary **.
2656 * internal.h (CPP_INCREMENT_LINE): Likewise for local "map".
2657 (linemap_enter_macro): Strengthen return type from
2658 const line_map * to const line_map_macro *.
2659 (linemap_add_macro_token): Likewise for first param.
2660 * line-map.c (linemap_check_files_exited): Strengthen local "map"
2661 from const line_map * to const line_map_ordinary *.
2662 (new_linemap): Introduce local "map_size" and use it when
2663 calculating how large the buffer should be. Rewrite based
2664 on change of info_macro and info_ordinary into distinct types.
2665 (linemap_add): Strengthen locals "map" and "from" from line_map *
2666 to line_map_ordinary *.
2667 (linemap_enter_macro): Strengthen return type from
2668 const line_map * to const line_map_macro *, and local "map" from
2669 line_map * to line_map_macro *.
2670 (linemap_add_macro_token): Strengthen param "map" from
2671 const line_map * to const line_map_macro *.
2672 (linemap_line_start): Strengthen local "map" from line_map * to
2673 line_map_ordinary *.
2674 (linemap_position_for_column): Likewise.
2675 (linemap_position_for_line_and_column): Strengthen first param
2676 from const line_map * to const line_map_ordinary *.
2677 (linemap_position_for_loc_and_offset): Strengthen local "map" from
2678 const line_map * to const line_map_ordinary *.
2679 (linemap_ordinary_map_lookup): Likewise for return type and locals
2680 "cached" and "result".
2681 (linemap_macro_map_lookup): Strengthen return type and locals
2682 "cached" and "result" from const line_map * to
2683 const line_map_macro *.
2684 (linemap_macro_map_loc_to_exp_point): Likewise for param "map".
2685 (linemap_macro_map_loc_to_def_point): Likewise.
2686 (linemap_macro_map_loc_unwind_toward_spelling): Likewise.
2687 (linemap_get_expansion_line): Strengthen local "map" from
2688 const line_map * to const line_map_ordinary *.
2689 (linemap_get_expansion_filename): Likewise.
2690 (linemap_map_get_macro_name): Strengthen param from
2691 const line_map * to const line_map_macro *.
2692 (linemap_location_in_system_header_p): Add call to
2693 linemap_check_ordinary in region guarded by
2694 !linemap_macro_expansion_map_p. Introduce local "macro_map" via
2695 linemap_check_macro in other region, using it in place of "map"
2696 for typesafety.
2697 (first_map_in_common_1): Add calls to linemap_check_macro.
2698 (trace_include): Strengthen param "map" from const line_map * to
2699 const line_map_ordinary *.
2700 (linemap_macro_loc_to_spelling_point): Strengthen final param from
2701 const line_map ** to const line_map_ordinary **. Replace a
2702 C-style cast with a const_cast, and add calls to
2703 linemap_check_macro and linemap_check_ordinary.
2704 (linemap_macro_loc_to_def_point): Likewise.
2705 (linemap_macro_loc_to_exp_point): Likewise.
2706 (linemap_resolve_location): Strengthen final param from
2707 const line_map ** to const line_map_ordinary **.
2708 (linemap_unwind_toward_expansion): Introduce local "macro_map" via
2709 a checked cast and use it in place of *map.
2710 (linemap_unwind_to_first_non_reserved_loc): Strengthen local
2711 "map1" from const line_map * to const line_map_ordinary *.
2712 (linemap_expand_location): Introduce local "ord_map" via a checked
2713 cast and use it in place of map.
2714 (linemap_dump): Make local "map" const. Strengthen local
2715 "includer_map" from line_map * to const line_map_ordinary *.
2716 Introduce locals "ord_map" and "macro_map" via checked casts and
2717 use them in place of "map" for typesafety.
2718 (linemap_dump_location): Strengthen local "map" from
2719 const line_map * to const line_map_ordinary *.
2720 (linemap_get_file_highest_location): Update for elimination of
2721 union.
2722 (linemap_get_statistics): Strengthen local "cur_map" from
2723 line_map * to const line_map_macro *. Update uses of sizeof to
2724 use the appropriate line_map subclasses.
2725 * macro.c (_cpp_warn_if_unused_macro): Add call to
2726 linemap_check_ordinary.
2727 (builtin_macro): Strengthen local "map" from const line_map * to
2728 const line_map_macro *.
2729 (enter_macro_context): Likewise.
2730 (replace_args): Likewise.
2731 (tokens_buff_put_token_to): Likewise for param "map".
2732 (tokens_buff_add_token): Likewise.
2733
ba4ad400
DM
27342015-05-13 David Malcolm <dmalcolm@redhat.com>
2735
2736 * include/line-map.h (source_location): Add a reference to
2737 location-example.txt to the descriptive comment.
2738 * location-example.txt: New file.
2739
0501dbd9
DM
27402015-05-13 David Malcolm <dmalcolm@redhat.com>
2741
2742 * include/line-map.h (MAX_SOURCE_LOCATION): Convert from a macro
2743 to a const source_location.
2744 (RESERVED_LOCATION_COUNT): Likewise.
2745 (linemap_check_ordinary): Convert from a macro to a pair of inline
2746 functions, for const/non-const arguments.
2747 (MAP_START_LOCATION): Likewise.
2748 (ORDINARY_MAP_STARTING_LINE_NUMBER): Likewise.
2749 (ORDINARY_MAP_INCLUDER_FILE_INDEX): Likewise.
2750 (ORDINARY_MAP_IN_SYSTEM_HEADER_P): Likewise.
2751 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): Convert from a macro to a
2752 pair of inline functions, for const/non-const arguments, where the
2753 latter is named...
2754 (SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS): New function.
2755 (ORDINARY_MAP_FILE_NAME): Convert from a macro to a pair of inline
2756 functions, for const/non-const arguments.
2757 (MACRO_MAP_MACRO): Likewise.
2758 (MACRO_MAP_NUM_MACRO_TOKENS): Likewise.
2759 (MACRO_MAP_LOCATIONS): Likewise.
2760 (MACRO_MAP_EXPANSION_POINT_LOCATION): Likewise.
2761 (LINEMAPS_MAP_INFO): Likewise.
2762 (LINEMAPS_MAPS): Likewise.
2763 (LINEMAPS_ALLOCATED): Likewise.
2764 (LINEMAPS_USED): Likewise.
2765 (LINEMAPS_CACHE): Likewise.
2766 (LINEMAPS_ORDINARY_CACHE): Likewise.
2767 (LINEMAPS_MACRO_CACHE): Likewise.
2768 (LINEMAPS_MAP_AT): Convert from a macro to an inline function.
2769 (LINEMAPS_LAST_MAP): Likewise.
2770 (LINEMAPS_LAST_ALLOCATED_MAP): Likewise.
2771 (LINEMAPS_ORDINARY_MAPS): Likewise.
2772 (LINEMAPS_ORDINARY_MAP_AT): Likewise.
2773 (LINEMAPS_ORDINARY_ALLOCATED): Likewise.
2774 (LINEMAPS_ORDINARY_USED): Likewise.
2775 (LINEMAPS_LAST_ORDINARY_MAP): Likewise.
2776 (LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP): Likewise.
2777 (LINEMAPS_MACRO_MAPS): Likewise.
2778 (LINEMAPS_MACRO_MAP_AT): Likewise.
2779 (LINEMAPS_MACRO_ALLOCATED): Likewise.
2780 (LINEMAPS_MACRO_USED): Likewise.
2781 (LINEMAPS_MACRO_LOWEST_LOCATION): Likewise.
2782 (LINEMAPS_LAST_MACRO_MAP): Likewise.
2783 (LINEMAPS_LAST_ALLOCATED_MACRO_MAP): Likewise.
2784 (IS_ADHOC_LOC): Likewise.
2785 (COMBINE_LOCATION_DATA): Likewise.
2786 (SOURCE_LINE): Likewise.
2787 (SOURCE_COLUMN): Likewise.
2788 (LAST_SOURCE_LINE_LOCATION): Likewise.
2789 (LAST_SOURCE_LINE): Likewise.
2790 (LAST_SOURCE_COLUMN): Likewise.
2791 (LAST_SOURCE_LINE_LOCATION)
2792 (INCLUDED_FROM): Likewise.
2793 (MAIN_FILE_P): Likewise.
2794 (LINEMAP_FILE): Likewise.
2795 (LINEMAP_LINE): Likewise.
2796 (LINEMAP_SYSP): Likewise.
2797 (linemap_location_before_p): Likewise.
2798 * line-map.c (linemap_check_files_exited): Make local "map" const.
2799 (linemap_add): Use SET_ORDINARY_MAP_NUMBER_OF_COLUMN_BITS.
2800 (linemap_line_start): Likewise.
2801
eb70f327
MH
28022015-05-13 Michael Haubenwallner <michael.haubenwallner@ssi-schaefer.com>
2803
2804 * aclocal.m4: Regenerated with automake-1.11.6.
2805
60c12095
DM
28062015-05-13 David Malcolm <dmalcolm@redhat.com>
2807
2808 * include/line-map.h (linemap_assert): Move up within the file to
2809 before all of the map accessor macros.
2810 (linemap_assert_fails): Likewise.
2811 (linemap_check_ordinary): Likewise.
2812 (linemap_macro_expansion_map_p): Likewise.
2813
c3388e62
DM
28142015-05-12 David Malcolm <dmalcolm@redhat.com>
2815
2816 * directives.c (do_line): Set seen_line_directive on line_table.
2817 (do_linemarker): Likewise.
2818 * include/line-map.h (struct line_maps): Add new field
2819 "seen_line_directive".
2820
fe191308
JM
28212015-05-08 Jason Merrill <jason@redhat.com>
2822
2823 * include/cpplib.h: Add CPP_W_CXX11_COMPAT.
2824 (struct cpp_options): Add cpp_warn_cxx11_compat.
2825 * init.c (cpp_create_reader): Initialize it.
2826 * lex.c (lex_string): Add -Wc++11-compat warning.
2827
21c0a521
DM
28282015-05-05 David Malcolm <dmalcolm@redhat.com>
2829
2830 * pch.c (cpp_valid_state): Fix indentation so that it reflects the
2831 block structure.
2832
c87b25e6
DM
28332015-05-05 David Malcolm <dmalcolm@redhat.com>
2834
2835 * include/line-map.h: Fix comment at the top of the file.
2836 (source_location): Rewrite and expand the comment for this
2837 typedef, adding an ascii-art table to clarify how source_location
2838 values are allocated.
2839 * line-map.c: Fix comment at the top of the file.
2840
ca708025
RB
28412015-04-09 Richard Biener <rguenther@suse.de>
2842
2843 PR pch/65550
2844 * files.c (pch_open_file): Allow main and pre-included files
2845 when trying to open a PCH.
2846
e4b33ee5
JJ
28472015-04-06 Jakub Jelinek <jakub@redhat.com>
2848
2849 PR preprocessor/61977
2850 * lex.c (cpp_peek_token): If peektok is CPP_EOF, back it up
2851 with all tokens peeked by the current function.
2852
b8cd77f4
JJ
28532015-04-02 Jakub Jelinek <jakub@redhat.com>
2854
2855 PR preprocessor/61977
2856 * lex.c (cpp_peek_token): Temporarily clear pfile->cb.line_change.
2857
fb136e35
JJ
28582015-03-23 Jakub Jelinek <jakub@redhat.com>
2859
2860 PR preprocessor/65238
2861 * internal.h (_cpp_scan_out_logical_line): Add third argument.
2862 * directives.c (prepare_directive_trad): Pass false to it.
2863 * traditional.c (_cpp_read_logical_line_trad,
2864 _cpp_create_trad_definition): Likewise.
2865 (struct fun_macro): Add paramc field.
2866 (fun_like_macro): New function.
2867 (maybe_start_funlike): Handle NODE_BUILTIN macros. Initialize
2868 macro->paramc field.
2869 (save_argument): Use macro->paramc instead of
2870 macro->node->value.macro->paramc.
2871 (push_replacement_text): Formatting fix.
2872 (recursive_macro): Use fun_like_macro helper.
2873 (_cpp_scan_out_logical_line): Likewise. Add BUILTIN_MACRO_ARG
2874 argument. Initialize fmacro.paramc field. Handle builtin
2875 function-like macros.
2876
a5858a3d
ESR
28772015-03-16 Edward Smith-Rowland <3dw4rd@verizon.net>
2878
2879 PR c++/64626
2880 * lex.c (lex_number): If a number ends with digit-seps (') skip back
2881 and let lex_string take them.
2882
44d95244
MT
28832015-03-02 Markus Trippelsdorf <markus@trippelsdorf.de>
2884
2885 PR target/65261
2886 * lex.c (search_line_fast): Silence ubsan errors.
2887
f8abc9ba
DS
28882015-02-03 <dodji@redhat.com>
2889
2890 PR preprocessor/64803
2891 * internal.h (cpp_reader::top_most_macro_node): New data member.
2892 * macro.c (enter_macro_context): Pass the location of the end of
2893 the top-most invocation of the function-like macro, or the
2894 location of the expansion point of the top-most object-like macro.
2895 (cpp_get_token_1): Store the top-most macro node in the new
2896 pfile->top_most_macro_node data member.
2897 (_cpp_pop_context): Clear the new cpp_reader::top_most_macro_node
2898 data member.
2899
95d0610c
SN
29002015-01-30 Szabolcs Nagy <szabolcs.nagy@arm.com>
2901
2902 * lex.c (search_line_fast): Change __ARM_NEON__ to __ARM_NEON.
2903
10ef8f28
MP
29042015-01-23 Marek Polacek <polacek@redhat.com>
2905
2906 DR#412
2907 PR preprocessor/60570
2908 * directives.c (do_elif): Don't evaluate #elif conditionals
2909 when they don't need to be.
2910
6e6cb471
JJ
29112015-01-16 Jakub Jelinek <jakub@redhat.com>
2912
2913 * expr.c (cpp_classify_number): Add N_() around ?: string
2914 literals used in cpp_error_with_line call as format string.
2915
5624e564
JJ
29162015-01-05 Jakub Jelinek <jakub@redhat.com>
2917
2918 Update copyright years.
2919
1f8d3e84
JJ
29202014-12-19 Jakub Jelinek <jakub@redhat.com>
2921
2922 PR preprocessor/63831
2923 * directives.c (lex_macro_node): Remove __has_attribute__ handling.
2924 * internal.h (struct spec_node): Remove n__has_attribute__ field.
2925 (struct lexer_state): Remove in__has_attribute__ field.
2926 * macro.c (_cpp_builtin_macro_text): Handle BT_HAS_ATTRIBUTE.
2927 * identifiers.c (_cpp_init_hashtable): Remove __has_attribute__
2928 handling.
2929 * init.c (builtin_array): Add __has_attribute and __has_cpp_attribute.
2930 (cpp_init_special_builtins): Don't initialize __has_attribute
2931 or __has_cpp_attribute if CLK_ASM or pfile->cb.has_attribute is NULL.
2932 * traditional.c (enum ls): Remove ls_has_attribute,
2933 ls_has_attribute_close.
2934 (_cpp_scan_out_logical_line): Remove __has_attribute__ handling.
2935 * include/cpplib.h (enum cpp_builtin_type): Add BT_HAS_ATTRIBUTE.
2936 * pch.c (cpp_read_state): Remove __has_attribute__ handling.
2937 * expr.c (eval_token): Likewise.
2938 (parse_has_attribute): Removed.
2939
01ca36af
UB
29402014-12-11 Uros Bizjak <ubizjak@gmail.com>
2941
2942 * directives.c (cpp_define_formatted): Use xvasprintf.
2943
b93c0722
MLI
29442014-12-05 Manuel López-Ibáñez <manu@gcc.gnu.org>
2945
2946 * line-map.c (linemap_position_for_loc_and_offset): Add new
2947 linemap_assert_fails.
2948
73bd8329
MLI
29492014-12-02 Manuel López-Ibáñez <manu@gcc.gnu.org>
2950
2951 * include/line-map.h (linemap_assert_fails): Declare.
2952 * line-map.c (linemap_position_for_loc_and_offset): Use it.
2953
9c320ab1
MLI
29542014-12-02 Manuel López-Ibáñez <manu@gcc.gnu.org>
2955
49445904
UB
2956 * line-map.c (linemap_add): Fix typo.
2957 (linemap_line_start): Fix whitespace.
9c320ab1 2958
81fee4a7
JM
29592014-11-29 John Schmerge <jbschmerge@gmail.com>
2960
2961 PR preprocessor/41698
2962 * charset.c (one_utf8_to_utf16): Do not produce surrogate pairs
2963 for 0xffff.
2964
43ba1c6c
JJ
29652014-11-25 Jakub Jelinek <jakub@redhat.com>
2966
2967 PR preprocessor/60436
2968 * line-map.c (linemap_line_start): If highest is above 0x60000000
2969 and we are still tracking columns or highest is above 0x70000000,
2970 force add_map.
2971
8a23b100
UB
29722014-11-20 Uros Bizjak <ubizjak@gmail.com>
2973
2974 PR target/63966
1b6b13f3
UB
2975 * lex.c [__i386__ || __x86_64__]: Compile special SSE functions
2976 only for (__GNUC__ >= 5 || !defined(__PIC__)).
8a23b100 2977
d82f1e13
MLI
29782014-11-13 Manuel López-Ibáñez <manu@gcc.gnu.org>
2979
2980 * include/line-map.h: Include EXPR, so that unused variable warnings
2981 do not occur.
2982
3aa34c1d
MLI
29832014-11-11 Manuel López-Ibáñez <manu@gcc.gnu.org>
2984
2985 PR fortran/44054
2986 * include/line-map.h (linemap_position_for_loc_and_offset):
2987 Declare.
2988 * line-map.c (linemap_position_for_loc_and_offset): New.
2989
35485da9
DM
29902014-11-11 David Malcolm <dmalcolm@redhat.com>
2991
2992 * ChangeLog.jit: New.
2993
42fd12b1
ESR
29942014-11-10 Edward Smith-Rowland <3dw4rd@verizon.net>
2995
2996 * include/cpplib.h (cpp_callbacks): Add has_attribute.
2997 * internal.h (lexer_state): Add in__has_attribute__.
2998 * directives.c (lex_macro_node): Prevent use of __has_attribute__
2999 as a macro.
3000 * expr.c (parse_has_attribute): New function; (eval_token): Look for
3001 __has_attribute__ and route to parse_has_attribute.
3002 * identifiers.c (_cpp_init_hashtable): Initialize n__has_attribute__.
3003 * pch.c (cpp_read_state): Initialize n__has_attribute__.
3004 * traditional.c (enum ls): Add ls_has_attribute, ls_has_attribute_close;
3005 (_cpp_scan_out_logical_line): Attend to __has_attribute__.
3006
be5ffc59
JM
30072014-11-06 Joseph Myers <joseph@codesourcery.com>
3008
3009 * include/cpp-id-data.h (struct cpp_macro): Update comment
3010 regarding parameters.
3011 * include/cpplib.h (struct cpp_macro_arg, struct cpp_identifier):
3012 Add spelling fields.
3013 (struct cpp_token): Update comment on macro_arg.
3014 * internal.h (_cpp_save_parameter): Add extra argument.
3015 (_cpp_spell_ident_ucns): New declaration.
3016 * lex.c (lex_identifier): Add SPELLING argument. Set *SPELLING to
3017 original spelling of identifier.
3018 (_cpp_lex_direct): Update calls to lex_identifier.
3019 (_cpp_spell_ident_ucns): New function, factored out of
3020 cpp_spell_token.
3021 (cpp_spell_token): Adjust FORSTRING argument semantics to return
3022 original spelling of identifiers. Use _cpp_spell_ident_ucns in
3023 !FORSTRING case.
3024 (_cpp_equiv_tokens): Check spellings of identifiers and macro
3025 arguments are identical.
3026 * macro.c (macro_arg_saved_data): New structure.
3027 (paste_tokens): Use original spellings of identifiers from
3028 cpp_spell_token.
3029 (_cpp_save_parameter): Add argument SPELLING. Save both canonical
3030 node and its value.
3031 (parse_params): Update calls to _cpp_save_parameter.
3032 (lex_expansion_token): Save spelling of macro argument tokens.
3033 (_cpp_create_definition): Extract canonical node from saved data.
3034 (cpp_macro_definition): Use UCNs in spelling of macro name. Use
3035 original spellings of macro argument tokens and identifiers.
3036 * traditional.c (scan_parameters): Update call to
3037 _cpp_save_parameter.
3038
701cade1
JM
30392014-11-05 Joseph Myers <joseph@codesourcery.com>
3040
3041 PR preprocessor/9449
3042 * init.c (lang_defaults): Enable extended identifiers for C++ and
3043 C99-based standards.
3044
19a9ba64
AM
30452014-10-22 Alan Modra <amodra@gmail.com>
3046
3047 * symtab.c (ht_create): Use obstack_specify_allocation in place of
3048 _obstack_begin.
3049 * files.c (_cpp_init_files): Likewise.
3050 * init.c (cpp_create_reader): Likewise.
3051 * identifiers.c (_cpp_init_hashtable): Likewise.
3052
3aac0952
MLI
30532014-10-14 Manuel López-Ibáñez <manu@gcc.gnu.org>
3054
3055 * include/line-map.h (linemap_location_from_macro_expansion_p):
3056 const struct line_maps * argument.
3057 (linemap_position_for_line_and_column): const struct line_map *
3058 argument.
3059 * line-map.c (linemap_add_macro_token): Use correct argument name
3060 in comment.
3061 (linemap_position_for_line_and_column): const struct line_map *
3062 argument.
3063 (linemap_macro_map_loc_to_def_point): Fix comment. Make static.
3064 (linemap_location_from_macro_expansion_p): const struct line_maps *
3065 argument.
3066 (linemap_resolve_location): Fix argument names in comment.
3067
0ccaaab0
BS
30682014-10-03 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
3069
3070 * lex.c (search_line_fast): Add new version to be used for Power8
3071 and later targets when Altivec is enabled. Restrict the existing
3072 Altivec version to big-endian systems so that lvsr is not used on
3073 little endian, where it is deprecated. Remove LE-specific code
3074 from the now-BE-only version.
3075
dc257367
BE
30762014-10-02 Bernd Edlinger <bernd.edlinger@hotmail.de>
3077 Jeff Law <law@redhat.com>
3078
3079 * charset.c (convert_no_conversion): Reallocate memory with 25%
3080 headroom.
3081
a15f7cb8
ESR
30822014-10-01 Edward Smith-Rowland <3dw4rd@verizon.net>
3083
3084 Implement SD-6: SG10 Feature Test Recommendations
3085 * internal.h (lexer_state, spec_nodes): Add in__has_include__.
3086 * directives.c: Support __has_include__ builtin.
3087 * expr.c (parse_has_include): New function to parse __has_include__
3088 builtin; (eval_token()): Use it.
3089 * files.c (_cpp_has_header()): New funtion to look for header;
3090 (open_file_failed()): Not an error to not find a header file for
3091 __has_include__.
3092 * identifiers.c (_cpp_init_hashtable()): Add entry for __has_include__.
3093 * pch.c (cpp_read_state): Lookup __has_include__.
3094 * traditional.c (enum ls, _cpp_scan_out_logical_line()): Walk through
3095 __has_include__ statements.
3096
cc811a8a
BE
30972014-09-30 Bernd Edlinger <bernd.edlinger@hotmail.de>
3098
3099 PR preprocessor/58893
3100 * errors.c (cpp_diagnostic): Fix possible out of bounds access.
3101 * files.c (_cpp_stack_include): Initialize src_loc for IT_CMDLINE.
3102
083e891e
MP
31032014-09-24 Marek Polacek <polacek@redhat.com>
3104
3105 PR c/61405
3106 PR c/53874
3107 * include/cpplib.h (enum cpp_ttype): Define CPP_KEYWORD.
3108
d87fc699
JH
31092014-09-17 Jan Hubicka <hubicka@ucw.cz>
3110
3111 * charset.c (conversion): Rename to ...
3112 (cpp_conversion): ... this one; update.
3113 * files.c (file_hash_entry): Rename to ...
3114 (cpp_file_hash_entry): ... this one ; update.
3115
909eb89c
MP
31162014-09-17 Marek Polacek <polacek@redhat.com>
3117
3118 PR c/61854
3119 * init.c (struct lang_flags): Remove cplusplus_comments.
3120 (cpp_set_lang): Likewise.
3121 (post_options): Likewise.
3122 * lex.c (_cpp_lex_direct): Disallow C++ style comments in C90/C94.
3123
1ef33fd4
MLI
31242014-09-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
3125
3126 * include/cpplib.h (struct cpp_options): Declare warn_normalize as
3127 int instead of enum.
3128
2b71f4a4
MLI
31292014-09-04 Manuel López-Ibáñez <manu@gcc.gnu.org>
3130
3131 * macro.c (replace_args): Use cpp_pedwarning, cpp_warning and
3132 CPP_W flags.
3133 * include/cpplib.h: Add CPP_W_C90_C99_COMPAT and CPP_W_PEDANTIC.
3134 * init.c (cpp_create_reader): Do not init to -1 here.
3135 * expr.c (num_binary_op): Use cpp_pedwarning.
3136
81b5d104
MLI
31372014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
3138
3139 * directives.c (check_eol_1): New.
3140 (check_eol_endif_labels): New.
3141 (check_eol): Call check_eol_1.
3142 (do_else,do_endif): Call check_eol_endif_labels.
3143
b753b37b
MLI
31442014-08-29 Manuel López-Ibáñez <manu@gcc.gnu.org>
3145
3146 * macro.c (warn_of_redefinition): Suppress warnings for builtins
3147 that lack the NODE_WARN flag, unless Wbuiltin-macro-redefined.
3148 (_cpp_create_definition): Use Wbuiltin-macro-redefined for
3149 builtins that lack the NODE_WARN flag.
3150 * directives.c (do_undef): Likewise.
3151 * init.c (cpp_init_special_builtins): Do not change flags
3152 depending on Wbuiltin-macro-redefined.
3153
7c05e50c
ESR
31542014-08-28 Edward Smith-Rowland <3dw4rd@verizon.net>
3155
3156 PR cpp/23827 - standard C++ should not have hex float preprocessor
3157 tokens
3158 * libcpp/init.c (lang_flags): Change CXX98 flag for extended numbers
3159 from 1 to 0.
3160 * libcpp/expr.c (cpp_classify_number): Weite error message for improper
3161 use of hex floating literal.
3162
e4276ba5
ESR
31632014-08-23 Edward Smith-Rowland <3dw4rd@verizon.net>
3164
3165 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX1Z, CLK_CXX1Z;
3166 Rename CLK_GNUCXX1Y, CLK_CXX1Y to CLK_GNUCXX14, CLK_CXX14;
3167 * init.c (struct lang_flags lang_defaults): Add column for trigraphs;
3168 Add rows for CLK_GNUCXX1Z, CLK_CXX1Z; (cpp_set_lang): Set trigraphs;
3169 (cpp_init_builtins): Set __cplusplus to 201402L for C++14;
3170 Set __cplusplus to 201500L for C++17.
3171 * expr.c (cpp_classify_number): Change C++1y to C++14 in binary
3172 constants error message.
3173
dd3ff077
MP
31742014-08-20 Marek Polacek <polacek@redhat.com>
3175
3176 * include/cpplib.h (cpp_options): Use signed char.
3177 * lex.c (_cpp_lex_direct): Don't warn in C++ mode.
3178
3f4f5c9a
MP
31792014-08-19 Marek Polacek <polacek@redhat.com>
3180
3181 * lex.c (_cpp_lex_direct): Fix a typo.
3182
177cce46
MP
31832014-08-19 Marek Polacek <polacek@redhat.com>
3184
3185 * charset.c (_cpp_valid_ucn): Warn only if -Wc90-c99-compat.
3186 * lex.c (_cpp_lex_direct): Likewise.
3187 * macro.c (replace_args): Likewise.
3188 (parse_params): Likewise.
3189 * include/cpplib.h (cpp_options): Change cpp_warn_c90_c99_compat
3190 to char.
3191
f3bede71
MP
31922014-08-10 Marek Polacek <polacek@redhat.com>
3193
3194 PR c/51849
3195 * lex.c (_cpp_lex_direct): Warn when -Wc90-c99-compat is in effect.
3196 * charset.c (_cpp_valid_ucn): Likewise.
3197 * include/cpplib.h (cpp_options): Add cpp_warn_c90_c99_compat.
3198 * macro.c (replace_args): Warn when -Wc90-c99-compat is in effect.
3199 (parse_params): Likewise.
3200
61eb99f6
MP
32012014-07-27 Marek Polacek <polacek@redhat.com>
3202
3203 PR c/61861
3204 * macro.c (builtin_macro): Add location parameter. Set
3205 location of builtin macro to the expansion point.
3206 (enter_macro_context): Pass location to builtin_macro.
3207
c468587a
DS
32082014-07-16 Dodji Seketeli <dodji@redhat.com>
3209
3210 Support location tracking for built-in macro tokens
3211 * include/line-map.h (line_maps::builtin_location): New data
3212 member.
3213 (line_map_init): Add a new parameter to initialize the new
3214 line_maps::builtin_location data member.
3215 * line-map.c (linemap_init): Initialize the
3216 line_maps::builtin_location data member.
3217 * macro.c (builtin_macro): Create a macro map and track the token
3218 resulting from the expansion of a built-in macro.
3219
3976796b
ESR
32202014-07-10 Edward Smith-Rowland <3dw4rd@verizon.net>
3221 Jonathan Wakely <jwakely@redhat.com>
3222
c786fca6 3223 PR preprocessor/61389
3976796b
ESR
3224 * macro.c (_cpp_arguments_ok, parse_params, create_iso_definition):
3225 Warning messages mention C++11 in c++ mode and C99 in c mode.
3226 * lex.c (lex_identifier_intern, lex_identifier): Ditto
3227
7aee8646
ESR
32282014-07-09 Edward Smith-Rowland <3dw4rd@verizon.net>
3229
3230 PR c++/58155 - -Wliteral-suffix warns about tokens which are skipped
3231 by preprocessor
3232 * lex.c (lex_raw_string ()): Do not warn about invalid suffix
3233 if skipping. (lex_string ()): Ditto.
3234
98ba7482
ESR
32352014-06-04 Edward Smith-Rowland <3dw4rd@verizon.net>
3236
3237 PR c++/61038
3238 * macro.c (stringify_arg (cpp_reader *, macro_arg *)):
3239 Combine user-defined escape logic with the other string and char logic.
3240
edf6ddf6
RB
32412014-05-26 Richard Biener <rguenther@suse.de>
3242
3243 * configure.ac: Remove long long and __int64 type checks,
3244 add check for uint64_t and fail if that wasn't found.
3245 * include/cpplib.h (cpp_num_part): Use uint64_t.
3246 * config.in: Regenerate.
3247 * configure: Likewise.
3248
28939589
MP
32492014-05-21 Marek Polacek <polacek@redhat.com>
3250
3251 PR c/61212
3252 * files.c (find_file_in_dir): Add parens around &&.
3253
49039169
ESR
32542014-05-20 Edward Smith-Rowland <3dw4rd@verizon.net>
3255
28939589 3256 PR c++/61038
49039169
ESR
3257 * macro.c (stringify_arg (cpp_reader *, macro_arg *)):
3258 Check for user-defined literal strings and user-defined literal chars
3259 to escape necessary characters.
3260
54da09ee
RB
32612014-05-20 Richard Biener <rguenther@suse.de>
3262
3263 * configure.ac: Copy gcc logic of detecting a 64bit type.
3264 Remove HOST_WIDE_INT define.
3265 * include/cpplib.h: typedef cpp_num_part to a 64bit type,
3266 similar to how hwint.h does it.
3267 * config.in: Regenerate.
3268 * configure: Likewise.
3269
eac3e079
JY
32702014-05-09 Joey Ye <joey.ye@arm.com>
3271
3272 * files.c (find_file_in_dir): Always try to shorten for DOS
3273 non-system headers.
3274 * init.c (ENABLE_CANONICAL_SYSTEM_HEADERS): Default enabled for DOS.
3275
f543058d
RB
32762014-05-07 Richard Biener <rguenther@suse.de>
3277
3278 * configure.ac: Always set need_64bit_hwint to yes.
3279 * configure: Regenerated.
3280
d9f069ab
RO
32812014-04-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3282
3283 * lex.c: Remove Solaris 9 reference.
3284
341c653c
WL
32852014-02-24 Walter Lee <walt@tilera.com>
3286
3287 * configure.ac: Change "tilepro" triplet to "tilepro*".
3288 * configure: Regenerate.
3289
179652df
JJ
32902014-02-19 Jakub Jelinek <jakub@redhat.com>
3291
3292 PR preprocessor/58844
3293 * macro.c (enter_macro_context): Only push
3294 macro_real_token_count (macro) tokens rather than
3295 macro->count tokens, regardless of
3296 CPP_OPTION (pfile, track-macro-expansion).
3297
acf601ae
JJ
32982014-02-07 Jakub Jelinek <jakub@redhat.com>
3299
3300 PR preprocessor/56824
3301 * line-map.c (get_combined_adhoc_loc, linemap_get_expansion_line,
3302 linemap_get_expansion_filename, linemap_location_in_system_header_p,
3303 linemap_location_from_macro_expansion_p,
3304 linemap_macro_loc_to_spelling_point, linemap_macro_loc_to_def_point,
3305 linemap_macro_loc_to_exp_point, linemap_expand_location): Fix
3306 formatting.
3307 (linemap_compare_locations): Look through adhoc locations for both
3308 l0 and l1.
3309
7ecc3eb9
DS
33102014-01-23 Dodji Seketeli <dodji@redhat.com>
3311
3312 PR PR preprocessor/58580
3313 * include/line-map.h (linemap_get_file_highest_location): Declare
3314 new function.
3315 * line-map.c (linemap_get_file_highest_location): Define it.
3316
35c3d610
RS
33172014-01-02 Richard Sandiford <rdsandiford@googlemail.com>
3318
3319 Update copyright years
3320
3a4efce7
JM
33212013-12-09 Joseph Myers <joseph@codesourcery.com>
3322
3323 PR preprocessor/55715
3324 * expr.c (num_binary_op): Implement subtraction directly rather
3325 than with negation and falling through into addition case.
3326
aadce585
BS
33272013-11-18 Bill Schmidt <wschmidt@linux.vnet.ibm.com>
3328
3329 * lex.c (search_line_fast): Correct for little endian.
3330
d3f4ff8b
JM
33312013-11-15 Joseph Myers <joseph@codesourcery.com>
3332
3333 * ucnid.tab: Add C11 and C11NOSTART data.
3334 * makeucnid.c (digit): Rename enum value to N99.
3335 (C11, N11, all_languages): New enum values.
3336 (NUM_CODE_POINTS, MAX_CODE_POINT): New macros.
3337 (flags, decomp, combining_value): Use NUM_CODE_POINTS as array
3338 size.
3339 (decomp): Use unsigned int as element type.
3340 (all_decomp): New array.
3341 (read_ucnid): Handle C11 and C11NOSTART. Use MAX_CODE_POINT.
3342 (read_table): Use MAX_CODE_POINT. Store all decompositions in
3343 all_decomp.
3344 (read_derived): Use MAX_CODE_POINT.
3345 (write_table): Use NUM_CODE_POINTS. Print N99, C11 and N11
3346 flags. Print whole array variable declaration rather than just
3347 array contents.
3348 (char_id_valid, write_context_switch): New functions.
3349 (main): Call write_context_switch.
3350 * ucnid.h: Regenerate.
3351 * include/cpplib.h (struct cpp_options): Add c11_identifiers.
3352 * init.c (struct lang_flags): Add c11_identifiers.
3353 (cpp_set_lang): Set c11_identifiers option from selected language.
3354 * internal.h (struct normalize_state): Document "previous" as
3355 previous starter character.
3356 (NORMALIZE_STATE_UPDATE_IDNUM): Take character as argument.
3357 * charset.c (DIG): Rename enum value to N99.
3358 (C11, N11): New enum values.
3359 (struct ucnrange): Give name to struct. Use short for flags and
3360 unsigned int for end of range. Include ucnid.h for whole variable
3361 declaration.
3362 (ucn_valid_in_identifier): Allow for characters up to 0x10FFFF.
3363 Allow for C11 in determining valid characters and valid start
3364 characters. Use check_nfc for non-Hangul context-dependent
3365 checks. Only store starter characters in nst->previous.
3366 (_cpp_valid_ucn): Pass new argument to
3367 NORMALIZE_STATE_UPDATE_IDNUM.
3368 * lex.c (lex_identifier): Pass new argument to
3369 NORMALIZE_STATE_UPDATE_IDNUM. Call NORMALIZE_STATE_UPDATE_IDNUM
3370 after initial non-UCN part of identifier.
3371 (lex_number): Pass new argument to NORMALIZE_STATE_UPDATE_IDNUM.
3372
54848ff8
JM
33732013-11-15 Joseph Myers <joseph@codesourcery.com>
3374
3375 * ucnid.tab: Mark C99 digits as [C99DIG].
3376 * makeucnid.c (read_ucnid): Handle [C99DIG].
3377 (read_table): Don't check for digit characters.
3378 * ucnid.h: Regenerate.
3379
5157b91e
TB
33802013-11-06 Tobias Burnus <burnus@net-b.de>
3381
3382 * macro.c (_cpp_builtin_macro_text): Correct
3383 wording of two warnings.
3384
e8ff5196
TB
33852013-11-05 Tobias Burnus <burnus@net-b.de>
3386
3387 * include/cpplib.h (CPP_W_DATE_TIME): Added.
3388 (cpp_options): Add warn_date_time.
3389 * init.c (cpp_create_reader): Init it.
3390 * macro.c (_cpp_builtin_macro_text): Warn when
3391 __DATE__/__TIME__/__TIMESTAMP__ is used.
3392
7057e645
ESR
33932013-10-31 Edward Smith-Rowland <3dw4rd@verizon.net>
3394
e8ff5196 3395 Implement C++14 digit separators.
7057e645
ESR
3396 * include/cpplib.h (cpp_options): Add digit_separators flag.
3397 * internal.h (DIGIT_SEP(c)): New macro.
3398 * expr.c (cpp_classify_number): Check improper placement of digit sep;
3399 (cpp_interpret_integer): Skip over digit separators.
3400 * init.c (lang_flags): Add digit_separators flag; (lang_defaults): Add
3401 digit separator flags per language; (cpp_set_lang): Set
3402 digit_separators
3403 * lex.c (lex_number): Add digits separator to allowable characters for
3404 C++14.
3405
459260ec
DM
34062013-10-15 David Malcolm <dmalcolm@redhat.com>
3407
3408 * Makefile.in (PICFLAG): New.
3409 (ALL_CFLAGS): Add PICFLAG.
3410 (ALL_CXXFLAGS): Likewise.
3411 * configure.ac: Add --enable-host-shared, setting up new
3412 PICFLAG variable.
3413 * configure: Regenerate.
3414
fd6eea0c
RE
34152013-08-07 Richard Earnshaw <rearnsha@arm.com>
3416
3417 * configure.ac: Set need_64bit_hwint for all arm targets.
3418 * configure: Regenerated.
3419
8cf88735
JJ
34202013-07-20 Jakub Jelinek <jakub@redhat.com>
3421
3422 PR preprocessor/57620
3423 * lex.c (lex_raw_string): Undo phase1 and phase2 transformations
3424 between R" and final " rather than only in between R"del( and )del".
3425
87e356ba
JJ
34262013-07-10 Jakub Jelinek <jakub@redhat.com>
3427
d5e48350
JJ
3428 PR preprocessor/57824
3429 * lex.c (lex_raw_string): Allow reading new-lines if
3430 in_deferred_pragma or if parsing_args and there is still
3431 data in the current buffer.
3432
c26302d5
JJ
3433 * include/cpplib.h (cpp_token_val_index): Change parameter type to
3434 const cpp_token *.
3435 * lex.c (cpp_token_val_index): Likewise.
3436
87e356ba
JJ
3437 PR preprocessor/57757
3438 * lex.c (cpp_avoid_paste): Avoid pasting CPP_{,W,UTF8}STRING
3439 or CPP_STRING{16,32} with CPP_NAME or SPELL_LITERAL token that
3440 starts if a-zA-Z_.
3441
c865f923
ESR
34422013-06-28 Ed Smith-Rowland <3dw4rd@verizon.net>
3443
3444 * lex.c (lex_raw_string(), lex_string()): Constrain suffixes treated
3445 as concatenated literal and macro to just the patterns found in
3446 inttypes.h; (is_macro()): New.
3447
39953c79
DC
34482013-06-24 Dehao Chen <dehao@google.com>
3449
3450 * files.c (_cpp_stack_include): Fix the highest_location when header
3451 file is guarded by #ifndef and is included twice.
3452
01187df0
JJ
34532013-04-28 Jakub Jelinek <jakub@redhat.com>
3454
3455 N3472 binary constants
3456 * include/cpplib.h (struct cpp_options): Fix a typo in user_literals
3457 field comment. Add binary_constants field.
3458 * init.c (struct lang_flags): Add binary_constants field.
3459 (lang_defaults): Add bin_cst column to the table.
3460 (cpp_set_lang): Initialize CPP_OPTION (pfile, binary_constants).
3461 * expr.c (cpp_classify_number): Talk about C++11 instead of C++0x
3462 in diagnostics. Accept binary constants if
3463 CPP_OPTION (pfile, binary_constants) even when pedantic. Adjust
3464 pedwarn message.
3465
61949153
PC
34662013-04-24 Paolo Carlini <paolo.carlini@oracle.com>
3467
3468 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX1Y and CLK_CXX1Y.
3469 * init.c (lang_defaults): Add defaults for the latter.
3470 (cpp_init_builtins): Define __cplusplus as 201300L for the latter.
3471 * lex.c (_cpp_lex_direct): Update.
3472
994a4cc0
SH
34732013-04-03 Sebastian Huber <sebastian.huber@embedded-brains.de>
3474
3475 PR target/56771
3476 * configure.ac: Require 64-bit int for arm*-*-rtems*.
3477 * configure: Regenerate.
3478
28937f11
JJ
34792013-03-06 Jakub Jelinek <jakub@redhat.com>
3480
3481 PR middle-end/56461
3482 * internal.h (struct cpp_buffer): Add to_free field.
3483 (_cpp_pop_file_buffer): Add third argument.
3484 * files.c (_cpp_stack_file): Set buffer->to_free.
3485 (_cpp_pop_file_buffer): Add to_free argument. Free to_free
3486 if non-NULL, and if equal to file->buffer_start, also clear
3487 file->buffer{,_start,_valid}.
3488 * directives.c (_cpp_pop_buffer): Pass buffer->to_free
3489 to _cpp_pop_file_buffer.
3490
3b8af25b
JJ
34912013-03-01 Jakub Jelinek <jakub@redhat.com>
3492
3493 PR middle-end/56461
3494 * files.c (_cpp_save_file_entries): Free result at the end.
3495 * pch.c (cpp_string_free): New function.
3496 (cpp_save_state): Use it in htab_create call.
3497 (cpp_write_pch_deps): Free ss->defs. Destroy ss->definedhash.
3498
1a80db97
JJ
34992013-02-28 Jakub Jelinek <jakub@redhat.com>
3500
15fd8332
JJ
3501 * files.c (_cpp_find_file): If returning early, before storing
3502 something to *hash_slot and *hash_slot is NULL, call htab_clear_slot
3503 on it. Access *hash_slot using void * type rather than
3504 struct file_hash_entry * to avoid aliasing issues.
3505
1a80db97
JJ
3506 * configure.ac: Don't define ENABLE_CHECKING whenever
3507 --enable-checking is seen, instead use similar --enable-checking=yes
3508 vs. --enable-checking=release default as gcc/ subdir has and
3509 define ENABLE_CHECKING if ENABLE_CHECKING is defined in gcc/.
3510 Define ENABLE_VALGRIND_CHECKING if requested.
3511 * lex.c (new_buff): If ENABLE_VALGRIND_CHECKING, put _cpp_buff
3512 struct first in the allocated buffer and result->base after it.
3513 (_cpp_free_buff): If ENABLE_VALGRIND_CHECKING, free buff itself
3514 instead of buff->base.
3515 * config.in: Regenerated.
3516 * configure: Regenerated.
3517
561f7fc7
ESR
35182013-02-13 Ed Smith-Rowland <3dw4rd@verizon.net>
3519
3520 PR c++/55582
61949153 3521 * lex.c (lex_raw_string): Allow string literal with suffix
561f7fc7
ESR
3522 beginning with 's' to be parsed as a C++11 user-defined literal.
3523
500f3ed9
RS
35242013-01-14 Richard Sandiford <rdsandiford@googlemail.com>
3525
3526 Update copyright years.
3527
1582c677
PC
35282013-01-04 Paolo Carlini <paolo.carlini@oracle.com>
3529
3530 PR c++/54526 (again)
3531 * lex.c (_cpp_lex_direct): In C++11 mode, implement 2.5 p3, bullet 2.
3532
8ac16127
MG
35332013-01-03 Marc Glisse <marc.glisse@inria.fr>
3534
3535 PR bootstrap/50177
3536 * line-map.c (get_combined_adhoc_loc): Cast from extern "C" type.
3537 (new_linemap): Likewise.
3538 (linemap_enter_macro): Likewise.
3539
f41e5bd1
JJ
35402012-12-03 Jakub Jelinek <jakub@redhat.com>
3541
3542 PR bootstrap/55380
3543 PR other/54691
3544 * files.c (read_file_guts): Allocate extra 16 bytes instead of
3545 1 byte at the end of buf. Pass size + 16 instead of size
3546 to _cpp_convert_input.
3547 * charset.c (_cpp_convert_input): Reallocate if there aren't
3548 at least 16 bytes beyond to.len in the buffer. Clear 16 bytes
3549 at to.text + to.len.
3550
31962032
SE
35512012-11-21 Steve Ellcey <sellcey@mips.com>
3552
3553 PR pch/55399
3554 * files.c (pch_open_file): Fix check for implicit_preinclude.
3555
5dc99c46
SB
35562012-11-16 Simon Baldwin <simonb@google.com>
3557
3558 * include/cpplib.h (struct cpp_options): Add canonical_system_headers.
3559 * files.c (find_file_in_dir): Call maybe_shorter_path() only if
3560 canonical_system_headers is set.
3561 * init.c (cpp_create_reader): Initialize canonical_system_headers.
3562 * configure.ac: Add new --enable-canonical-system-headers.
3563 * configure: Regenerate.
3564 * config.in: Regenerate.
3565
a4a0016d
ESR
35662012-11-09 Ed Smith-Rowland <3dw4rd@verizon.net>
3567
3568 PR c++/54413
3569 * include/cpplib.h (cpp_interpret_float_suffix): Add cpp_reader* arg.
3570 (cpp_interpret_int_suffix): Add cpp_reader* arg.
3571 * init.c (cpp_create_reader): Iitialize new flags.
3572 * expr.c (interpret_float_suffix): Use new flags.
3573 (cpp_interpret_float_suffix): Add cpp_reader* arg.
3574 (interpret_int_suffix): Use new flags.
3575 (cpp_interpret_int_suffix): Add cpp_reader* arg.
3576 (cpp_classify_number): Adjust calls to interpret_x_suffix.
3577
04ce690f
IB
35782012-10-23 Ian Bolton <ian.bolton@arm.com>
3579 Jim MacArthur <jim.macarthur@arm.com>
3580 Marcus Shawcroft <marcus.shawcroft@arm.com>
3581 Nigel Stephens <nigel.stephens@arm.com>
3582 Ramana Radhakrishnan <ramana.radhakrishnan@arm.com>
3583 Richard Earnshaw <rearnsha@arm.com>
3584 Sofiane Naci <sofiane.naci@arm.com>
3585 Stephen Thomas <stephen.thomas@arm.com>
3586 Tejas Belagod <tejas.belagod@arm.com>
3587 Yufeng Zhang <yufeng.zhang@arm.com>
3588
3589 * configure.ac: Enable AArch64.
3590 * configure: Regenerate.
3591
1efcb8c6
JM
35922012-10-23 Joseph Myers <joseph@codesourcery.com>
3593
3594 * files.c (struct _cpp_file): Add implicit_preinclude.
3595 (pch_open_file): Allow a previously opened implicitly included
3596 file.
3597 (_cpp_find_file): Add implicit_preinclude argument. Free file and
3598 do not call open_file_failed if implicit_preinclude. Store
3599 implicit_preinclude value.
3600 (_cpp_stack_include, _cpp_fake_include, _cpp_compare_file_date):
3601 Update calls to _cpp_find_file.
3602 (_cpp_stack_include): Handle IT_DEFAULT.
3603 (cpp_push_default_include): New.
3604 * include/cpplib.h (cpp_push_default_include): Declare.
3605 * init.c (cpp_read_main_file): Update call to _cpp_find_file.
3606 * internal.h (enum include_type): Add IT_DEFAULT.
3607 (_cpp_find_file): Update prototype.
3608
55e7f907
TB
36092012-10-15 Tobias Burnus <burnus@net-b.de>
3610
3611 * files.c (read_file_guts, _cpp_save_file_entries): Free memory
3612 before returning.
3613 * lex.c (warn_about_normalization): Ditto.
3614 * mkdeps.c (deps_save): Ditto.
3615 * pch.c (cpp_valid_state): Ditto.
3616
f591bd8f
FW
36172012-10-04 Florian Weimer <fweimer@redhat.com>
3618
3619 * directives.c (do_pragma_warning_or_error): New.
3620 (do_pragma_warning): New.
3621 (do_pragma_error): New.
3622 (_cpp_init_internal_pragmas): Register new pragmas.
3623
ec6e0399
DC
36242012-09-25 Dehao Chen <dehao@google.com>
3625
3626 PR middle-end/54704
3627 * line-map.c (location_adhoc_data_hash): Fix the hash function.
3628
52187008
DC
36292012-09-25 Dehao Chen <dehao@google.com>
3630
3631 PR middle-end/54645
3632 * include/line-map.h (location_adhoc_data): Move location_adhoc_data
3633 into GC.
3634 (location_adhoc_data_map): Likewise.
3635 (line_maps): Likewise.
3636 (rebuild_location_adhoc_htab): New Function.
3637 * line-map.c (+rebuild_location_adhoc_htab): new Funcion.
3638 (get_combined_adhoc_loc): Move location_adhoc_data into GC.
3639 (location_adhoc_data_fini): Likewise.
3640 (linemap_init): Likewise.
3641 (location_adhoc_data_init): Remove Function.
3642
5368224f
DC
36432012-09-19 Dehao Chen <dehao@google.com>
3644
3645 * include/line-map.h (MAX_SOURCE_LOCATION): New value.
3646 (location_adhoc_data_fini): New.
3647 (get_combined_adhoc_loc): New.
3648 (get_data_from_adhoc_loc): New.
3649 (get_location_from_adhoc_loc): New.
3650 (location_adhoc_data_map): New.
3651 (COMBINE_LOCATION_DATA): New.
3652 (IS_ADHOC_LOC): New.
3653 (expanded_location): New field.
3654 (line_maps): New field.
3655 * line-map.c (location_adhoc_data): New.
3656 (location_adhoc_data_hash): New.
3657 (location_adhoc_data_eq): New.
3658 (location_adhoc_data_update): New.
3659 (get_combined_adhoc_loc): New.
3660 (get_data_from_adhoc_loc): New.
3661 (get_location_from_adhoc_loc): New.
3662 (location_adhoc_data_init): New.
3663 (location_adhoc_data_fini): New.
3664 (linemap_init): Initialize location_adhoc_data.
3665 (linemap_lookup): Change to use new location.
3666 (linemap_ordinary_map_lookup): Likewise.
3667 (linemap_macro_map_lookup): Likewise.
3668 (linemap_macro_map_loc_to_def_point): Likewise.
3669 (linemap_macro_map_loc_unwind_toward_spel): Likewise.
3670 (linemap_get_expansion_line): Likewise.
3671 (linemap_get_expansion_filename): Likewise.
3672 (linemap_location_in_system_header_p): Likewise.
3673 (linemap_location_from_macro_expansion_p): Likewise.
3674 (linemap_macro_loc_to_spelling_point): Likewise.
3675 (linemap_macro_loc_to_def_point): Likewise.
3676 (linemap_macro_loc_to_exp_point): Likewise.
3677 (linemap_resolve_location): Likewise.
3678 (linemap_unwind_toward_expansion): Likewise.
3679 (linemap_unwind_to_first_non_reserved_loc): Likewise.
3680 (linemap_expand_location): Likewise.
3681 (linemap_dump_location): Likewise.
3682 (linemap_line_start): Likewise.
3683
f3d25c65
DS
36842012-05-25 Dodji Seketeli <dodji@redhat.com>
3685
3686 PR preprocessor/53469
3687 * directives.c (do_pragma): Use the virtual location for the
3688 pragma token, instead of its spelling location.
3689
0823efed
DN
36902012-08-14 Diego Novillo <dnovillo@google.com>
3691
3692 Merge from cxx-conversion branch. Configury.
3693
3694 * Makefile.in: Remove all handlers of ENABLE_BUILD_WITH_CXX.
3695 * configure.ac: Likewise.
3696 * configure: Regenerate.
3697
36982012-08-14 Lawrence Crowl <crowl@google.com>
3699
3700 Merge from cxx-conversion branch. New C++ hash table.
3701
3702 * include/symtab.h (typedef struct ht hash_table): Change the typedef
3703 name to cpp_hash_table. Update all users of the typedef.
3704
c0fd3497
LB
37052012-07-30 Laurynas Biveinis <laurynas.biveinis@gmail.com>
3706
3707 * include/line-map.h (line_map_macro): Use the "atomic" GTY option
3708 for the macro_locations field.
3709
d35d1c0f
UB
37102011-06-19 Uros Bizjak <ubizjak@gmail.com>
3711
3712 * lex.c (search_line_sse42): Use __builtin_ia32_loaddqu and
3713 __builtin_ia32_pcmpestri128 instead of asm.
3714
d86d2119
DA
37152012-06-04 Dimitrios Apostolou <jimis@gmx.net>
3716
3717 * line-map.c (linemap_enter_macro): Don't zero max_column_hint in
3718 every macro. This improves performance by reducing the number of
3719 reallocations when track-macro-expansion is on.
3720
7ca643e1
DS
37212012-06-04 Dodji Seketeli <dodji@redhat.com>
3722
3723 PR preprocessor/53463
3724 * line-map.c (linemap_location_in_system_header_p): For built-in
3725 macro tokens, check the first expansion point location that is not
3726 for a token coming from a built-in macro.
3727
7d9641cc
JM
37282012-05-29 Joseph Myers <joseph@codesourcery.com>
3729
3730 * directives.c: Fix typos.
3731 * include/line-map.h: Fix typos.
3732 * line-map.c: Fix typos.
3733 * macro.c: Fix typos.
3734
53a103d3
DS
37352012-05-25 Dodji Seketeli <dodji@redhat.com>
3736
3737 PR bootstrap/53459
3738 * lex.c (search_line_fast): Avoid unused local typedefs to simulate
3739 a static assertion.
3740
828a7f76
DS
37412012-05-29 Dodji Seketeli <dodji@redhat.com>
3742
3743 PR preprocessor/53229
3744 * internal.h (cpp_reader::set_invocation_location): Remove.
3745 (cpp_reader::about_to_expand_macro_p): New member flag.
3746 * directives.c (do_pragma): Remove Kludge as
3747 pfile->set_invocation_location is no more.
3748 * macro.c (cpp_get_token_1): Do away with the use of
3749 cpp_reader::set_invocation_location. Just collect the macro
3750 expansion point when we are about to expand the top-most macro.
3751 Do not override cpp_reader::about_to_expand_macro_p.
3752 This fixes gcc.dg/cpp/paste12.c by making get_token_no_padding
3753 properly handle locations of expansion points.
3754 (cpp_get_token_with_location): Adjust, as
3755 cpp_reader::set_invocation_location is no more.
3756 (paste_tokens): Take a virtual location parameter for
3757 the LHS of the pasting operator. Use it in diagnostics. Update
3758 comments.
3759 (paste_all_tokens): Tighten the assert. Propagate the location of
3760 the expansion point when no virtual locations are available.
3761 Pass the virtual location to paste_tokens.
3762 (in_macro_expansion_p): New static function.
3763 (enter_macro_context): Set the cpp_reader::about_to_expand_macro_p
3764 flag until we really start expanding the macro.
3765
0b2c4be5
DS
37662012-05-16 Dodji Seketeli <dodji@redhat.com>
3767
3768 PR preprocessor/7263
3769 * include/cpplib.h (cpp_classify_number): Take a location
3770 parameter.
3771 * expr.c (SYNTAX_ERROR_AT, SYNTAX_ERROR2_AT): New diagnostic
3772 macros that take a location parameter.
3773 (cpp_classify_number): Take a (virtual) location parameter. Use
3774 it for diagnostics. Adjust comments.
3775 (eval_token): Take a location parameter. Pass it to
3776 cpp_classify_number and to diagnostic routines.
3777 (_cpp_parse_expr): Use virtual locations of tokens when parsing
3778 expressions. Pass a virtual location to eval_token and to
3779 diagnostic routines.
3780
638d2065
TG
37812012-05-10 Tristan Gingold <gingold@adacore.com>
3782
3783 * expr.c (interpret_float_suffix): Add a guard.
3784
3ad64f53
DS
37852012-05-02 Dodji Seketeli <dodji@redhat.com>
3786
3787 Properly initialize cpp_context in destringize_and_run
3788 * directives.c (destringize_and_run): Properly initialize the new
3789 context.
3790 * macro.c (_cpp_pop_context): Assert that we shouldn't try to pop
3791 the initial base context, which has the same life time as the
3792 current instance of cpp_file.
3793
b193dfa8
MLI
37942012-04-30 Manuel López-Ibáñez <manu@gcc.gnu.org>
3795 Dodji Seketeli <dodji@seketeli.org>
3796
3efc2959 3797 PR c++/52974
b193dfa8
MLI
3798 * libcpp/files.c (maybe_shorter_path): New.
3799 (find_file_in_dir): Use it.
3800
4e65a470
DS
38012012-04-30 Dodji Seketeli <dodji@redhat.com>
3802
51fce2d3
DS
3803 Switch -ftrack-macro-expansion=2 on by default.
3804 * init.c (cpp_create_reader): Switch -ftrack-macro-expansion=2 on
3805 by default. Add comments.
3806
c4ca1a09
DS
3807 Strip "<built-in>" loc from displayed expansion context
3808 * include/line-map.h (linemap_unwind_toward_expansion): Fix typo
3809 in comment.
3810 (linemap_unwind_to_first_non_reserved_loc): Declare new function.
3811 * line-map.c (linemap_unwind_to_first_non_reserved_loc): Define
3812 new function.
3813
3600218c
DS
3814 Fix expansion point loc for macro-like tokens
3815 * macro.c (macro_of_context): New static function.
3816 (_cpp_push_token_context, push_extended_tokens_context): If the
3817 macro argument is NULL, it means we are continuing the expansion
3818 of the current macro, if any. Update comments.
3819 (_cpp_pop_context): Re-enable expansion of the macro only when we
3820 are really out of the context of the current expansion.
3821
0ff2b8a0
DS
3822 Fix token pasting with -ftrack-macro-expansion
3823 * macro.c (paste_all_tokens): Put the token resulting from pasting
3824 into an extended token context with -ftrack-macro-location is in
3825 effect.
3826
4e65a470
DS
3827 Fix cpp_sys_macro_p with -ftrack-macro-expansion
3828 * macro.c (cpp_sys_macro_p): Support -ftrack-macro-expansion.
3829
112448b4
DS
38302012-04-29 Dodji Seketeli <dodji@redhat.com>
3831
3832 * lex.c (lex_raw_string): Change C++ style comments into C style
3833 comments.
19a9ba64 3834 (lex_string): Likewise.
112448b4 3835
7f5f5f98
OW
38362012-04-27 Ollie Wild <aaw@google.com>
3837
3838 * include/cpplib.h (struct cpp_options): Add new field,
3839 warn_literal_suffix.
3840 (CPP_W_LITERAL_SUFFIX): New enum.
3841 * init.c (cpp_create_reader): Default initialization of
3842 warn_literal_suffix.
3843 * lex.c (lex_raw_string): Treat user-defined literals which don't
3844 begin with '_' as separate tokens and produce a warning.
3845 (lex_string): Ditto.
3846
1d72e96f
MLI
38472012-04-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
3848
3849 * line-map.c (linemap_resolve_location): Synchronize comments with
3850 those in line-map.h.
3851 * include/line-map.h (linemap_resolve_location): Fix spelling in
3852 comment.
3853
e75b54a2
RE
38542012-03-22 Richard Earnshaw <rearnsha@arm.com>
3855
3856 * lex.c (search_line_fast): Provide Neon-optimized version for ARM.
3857
7888f266
RO
38582012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
3859
3860 * lex.c: Remove Solaris 8 reference.
3861
dd552284
WL
38622012-02-14 Walter Lee <walt@tilera.com>
3863
3864 * configure.ac: Require 64-bit hwint for tilegx and tilepro.
3865 * configure: Regenerate.
3866
2c5cbc31
RG
38672012-01-09 Richard Guenther <rguenther@suse.de>
3868
3869 * macro.c (_cpp_builtin_macro_text): Remove unused variable map.
3870
b492b686
GF
38712012-01-09 Gary Funck <gary@intrepid.com>
3872
3873 PR preprocessor/33919
3874 * files.c (_cpp_get_file_name): New. Implement file name
3875 access function.
3876 * internal.h (_cpp_get_file_name): New prototype.
3877 * macro.c (_cpp_builtin_macro_text): Call _cpp_get_file_name()
3878 to use pfile->main_file in lieu of traversing INCLUDED_FROM chain.
3879
75291c57
OH
38802012-01-03 Olivier Hainque <hainque@adacore.com>
3881
3882 * system.h: Prior to #define, #undef fopen and freopen unconditionally.
3883
48b0b196
JM
38842011-12-20 Joseph Myers <joseph@codesourcery.com>
3885
3886 * include/cpplib.h (CLK_GNUC1X): Change to CLK_GNUC11.
3887 (CLK_STDC1X): Change to CLK_STDC11.
3888 * init.c (lang_defaults): Update comments.
3889 (cpp_init_builtins): Update language tests. Use 201112L for C11
3890 __STDC_VERSION__.
3891
4a5e00ca
AS
38922011-12-20 Andreas Schwab <schwab@linux-m68k.org>
3893
3894 * configure: Regenerate.
3895
095af58f
AS
38962011-12-19 Andreas Schwab <schwab@linux-m68k.org>
3897
3898 * configure: Regenerate.
3899
b0c084b7
JJ
39002011-12-07 Jakub Jelinek <jakub@redhat.com>
3901
3902 PR bootstrap/50237
3903 * internal.h (_cpp_init_lexer): New prototype.
3904 * init.c (init_library): Call it.
3905 * lex.c (init_vectorized_lexer): Remove constructor attribute,
3906 add inline keyword.
3907 (HAVE_init_vectorized_lexer): Define.
3908 (_cpp_init_lexer): New function.
3909
9b554be9
DS
39102011-12-03 Dodji Seketeli <dodji@redhat.com>
3911
3912 * macro.c (tokens_buff_remove_last_token)
3913 (tokens_buff_put_token_to): Add an 'inline' function specifier to
3914 the prototype.
3915
8dcf72a8
DN
39162011-11-22 Diego Novillo <dnovillo@google.com>
3917
3918 * include/line-map.h (linemap_dump): Declare.
3919 (line_table_dump): Declare.
3920 * line-map.c (linemap_dump): New.
3921 (line_table_dump): New.
3922
7e74ce3f
ESR
39232011-11-21 Ed Smith-Rowland <3dw4rd@verizon.net>
3924
3925 PR c++/50958
3926 * expr.c (cpp_userdef_char_remove_type): Fix typo.
3927
e9411247
MM
39282011-11-03 Michael Matz <matz@suse.de>
3929
3930 PR bootstrap/50857
3931 * configure.ac: Check for -fno-exceptions -fno-rtti.
3932 * configure: Regenerate.
3933 * Makefile.in (NOEXCEPTION_FLAGS): New flag.
3934 (ALL_CXXFLAGS): Use it.
3935
0c1dace3
PC
39362011-11-02 Paolo Carlini <paolo.carlini@oracle.com>
3937
3938 * internal.h (uxstrdup, ustrchr): Return const unsigned char *.
3939
25339f10
JM
39402011-11-02 Jason Merrill <jason@redhat.com>
3941
3942 PR c++/50810
3943 * configure.ac: Add -Wno-narrowing to warning options.
3944
97e3ad20
JM
39452011-10-31 Jason Merrill <jason@redhat.com>
3946
1fb80b0c
JM
3947 PR libstdc++/1773
3948 * init.c (cpp_init_builtins): Set __cplusplus for C++11.
3949
97e3ad20
JM
3950 PR c++/50920
3951 * include/cpplib.h (enum c_lang): Rename CLK_CXX0X to CLK_CXX11,
3952 CLK_GNUCXX0X to CLK_GNUCXX11.
3953
3ce4f9e4
ESR
39542011-10-26 Ed Smith-Rowland <3dw4rd@verizon.net>
3955
3956 Implement C++11 user-defined literals.
3957 * expr.c: (cpp_interpret_float_suffix, cpp_interpret_int_suffix,
3958 cpp_userdef_string_remove_type, cpp_userdef_string_add_type,
3959 cpp_userdef_char_remove_type, cpp_userdef_char_add_type,
3960 cpp_userdef_string_p, cpp_userdef_char_p, cpp_get_userdef_suffix): New.
3961 (cpp_classify_number): Classify unrecognized tokens as user-defined
3962 literals.
3963 * include/cpplib.h: Add new tokens for user-defined literals.
3964 * init.c: Add new preprocessor flag (cxx11).
3965 * lex.c: (lex_string, lex_raw_string): Handle user-defined literals
3966 including concatenation and promotion with suffixes.
3967
3bb0c8db
DS
39682011-10-24 Dodji Seketeli <dodji@redhat.com>
3969
3970 * line-map.c (linemap_macro_map_lookup): Fix logic.
3971
84756fd4
DS
39722011-10-24 Dodji Seketeli <dodji@redhat.com>
3973
3974 * include/line-map.h (linemap_expand_location): Take a line table
3975 parameter. Update comment.
3976 (linemap_resolve_location): Update comment.
3977 (linemap_expand_location_full): Remove.
3978 * line-map.c (linemap_resolve_location): Handle reserved
3979 locations; return a NULL map in those cases.
3980 (linemap_expand_location): If location is reserved, return a
3981 zeroed expanded location. Update comment. Take a line table to
3982 assert that the function takes non-virtual locations only.
3983 (linemap_expand_location_full): remove.
3984 (linemap_dump_location): Handle the fact that
3985 linemap_resolve_location can return NULL line maps when the
3986 location resolves to a reserved location.
3987
3988 * line-map.c (linemap_macro_map_lookup): Fix logic.
3989
ad2305ad
DS
39902011-10-22 Dodji Seketeli <dodji@redhat.com>
3991
3992 PR bootstrap/50778
3993 * include/internal.h (_cpp_remaining_tokens_num_in_context): Take the
3994 context to act upon.
3995 * lex.c (_cpp_remaining_tokens_num_in_context): Likewise. Update
3996 comment.
3997 (cpp_token_from_context_at): Likewise.
3998 (cpp_peek_token): Use the context to peek tokens from.
3999
cbbcf655
DS
40002011-10-20 Dodji Seketeli <dodji@redhat.com>
4001
4002 PR bootstrap/50801
4003 * lex.c (_cpp_remaining_tokens_num_in_context): Fix computation of
4004 number of tokens.
4005
d17687f6
DS
40062011-10-18 Dodji Seketeli <dodji@redhat.com>
4007
4008 PR bootstrap/50760
4009 * include/line-map.h (struct linemap_stats): Change the type of
19a9ba64 4010 the members from size_t to long.
d17687f6 4011 * macro.c (macro_arg_token_iter_init): Unconditionally initialize
19a9ba64 4012 iter->location_ptr.
d17687f6 4013
411f92de
DS
40142011-10-17 Dodji Seketeli <dodji@redhat.com>
4015
4016 * line-map.c (linemap_macro_map_loc_to_exp_point): Avoid setting a
19a9ba64
AM
4017 variable without using it if ENABLE_CHECKING is not defined. Mark
4018 the LOCATION parameter as being unused.
411f92de 4019
b9bd6f74
TT
40202011-10-15 Tom Tromey <tromey@redhat.com>
4021 Dodji Seketeli <dodji@redhat.com>
4022
4023 * include/line-map.h (struct line_maps::alloced_size_for_request):
4024 New member.
4025 * line-map.c (new_linemap): Use set->alloced_size_for_request to
4026 get the actual allocated size of line maps.
4027
64a1a422
TT
40282011-10-15 Tom Tromey <tromey@redhat.com>
4029 Dodji Seketeli <dodji@redhat.com>
4030
4031 * line-map.h (struct linemap_stats): Declare new struct.
4032 (linemap_get_statistics): Declare ...
4033 * line-map.c (linemap_get_statistics): ... new function.
4034 * macro.c (num_expanded_macros_counter, num_macro_tokens_counter):
4035 Declare new counters.
4036 (enter_macro_context, replace_args): Update
4037 num_macro_tokens_counter.
4038 (cpp_get_token_1): Update num_expanded_macros_counter.
4039
847e697a
TT
40402011-10-15 Tom Tromey <tromey@redhat.com>
4041 Dodji Seketeli <dodji@redhat.com>
4042
4043 * include/cpplib.h (struct cpp_options)<debug>: New struct member.
4044 * include/line-map.h (linemap_dump_location): Declare ...
4045 * line-map.c (linemap_dump_location): ... new function.
4046
92582b75
TT
40472011-10-15 Tom Tromey <tromey@redhat.com>
4048 Dodji Seketeli <dodji@redhat.com>
4049
4050 * include/cpplib.h (struct cpp_options)<track_macro_expansion>:
4051 New option.
4052 * internal.h (struct macro_context): New struct.
4053 (enum context_tokens_kind): New enum.
4054 (struct cpp_context)<tokens_kind>: New member of type enum
4055 context_tokens_kind.
4056 (struct cpp_context)<macro>: Remove this. Replace it with an enum
4057 of macro and macro_context.
4058 (struct cpp_context)<direct_p>: Remove.
4059 (_cpp_remaining_tokens_num_in_context): Declare new function.
4060 * directives.c (destringize_and_run): Adjust.
4061 * lex.c (_cpp_remaining_tokens_num_in_context)
4062 (_cpp_token_from_context_at): Define new functions
4063 (cpp_peek_token): Use them.
4064 * init.c (cpp_create_reader): Initialize the base context to zero.
4065 (_cpp_token_from_context_at): Define new static function.
4066 (cpp_peek_token): Use new _cpp_remaining_tokens_num_in_context and
4067 _cpp_token_from_context_at.
4068 * macro.c (struct macro_arg)<virt_locs, expanded_virt_locs>: New
4069 members.
4070 (enum macro_arg_token_kind): New enum.
4071 (struct macro_arg_token_iter): New struct.
4072 (maybe_adjust_loc_for_trad_cpp, push_extended_tokens_context)
4073 (alloc_expanded_arg_mem, ensure_expanded_arg_room)
4074 (delete_macro_args, set_arg_token, get_arg_token_location)
4075 (arg_token_ptr_at, macro_arg_token_iter_init)
4076 (macro_arg_token_iter_get_token)
4077 (macro_arg_token_iter_get_location, macro_arg_token_iter_forward)
4078 (expanded_token_index, tokens_buff_new, tokens_buff_count)
4079 (tokens_buff_last_token_ptr, tokens_buff_put_token_to)
4080 (tokens_buff_add_token, tokens_buff_remove_last_token)
4081 (reached_end_of_context, consume_next_token_from_context): New
4082 static functions.
4083 (cpp_get_token_1): New static function. Split and extended from
4084 cpp_get_token. Use reached_end_of_context and
4085 consume_next_token_from_context. Unify its return point. Move
4086 the location tweaking from cpp_get_token_with_location in here.
4087 (cpp_get_token): Use cpp_get_token_1
4088 (stringify_arg): Use the new arg_token_at.
4089 (paste_all_tokens): Support tokens coming from extended tokens
4090 contexts.
4091 (collect_args): Return the number of collected arguments, by
4092 parameter. Store virtual locations of tokens that constitute the
4093 collected args.
4094 (funlike_invocation_p): Return the number of collected arguments,
4095 by parameter.
4096 (enter_macro_context): Add a parameter for macro expansion point.
4097 Pass it to replace_args and to the "used" cpp callback. Get the
4098 number of function-like macro arguments from funlike_invocation_p,
4099 pass it to the new delete_macro_args to free the memory used by
4100 macro args. When -ftrack-macro-expansion is in effect, for macros
4101 that have no arguments, create a macro map for the macro expansion
4102 and use it to allocate proper virtual locations for tokens
4103 resulting from the expansion. Push an extended tokens context
4104 containing the tokens resulting from macro expansion and their
4105 virtual locations.
4106 (replace_args): Rename the different variables named 'count' into
4107 variables with more meaningful names. Create a macro map;
4108 allocate virtual locations of tokens resulting from this
4109 expansion. Use macro_arg_token_iter to iterate over tokens of a
4110 given macro. Handle the case of the argument of
4111 -ftrack-macro-expansion being < 2. Don't free macro arguments
4112 memory resulting from expand_arg here, as these are freed by the
4113 caller of replace_arg using delete_macro_args now. Push extended
4114 token context.
4115 (next_context, push_ptoken_context, _cpp_push_token_context)
4116 (_cpp_push_text_context): Properly initialize the context.
4117 (expand_arg): Use the new alloc_expanded_arg_mem,
4118 push_extended_tokens_context, cpp_get_token_1, and set_arg_token.
4119 (_cpp_pop_context): Really free the memory held by the context.
4120 Handle freeing memory used by extended tokens contexts.
4121 (cpp_get_token_with_location): Use cpp_get_token_1.
4122 (cpp_sys_macro_p): Adjust.
4123 (_cpp_backup_tokens): Support the new kinds of token contexts.
4124 * traditional.c (recursive_macro): Adjust.
4125
46427374
TT
41262011-10-15 Tom Tromey <tromey@redhat>
4127 Dodji Seketeli <dodji@redhat.com>
4128
4129 * include/line-map.h (enum lc_reason)<LC_ENTER_MACRO>: New enum
4130 member.
4131 (MAX_SOURCE_LOCATION): New constant.
4132 (struct line_map_ordinary, struct line_map_macro): New structs.
19a9ba64 4133 (struct line_map): Turn this into a union of the two above. Add
46427374
TT
4134 comments.
4135 (struct maps_info): New struct.
4136 (struct line_maps)<info_ordinary, info_macro>: Two new fields.
4137 These now carry the map information that was previously scattered
4138 in struct line_maps.
4139 (struct map_info::allocated): Fix comment.
4140 (MAP_START_LOCATION, ORDINARY_MAP_FILE_NAME)
4141 (ORDINARY_MAP_STARTING_LINE_NUMBER)
4142 (ORDINARY_MAP_INCLUDER_FILE_INDEX)
4143 (ORDINARY_MAP_IN_SYSTEM_HEADER_P)
4144 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS, MACRO_MAP_MACRO)
4145 (MACRO_MAP_NUM_MACRO_TOKENS MACRO_MAP_LOCATIONS)
4146 (MACRO_MAP_EXPANSION_POINT_LOCATION)
4147 (LOCATION_POSSIBLY_IN_MACRO_MAP_P, LINEMAPS_MAP_INFO)
4148 (LINEMAPS_MAPS, LINEMAPS_ALLOCATE, LINEMAPS_USED, LINEMAPS_CACHE)
4149 (LINEMAPS_LAST_MAP, LINEMAPS_LAST_ALLOCATED_MAP)
4150 (LINEMAPS_ORDINARY_MAPS, LINEMAPS_ORDINARY_ALLOCATED)
4151 (LINEMAPS_ORDINARY_USED, LINEMAPS_ORDINARY_CACHE)
4152 (LINEMAPS_LAST_ORDINARY_MAP, LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP)
4153 (LINEMAPS_MACRO_MAPS, LINEMAPS_MACRO_ALLOCATED)
4154 (LINEMAPS_MACRO_USED, LINEMAPS_MACRO_CACHE)
4155 (LINEMAPS_LAST_MACRO_MAP, LINEMAPS_LAST_ALLOCATED_MACRO_MAP)
4156 (LINEMAPS_MAP_AT, LINEMAPS_ORDINARY_MAP_AT)
4157 (LINEMAPS_MACRO_MAP_AT): New accessors for ordinary and macro map
4158 information.
4159 (linemap_check_ordinary, linemap_assert)
4160 (linemap_location_before_p): New macros.
4161 (linemap_position_for_line_and_column)
4162 (linemap_tracks_macro_expansion_locs_p, linemap_add_macro_token)
4163 (linemap_macro_expansion_map_p)
4164 (linemap_macro_map_loc_to_def_point)
4165 (linemap_macro_map_loc_unwind_once)
4166 (linemap_macro_map_loc_to_exp_point, linemap_step_out_once)
4167 (linemap_get_source_line linemap_get_source_column)
4168 (linemap_map_get_macro_name, linemap_get_file_path)
4169 (linemap_location_in_system_header_p)
4170 (linemap_location_from_macro_expansion_p): Declare new functions.
4171 (SOURCE_LINE, SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION)
4172 (LINEMAP_FILE, LINEMAP_LINE, LINEMAP_SYSP): Assert that this
4173 accessors act on ordinary maps only.
4174 (INCLUDED_FROM): Return NULL for main files; use the new
4175 accessors.
4176 (LINEMAP_POSITION_FOR_COLUMN): Use the new accessors.
4177 (struct expanded_location): Move here from gcc/input.h
4178 (linemap_resolve_location, linemap_expand_location)
4179 (linemap_expand_location_full): Declare new functions.
4180 * line-map.c: Include cpplib.h, internal.h
4181 (linemap_enter_macro, linemap_add_macro_token)
4182 (linemap_get_expansion_line, linemap_get_expansion_filename): New
4183 functions that are private to libcpp.
4184 (linemap_assert): New macro.
4185 (linemap_macro_loc_to_exp_point, linemap_macro_loc_to_exp_point)
4186 (linemap_macro_loc_unwind, linemap_macro_map_loc_to_def_point)
4187 (linemap_macro_map_loc_unwind_toward_spelling)
4188 (linemap_macro_map_loc_to_exp_point)
4189 (first_map_in_common_1, first_map_in_common): New static
4190 functions.
4191 (new_linemap): Define new static functions. Extracted and
4192 enhanced from ...
4193 (linemap_add): ... here. Use linemap_assert in lieu of abort
4194 previously.
4195 (linemap_tracks_macro_expansion_locs_p)
4196 (linemap_add_macro_token, linemap_macro_expansion_map_p)
4197 (linemap_check_ordinary, linemap_macro_map_loc_to_exp_point)
4198 (linemap_macro_map_loc_to_def_point)
4199 (linemap_macro_map_loc_unwind_once)
4200 (linemap_step_out_once, linemap_map_get_index)
4201 (linemap_get_source_line,linemap_get_source_column)
4202 (linemap_get_file_path, linemap_map_get_macro_name)
4203 (linemap_location_in_system_header_p)
4204 (linemap_location_originated_from_system_header_p)
4205 (linemap_location_from_macro_expansion_p)
4206 (linemap_tracks_macro_expansion_locs_p)
4207 (linemap_resolve_location, linemap_expand_location)
4208 (linemap_expand_location_full)
4209 (linemap_tracks_macro_expansion_locs_p)
4210 (linemap_position_for_line_and_column, linemap_compare_locations):
4211 Define new public functions.
4212 (linemap_init): Initialize ordinary and macro maps information in
4213 the map set.
4214 (linemap_check_files_exited): Use the new accessors.
4215 (linemap_free): Remove this dead code.
4216 (linemap_line_start): Assert this uses an ordinary map. Adjust to
4217 use the new ordinary map accessors and data structures. Don't
4218 overflow past the lowest possible macro token's location.
4219 (linemap_position_for_column): Assert the ordinary maps of the map
4220 set are really ordinary. Use ordinary map accessors.
4221 (linemap_lookup): Keep the same logic but generalize to allow
4222 lookup of both ordinary and macro maps. Do not crash when called
4223 with an empty line table.
4224 * directives-only.c (_cpp_preprocess_dir_only): Adjust to use the
4225 new API of line-map.h.
4226 * directives.c (start_directive, do_line, do_linemarker)
4227 (do_linemarker): Likewise.
4228 * files.c (_cpp_find_file, _cpp_stack_include, open_file_failed)
4229 (make_cpp_dir, cpp_make_system_header): Likewise.
4230 * init.c (cpp_read_main_file): Likewise.
4231 * internal.h (CPP_INCREMENT_LINE): Likewise.
4232 (linemap_enter_macro, linemap_add_macro_token)
4233 (linemap_get_expansion_line, linemap_get_expansion_filename): New
4234 functions private to libcpp.
4235 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment)
4236 (skip_line_comment, skip_whitespace, lex_raw_string)
4237 (_cpp_lex_direct): Likewise.
4238 * macro.c (_cpp_builtin_macro_text): Likewise.
4239 (_cpp_aligned_alloc): Initialize the new name member of the macro.
4240 * traditional.c (copy_comment, _cpp_scan_out_logical_line):
4241 Likewise.
4242 * errors.c (cpp_diagnostic): Adjust to new linemap API.
4243
892a371f
DS
42442011-08-28 Dodji Seketeli <dodji@redhat.com>
4245
4246 * line-map.c (linemap_add): Assert that reason must not be
4247 LC_RENAME when called for the first time on a "main input file".
4248
e3dfef44
GC
42492011-08-22 Gabriel Charette <gchare@google.com>
4250
4251 * init.c (cpp_create_reader): Inititalize forced_token_location_p.
4252 * internal.h (struct cpp_reader): Add field forced_token_location_p.
4253 * lex.c (_cpp_lex_direct): Use forced_token_location_p.
4254 (cpp_force_token_locations): New.
4255 (cpp_stop_forcing_token_locations): New.
4256
32fe396e
RO
42572011-08-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4258
4259 PR libstdc++/1773
4260 * init.c (cpp_init_builtins): Define __cplusplus 19971L.
4261
7c1ffff9
JM
42622011-08-18 Joseph Myers <joseph@codesourcery.com>
4263
4264 * include/cpplib.h (struct cpp_options): Fix typo.
4265
a48e3dd1
JM
42662011-08-18 Joseph Myers <joseph@codesourcery.com>
4267
4268 * include/cpplib.h (struct cpp_options): Add rliterals.
4269 * init.c (struct lang_flags, lang_defaults): Add rliterals.
4270 (cpp_set_lang): Set rliterals option.
4271 (cpp_init_builtins): Define __STDC_UTF_16__ and __STDC_UTF_32__.
4272 * lex.c (_cpp_lex_direct): Only accept raw strings if rliterals.
4273
3f6ced10
GC
42742011-08-15 Gabriel Charette <gchare@google.com>
4275
4276 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Remove.
4277 Update all users to use linemap_position_for_column instead.
4278
0681d04c
GC
42792011-07-28 Gabriel Charette <gchare@google.com>
4280
4281 * include/line-map.h (struct line_maps):
4282 Remove unused field last_listed. Update all users.
4283
5e9627ca
L
42842011-07-28 H.J. Lu <hongjiu.lu@intel.com>
4285
4286 * configure.ac: Set need_64bit_hwint to yes for x86 targets.
4287 * configure: Regenerated.
4288
a024b70f
RO
42892011-07-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4290
4291 * system.h [__cplusplus]: Wrap C function declarations in extern "C".
4292
5b6d595b
RO
42932011-07-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4294 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4295
4296 PR bootstrap/49794
4297 * configure.ac: Test AM_ICONV with CXX.
4298 * configure: Regenerate.
4299 * system.h (HAVE_DESIGNATED_INITIALIZERS): Never define for C++.
4300
d0a9fbe1
DS
43012011-07-15 Dodji Seketeli <dodji@redhat.com>
4302
4303 * directives.c (struct if_stack): Use source_location as type
4304 here.
4305 * include/cpplib.h (struct cpp_callbacks)<include, define, undef,
4306 indent, def_pragma, used_define, used_undef>: Properly use
4307 source_location as parameter type, rather than unsigned int.
4308
fbdd5d87
RO
43092011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4310
4311 PR target/39150
4312 * configure.ac (host_wide_int): Handle x86_64-*-solaris2.1[0-9]
4313 like i[34567]86-*-solaris2.1[0-9]*.
4314 * configure: Regenerate.
4315
8787a05a
JM
43162011-06-16 Jason Merrill <jason@redhat.com>
4317
4318 PR c++/45399
4319 * lex.c (lex_raw_string): Don't check for embedded NUL.
4320
38fbfaf6
DS
43212011-06-06 Dodji Seketeli <dodji@redhat.com>
4322
4323 PR preprocessor/48532
4324 * directives.c (do_pragma): Don't forget the invocation location
4325 when parsing the pragma name of a namespaced pragma directive.
4326
fc0993ac
JT
43272011-05-29 John Tytgat <John.Tytgat@aaug.net>
4328
4329 * files.c (read_file_guts): Add test on non-zero value of S_ISREG.
4330
ef230b38
UB
43312011-05-22 Uros Bizjak <ubizjak@gmail.com>
4332
4333 PR target/49104
4334 * lex.c (init_vectorized_lexer): Do not set "minimum" when __3dNOW_A__
4335 is defined. Check bit_MMXEXT and bit_CMOV to use search_line_mmx.
4336
e5b0dad8
JK
43372011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
4338
4339 * system.h (ENUM_BITFIELD): Remove.
4340
6cfae070
JJ
43412011-04-24 Jakub Jelinek <jakub@redhat.com>
4342
4343 PR preprocessor/48740
4344 * lex.c (lex_raw_string): When raw string ends with
4345 ??) followed by raw prefix and ", ensure it is preprocessed
4346 with ??) rather than ??].
4347
04695783
JM
43482011-04-20 Jim Meyering <meyering@redhat.com>
4349
4350 * files.c (destroy_cpp_file): Remove useless if-before-free.
4351 * init.c (cpp_destroy): Likewise.
4352 * macro.c (replace_args): Likewise.
4353 * pch.c (cpp_valid_state): Likewise.
4354
4489800d
KT
43552011-03-25 Kai Tietz <ktietz@redhat.com>
4356
4357 * files.c (file_hash_eq): Use filename_cmp
4358 instead of strcmp.
4359 (nonexistent_file_hash_eq): Likewise.
4360 (remap_filename): Likewise.
4361 Handle absolute DOS-path,
4362 (append_file_to_dir): Check for IS_DIR_SEPARATOR
4363 instead of slash.
4364 (read_name_map): Likewise.
4365 * linemap.c (linemap_add): Use filename_cmp
4366 instead of strcmp.
4367 * mkdeps.c (apply_vpath): Use filename_ncmp
4368 instead of strncmp.
4369 (deps_restore): Use filename_cmp instead of
4370 strcmp.
4371 * init.c (read_original_directory): Use
4372 IS_DIR_SEPARATOR instead of checking for slash.
4373
f3c33d9d
MM
43742011-03-21 Michael Meissner <meissner@linux.vnet.ibm.com>
4375
4376 PR preprocessor/48192
4377 * directives.c (do_ifdef): Do not consider conditional macros as
4378 being defined.
4379 (do_ifndef): Ditto.
4380 * expr.c (parse_defined): Ditto.
4381
01956319
RH
43822011-03-18 Richard Henderson <rth@redhat.com>
4383
4384 PR bootstrap/45381
4385 * lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5.
4386
c5a62c6f 43872011-11-04 Eric Botcazou <ebotcazou@adacore.com>
19a9ba64 4388 Jakub Jelinek <jakub@redhat.com>
c5a62c6f
EB
4389
4390 PR preprocessor/39213
4391 * directives.c (end_directive): Call _cpp_remove_overlay for deferred
4392 pragmas as well in traditional mode.
4393
0e1a989c
ILT
43942010-11-17 Ian Lance Taylor <iant@google.com>
4395
4396 PR bootstrap/45538
4397 * configure.ac: Use AC_USE_SYSTEM_EXTENSIONS. Remove switch of
4398 AC_LANG based on ENABLE_BUILD_WITH_CXX.
4399
651a20b5
KT
44002010-11-16 Kai Tietz <kai.tietz@onevision.com>
4401
4402 PR preprocessor/17349
4403 * lex.c (save_comment): Handle in argument passing c++
4404 comments special.
4405
480767a9
ILT
44062010-11-02 Ian Lance Taylor <iant@google.com>
4407
4408 * configure.ac: Use AC_SYS_LARGEFILE.
4409 * configure: Rebuild.
4410 * config.in: Rebuild.
4411
078419c9 44122010-10-19 Basile Starynkevitch <basile@starynkevitch.net>
480767a9 4413
078419c9
BS
4414 * line-map.h (source_location): Remove obsolete comment
4415 mentioning location_s.
4416
d6874138
KT
44172010-09-29 Kai Tietz <kai.tietz@onevision.com>
4418
4419 PR preprocessor/45362
4420 * directives.c (cpp_pop_definition): Make static.
4421 (do_pragma_push_macro): Reworked to store text
4422 definition.
4423 (do_pragma_pop_macro): Add free text definition.
4424 (cpp_push_definition): Removed.
4425 * include/cpplib.h (cpp_push_definition): Removed.
4426 (cpp_pop_definition): Likewise.
4427 * internal.h (def_pragma_macro): Remove member 'value'
4428 and add new members 'definition', 'line',
4429 'syshdr', 'sued' and 'is_undef'.
4430 * pch.c (_cpp_restore_pushed_macros): Rework to work
4431 on text definition and store additional macro flags.
4432 (_cpp_save_pushed_macros): Likewise.
4433
e3339d0f
JM
44342010-09-29 Joseph Myers <joseph@codesourcery.com>
4435
4436 * include/cpplib.h (cpp_options): Rename warn_deprecated,
4437 warn_traditional, warn_long_long and pedantic.
4438 * directives.c (directive_diagnostics, _cpp_handle_directive):
4439 Update names of cpp_options members.
4440 * expr.c (cpp_classify_number, eval_token): Update names of
4441 cpp_options members.
4442 * init.c (cpp_create_reader, post_options): Update names of
4443 cpp_options members.
4444 * internal.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Update names of
4445 cpp_options members.
4446 * macro.c (parse_params): Update names of cpp_options members.
4447
128465e6
ILT
44482010-09-15 Ian Lance Taylor <iant@google.com>
4449
4450 * init.c: Fix type name in comment.
4451
a69d2520
JJ
44522010-08-31 Jakub Jelinek <jakub@redhat.com>
4453
4454 PR preprocessor/45457
4455 * expr.c (parse_defined): Call pfile->cb.user_builtin_macro hook if
4456 needed.
4457 * directives.c (do_ifdef, do_ifndef): Likewise.
4458
707bcb7a
RO
44592010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4460
4461 * system.h [HAVE_INTTYPES_H]: Include inttypes.h.
4462
6f173e52
RH
44632010-08-24 Richard Henderson <rth@redhat.com>
4464
4465 PR bootstrap/45376
4466 * configure.ac (HAVE_SSE4): New check.
4467 * configure, config.in: Rebuild.
4468 * lex.c (search_line_sse42): Omit if !HAVE_SSE4.
4469
789d73cb
RO
44702010-08-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
4471
4472 * lex.c [__sun__ && __svr4__]: Disable init_vectorized_lexer
4473 etc. on Solaris 2/x86.
4474
246a2fcb
RH
44752010-08-21 Richard Henderson <rth@redhat.com>
4476 Andi Kleen <ak@linux.intel.com>
4477 David S. Miller <davem@davemloft.net>
4478
4479 * configure.ac (AC_C_BIGENDIAN, AC_TYPE_UINTPTR_T): New tests.
4480 (ssize_t): Check via AC_TYPE_SSIZE_T instead of AC_CHECK_TYPE.
4481 (ptrdiff_t): Check via AC_CHECK_TYPE.
4482 * config.in, configure: Rebuild.
4483 * system.h: Include stdint.h, if available.
4484 * lex.c (WORDS_BIGENDIAN): Provide default.
4485 (acc_char_mask_misalign, acc_char_replicate, acc_char_cmp,
4486 acc_char_index, search_line_acc_char, repl_chars, search_line_mmx,
4487 search_line_sse2, search_line_sse42, init_vectorized_lexer,
4488 search_line_fast): New.
4489 (_cpp_clean_line): Use search_line_fast. Restructure the fast
4490 loop to make it clear when we're leaving the loop. Stay in the
4491 fast loop for non-trigraph '?'.
4492
8e680db5
JJ
44932010-06-11 Jakub Jelinek <jakub@redhat.com>
4494
4495 * include/cpplib.h (struct cpp_callbacks): Add user_builtin_macro
4496 callback.
4497 (enum cpp_builtin_type): Add BT_FIRST_USER and BT_LAST_USER.
4498 (cpp_macro_definition): Remove const qual from second argument.
4499 * macro.c (enter_macro_context): Call user_builtin_macro callback for
4500 NODE_BUILTIN !NODE_USED macros.
4501 (warn_of_redefinition): Likewise. Remove const qual from second
4502 argument.
4503 (cpp_macro_definition): Likewise.
4504 * pch.c (write_macdef, save_macros): Call user_builtin_macro callback
4505 for NODE_BUILTIN !NODE_USED macros.
4506
1cb42611
JM
45072010-06-10 Joseph Myers <joseph@codesourcery.com>
4508
4509 * include/cpplib.h (struct cpp_options): Remove show_column.
4510 * init.c (cpp_create_reader, post_options): Don't set show_column.
4511
ff5dfc48
JR
45122010-06-09 Joern Rennecke <joern.rennecke@embecosm.com>
4513
4514 PR bootstrap/44432
4515 * configure.ac: Before using ZW_PROG_COMPILER_DEPENDENCIES for C++,
4516 check that C++ compiler works.
4517 * configure: Regenerate.
4518
a9429e29
LB
45192010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
4520
4521 * include/symtab.h (ht_identifier_ptr): New.
4522
c3f247f4
RW
45232010-06-03 Joern Rennecke <joern.rennecke@embecosm.com>
4524 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4525
4526 PR bootstrap/42798
4527 * configure.ac: Check for declaration of 'basename(char *)'.
4528 * configure: Regenerate.
4529 * config.in: Regenerate.
4530
2778d766
JM
45312010-04-25 Joseph Myers <joseph@codesourcery.com>
4532
4533 * include/cpplib.h (enum c_lang): Add CLK_GNUC1X and CLK_STDC1X.
4534 * init.c (lang_defaults): Add entries for new language variants.
4535 (cpp_init_builtins): Define __STDC_VERSION__ to 201000L for C1X
4536 variants.
4537
d8a12e84
MLI
45382010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
4539
4540 PR cpp/43195
4541 * files.c (report_missing_guard): Test for #pragma once.
4542
87cf0651
SB
45432010-04-07 Simon Baldwin <simonb@google.com>
4544
4545 * directives.c (do_diagnostic): Add warning reason argument,
4546 call appropriate error reporting function for code.
4547 (directive_diagnostics): Call specific warning functions with
4548 warning reason where appropriate.
4549 (do_error, do_warning, do_pragma_dependency): Add warning reason
4550 argument to do_diagnostic calls.
4551 * macro.c (_cpp_warn_if_unused_macro, enter_macro_context,
4552 _cpp_create_definition): Call specific warning functions with
4553 warning reason where appropriate.
4554 * Makefile.in: Add new diagnostic functions to gettext translations.
4555 * include/cpplib.h (struct cpp_callbacks): Add warning reason code
4556 to error callback.
4557 (CPP_DL_WARNING, CPP_DL_WARNING_SYSHDR, CPP_DL_PEDWARN, CPP_DL_ERROR,
4558 CPP_DL_ICE, CPP_DL_NOTE, CPP_DL_FATAL): Replace macros with enums.
4559 (CPP_W_NONE, CPP_W_DEPRECATED, CPP_W_COMMENTS,
4560 CPP_W_MISSING_INCLUDE_DIRS, CPP_W_TRIGRAPHS, CPP_W_MULTICHAR,
4561 CPP_W_TRADITIONAL, CPP_W_LONG_LONG, CPP_W_ENDIF_LABELS,
4562 CPP_W_NUM_SIGN_CHANGE, CPP_W_VARIADIC_MACROS,
4563 CPP_W_BUILTIN_MACRO_REDEFINED, CPP_W_DOLLARS, CPP_W_UNDEF,
4564 CPP_W_UNUSED_MACROS, CPP_W_CXX_OPERATOR_NAMES, CPP_W_NORMALIZE,
4565 CPP_W_INVALID_PCH, CPP_W_WARNING_DIRECTIVE): New enums for cpp
4566 warning reason codes.
4567 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
4568 cpp_warning_with_line, cpp_pedwarning_with_line,
4569 cpp_warning_with_line_syshdr): New specific error reporting functions.
4570 * pch.c (cpp_valid_state): Call specific warning functions with
4571 warning reason where appropriate.
4572 * errors.c (cpp_diagnostic, cpp_diagnostic_with_line): New central
4573 diagnostic handlers.
4574 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
4575 cpp_warning_with_line, cpp_pedwarning_with_line,
4576 cpp_warning_with_line_syshdr): New specific error reporting functions.
4577 * expr.c (cpp_classify_number, eval_token, num_unary_op): Call
4578 specific warning functions with warning reason where appropriate.
4579 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment,
4580 warn_about_normalization, lex_identifier_intern, lex_identifier,
4581 _cpp_lex_direct): Ditto.
4582 * charset.c (_cpp_valid_ucn, convert_hex, convert_escape,
4583 narrow_str_to_charconst): Ditto.
4584
d947ada0
JJ
45852010-04-06 Jakub Jelinek <jakub@redhat.com>
4586
4587 PR preprocessor/43642
4588 * lex.c (lex_raw_string): Change type of TYPE variable to
4589 unsigned char.
4590
4d9e8446
RW
45912010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4592
4593 * aclocal.m4: Regenerate.
4594
52150625
JM
45952010-03-29 Jason Merrill <jason@redhat.com>
4596
00a81b8b
JM
4597 More N3077 raw string changes
4598 * charset.c (cpp_interpret_string): Don't transform UCNs in raw
4599 strings.
4600 * lex.c (bufring_append): Split out from...
4601 (lex_raw_string): ...here. Undo trigraph and line splicing
4602 transformations. Do process line notes in multi-line literals.
4603 (_cpp_process_line_notes): Ignore notes that were already handled.
4604
52150625
JM
4605 Some raw string changes from N3077
4606 * charset.c (cpp_interpret_string): Change inner delimiters to ().
4607 * lex.c (lex_raw_string): Likewise. Also disallow '\' in delimiter.
4608
709d7160
JJ
46092010-02-11 Jakub Jelinek <jakub@redhat.com>
4610
4611 * init.c (read_original_filename): Don't call read_original_directory
4612 if _cpp_handle_directive returns 0.
4613
dadab4fd
JM
46142010-01-01 Joseph Myers <joseph@codesourcery.com>
4615
4616 PR preprocessor/41947
4617 * expr.c (cpp_classify_number): Give error for hexadecimal
4618 floating-point constant with no digits before or after point.
4619
3de8a540
AC
46202009-11-20 Arnaud Charlet <charlet@adacore.com>
4621
4622 * macro.c (enter_macro_context): Call cb.used callback if defined.
4623 * directives.c (do_idef, do_ifndef): Ditto.
4624 * include/cpplib.h (struct cpp_callbacks): Add used callback.
4625
17e7cb85
KT
46262009-11-11 Kai Tietz <kai.tietz@onevision.com>
4627
4628 * directives.c (do_pragma_push_macro): New pragma handler.
4629 (do_pragma_pop_macro): Likewise.
4630 (_cpp_init_internal_pragmas): Add push_macro and
4631 pop_macro handler to internal pragmas.
4632 (lex_macro_node_from_str): Removed.
4633 (cpp_push_definition): Replace lex_macro_node_from_str
4634 by _cpp_lex_identifier.
4635 (cpp_pop_definition): Likewise.
4636 * internal.h (_cpp_lex_identifier): New prototype.
4637 (def_pragma_macro): New structure.
4638 (cpp_reader): New member pushed_macros.
4639 * lex.c (_cpp_lex_identifier): New function.
4640 (lex_identifier_intern): New function.
4641 * init.c (cpp_create_reader): Initialize pushed_macros
4642 member.
4643 (cpp_destroy): Free elements in pushed_macros member.
4644 * pch.c (_cpp_save_pushed_macros): New function.
4645 (_cpp_restore_pushed_macros): Likewise.
4646 (_cpp_restore_pushed_macros): Use _cpp_save_pushed_macros.
4647 (cpp_read_state): Use _cpp_restore_pushed_macros.
4648
2c6e3f55
JJ
46492009-10-19 Jakub Jelinek <jakub@redhat.com>
4650
4651 * charset.c (cpp_init_iconv): Initialize utf8_cset_desc.
4652 (_cpp_destroy_iconv): Destroy utf8_cset_desc, char16_cset_desc
4653 and char32_cset_desc.
4654 (converter_for_type): Handle CPP_UTF8STRING.
4655 (cpp_interpret_string): Handle CPP_UTF8STRING and raw-strings.
4656 * directives.c (get__Pragma_string): Handle CPP_UTF8STRING.
4657 (parse_include): Reject raw strings.
4658 * include/cpplib.h (CPP_UTF8STRING): New token type.
4659 * internal.h (struct cpp_reader): Add utf8_cset_desc field.
4660 * lex.c (lex_raw_string): New function.
4661 (lex_string): Handle u8 string literals, call lex_raw_string
4662 for raw string literals.
4663 (_cpp_lex_direct): Call lex_string even for u8" and {,u,U,L,u8}R"
4664 sequences.
4665 * macro.c (stringify_arg): Handle CPP_UTF8STRING.
4666
96c169e1
JJ
46672009-10-14 Jakub Jelinek <jakub@redhat.com>
4668
4669 PR preprocessor/41543
4670 * include/line-map.h (RESERVED_LOCATION_COUNT): Define.
4671 * line-map.c (linemap_init): Initialize highest_location and
4672 highest_line to RESERVED_LOCATION_COUNT-1 instead of 0.
4673
30c99a9e
JM
46742009-10-09 Jason Merrill <jason@redhat.com>
4675
4676 * charset.c (_cpp_valid_ucn): Update C++0x restrictions.
4677
2214382c
NV
46782009-10-09 Neil Vachharajani <nvachhar@google.com>
4679
4680 * directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and
4681 sccs.
4682
e02222d2
LR
46832009-09-23 Loren J. Rittle <ljrittle@acm.org>
4684
4685 * configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h.
4686 * configure: Rebuilt.
4687
9a8a2b7a
RG
46882009-09-22 Richard Guenther <rguenther@suse.de>
4689
4690 PR pch/38987
4691 * files.c (pch_open_file): Disallow non-toplevel PCH inclusion.
4692
74dc6a11
CD
46932009-09-18 Chris Demetriou <cgd@google.com>
4694
4695 PR preprocessor/28435:
4696 * include/cpplib.h (struct cpp_options): Add new member
4697 deps.need_preprocessor_output.
4698 * files.c (open_file_failed): If preprocessor output is needed
4699 always report an error.
4700
933608b7
KT
47012009-09-13 Kai Tietz <kai.tietz@onevision.com>
4702
4703 * configure.ac: Set for i?86-w64-mingw*
4704 need_64bit_hwint to yes.
4705 * configure: Regenerated.
4706
86373e7e
JM
47072009-09-10 Jason Merrill <jason@redhat.com>
4708
4709 * directives.c (cpp_define): constify.
4710
fd2ab214
ILT
47112009-09-02 Ian Lance Taylor <iant@google.com>
4712
4713 * macro.c (stringify_arg): Escape CPP_WCHAR tokens.
4714
df58e648
RW
47152009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4716
4717 * configure.ac (AC_PREREQ): Bump to 2.64.
4718
5213506e
RW
47192009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
4720
4721 * aclocal.m4: Regenerate.
4722 * config.in: Regenerate.
4723 * configure: Regenerate.
4724
709a22df
TT
47252009-08-17 Tom Tromey <tromey@redhat.com>
4726
4727 PR preprocessor/41067:
4728 * charset.c (convert_escape): Add missing ":" to error text.
4729
0c539b47
DR
47302009-07-27 Douglas B Rupp <rupp@gnat.com>
4731
4732 * include/cpplib.h (INO_T_CPP): New macro.
4733 (struct cpp_dir): Use it.
4734
2b69c841
JQ
47352009-07-20 Jerry Quinn <jlquinn@optonline.net>
4736
4737 PR regression/40800
4738 * configure.ac: Use = instead of == for testing
4739 ENABLE_BUILD_WITH_CXX.
4740 * configure: Rebuild.
4741
f1bf410c
JQ
47422009-07-17 Jerry Quinn <jlquinn@optonline.net>
4743
4744 * directives.c (do_linemarker, do_line): Use CPP_STRING for
4745 ignored enum value.
4746 * files.c (find_file_in_dir): Add cast from void* to char*.
4747 * symtab.c (ht_lookup_with_hash): Add cast from void* to char*.
4748 * Makefile.in: (WARN_CFLAGS): Use general and C-specific
4749 warnings.
4750 (CXX, CXXFLAGS, WARN_CXXFLAGS, ALL_CXXFLAGS,
4751 ENABLE_BUILD_WITH_CXX, CCDEPMODE, CXXDEPMODE, COMPILER,
4752 COMPILER_FLAGS): New.
4753 (DEPMODE): Set from CCDEPMODE or CXXDEPMODE.
4754 (COMPILE.base): Use COMPILER instead of CC. Use COMPILER_FLAGS
4755 instead of ALL_CFLAGS.
4756 * configure.ac: Invoke AC_PROG_CXX. Separate C-specific warnings
4757 from other warnings. Add -Wc++-compat to C-specific warnings.
4758 Check for --enable-build-with-cxx. Set and substitute
4759 ENABLE_BUILD_WITH_CXX. Invoke ZW_PROG_COMPILER_DEPENDENCIES
4760 according to ENABLE_BUILD_WITH_CXX. Invoke AC_LANG before
4761 AC_CHECK_HEADERS.
4762 * configure: Rebuild.
4763 * include/cpp-id-data.h: Remove extern "C".
4764 * include/line-map.h: Likewise.
4765 * include/mkdeps.h: Likewise.
4766 * include/symtab.h: Likewise.
4767 * internal.h: Likewise.
4768
a28fbdba
MLI
47692009-06-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4770
4771 * directives.c (parse_include): Add location argument. Update all
4772 calls.
4773 (parse_answer): Likewise.
4774 (do_include_common): Error with exact location.
4775 (parse_assertion): Likewise.
4776
b506a5a2
MLI
47772009-06-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
4778
4779 * expr.c (num_div_op): Take explicit location.
4780
7d8847a4
ILT
47812009-06-17 Ian Lance Taylor <iant@google.com>
4782
4783 * include/cpplib.h (progname): Don't declare.
4784
3d8b2a98
ILT
47852009-06-12 Ian Lance Taylor <iant@google.com>
4786
4787 * include/cpplib.h (struct cpp_options): Add
4788 warn_cxx_operator_names field.
4789 (NODE_WARN_OPERATOR): Define.
4790 (struct cpp_hashnode): Increase flags field to 10 bits, decrease
4791 type to 6 bits.
4792 * init.c (mark_named_operators): Add flags parameter.
4793 (cpp_post_options): Pick flags value to pass to
4794 mark_named_operators.
4795 * lex.c (lex_identifier): If NODE_WARN_OPERATOR is set, warn that
4796 identifier is an operator name in C++.
4797
e74fe492
AH
47982009-06-01 Aldy Hernandez <aldyh@redhat.com>
4799
4800 * include/line-map.h (LAST_SOURCE_COLUMN): New.
4801
4851089f
ILT
48022009-06-01 Ian Lance Taylor <iant@google.com>
4803
4804 * include/cpp-id-data.h: Add extern "C".
4805 * include/line-map.h: Likewise.
4806 * include/mkdeps.h: Likewise.
4807 * include/symtab.h: Likewise.
4808 * internal.h: Likewise.
4809
7e5487a2
ILT
48102009-05-15 Ian Lance Taylor <iant@google.com>
4811
4812 * include/cpplib.h (enum cpp_builtin_type): Rename from enum
4813 builtin_type. Change all uses.
4814
00b0c19b
MLI
48152009-05-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4816
4817 PR cpp/36674
4818 * directives (do_linemarker): Compensate for the increment in
4819 location that occurs when we reach the end of line.
4820 * files (_cpp_stack_include): Mention _cpp_find_file in the
4821 comment.
4822
9a0c6187
JM
48232009-05-10 Joseph Myers <joseph@codesourcery.com>
4824
4825 * include/cpplib.h (enum cpp_token_fld_kind): Add
4826 CPP_TOKEN_FLD_TOKEN_NO.
4827 (struct cpp_macro_arg, struct cpp_identifier): Define.
4828 (union cpp_token_u): Use struct cpp_identifier for identifiers.
4829 Use struct cpp_macro_arg for macro arguments. Add token_no for
4830 CPP_PASTE token numbers.
4831 * directives.c (_cpp_handle_directive, lex_macro_node, do_pragma,
4832 do_pragma_poison, parse_assertion): Use val.node.node in place of
4833 val.node.
4834 * expr.c (parse_defined, eval_token): Use val.node.node in place
4835 of val.node.
4836 * lex.c (cpp_ideq, _cpp_lex_direct, cpp_token_len,
4837 cpp_spell_token, cpp_output_token, _cpp_equiv_tokens,
4838 cpp_token_val_index): Use val.macro_arg.arg_no or val.token_no in
4839 place of val.arg_no. Use val.node.node in place of val.node.
4840 * macro.c (replace_args, cpp_get_token, parse_params,
4841 lex_expansion_token, create_iso_definition, cpp_macro_definition):
4842 Use val.macro_arg.arg_no or val.token_no in place of val.arg_no.
4843 Use val.node.node in place of val.node.
4844
9e322bc1
JM
48452009-05-03 Joseph Myers <joseph@codesourcery.com>
4846
4847 * charset.c (one_utf8_to_cppchar): Correct mask used for 5-byte
4848 UTF-8 sequences.
4849
f88d0772
JM
48502009-04-25 Joseph Myers <joseph@codesourcery.com>
4851
4852 PR preprocessor/39559
4853 * expr.c (cpp_interpret_integer): Use a pedwarn for decimal
4854 constants larger than intmax_t in C99 mode.
4855
d1b38208
TG
48562009-04-21 Taras Glek <tglek@mozilla.com>
4857
4858 * include/cpp-id-data.h: Update GTY annotations to new syntax.
4859 * include/cpplib.h: Likewise.
4860 * include/line-map.h: Likewise.
4861 * include/symtab.h: Likewise.
4862
cfc93532
MLI
48632009-04-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4864
4865 PR c++/14875
4866 * lex.c (cpp_type2name): Take a flags parameter. Call
4867 cpp_named_operator2name for named operators and cpp_digraph2name
4868 for digraphs.
4869 (cpp_digraph2name): New.
4870 (cpp_spell_token): Use it.
4871 (cpp_output_token): Likewise.
4872 * include/cpplib.h (cpp_type2name): Update declaration.
4873 * init.c (cpp_named_operator2name): New.
4874 * internal.h (cpp_named_operator2name): Declare.
4875
9c650d90
MLI
48762009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
4877
4878 PR c++/13358
4879 * init.c (cpp_create_reader): Wlong_long is disabled by default.
4880 * expr.c (cpp_classify_number): Give different messages for C and
4881 C++ front-ends.
4882
aa508502
JM
48832009-04-19 Joseph Myers <joseph@codesourcery.com>
4884
4885 PR preprocessor/20078
4886 * include/cpp-id-data.h (struct cpp_macro): Add extra_tokens
4887 field.
4888 * include/cpplib.h (SP_DIGRAPH, SP_PREV_WHITE): Define.
4889 (struct cpp_token): Change flags to unsigned short.
4890 * lex.c (_cpp_lex_direct): Initialize arg_no for CPP_PASTE tokens.
4891 (_cpp_equiv_tokens): Check arg_no for CPP_PASTE tokens.
4892 (cpp_token_val_index): Return CPP_TOKEN_FLD_ARG_NO for CPP_PASTE
4893 tokens.
4894 * macro.c (macro_real_token_count): New.
4895 (enter_macro_context, replace_args): Use macro_real_token_count.
4896 (create_iso_definition): Record whitespace surrounding and digraph
4897 spelling of # and ## tokens using SP_PREV_WHITE and SP_DIGRAPH.
4898 Set extra_tokens and save CPP_PASTE tokens with arg_no set for
4899 multiple consecutive ## tokens.
4900 (_cpp_create_definition): Initialize extra_tokens.
4901 (cpp_macro_definition): Use macro_real_token_count.
4902
61cc8223
JM
49032009-04-18 Joseph Myers <joseph@codesourcery.com>
4904
4905 * directives.c (parse_include): Pass true to check_eol.
4906
c7f9c0b9
JM
49072009-04-18 Joseph Myers <joseph@codesourcery.com>
4908
4909 PR preprocessor/39646
4910 * include/line-map.h (enum lc_reason): Add LC_RENAME_VERBATIM.
4911 * line-map.c (linemap_add): Handle LC_RENAME_VERBATIM.
4912 * directives.c (do_line, do_linemarker): Use LC_RENAME_VERBATIM in
4913 place of LC_RENAME.
4914
a5cb563b
JM
49152009-04-18 Joseph Myers <joseph@codesourcery.com>
4916
4917 PR preprocessor/39647
4918 * directives.c (check_eol): Add parameter expand.
4919 (do_undef, parse_include, do_line, do_linemarker, do_ident,
4920 do_pragma_once, do_pragma_system_header, do_ifdef, do_ifndef,
4921 do_else, do_endif, do_assert, do_unassert): All callers changed.
4922 Pass true from do_line, false elsewhere.
4923
18f41a1b
JM
49242009-04-12 Joseph Myers <joseph@codesourcery.com>
4925
4926 PR preprocessor/31869
4927 * macro.c (stringify_arg): Handle NULL source token in padding
4928 token where previous padding token did not have source token with
4929 preceding whitespace.
4930
748086b7
JJ
49312009-04-09 Jakub Jelinek <jakub@redhat.com>
4932
4933 * Makefile.in: Change copyright header to refer to version
4934 3 of the GNU General Public License and to point readers at the
4935 COPYING3 file and the FSF's license web page.
4936 * charset.c: Likewise.
4937 * directives-only.c: Likewise.
4938 * directives.c: Likewise.
4939 * errors.c: Likewise.
4940 * expr.c: Likewise.
4941 * files.c: Likewise.
4942 * identifiers.c: Likewise.
4943 * include/cpp-id-data.h: Likewise.
4944 * include/cpplib.h: Likewise.
4945 * include/line-map.h: Likewise.
4946 * include/mkdeps.h: Likewise.
4947 * include/symtab.h: Likewise.
4948 * init.c: Likewise.
4949 * internal.h: Likewise.
4950 * lex.c: Likewise.
4951 * line-map.c: Likewise.
4952 * macro.c: Likewise.
4953 * makeucnid.c: Likewise.
4954 * mkdeps.c: Likewise.
4955 * pch.c: Likewise.
4956 * symtab.c: Likewise.
4957 * system.h: Likewise.
4958 * traditional.c: Likewise.
4959 * ucnid.tab: Likewise.
4960 * ucnid.h: Regenerate.
4961
eec49116
JJ
49622009-04-01 Janis Johnson <janis187@us.ibm.com>
4963
839a3b8a
JJ
4964 PR c/39027
4965 * include/cpplib.h (CPP_N_DEFAULT): Define.
4966 * expr.c (interpret_float_suffix): Recognize d or D for double,
4967 return new value for default.
4968 (cpp_classify_number): Issue pedwarn for use of d or D in suffix.
4969
eec49116
JJ
4970 PR c/33466
4971 * expr.c (interpret_float_suffix): Reject invalid suffix that uses
4972 letters from decimal float and fixed-point suffixes.
4973
47580d22
JM
49742009-03-31 Joseph Myers <joseph@codesourcery.com>
4975
4976 PR preprocessor/15638
4977 * files.c (_cpp_find_file): Call open_file_failed after diagnosing
4978 invalid PCH.
4979 (open_file_failed): Make error for missing file fatal.
4980 * include/cpplib.h (CPP_DL_FATAL): Define.
4981
5a2df0fa
SV
49822009-03-30 Sergiy Vyshnevetskiy <serg@vostok.net>
4983
4984 PR preprocessor/31932:
4985 * internal.h: Don't mention HAVE_ICONV_H.
4986 * configure, config.in: Rebuild.
4987 * configure.ac: Don't check for iconv.h.
4988
c1a8a3c6
TT
49892009-03-30 Tom Tromey <tromey@redhat.com>
4990
4991 PR preprocessor/39512:
4992 * line-map.c (linemap_init): Initialize 'reallocator' field.
4993
a37a7b8a
JJ
49942009-03-30 Jakub Jelinek <jakub@redhat.com>
4995
4996 PR target/39558
4997 * macro.c (cpp_get_token): If macro_to_expand returns NULL
4998 and used some tokens, add CPP_PADDING before next token.
4999
148e4216
JM
50002009-03-29 Joseph Myers <joseph@codesourcery.com>
5001
5002 PR preprocessor/34695
5003 * makedepend.c: Remove.
5004 * Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
5005 (all, clean, TAGS_SOURCES, include): Remove makedepend handling.
5006 * directives.c (cpp_errors): Remove.
5007 * errors.c (print_location, _cpp_begin_message, v_message):
5008 Remove.
5009 (cpp_error, cpp_error_with_line): Always use error callback.
5010 (cpp_error, cpp_error_with_line, cpp_errno): Return bool.
5011 * include/cpplib.h (cpp_options): Remove pedantic_errors,
5012 inhibit_warnings, warn_system_headers, inhibit_errors,
5013 warnings_are_errors, client_diagnostic.
5014 (cpp_callbacks): Add extra arguments to error callback; make it
5015 return bool.
5016 (cpp_finish): Return void.
5017 (cpp_destroy): Remove inaccurate comment about return value.
5018 (cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
5019 (CPP_DL_NOTE): Define.
5020 * include/line-map.h (linemap_print_containing_files): Remove.
5021 * init.c (cpp_finish): Do not check for or return number of
5022 errors.
5023 * internal.h (cpp_reader): Remove errors field.
5024 * line-map.c (linemap_print_containing_files): Remove.
5025 * macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
5026 about previous definition. Only emit it if previous diagnostic
5027 was emitted.
5028
f1450211
JM
50292009-03-28 Joseph Myers <joseph@codesourcery.com>
5030
5031 * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
5032 mkinstalldirs.
5033
8f5929e1
JJ
50342009-03-18 Jakub Jelinek <jakub@redhat.com>
5035
5036 * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
5037
4bb09c26
JM
50382009-02-21 Joseph Myers <joseph@codesourcery.com>
5039
5040 * lex.c (lex_string): Return a CPP_LESS token for missing '>' in a
5041 header name.
5042 (_cpp_lex_direct): Handle this.
5043
68c9ab45
RG
50442009-02-15 Richard Guenther <rguenther@suse.de>
5045
5046 Revert last change.
5047
601b3e1a
RG
50482009-02-13 Richard Guenther <rguenther@suse.de>
5049
5050 * configure.ac: Enable LFS.
5051 * configure: Re-generate.
5052 * config.in: Likewise.
5053
fc0cd180
BE
50542009-01-05 Ben Elliston <bje@au.ibm.com>
5055
5056 * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
5057 (.po.pox): Likewise.
5058 (po/$(PACKAGE).pot): Likewise.
5059
db89a3be
AO
50602008-12-10 Alexandre Oliva <aoliva@redhat.com>
5061
5062 PR target/37033
5063 * pch.c (cpp_valid_state): Improve message for poisoned symbols.
5064 Allow for differences in __GCC_HAVE_DWARF2_CFI_ASM.
5065
cc955282
JM
50662008-11-29 Joseph Myers <joseph@codesourcery.com>
5067
5068 * lex.c (cpp_token_len): Use 6 as default length.
5069
47960aaf
MLI
50702008-10-31 Manuel López-Ibáñez <manu@gcc.gnu.org>
5071
5072 * expr.c (struct op): Add location.
5073 (_cpp_parse_expr): Propagate locations throught the stack
5074 of expressions.
5075 (reduce): Likewise.
5076 (check_promotion): Use explicit location in errors.
5077
631d0d36
MG
50782008-10-05 Matthew Gingell <gingell@adacore.com>
5079 Arnaud Charlet <charlet@adacore.com>
5080
5081 * include/cpplib.h (cpp_comments, cpp_comment_table): New structs.
5082 (cpp_get_comments): New function.
5083 * internal.h (struct cpp_reader): Add comments field.
5084 * init.c (cpp_destroy): Free comments.
5085 * lex.c (store_comment, cpp_get_comments): New functions.
5086 (comments): New struct.
5087 (save_comment): Store comments in comments struct.
5088
c047ce93
SB
50892008-09-18 Simon Baldwin <simonb@google.com>
5090
5091 * include/cpplib.h (struct cpp_options): Add new boolean flag
5092 warn_builtin_macro_redefined.
5093 * init.c (cpp_create_reader): Initialize warn_builtin_macro_redefined.
5094 * (struct builtin_operator): Split out from previous struct builtin,
5095 enhance extra const correctness.
5096 * (struct builtin_macro): Split out from previous struct builtin, add
5097 new always_warn_if_redefined flag, enhance const correctness.
5098 * (mark_named_operators): Use struct builtin_operator.
5099 * (cpp_init_special_builtins): Use struct builtin_macro, add NODE_WARN
5100 to builtins selectively.
5101 * macro.c (warn_of_redefinition): Return false if a builtin macro
5102 is not flagged with NODE_WARN.
5103
affa55c6
JJ
51042008-07-31 Jakub Jelinek <jakub@redhat.com>
5105
5106 PR preprocessor/36649
5107 * files.c (struct report_missing_guard_data): New type.
5108 (report_missing_guard): Put paths into an array instead of printing
5109 them right away. Return 1 rather than 0.
5110 (report_missing_guard_cmp): New function.
5111 (_cpp_report_missing_guards): Sort and print paths gathered by
5112 report_missing_guard callback.
5113
3b8f20a1
MLI
51142008-07-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5115
5116 PR 28079
5117 * directives.c (strtolinenum): Handle overflow.
5118 (do_line): Give a warning if line number overflowed.
5119 (do_linemarker): Update call to strtolinenum.
5120
1bb64668
MLI
51212008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
5122
5123 * include/line-map.h (linenum_type): New typedef.
5124 (struct line_map): Use it.
5125 (SOURCE_LINE): Second arguments is a LOCATION not a LINE.
5126 (SOURCE_COLUMN): Likewise.
5127 * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store
5128 source_location values in a variable of type linenum_type.
5129 * directives.c (struct if_stack): Use linenum_type.
5130 (strtoul_for_line): Rename as strtolinenum.
5131 (do_line): Use linenum_type.
5132 (do_linemarker): Use linenum_type and strtolinenum.
5133 (_cpp_do_file_change): Use linenum_t.
5134 * line-map.c (linemap_add): Likewise.
5135 (linemap_line_start): Likewise.
5136 * traditional.c (struct fun_macro): 'line' is a source_location.
5137 * errors.c (print_location): Use linenum_type.
5138 * directives-only.c (_cpp_preprocess_dir_only): Likewise.
5139 * internal.h (CPP_INCREMENT_LINE): Likewise.
5140 * lex.c (_cpp_skip_block_comment): Use source_location.
19a9ba64 5141
5950c3c9
BE
51422008-07-14 Ben Elliston <bje@au.ibm.com>
5143
5144 * include/cpplib.h (NODE_CONDITIONAL): New.
5145 (struct cpp_callbacks): New macro_to_expand field.
5146 (struct cpp_hashnode): Adjust size of flags and type fields.
5147 (cpp_peek_token): Prototype.
5148 * lex.c (cpp_peek_token): New function.
5149 (_cpp_temp_token): Protect pre-existing lookaheads.
5150 * macro.c (cpp_get_token): Expand any conditional macros.
5151 (_cpp_backup_tokens_direct): New.
5152 (_cpp_backup_tokens): Call _cpp_backup_tokens_direct.
5153 (warn_of_redefinition): Silently allow redefined conditional
5154 macros.
5155 (_cpp_create_definition): Remove the conditional flag when a user
5156 defines one of the conditional macros.
5157 * internal.h (_cpp_backup_tokens_direct): New prototype.
5158
e85edc9e
AH
51592008-06-13 Andrew Haley <aph@redhat.com>
5160
5161 PR preprocessor/33305
5162 * macro.c (replace_args): Print a warning for empty macro
5163 arguments in C89 and C++.
5164
18c04407
RW
51652008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5166
5167 * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies.
5168 * configure: Regenerate.
5169
2d09b640
RW
51702008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5171
5172 * Makefile.in (datarootdir): New variable.
5173
0b7c73cc
L
51742008-06-12 H.J. Lu <hongjiu.lu@intel.com>
5175
5176 PR preprocessor/36479
5177 * charset.c (cpp_interpret_string_notranslate): Also set
5178 narrow_cset_desc.width.
5179
cd985f66
JM
51802008-06-07 Joseph Myers <joseph@codesourcery.com>
5181
5182 * configure.ac (parisc*64*-*-*): Remove.
5183 * configure: Regenerate.
5184
d750887f
TT
51852008-05-30 Tom Tromey <tromey@redhat.com>
5186
5187 PR preprocessor/36320:
5188 * internal.h (_cpp_parse_expr): Update.
5189 * expr.c (_cpp_parse_expr): Add 'is_if' argument. Update error
5190 messages.
5191 * directives.c (do_if): Update.
5192 (do_elif): Require expression if processing group.
5193
c100de59
DS
51942008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
5195
5196 * include/cpplib.h (struct cpp_dir): Add new field, canonical_name.
5197
5d6342eb
TT
51982008-05-21 Tom Tromey <tromey@redhat.com>
5199
5200 PR preprocessor/27777:
5201 * lex.c (cpp_output_line_to_string): New function.
5202 * internal.h (_cpp_begin_message): Don't declare.
5203 * errors.c (_cpp_begin_message): Now static.
5204 * include/cpplib.h (cpp_output_line_to_string): Declare.
5205 * directives.c (do_diagnostic): Rewrote. Use
5206 cpp_output_line_to_string. Don't use _cpp_begin_message.
5207
dae4174e
TT
52082008-05-21 Tom Tromey <tromey@redhat.com>
5209
5210 * include/symtab.h (HT_ALLOCED): Remove.
5211 (ht_purge): Declare.
5212 * symtab.c (DELETED): New define.
5213 (ht_lookup): Update comment.
5214 (ht_lookup_with_hash): Handle deleted entries. Remove HT_ALLOCED
5215 code. Use subobject allocator for strings, if it exists.
5216 (ht_expand): Handle deleted entries.
5217 (ht_forall): Likewise.
5218 (ht_purge): New function.
5219 (ht_dump_statistics): Print deletion statistics.
5220
899015a0
TT
52212008-05-13 Tom Tromey <tromey@redhat.com>
5222
5223 PR preprocessor/22168:
5224 * include/cpplib.h (struct cpp_options) <objc>: Update
5225 documentation.
5226 * expr.c (eval_token): Warn for use of assertions.
5227 * directives.c (directive_diagnostics): Warn about extensions.
5228 (DEPRECATED): New define.
5229 (DIRECTIVE_TABLE): Use it.
5230
71c10038
TT
52312008-05-06 Tom Tromey <tromey@redhat.com>
5232
5233 PR preprocessor/35313, PR preprocessor/36088:
5234 * expr.c (optab) <QUERY, COMMA>: Set precedence to 4.
5235 (reduce) <case CPP_QUERY>: Special case CPP_COMMA and CPP_COLON.
5236
2bd0fe3d
DM
52372008-05-04 David S. Miller <davem@davemloft.net>
5238
5239 * configure.ac (sparc*-*-*): Always set need_64bit_hwint to yes.
5240 * configure: Regenerate.
5241
28f68625
DF
52422008-04-22 Daniel Franke <franke.daniel@gmail.com>
5243
5244 * include/cpplib.h (cpp_define_formatted): New.
5245 * directives.c (cpp_define_formatted): New.
5246
688e7a53
TT
52472008-04-21 Tom Tromey <tromey@redhat.com>
5248
5249 PR libcpp/33415:
5250 * charset.c (_cpp_convert_input): Add buffer_start argument.
5251 Ignore UTF-8 BOM if seen.
5252 * internal.h (_cpp_convert_input): Add argument.
5253 * files.c (struct _cpp_file) <buffer_start>: New field.
5254 (destroy_cpp_file): Free buffer_start, not buffer.
5255 (_cpp_pop_file_buffer): Likewise.
5256 (read_file_guts): Update.
5257
b6baa67d
KVH
52582008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
5259
5260 * include/cpp-id-data.h (UC): Was U, conflicts with U"..." literal.
5261 * include/cpplib.h (CHAR16, CHAR32, STRING16, STRING32): New tokens.
5262 (struct cpp_options): Added uliterals.
5263 (cpp_interpret_string): Update prototype.
5264 (cpp_interpret_string_notranslate): Idem.
5265 * charset.c (init_iconv_desc): New width member in cset_converter.
5266 (cpp_init_iconv): Add support for char{16,32}_cset_desc.
5267 (convert_ucn): Idem.
5268 (emit_numeric_escape): Idem.
5269 (convert_hex): Idem.
5270 (convert_oct): Idem.
5271 (convert_escape): Idem.
5272 (converter_for_type): New function.
5273 (cpp_interpret_string): Use converter_for_type, support u and U prefix.
5274 (cpp_interpret_string_notranslate): Match changed prototype.
5275 (wide_str_to_charconst): Use converter_for_type.
5276 (cpp_interpret_charconst): Add support for CPP_CHAR{16,32}.
5277 * directives.c (linemarker_dir): Macro U changed to UC.
5278 (parse_include): Idem.
5279 (register_pragma_1): Idem.
5280 (restore_registered_pragmas): Idem.
5281 (get__Pragma_string): Support CPP_STRING{16,32}.
5282 * expr.c (eval_token): Support CPP_CHAR{16,32}.
5283 * init.c (struct lang_flags): Added uliterals.
5284 (lang_defaults): Idem.
5285 * internal.h (struct cset_converter) <width>: New field.
5286 (struct cpp_reader) <char16_cset_desc>: Idem.
5287 (struct cpp_reader) <char32_cset_desc>: Idem.
5288 * lex.c (digraph_spellings): Macro U changed to UC.
5289 (OP, TK): Idem.
5290 (lex_string): Add support for u'...', U'...', u"..." and U"...".
5291 (_cpp_lex_direct): Idem.
5292 * macro.c (_cpp_builtin_macro_text): Macro U changed to UC.
5293 (stringify_arg): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
5294
deb984e6
PB
52952008-04-18 Paolo Bonzini <bonzini@gnu.org>
5296
5297 PR bootstrap/35457
5298 * aclocal.m4: Regenerate.
5299 * configure: Regenerate.
5300
bf048bea
TT
53012008-04-17 Tom Tromey <tromey@redhat.com>
5302
5303 PR libcpp/34866:
5304 * errors.c (cpp_error): Don't reference a token before the start
5305 of the current run.
5306
7f27b0f8
TT
53072008-04-16 Tom Tromey <tromey@redhat.com>
5308
5309 * Makefile.in (TAGS_SOURCES): New variable.
5310 (TAGS): New target.
5311
a1fcb9a1
KK
53122008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
5313
5314 * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-*
5315 and shbe-*-*.
5316 * configure: Rebuilt.
5317
93d45d9e
JM
53182008-04-02 Joseph Myers <joseph@codesourcery.com>
5319
5320 * include/cpplib.h (struct cpp_callbacks): Add used_define,
5321 used_undef and before_define.
5322 (NODE_USED): Define.
5323 * directives.c (do_define, do_undef, undefine_macros, do_ifdef,
5324 do_ifndef, cpp_pop_definition): Handle new flag and use new
5325 callbacks.
5326 * expr.c (parse_defined): Handle new flag and use new callbacks.
5327 * macro.c (enter_macro_context, _cpp_free_definition): Handle new
5328 flag and use new callbacks.
5329
d4c32e1d
JJ
53302008-04-01 Jakub Jelinek <jakub@redhat.com>
5331
5332 PR pch/13675
5333 * files.c (struct _cpp_file): Remove pch field.
5334 (pch_open_file): Don't set file->pch, just file->pchname.
5335 (should_stack_file): After pfile->cb.read_pch call
5336 free pchname and clear pchname, don't close file->fd.
5337 Test file->pchname instead of file->pch. Don't close fd after cb.
5338 (_cpp_stack_include): Test file->pchname instead of file->pch.
5339
161031e3
TT
53402008-03-28 Tom Tromey <tromey@redhat.com>
5341
5342 * Makefile.in (POSTCOMPILE): New variable.
5343 (.c.o): Use it.
5344
14ccf800
TT
53452008-03-13 Tom Tromey <tromey@redhat.com>
5346
5347 PR libcpp/35322:
5348 * directives.c (destringize_and_run): Set pfile->directive.
5349
830465c6
MM
53502008-03-06 Markus Milleder <markus.milleder@generali.at>
5351
5352 PR preprocessor/35458
5353 * mkdeps.c (munge): Quote '#' with a '\'.
5354
d482a073
RW
53552008-02-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
5356
5357 PR preprocessor/35379
5358 * mkdeps.c (deps_write): Ensure the first target always appears
5359 in the first column, without leading backslash newline. Avoid
5360 some more extra whitespace.
5361
185a6cc1
TS
53622008-02-25 Thiemo Seufer <ths@mips.com>
5363
d482a073 5364 * Makefile.in ($(srcdir)/config.in): Depend on configure.ac.
185a6cc1 5365
2bf41bf0
TT
53662008-02-19 Tom Tromey <tromey@redhat.com>
5367
5368 * traditional.c (lex_identifier): Use CPP_HASHNODE.
5369 * lex.c (lex_identifier): Use CPP_HASHNODE.
5370 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
5371 do-while.
5372 * identifiers.c (alloc_node): Change return type.
5373 (_cpp_init_hashtable): Don't cast 'alloc_node'.
5374 (proxy_assertion_broken): New declaration.
5375 (cpp_forall_identifiers): Move comment.
5376 * line-map.c (linemap_add): Comment fix.
5377 (linemap_line_start): Indentation fix.
5378
765d600a
JJ
53792008-01-25 Jakub Jelinek <jakub@redhat.com>
5380
5381 PR preprocessor/34692
5382 * macro.c (collect_args): Add pragma_buff argument. Push
5383 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens to *pragma_buff, rather
5384 than into arguments. Reset prevent_expansion and parsing_args
5385 state at CPP_PRAGMA_EOL/CPP_EOF.
5386 (funlike_invocation_p): Add pragma_buff argument, pass it through
5387 to collect_args.
5388 (enter_macro_context): Add result argument. Adjust
5389 funlike_invocation_p caller. Emit all deferred pragma tokens
5390 gathered during collect_args before the expansion, add a padding
5391 token. Return 2 instead of 1 if any pragma tokens were prepended.
5392 (cpp_get_token): If enter_macro_context returns 2, don't return
5393 a padding token, instead cycle to grab CPP_PRAGMA token.
5394 * directives.c (_cpp_handle_directive): If was_parsing_args
5395 in deferred pragma, leave parsing_args and prevent_expansion as is.
5396
ec46053b
TT
53972008-01-22 Tom Tromey <tromey@redhat.com>
5398
765d600a 5399 PR c++/34859
ec46053b
TT
5400 * macro.c (_cpp_create_definition): Handle __STDC_LIMIT_MACROS and
5401 __STDC_CONSTANT_MACROS.
5402
681c6ab0
FF
54032008-01-07 Fred Fish <fnf@specifix.com>
5404
765d600a 5405 PR preprocessor/30363
681c6ab0 5406 * traditional.c (replace_args_and_push): Add local variable
19a9ba64 5407 cxtquote, calculate the replacement text size assuming a
681c6ab0
FF
5408 worst case of every input character quoted with backslash,
5409 and properly handle output quoting of quote characters in
5410 actual arguments used in function-like macros.
5411
33ae4837
TT
54122008-01-03 Tom Tromey <tromey@redhat.com>
5413
765d600a 5414 PR preprocessor/34602
33ae4837
TT
5415 * directives.c (do_line): Don't try to spell EOF token.
5416 (do_linemarker): Add comment.
5417
675575f5
DD
54182007-12-11 DJ Delorie <dj@redhat.com>
5419
5420 * charset.c (convert_using_iconv): Close out any shift states,
5421 returning to the initial state.
5422
97f6bd40
TT
54232007-12-06 Tom Tromey <tromey@redhat.com>
5424
765d600a 5425 PR c/29172
97f6bd40
TT
5426 * internal.h (struct cpp_reader) <file_hash_entries>: Changed
5427 type.
5428 <file_hash_entries_allocated, file_hash_entries_used>: Removed.
5429 * files.c (FILE_HASH_POOL_SIZE): New macro.
5430 (struct file_hash_entry_pool): New.
5431 (destroy_all_cpp_files): New function.
5432 (allocate_file_hash_entries): Allocate a file_hash_entry_pool.
5433 (new_file_hash_entry): Update.
5434 (free_file_hash_entries): New function.
5435 (_cpp_cleanup_files): Call free_file_hash_entries and
5436 destroy_all_cpp_files.
5437 (cpp_clear_file_cache): New function.
5438 * include/cpplib.h (cpp_clear_file_cache): Declare.
5439
d56a25e1
TT
54402007-12-03 Tom Tromey <tromey@redhat.com>
5441
765d600a 5442 PR preprocessor/34288
d56a25e1
TT
5443 * configure.ac, config.in: Rebuilt.
5444 * configure.ac: Check for ssize_t.
5445
607f74e9
TT
54462007-11-30 Tom Tromey <tromey@redhat.com>
5447
765d600a 5448 PR preprocessor/32868
607f74e9
TT
5449 * macro.c (_cpp_create_definition): Special case
5450 __STDC_FORMAT_MACROS.
5451
b0f4807f
MM
54522007-11-16 Michael Matz <matz@suse.de>
5453
5454 * files.c (search_path_head): Fix check for absolute paths.
5455
f1e20710
TT
54562007-11-11 Tom Tromey <tromey@redhat.com>
5457
765d600a 5458 PR c++/17557
f1e20710
TT
5459 * include/cpplib.h (cpp_included_before): Declare.
5460 * files.c (struct file_hash_entry) <location>: New field.
5461 (_cpp_find_file): Initialize new field.
5462 (make_cpp_dir): Likewise.
5463 (cpp_included_before): New function.
5464
f373b44d
TT
54652007-11-01 Tom Tromey <tromey@redhat.com>
5466
765d600a 5467 PR preprocessor/30805
f373b44d
TT
5468 * macro.c (paste_tokens): Handle padding token.
5469 (paste_tokens): Don't abort unless padding has PASTE_LEFT flag.
5470
5b9a40df
TT
54712007-10-31 Tom Tromey <tromey@redhat.com>
5472
765d600a 5473 PR preprocessor/30786
5b9a40df
TT
5474 * macro.c (builtin_macro): Return result of _cpp_do__Pragma.
5475 * directives.c (_cpp_do__Pragma): Return error status.
5476 * internal.h (_cpp_do__Pragma): Update.
5477 * directives.c (get__Pragma_string): Back up if EOF seen.
5478
5ffeb913
TT
54792007-09-06 Tom Tromey <tromey@redhat.com>
5480
5481 * internal.h (struct cpp_reader) <invocation_location>: New
5482 field.
5483 (struct cpp_reader) <set_invocation_location>: Likewise.
5484 * init.c (cpp_set_line_map): New function.
5485 * line-map.c (linemap_add): Use linemap's allocator.
5486 * include/line-map.h (GTY): Define.
5487 (line_map_realloc): New typedef.
5488 (struct line_map): Mark with GTY.
5489 (struct line_maps): Likewise.
5490 (struct line_maps) <maps>: Likewise.
5491 (struct line_maps) <reallocator>: New field.
5492 * include/symtab.h (GTY): Conditionally define.
5493 * include/cpplib.h (cpp_set_line_map): Declare.
5494 (cpp_get_token_with_location): Declare.
5495 * macro.c (cpp_get_token): Set invocation_location on the reader.
5496 (cpp_get_token_with_location): New function.
5497
ac6b1c67
CF
54982007-08-30 Chao-ying Fu <fu@mips.com>
5499
5500 * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
5501 ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
5502 (cpp_classify_number): Support decimal fixed-point constants without
5503 exponents.
5504 Warn about fixed-point constants when -pedantic.
5505 * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
5506 comments to support fixed-point values.
5507 (CPP_N_FRACT, CPP_N_ACCUM): Define.
5508
cda5e672
TT
55092007-08-18 Tom Tromey <tromey@redhat.com>
5510
765d600a 5511 PR preprocessor/32974
cda5e672
TT
5512 * directives.c (parse_include): Don't check for EOL when
5513 processing #pragma dependency.
5514
ccfc4c91
OW
55152007-07-30 Ollie Wild <aaw@google.com>
5516
5517 * directives-only.c: New file.
5518 * internal.h (struct _cpp_dir_only_callbacks): New.
5519 (_cpp_preprocess_dir_only): New function.
5520 * directives.c (_cpp_handle_directive): Check directives_only before
5521 disabling execution of indented directives.
5522 * files.c (_cpp_stack_file): Add directives_only check.
5523 * include/cpplib.h (struct cpp_options): Add directives_only.
5524 (cpp_init_special_builtins): New function.
5525 * init.c (cpp_init_special_builtins): New function.
5526 (cpp_init_builtins): Move builtin_array initialization to
5527 cpp_init_special_builtins.
5528 (post_options): Check directives_only before setting
5529 pfile->state.prevent_expansion = 1.
5530 * macro.c (_cpp_builtin_macro_text): Print an error if __COUNTER__
5531 is expanded inside a directive while -fdirectives-only is enabled.
5532 * Makefile.in (libcpp_a_OBJS): Add directives-only.o.
5533 (libcpp_a_SOURCES): Add directives-only.c.
5534
a206413a
UB
55352007-07-04 Uros Bizjak <ubizjak@gmail.com>
5536
5537 * traditional.c (_cpp_scan_out_logical_line): Initialize
5538 fmacro.args, fmacro.node, fmacro.offset, fmacro.line and
5539 fmacro.args to prevent 'may be used uninitialized' warning.
5540
c77cd3d1
UB
55412007-07-03 Uros Bizjak <ubizjak@gmail.com>
5542
5543 * include/cpplib.h (CPP_N_WIDTH_MD, CPP_N_MD_W, CPP_N_MD_Q):
5544 Add new constants.
5545 * expr.c (interpret_float_suffix): Process 'w', 'W', 'q' and 'Q'
5546 suffixes. Return CPP_N_MD_W for 'w' or 'W' suffixes and CPP_N_MD_Q
5547 for 'q' or 'Q' suffixes.
5548
66938a1d
DS
55492007-06-17 Danny Smith <dannysmith@users.sourceforge.net
5550
e1311401 5551 * files.c (open_file): Correct typo.
66938a1d 5552
71995ede
VP
55532007-06-16 Vladimir Prus <vladimir@codesourcery.com>
5554
e1311401 5555 * files.c (open_file): Prevent the call
71995ede
VP
5556 for stat from overwriting errno.
5557
84152c25
VP
55582007-06-09 Vladimir Prus <vladimir@codesourcery.com>
5559
e1311401 5560 * files.c (open_file): Account for the
19a9ba64
AM
5561 fact that on windows, opening a directory gives
5562 EACCES.
84152c25 5563
f7fd775f
JW
55642007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
5565
5566 PR preprocessor/23479
5567 * expr.c (cpp_classify_number): Implement 0b-prefixed binary
5568 integer constants.
5569 (append_digit): Likewise.
5570 * include/cpplib.h: Add CPP_N_BINARY, to be used for 0b-prefixed
5571 binary integer constants.
5572
ed0e74e0
DK
55732007-05-31 Dave Korn <dave.korn@artimi.com>
5574
5575 PR preprocessor/14331
5576 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
5577
a702045a
OW
55782007-05-24 Ollie Wild <aaw@google.com>
5579
5580 * macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
5581 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
5582 (cpp_write_pch_state): Save __COUNTER__ state.
5583 (cpp_valid_state): Check valid __COUNTER__ state.
5584 (cpp_read_state): Read new __COUNTER__ state.
5585 * include/cpplib.h (enum builtin_type): Add BT_COUNTER enumerator.
5586 * init.c (builtin_array): Add __COUNTER__/BT_COUNTER.
5587 * internal.h (struct cpp_reader): Add counter member.
5588
126e073b
SM
55892007-05-23 Simon Martin <simartin@users.sourceforge.net>
5590
5591 PR preprocessor/20077
5592 * macro.c (create_iso_definition): Fixed the method to determine
5593 whether the token-pasting operator appears at the beginning or the end
5594 of a macro.
5595
0b4cafec
ILT
55962007-05-21 Ian Lance Taylor <iant@google.com>
5597
5598 * internal.h (struct cpp_reader): Add new fields:
5599 nonexistent_file_hash and nonexistent_file_ob.
5600 * files.c: Include "obstack.h".
5601 (find_file_in_dir): Before trying to open the file, look up the
5602 path name in the hash table of nonexistent files. After failing
5603 to open the file, add the path name to the hash table.
5604 (_cpp_find_file): Cache the results of looking up the file name
5605 starting with the quote and bracket chain heads, if we can.
5606 (nonexistent_file_hash_eq): New static function.
5607 (_cpp_init_files): Initialize pfile->nonexistent_file_hash and
5608 pfile->nonexistent_file_ob.
5609 (_cpp_cleanup_files): Free pfile->nonexistent_file_hash and
5610 pfile->nonexistent_file_ob.
5611
30e04921
JJ
56122007-05-14 Janis Johnson <janis187@us.ibm.com>
5613
19a9ba64 5614 * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
5a6bb57e 5615
30e04921
JJ
5616 PR c/31924
5617 * expr.c (interpret_float_suffix): Check for invalid suffix.
5618
22a8a52d
EC
56192007-05-02 Eric Christopher <echristo@apple.com>
5620
5621 * expr.c (num_div_op): Don't overflow if the result is
5622 zero.
5623
fca35e1b
TT
56242007-05-02 Tom Tromey <tromey@redhat.com>
5625
765d600a 5626 PR preprocessor/28709
fca35e1b
TT
5627 * macro.c (paste_tokens): Remove PASTE_LEFT from the old lhs.
5628
4cd97075
MM
56292007-03-30 Michael Meissner <michael.meissner@amd.com>
5630
5631 * directives.c (lex_macro_node_from_str): Fix alloca call to be
5632 type correct.
5633
121de39f
RH
56342007-03-30 Richard Henderson <rth@redhat.com>
5635
5636 * directives.c (lex_macro_node_from_str): New.
5637 (cpp_push_definition, cpp_pop_definition): New.
5638 * include/cpplib.h (cpp_push_definition, cpp_pop_definition): Declare.
5639
4fcb360b
BM
56402007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
5641
5642 * Makefile.in: Add dummy install-pdf target.
5643
67e64439
TT
56442007-01-30 Tom Tromey <tromey@redhat.com>
5645
765d600a 5646 PR preprocessor/30468
67e64439
TT
5647 * mkdeps.c (apply_vpath): Strip successive '/'s if we stripped
5648 './'.
5649
ee380365
TT
56502007-01-30 Tom Tromey <tromey@redhat.com>
5651
765d600a 5652 PR preprocessor/29966
ee380365
TT
5653 * macro.c (lex_expansion_token): Save and restore cpp_reader's
5654 cur_token.
5655 (_cpp_create_definition): Don't restore cur_token here.
5656 * lex.c (_cpp_lex_token): Added assertion.
5657
024abeb3
TT
56582007-01-27 Tom Tromey <tromey@redhat.com>
5659
5660 * configure: Rebuilt.
5661
ee1c2a10
TT
56622007-01-12 Tom Tromey <tromey@redhat.com>
5663
765d600a 5664 PR preprocessor/28227
ee1c2a10
TT
5665 * directives.c (lex_macro_node): Added 'is_def_or_undef'
5666 argument.
5667 (do_define): Update.
5668 (do_undef): Update.
5669 (do_ifdef): Update.
5670 (do_ifndef): Update.
5671
67214c16
PB
56722007-01-11 Paolo Bonzini <bonzini@gnu.org>
5673
5674 * configure: Regenerate.
5675
1aa6ca40
PB
56762007-01-11 Paolo Bonzini <bonzini@gnu.org>
5677
5678 * configure: Regenerate.
5679
705e2d28
TT
56802007-01-04 Tom Tromey <tromey@redhat.com>
5681
765d600a 5682 PR preprocessor/28165
705e2d28
TT
5683 * internal.h (cpp_in_primary_file): New function.
5684 * directives.c (do_include_next): Use cpp_in_primary_file.
5685 (do_pragma_once): Likewise.
5686 (do_pragma_system_header): Likewise.
5687
7af45bd4
ILT
56882006-12-29 Ian Lance Taylor <iant@google.com>
5689
5690 * lex.c (_cpp_clean_line): Add uses of __builtin_expect. Don't
5691 look backward at the end of the line unless we saw a backslash.
5692
9d30f270
JJ
56932006-12-29 Jakub Jelinek <jakub@redhat.com>
5694
5695 PR preprocessor/29612
5696 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not
5697 only when new_sysp is non-zero.
5698
30b0edc0
TT
56992006-12-28 Tom Tromey <tromey@redhat.com>
5700
765d600a 5701 PR preprocessor/30001
30b0edc0
TT
5702 * charset.c (_cpp_convert_input): Check that to.len is greater
5703 than zero.
5704
85d9c13c
TS
57052006-11-20 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
5706
5707 * configure.ac (need_64bit_hwint): Need 64bit hwint for SPU.
83cc06b2 5708 * configure: Rebuilt.
85d9c13c 5709
dfafdaa6
DG
57102006-11-01 Douglas Gregor <doug.gregor@gmail.com>
5711
5712 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX0X and CLK_CXX0X
5713 for experimental C++0x mode.
5714 * init.c (lang_defaults): Add defaults for C++0x modes. C++0x has
5715 adopted the preprocessor changes introduced in C99.
5716
0f45f0f5
JM
57172006-10-29 Joseph Myers <joseph@codesourcery.com>
5718
5719 * configure.ac (need_64bit_hwint): Set for i[34567]86-*-linux*
5720 depending on --enable-targets=all.
5721 * configure: Regenerate.
5722
de000d22
JJ
57232006-10-12 Jakub Jelinek <jakub@redhat.com>
5724
5725 PR preprocessor/28709
5726 * macro.c (paste_tokens): Do error reporting here, use BUF with the
5727 spelled LHS token as opposed to spelling it again.
5728 (paste_all_tokens): Don't report errors here, just break on failure.
5729
b5422ad7
BM
57302006-10-10 Brooks Moses <bmoses@stanford.edu>
5731
5732 * Makefile.in: Added empty "pdf" target.
5733
aaf50ff2
GK
57342006-09-22 Geoffrey Keating <geoffk@apple.com>
5735
5736 * configure.ac: Make need_64_bit_hwint case for x86-darwin
5737 match exactly the glob in gcc/config.gcc.
5738 * configure: Regenerate.
5739
c663e301
JM
57402006-09-13 Joseph S. Myers <joseph@codesourcery.com>
5741
5742 PR c/28768
5743 PR preprocessor/14634
5744 * lex.c (lex_string): Pedwarn for unterminated literals.
5745
f7288899
EC
57462006-09-08 Eric Christopher <echristo@apple.com>
5747
5748 * configure.ac: Add 64-bit HWI support for i?86-darwin.
5749
b52dbbf8
SE
57502006-08-14 Steve Ellcey <sje@cup.hp.com>
5751
5752 PR c++/28288
5753 PR c++/14556
5754 * include/cpplib.h: Remove <?, >?, <?=, and >?= tokens.
5755 (CPP_LAST_EQ): Change.
5756 (CPP_LAST_PUNCTUATOR): Change.
5757 * expr.c (cpp_operator): Remove MIN and MAX.
5758 (reduce): Remove CPP_MIN and CPP_MAX.
5759 (num_binary_op): Ditto.
5760 * lex.c (_cpp_lex_direct): Ditto.
5761 (cpp_avoid_paste): Remove ? as legal symbol after > or <.
5762
1c90c6f9
JJ
57632006-06-09 Jakub Jelinek <jakub@redhat.com>
5764
5765 PR preprocessor/27746
5766 * directives.c (do_pragma): Handle pragma with valid namespace
5767 and invalid name coming from macro expansion.
5768 * directives.c (destringize_and_run): Initialize next field in
5769 context.
5770
5771 PR c/27747
5772 PR c++/27748
5773 * directives.c (destringize_and_run): Set NO_EXPAND on the
5774 tokens.
5775
5776 * macro.c (_cpp_backup_tokens): Fix comment typo.
5777
5c3c3683
DJ
57782006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
5779
5780 * Makefile.in (CATALOGS): Add po/ prefix.
5781 * configure: Regenerated.
5782
b2bd74bc
CD
57832006-05-23 Carlos O'Donell <carlos@codesourcery.com>
5784
5785 * Makefile.in: Add install-html target. Add install-html to .PHONY
5786
be8ac3e2
GZ
57872006-02-17 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
5788
5789 * macro.c (_cpp_builtin_macro_text): Handle BT_TIMESTAMP.
5790 * files.c (_cpp_get_file_stat): New function.
5791 * include/cpplib.h (builtin_type): Add BT_TIMESTAMP.
5792 * init.c (builtin_array): Add support for __TIMESTAMP__/BT_TIMESTAMP.
5793 * internal.h (_cpp_get_file_stat): Prototype.
5794 (struct cpp_buffer): Add timestamp.
5795
83900997
JJ
57962006-01-23 Jakub Jelinek <jakub@redhat.com>
5797
5798 PR preprocessor/25717
5799 * init.c (cpp_init_builtins): If __STDC__ will not change value
5800 between system headers and other sources, define it as a normal
5801 macro rather than a builtin.
5802 * macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
5803 cpp_in_system_header condition.
5804
58052006-01-05 Paolo Bonzini <bonzini@gnu.org>
9220c30c
PB
5806
5807 * Makefile.in: Use -MMD instead of -MD.
5808
bc4071dd
RH
58092006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
5810 Richard Henderson <rth@redhat.com>
5811
5812 Merge from gomp branch:
5813 * directives.c (struct pragma_entry): Add is_deferred. Add ident
5814 entry to value union.
5815 (end_directive): Don't eat the line if in_deferred_pragma.
5816 (run_directive): Remove pragma hacks.
5817 (insert_pragma_entry): Remove.
5818 (new_pragma_entry): New.
5819 (register_pragma_1): Split out of register_pragma. Only handle
5820 the lookup tree and return the new entry.
5821 (cpp_register_pragma): Fill in the pragma entry here.
5822 (cpp_register_deferred_pragma): New.
5823 (register_pragma_internal): New.
5824 (_cpp_init_internal_pragmas): Use register_pragma_internal.
5825 (do_pragma): Allow pragma expansion after namespace. For deferred
5826 pragmas, don't slurp the line into a string.
5827 (destringize_and_run): Save tokens for deferred pragmas.
5828 (cpp_handle_deferred_pragma): Remove.
5829 * macro.c (builtin_macro): Remove pragma token hack.
5830 (_cpp_push_token_context): Rename from push_token_context and export.
5831 * internal.h (struct lexer_state): Add pragma_allow_expansion.
5832 (_cpp_push_token_context): Declare.
5833 * lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
5834 a token. Update the line number correctly if so.
5835 (_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
5836 (cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
5837 * include/cpplib.h (PRAGMA_EOL): New.
5838 (CPP_TOKEN_FLD_PRAGMA): New.
5839 (struct cpp_token): Add val.pragma.
5840 (struct cpp_options): Remove defer_pragmas.
5841 (cpp_handle_deferred_pragma): Remove.
5842 (cpp_register_deferred_pragma): Declare.
5843
d09e893f
JJ
58442006-01-01 Jakub Jelinek <jakub@redhat.com>
5845
5846 PR c++/25294
5847 * directives.c (do_pragma): If pragma line ends with multi-line
5848 block comment, end the saved deferred pragma string before that
5849 comment. Handle embedded '\0' chars on the pragma line.
5850
ab84748a
VR
58512005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
5852
5853 PR c++/23333
5854 * include/cpplib.h: Add PURE_ZERO to flags for the cpp_token structure.
5855
ad6ed77e
JG
58562005-12-07 Jon Grimm <jgrimm2@us.ibm.com>
5857 Ben Elliston <bje@au.ibm.com>
5858
5859 * include/cpplib.h (CPP_N_DFLOAT): New.
5860 * expr.c (interpret_float_suffix): Identify df, dd, and dl
5861 suffixes as decimal floating point constants.
5862 (cpp_classify_number): Disallow hexadecimal DFP constants.
5863
ba096620 58642005-11-14 Gerald Pfeifer <gerald@pfeifer.com>
bc4071dd 5865 Ian Lance Taylor <ian@airs.com>
ba096620
GP
5866
5867 * include/cpplib.h (struct cpp_callbacks): Annotate error with
5868 ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
5869
456b8ce5
UB
58702005-11-09 Per Bothner <per@bothner.com>
5871 Uros Bizjak <uros@kss-loka.si>
f7288899 5872
456b8ce5
UB
5873 PR c/24101
5874 * init.c (read_original_filename): Temporarily set
5875 state.in_directive before calling _cpp_lex_direct for
5876 CPP_HASH tokens.
5877
5571f74f
JW
58782005-11-03 James E Wilson <wilson@specifix.com>
5879
5880 PR preprocessor/24202
5881 * files.c (_cpp_pop_file_buffer): Set buffer_valid to false.
5882
a63607ed
JM
58832005-11-04 Joseph S. Myers <joseph@codesourcery.com>
5884
5885 * include/cpplib.h (struct cpp_callbacks): Make error take
5886 va_list* parameter.
5887 * errors.c (cpp_error): Update call to callback.
5888
651ed942
AP
58892005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
5890
5891 PR preprocessor/22042
5892 * macro.c (_cpp_builtin_macro_text): Lower the needed max
5893 buffer size.
5894 (cpp_quote_string): Don't octalify non printable
5895 charactors.
5896
178b58b5
JM
58972005-11-03 Joseph S. Myers <joseph@codesourcery.com>
5898
5899 PR c++/17964
5900 * include/cpplib.h (struct cpp_options): Add client_diagnostic.
5901 (struct cpp_callbacks): Add error.
5902 * errors.c (cpp_error): If client_diagnostic, use error callback.
5903 * charset.c (convert_escape): Don't use %03o in diagnostic.
5904
3ee5ed11 59052005-10-21 James E Wilson <wilson@specifix.com>
6568f34b
JW
5906
5907 PR preprocessor/15220
5908 * files.c (_cpp_find_file): New parameter angle_brackets. Fix all
5909 callers. Pass to open_file_failed.
5910 (open_file_failed): New parameter angle_brackets. Fix all callers.
5911 Use in print_dep assignment.
5912 * init.c (cpp_read_main_file): Pass additional arg to _cpp_find_file.
5913 * internal.h (_cpp_find_file): Add new parm to declaration.
f7288899 5914
077fc835
KH
59152005-10-08 Kazu Hirata <kazu@codesourcery.com>
5916
5917 * configure.ac: Require 64-bit int for arm*-*-*eabi*.
5918 * configure: Regenerate.
5919
cbc43ae0
ILT
59202005-10-04 Ian Lance Taylor <ian@airs.com>
5921
5922 PR preprocessor/13726
5923 * directives.c (check_eol_return_comments): New static function.
5924 (parse_include): Add buf parameter. Change all callers.
5925 (do_include_common): If not discard comments, turn on
5926 save_comments. Pass collected comments to include callback.
5927 * include/cpplib.h (struct cpp_callbacks): Add new parameter to
5928 include callback: cpp_token list.
5929
af15a2fe
JM
59302005-09-20 Joseph S. Myers <joseph@codesourcery.com>
5931
5932 * include/cpplib.h (struct cpp_options): Add extended_identifiers.
5933 * init.c (struct lang_flags, lang_defaults): Add
5934 extended_identifiers.
5935 (cpp_set_lang): Use it.
5936 * lex.c (forms_identifier_p): Check extended_identifiers.
5937
f5eab47e
JJ
59382005-08-30 Jakub Jelinek <jakub@redhat.com>
5939
5940 PR preprocessor/20348
5941 PR preprocessor/20356
5942 * files.c (_cpp_find_file, search_cache): Revert 2004-06-26 and
5943 2004-06-05 changes.
5944
467129e6
KG
59452005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5946
5947 * configure.ac (ACX_PROG_CC_WARNING_OPTS): add
5948 -Wmissing-format-attribute.
5949
5950 * configure: Regenerate.
5951
200031d1
KC
59522005-06-29 Kelley Cook <kcook@gcc.gnu.org>
5953
5954 * all files: Update FSF address in copyright headers.
5955 * makeucnid.c (write_copyright): Update outputted FSF address.
5956
f610dd5f
ZW
59572005-06-13 Zack Weinberg <zack@codesourcery.com>
5958
5959 * configure.ac: Invoke ZW_CREATE_DEPDIR and
5960 ZW_PROG_COMPILER_DEPENDENCIES.
5961 * aclocal.m4, configure: Regenerate.
5962 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.base, COMPILE):
5963 New variables.
5964 (distclean): Clean up $(DEPDIR) and its contents.
5965 (.c.o): Use $(COMPILE).
5966 Include $(DEPDIR)/*.Po for most object->header dependencies.
5967
c3f829c1
GDR
59682005-05-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
5969
5970 * configure.ac: Check declarations for asprintf and vasprintf.
5971 * config.in: Regenerate.
5972 * configure: Likewise.
5973
5974 * charset.c (conversion_loop): Use XRESIZEVEC.
5975 (convert_no_conversion): Likewise.
5976 (convert_using_iconv): Likewise.
5977 (init_iconv_desc): Cast return value of alloca.
5978 (cpp_host_to_exec_charset): Use XNEWVEC.
5979 (emit_numeric_escape): Use XRESIZEVEC.
5980 (cpp_interpret_string): Use XNEWVEC.
5981 (cpp_interpret_string): Use XRESIZEVEC.
5982 (_cpp_interpret_identifier): Cast return value of alloca.
5983 (_cpp_convert_input): Use XNEWVEC and XRESIZEVEC.
5984 * directives.c (glue_header_name): Use XNEWVEC and XRESIZEVEC.
5985 (parse_include): Use XNEWVEC.
5986 (insert_pragma_entry): Rename local variable "new" to
f610dd5f 5987 "new_entry".
c3f829c1
GDR
5988 (save_registered_pragmas): Cast return value of xmemdup.
5989 (destringize_and_run): Same for alloca.
5990 (parse_assertion): Likewise.
5991 (do_assert): Cast allocated storage to proper type.
5992 (cpp_define): Likewise.
5993 (_cpp_define_builtin): Likewise.
5994 (cpp_undef): Likewise.
5995 (handle_assertion): Likewise.
5996 (cpp_push_buffer): Rename local variable "new" to "new_buffer".
5997 * expr.c (CPP_UPLUS): Cast value to type cpp_ttype.
5998 (CPP_UMINUS): Likewise.
5999 (struct cpp_operator): Rename from struct operator.
6000 (_cpp_expand_op_stack): Use XRESIZEVEC.
6001 * files.c (pch_open_file): Use XNEWVEC.
6002 (pch_open_file): Use XRESIZEVEC.
6003 (read_file_guts): Use XNEWVEC and XRESIZEVEC.
6004 (dir_name_of_file): Use XNEWVEC.
6005 (make_cpp_file): Use XCNEW.
6006 (make_cpp_dir): Likewise.
6007 (allocate_file_hash_entries): USE XNEWVEC.
6008 (cpp_included): Cast return value of htab_find_with_hash.
6009 (append_file_to_dir): Use XNEWVEC.
6010 (read_filename_string): Likewise. Use XRESIZEVEC too.
6011 (read_name_map): Cast return value of alloca. Use XRESIZEVEC.
6012 (remap_filename): Use XNEWVEC.
6013 (struct pchf_entry): Move definition out of struct pchf_data.
6014 (_cpp_save_file_entries): Use XCNEWVAR.
6015 (_cpp_read_file_entries): Use XNEWVAR.
6016 * identifiers.c (alloc_node): Use XOBNEW.
6017 * init.c (cpp_create_reader): Use XCNEW.
6018 (cpp_init_builtins): Cast of b->value to enum builtin_type.
6019 (read_original_directory): Cast return value of alloca.
6020 * lex.c (add_line_note): Use XRESIZEVEC.
6021 (warn_about_normalization): Use XNEWVEC.
6022 (_cpp_lex_direct): Cast node->directive_index to (enum cpp_ttype).
6023 (new_buff): Use XNEWVEC.
6024 * line-map.c (linemap_add): Use XRESIZEVEC.
6025 * macro.c (builtin_macro): Cast return value of alloca.
6026 (paste_tokens): Likewise.
6027 (expand_arg): Use XNEWVEC and XRESIZEVEC.
6028 (_cpp_save_parameter): Use XRESIZEVEC.
6029 (create_iso_definition): Cast allocated storage to proper type.
6030 (_cpp_create_definition): Likewise.
6031 (cpp_macro_definition): Use XRESIZEVEC.
6032 * makedepend.c (add_clm): Use XNEW.
6033 (add_dir): Likewise.
6034 * mkdeps.c (munge): Use XNEWVEC.
6035 (deps_init): Use XCNEW.
6036 (deps_add_target): Use XRESIZEVEC.
6037 (deps_add_default_target): Cast return value of alloca.
6038 (deps_add_dep): Use XRESIZEVEC.
6039 (deps_add_vpath): Likewise. Use XNEWVEC too.
6040 (deps_restore): Likewise.
6041 * pch.c (save_idents): Use XNEW and XNEWVEC.
6042 (cpp_save_state): Use XNEW.
6043 (count_defs): Cast return value of htab_find.
6044 (write_defs): Likewise.
6045 (cpp_write_pch_deps): Use XNEWVEC.
6046 (collect_ht_nodes): Use XRESIZEVEC.
6047 (cpp_valid_state): Use XNEWVEC.
6048 (save_macros): Use XRESIZEVEC. Cast return value of xmemdup.
6049 * symtab.c (ht_create): Use XCNEW.
6050 (ht_lookup_with_hash): Cast return value of obstack_copy0.
6051 (ht_expand): Use XCNEWVEC.
6052 * system.h (HAVE_DESIGNATED_INITIALIZERS): False if __cplusplus.
6053 (bool): Do not define if __cplusplus.
6054
1ed17cd5
ZW
60552005-05-12 Zack Weinberg <zack@codesourcery.com>
6056
6057 * directives.c (#sccs table entry): Mark IN_I, consistent with #ident.
6058 (do_sccs): Delete function definition, #define to do_ident.
6059 (do_ident): Don't hardwire directive name.
6060
5a8c20ce
RK
60612005-05-12 Ryota Kunisawa <kunisawa@access.co.jp>
6062
6063 PR bootstrap/21230
6064 * configure: Regenerate.
6065
473c5bc9
AP
60662005-04-27 Andris Pavenis <pavenis@latnet.lv>
6067
6068 * files.c: Include io.h for DJGPP to get prototype of setmode.
6069
c1fc5047
PB
60702005-04-19 Per Bothner <per@bothner.com>
6071
6072 PR preprocessor/20907
6073 * line-map.c (linemap_line_start): Fix bug when we need to increse
6074 column_bits but can re-use the current line_map.
6075
042630ad
KG
60762005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6077
6078 * system.h (fopen, fdopen, freopen): Define these to the unlocked
6079 libiberty functions.
6080
0d667716
KG
60812005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6082
6083 * configure.ac (libcpp_UNLOCKED_FUNCS): New.
6084 (AC_CHECK_FUNCS, AC_CHECK_DECLS): Check for libcpp_UNLOCKED_FUNCS.
6085 * system.h (putchar, getc, getchar, clearerr, feof, fileno,
6086 fflush, fgetc, fgets, ferror, fread): Redefine to the associated
6087 _unlocked function.
6088 (fwrite_unlocked): Fix prototype.
1ed17cd5 6089
0d667716
KG
6090 * configure, config.in: Regenerate.
6091
cae064e7
JJ
60922005-04-05 Jakub Jelinek <jakub@redhat.com>
6093
6094 PR preprocessor/19475
6095 * macro.c (create_iso_definition): For < ISO C99, don't
6096 pedwarn if there is no whitespace between macro name and its
6097 replacement, but the replacement starts with a basic character
6098 set character.
6099
cbada204
AJ
61002005-03-28 Andreas Jaeger <aj@suse.de>
6101
6102 * lex.c (warn_about_normalization): Cast field width to int to
6103 avoid warning.
6104
f42eccdb
JM
61052005-03-19 Joseph S. Myers <joseph@codesourcery.com>
6106
6107 * configure.ac: Consistently use solaris2.1[0-9]* instead of
6108 solaris2.1[0-9].
6109 * configure: Regenerate.
6110
c79e602b
GK
61112005-03-15 Geoffrey Keating <geoffk@apple.com>
6112
6113 * charset.c (_cpp_valid_ucn): In identifiers, reject a partial
6114 UCN rather than printing an error.
6115
50668cf6
GK
61162005-03-14 Geoffrey Keating <geoffk@apple.com>
6117
6baba9bb
GK
6118 * lex.c (forms_identifier_p): Disable UCNs in C89 mode.
6119
61202005-03-14 Geoffrey Keating <geoffk@apple.com>
1ed17cd5 6121
50668cf6
GK
6122 * init.c (cpp_create_reader): Default warn_normalize to normalized_C.
6123 * charset.c: Update for new format of ucnid.h.
6124 (ucn_valid_in_identifier): Update for new format of ucnid.h.
6125 Add NST parameter, and update it; update callers.
6126 (cpp_valid_ucn): Add NST parameter, update callers. Replace abort
6127 with cpp_error.
6128 (convert_ucn): Pass normalize_state to cpp_valid_ucn.
6129 * internal.h (struct normalize_state): New.
6130 (INITIAL_NORMALIZE_STATE): New.
6131 (NORMALIZE_STATE_RESULT): New.
6132 (NORMALIZE_STATE_UPDATE_IDNUM): New.
6133 (_cpp_valid_ucn): New.
6134 * lex.c (warn_about_normalization): New.
6135 (forms_identifier_p): Add normalize_state parameter, update callers.
6136 (lex_identifier): Add normalize_state parameter, update callers. Keep
6137 the state current.
6138 (lex_number): Likewise.
6139 (_cpp_lex_direct): Pass normalize_state to subroutines. Check
6140 it with warn_about_normalization.
6141 * makeucnid.c: New.
6142 * ucnid.h: Replace.
6143 * ucnid.pl: Remove.
6144 * ucnid.tab: Make appropriate for input to makeucnid.c. Remove
6145 comments about obsolete version of C++.
6146 * include/cpplib.h (enum cpp_normalize_level): New.
6147 (struct cpp_options): Add warn_normalize field.
6148
47e20491
GK
61492005-03-11 Geoffrey Keating <geoffk@apple.com>
6150
6151 * directives.c (glue_header_name): Update call to cpp_spell_token.
6152 * internal.h (_cpp_interpret_identifier): New.
6153 * charset.c (_cpp_interpret_identifier): New.
6154 (_cpp_valid_ucn): Allow UCN version of '$'.
6155 * lex.c (lex_identifier): Add extra parameter to indicate if initial
6156 character was '$' or '\'. Support identifiers with UCNs.
6157 (forms_identifier_p): Allow UCNs.
6158 (_cpp_lex_direct): Pass extra parameter to lex_identifier.
6159 (utf8_to_ucn): New.
6160 (cpp_spell_token): Add FORSTRING parameter. Use it.
6161 (cpp_token_as_text): Update call to cpp_spell_token.
6162 (cpp_output_token): Write UCNs back out.
6163 (stringify_arg): Update call to cpp_spell_token.
6164 (paste_tokens): Likewise.
6165 (cpp_macro_definition): Likewise.
6166 * macro.c (stringify_arg): Likewise.
6167 (paste_tokens): Likewise.
6168 (cpp_macro_definition): Likewise.
6169 * include/cpplib.h: Add parameter to cpp_spell_token.
6170
73096711
JJ
61712005-03-04 Jakub Jelinek <jakub@redhat.com>
6172
6173 PR bootstrap/20282
6174 PR bootstrap/20305
6175 * macro.c (replace_args, cpp_get_token): Copy whole
6176 cpp_token_u instead of just cpp_string field from it.
6177
2203a881
DP
61782005-02-28 Devang Patel <dpatel@apple.com>
6179
6180 * directives.c (do_line): Save sysp early before line table is
6181 realloc'ed.
1ed17cd5 6182
c5ff069d
ZW
61832005-02-20 Zack Weinberg <zack@codesourcery.com>
6184
6185 PR 18785
6186 * charset.c (LAST_POSSIBLY_BASIC_SOURCE_CHAR): New helper macro.
6187 (cpp_host_to_exec_charset): New function.
6188 * include/cpplib.h: Declare cpp_host_to_exec_charset.
6189
04c90eea
DP
61902005-02-19 Devang Patel <dpatel@apple.com>
6191
6192 * charset.c (_cpp_convert_input): Check '\r' before inserting
6193 '\n' at the end.
c5ff069d 6194
6da55c00
EC
61952005-02-15 Eric Christopher <echristo@redhat.com>
6196
6197 PR preprocessor/19077
6198 * macro.c (cpp_macro_definition): Move handling of whitespace
6199 to PREV_WHITE conditional. Remove overloading of len
6200 variable.
6201
31c3e631
KH
62022005-02-14 Kazu Hirata <kazu@cs.umass.edu>
6203
6204 * directives.c, files.c, init.c, internal.h, macro.c, pch.c,
6205 traditional.c: Update copyright.
6206
be0f1e54
PB
62072005-02-14 Paolo Bonzini <bonzini@gnu.org>
6208
6209 PR bootstrap/19818
6210 * configure.ac: Check for declaration of basename and getopt.
6211 * config.in: Regenerate.
6212 * configure: Regenerate.
6213 * internal.h (ustrcspn): New.
6214 * macro.c (create_iso_definition): Fix allocation of memory.
6215 (padding_token): Add cast to remove const-ness.
6216 * pch.c (cpp_read_state): Use ustrcspn.
6217
ecddfb39
MS
62182005-02-08 Mike Stump <mrs@apple.com>
6219
6220 * files.c (pchf_adder): Remove.
6221 (struct pchf_adder_info): Likewise.
6222 (_cpp_save_file_entries): Write out all files so that #import works.
6223
9fcdd891
JM
62242005-01-23 Joseph S. Myers <joseph@codesourcery.com>
6225
6226 * configure: Regenerate.
6227
ecfd72e7
TS
62282005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
6229
6230 * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader.
6231
6c25a4f7 6232 * include/cpplib.h: Also update copyright years.
c5ff069d 6233
942926ad
GK
62342005-01-03 Geoffrey Keating <geoffk@apple.com>
6235
6236 * files.c (_cpp_find_file): Add files found by search_path_exhausted
6237 to the list of all files.
6238
a2566ae9
GDR
62392005-01-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
6240
6241 * internal.h: Update references to Cpp lib filenames.
6242 * directives.c: Likewise.
6243 * init.c: Likewise.
6244 * macro.c: Likewise.
6245 * traditional.c: Likewise.
6246
1b449375
EB
62472004-12-15 Eric Botcazou <ebotcazou@libertysurf.fr>
6248
6249 PR preprocessor/15167
6250 * files.c (destroy_cpp_file): New function.
6251 (should_stack_file): Make a new file if the
6252 compared file is still stacked.
6253
28303828
NN
62542004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
6255
c5ff069d 6256 PR preprocessor/17610
28303828
NN
6257 * directives.c (do_include_common): Error out if an empty filename
6258 is given for #include (or #include_next or #import).
6259
c812785a
RS
62602004-11-27 Roger Sayle <roger@eyesopen.com>
6261 Zack Weinberg <zack@codesourcery.com>
6262
6263 * internal.h: Replace all uses of uchar with unsigned char.
6264 * include/cpp-id-data.h: Likewise. Guard typedef of uchar
6265 with !IN_GCC, so uchar is only defined whilst building libcpp.
6266
f91eaa01
KC
62672004-11-24 Kelley Cook <kcook@gcc.gnu.org>
6268
6269 * aclocal.m4: Regenerate.
6270
f78ce0c2
RS
62712004-11-24 Roger Sayle <roger@eyesopen.com>
6272
6273 PR preprocessor/15824
6274 * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
6275 directly, instead of the non-existant "system.h" and "ansidecl.h".
6276 * configure: Regenerate.
6277
b5b3e36a 62782004-11-23 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 6279 Joseph Myers <joseph@codesourcery.com>
b5b3e36a
DJ
6280
6281 * internal.h (struct lexer_state): Add in_deferred_pragma.
6282 * directives.c (struct pragma_entry): Add allow_expansion.
6283 (insert_pragma_entry): Take allow_expansion flag.
6284 (register_pragma): Likewise.
6285 (cpp_register_pragma): Likewise.
6286 (_cpp_init_internal_pragmas): Update calls to cpp_register_pragma.
6287 (do_pragma): Honor allow_expansion.
6288 (cpp_handle_deferred_pragma): Set in_deferred_pragma.
6289 * include/cpplib.h (cpp_register_pragma): Update prototype.
6290
a8e68029 62912004-11-18 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 6292 Mark Mitchell <mark@codesourcery.com>
a8e68029
DJ
6293
6294 * configure.ac (i[34567]86-*-solaris2.1[0-9]*): Set
6295 need_64bit_hwint=yes.
6296 * configure: Regenerate.
6297
50f47ee0
JM
62982004-11-09 Joseph S. Myers <joseph@codesourcery.com>
6299
6300 * Makefile.in ($(PACKAGE).pot): New rule. Depend on
6301 po/$(PACKAGE).pot.
6302 (po/$(PACKAGE).pot): Use ":" instead of "," in --keyword
6303 arguments. Add keywords _, N_, SYNTAX_ERROR and SYNTAX_ERROR2.
6304 Remove local srcdir path from generated file.
6305
968e08d6 63062004-11-04 Zack Weinberg <zack@codesourcery.com>
c5ff069d 6307 Gerald Pfeifer <gerald@pfeifer.com>
968e08d6
ZW
6308
6309 * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H
6310 as well.
6311
3da3d587
ZW
63122004-10-27 Zack Weinberg <zack@codesourcery.com>
6313
6314 PR 18075
6315 * directives.c (do_pragma): Do not defer pragmas which are unknown.
6316 (cpp_handle_deferred_pragma): Add cast to silence warning.
6317
ac24fc25
JM
63182004-10-14 Joseph S. Myers <jsm@polyomino.org.uk>
6319
6320 * errors.c (_cpp_begin_message): Print "error: " for errors.
6321
7731405b
AJ
63222004-10-10 Andreas Jaeger <aj@suse.de>
6323
6324 * makedepend.c: Include mkdeps.h for prototype of deps_add_vpath.
6325 * Makefile.in (makedepend.o): Add dependency on mkdeps.h.
6326
646544e3
AP
63272004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
6328
6329 * pch.c (cpp_write_pch_state): Remove variable z as it is not
6330 used.
6331 (cpp_read_state): Remove unused variables, m, d and mac_count.
6332
67a74146
PB
63332004-09-29 Per Bothner <per@bothner.com>
6334
6335 * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
6336 cb.line_change. Otherwise do_pragma will call the line_change
6337 call-back with a meaningless line number.
6338
018a4785
ZW
63392004-09-24 Zack Weinberg <zack@codesourcery.com>
6340
6341 * configure.ac: Move AC_PROG_MAKE_SET, AC_PROG_INSTALL to
6342 programs cluster. Use ACX_PROG_CC_WARNING_OPTS,
6343 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_PROG_CC_WARNINGS_ARE_ERRORS.
6344 * aclocal.m4, configure: Regenerate.
6345 * init.c: Include localedir.h.
6346 * Makefile.in (WARN_CFLAGS, ALL_CFLAGS): New variables.
6347 (DEFS): Delete.
6348 (.c.o): Use $(ALL_CFLAGS).
6349 (localedir.h, localedir.hs): New rules.
6350 (clean): Use rm -rf to remove directories.
6351 (distclean): Also delete localedir.h and localedir.hs.
6352 (init.o): Update dependencies.
6353
88fa57d7
KC
63542004-09-22 Kelley Cook <kcook@gcc.gnu.org>
6355
6356 * Makefile.in (aclocal.m4): Update dependencies.
6357 * configure.ac (AC_CONFIG_MACRO_DIR): New.
6358 * aclocal.m4, configure: Regenerate.
6359
8f8e9aa5
ZW
63602004-09-17 Zack Weinberg <zack@codesourcery.com>
6361
a29f62d9
ZW
6362 * charset.c (_cpp_destroy_iconv, emit_numeric_escape)
6363 (_cpp_convert_input, _cpp_default_encoding): Add comments.
6364 Some other comments in this file also tweaked.
6365
8f8e9aa5
ZW
6366 * directives.c (do_pragma): Save current buffer position
6367 before lexing the pragma keywords; don't call
6368 _cpp_backup_tokens in the defer_pragmas case.
6369
a2981930
PB
63702004-09-15 Per Bothner <per@bothner.com>
6371
6372 * include/line-map.h (line_map_start): Add parameter names so
6373 preceding comment makes sense.
6374 (linemap_add): Remove from comment mention of non-existing parameter.
6375
21b11495
ZW
63762004-09-09 Matt Austern <austern@apple.com>
6377 Zack Weinberg <zack@codesourcery.com>
6378
6379 * include/cpplib.h (TTYPE_TABLE): Remove CPP_ and SPELL_
6380 prefixes throughout. Add entry for PRAGMA. Remove
6381 unnecessary "= 0" from EQ.
6382 (enum cpp_ttype): Adjust OP and TK definitions to restore
6383 prefixes, via token-paste.
6384 (CPP_LAST_EQ, CPP_FIRST_DIGRAPH, CPP_LAST_PUNCTUATOR, CPP_LAST_CPP_OP):
6385 Change from #defines to additional cpp_ttype enumerators.
6386 (struct cpp_options): Add defer_pragmas.
6387 (cpp_handle_deferred_pragma): Prototype new interface.
6388
6389 * internal.h (struct cpp_reader): Add directive_result.
6390 * directives.c (struct pragma_entry): Add is_internal field;
6391 give boolean fields type bool.
6392 (start_directive): Initialize pfile->directive_result.type.
6393 (_cpp_do__Pragma): Likewise.
6394 (run_directive): Do not crash if pfile->buffer->prev is NULL.
6395 (insert_pragma_entry): Add 'internal' argument; set new->is_internal
6396 from it.
6397 (register_pragma): New static function, bulk of former
6398 cpp_register_pragma here; add 'internal' argument, pass along
6399 to insert_pragma_entry.
6400 (cpp_register_pragma): Now a wrapper around register_pragma which
6401 always passes false for 'internal' argument.
6402 (_cpp_init_internal_pragmas): Call register_pragma directly, passing
6403 true for 'internal'.
6404 (do_pragma): If CPP_OPTION (pfile, defer_pragmas) and this isn't
6405 an internal pragma, save text till the end of the line as a CPP_PRAGMA
6406 token instead of executing the pragma.
6407 (cpp_handle_deferred_pragma): New interface.
6408 * lex.c (token_spellings): Adjust OP and TK definitions to
6409 match changes to cpplib.h.
6410 (_cpp_lex_token): Check for a directive-result token and
6411 return it if present.
6412 (cpp_token_val_index): Handle CPP_PRAGMA.
6413 * macro.c (cpp_builtin_macro_text): Correct comment.
6414 (builtin_macro): Handle directive-result tokens from _cpp_do__Pragma.
6415
0fd9e8dd
SB
64162004-09-06 Serge Belyshev <belyshev@lubercy.com>
6417
6418 PR preprocessor/14699
6419 * symtab.c (ht_dump_statistics): Change type of sum_of_squares
6420 from size_t to double.
6421
39b8ce7f
AS
64222004-08-28 Andreas Schwab <schwab@suse.de>
6423 Andreas Jaeger <aj@suse.de>
6424
6425 * configure.ac: Set PACKAGE correctly.
6426 * configure: Regenerated.
6427
5d1f4b27
PB
64282004-08-25 Paolo Bonzini <bonzini@gnu.org>
6429
6430 * Makefile.in: Add back top_builddir.
6431
078e3ffe
PB
64322004-08-25 Paolo Bonzini <bonzini@gnu.org>
6433
6434 * configure.ac: Replace Automake macro invocations
6435 with manual Autoconf checks and substitutions.
6436 * configure: Regenerate.
6437 * aclocal.m4: Regenerate.
6438 * config.in: Regenerate.
6439 * Makefile.am: Removed.
6440 * Makefile.in: Heavy simplification and reorganization.
6441
b3f8d95d
MM
64422004-08-09 Mark Mitchell <mark@codesourcery.com>
6443
6444 * configure.ac (arm*-*-eabi*): New target.
6445 (arm*-*-symbianelf*): Likewise.
6446 * configure: Regenerated.
6447
72bb2c39
BI
64482004-07-24 Bernardo Innocenti <bernie@develer.com>
6449
6450 * internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
6451 * directives.c: Use XNEW-family macros from libiberty.
6452 * lex.c: Likewise.
6453 * macro.c: Likewise.
6454 * cpplib.h (cpp_deps_style): Export enum with name.
6455
21b11495 64562004-07-23 Matthias Klose <doko@debian.org>
72bb2c39 6457
21b11495 6458 * init.c (init_library): Use PACKAGE for the text domain.
85eac2a0 6459
a23ee064
AP
64602004-07-16 Andris Pavenis <pavenis@latnet.lv>
6461
6462 PR preprocessor/16366
6463 * internal.h (struct cpp_reader): New field dir_hash.
6464 * files.c (make_cpp_dir): Use dir_hash, not file_hash.
6465 (_cpp_init_files, _cpp_cleanup_files): Update for new field.
6466
a09d4744
NB
64672004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
6468
6469 PR preprocessor/16192
6470 PR preprocessor/15913
6471 PR preprocessor/15572
6472 * expr.c (_cpp_parse_expr): Handle remaining cases where an
6473 expression is missing.
6474 * init.c (post_options): Traditional cpp doesn't do // comments.
6475
f58f7def
PB
64762004-06-30 Per Bothner <per@bothner.com>
6477
6478 * include/line-map.h (fileline): Remove old typedef.
6479 * internal.h (struct cpp_reader): Use source_location typedef instead.
6480
e83d8d43
ZW
64812004-06-26 Zack Weinberg <zack@codesourcery.com>
6482
6483 Partially revert patch of 2004-06-05.
6484 * files.c (search_cache): Remove pfile argument. Don't check
6485 for file that would be found by "" or <> search here...
6486 (_cpp_find_file): ...do it here, before calling find_file_in_dir.
6487 Do not apply directory-of-current-file correction to files
6488 found by this check. Rearrange code slightly.
6489
c0d578e6
GK
64902004-06-21 Geoffrey Keating <geoffk@apple.com>
6491
6492 * files.c (should_stack_file): Correct swapped parameters to call
6493 to cb.read_pch.
6494 * pch.c (cpp_valid_state): Handle -fpreprocessed.
6495
159d5224
PB
64962004-06-15 Paolo Bonzini <bonzini@gnu.org>
6497
6498 * Makefile.in: Regenerate with automake 1.8.5.
6499 * aclocal.m4: Likewise.
6500 * configure: Regenerate.
6501
2fac9c01
ZW
65022004-06-11 Zack Weinberg <zack@codesourcery.com>
6503
6504 * configure.ac: Don't invoke ACX_HEADER_STDBOOL.
6505 * configure, config.in: Regenerate.
6506 * system.h: Unconditionally define bool as unsigned char,
6507 BOOL_BITFIELD as unsigned int.
6508 * .cvsignore: New file.
6509
d8044160
GK
65102004-06-09 Geoffrey Keating <geoffk@apple.com>
6511
6512 * traditional.c (push_replacement_text): Set macro->traditional.
6513 (save_replacement_text): Likewise.
6514 * pch.c (cpp_write_pch_state): Don't write list of defined macros.
6515 (struct save_macro_item): Delete.
6516 (struct save_macro_data): Use a character array not the previous
6517 structured format.
6518 (save_macros): Save macro as text not as internal structures.
6519 (cpp_prepare_state): Update for changes to save_macro_data.
6520 (cpp_read_state): Don't read macros defined in PCH. Restore
2cf22451 6521 -D macros as text.
d8044160
GK
6522 * macro.c (create_iso_definition): Honour alloc_subobject.
6523 Clear traditional flag.
6524 (_cpp_create_definition): Honour alloc_subobject.
6525 * lex.c (cpp_token_val_index): New.
6526 * internal.h: Include cpp-id-data.h.
6527 (uchar): Move definition to cpp-id-data.h.
6528 (U): Likewise.
6529 (cpp_macro): Likewise.
6530 * directives.c (struct answer): Move to cpp-id-data.h.
6531 (do_assert): Honour alloc_subobject.
2cf22451
ZW
6532
6533 * include/symtab.h (struct ht): Add field 'alloc_subobject'.
6534 * include/cpplib.h (struct cpp_string): Add GTY marker.
6535 (enum cpp_token_fld_kind): New.
6536 (struct cpp_token): Add GTY markers.
6537 (cpp_token_val_index): Prototype.
6538 (CPP_HASHNODE_VALUE_IDX): New.
6539 (struct cpp_hashnode): Don't skip fields of 'value' when marking.
6540 * include/cpp-id-data.h: New file.
d8044160 6541
0ca8e815
PB
65422004-06-09 Paolo Bonzini <bonzini@gnu.org>
6543
6544 * Makefile.am (all-local): New.
6545 * Makefile.in: Regenerate.
6546
b51fa00f
RS
65472004-06-06 Roger Sayle <roger@eyesopen.com>
6548
6549 * Makefile.am (LIBICONV): Declare.
6550 (makedepend_LDADD): Use LIBICONV.
6551 * Makefile.in: Regenerate.
6552
5e2f3f39
AP
65532004-06-05 Andrew Pinski <pinskia@physics.uc.edu>
6554
6555 * Makefile.am (LIBINTL): Declare
6556 (makedepend_LDADD): Use LIBINTL.
6557 * Makefile.in: Regenerate.
6558
c6e83800
ZW
65592004-06-05 Zack Weinberg <zack@codesourcery.com>
6560
6561 * Makefile.am: Add makedepend.
6562 * Makefile.in, aclocal.m4: Regenerate.
6563 * charset.c: Insert a space to avoid a warning.
6564 * directives.c: Include mkdeps.h.
6565 (_cpp_handle_directive): Reenable macro expander if appropriate.
6566 (undefine_macros): Inline body of _cpp_free_definition for speed.
6567 Do not call undef callback or _cpp_warn_if_unused_macro.
6568 (cpp_get_deps): New interface.
6569 * files.c (search_cache): Add pfile argument. Check for file
6570 that would be found by "" or <> search here...
6571 (_cpp_find_file): ...not here. Correct recorded start_dir of
6572 files found by directory-of-current-file search that would be
6573 found by "" or <> search.
6574 * init.c (cpp_add_dependency_target): Delete.
6575 * internal.h (struct lexer_state): Add discarding_output flag.
6576 * lex.c (lex_identifier): Compute hash function while scanning.
6577 * macro.c (cpp_scan_nooutput): Disable macro expansion outside
6578 directives.
6579 * makedepend.c: New file.
6580 * mkdeps.c (struct deps): Add vpath vector.
6581 (apply_vpath, deps_add_vpath): New function.
6582 (deps_free): Free vpath vector.
6583 (deps_add_dep, deps_add_target): Use apply_vpath.
6584 * symtab.c (calc_hash): Use HT_HASHSTEP and HT_FINISH.
6585 (ht_lookup_with_hash): New function.
6586 * cpplib.h, mkdeps.h: Update prototypes.
6587 * symtab.h: Update prototypes.
6588 (HT_HASHSTEP, HT_FINISH): New macros.
6589
b453c95f
GK
65902004-05-29 Geoffrey Keating <geoffk@apple.com>
6591
6592 * symtab.c (ht_create): Set entries_owned.
6593 (ht_destroy): Honour entries_owned.
6594 (ht_expand): Likewise.
6595 (ht_load): New.
2cf22451
ZW
6596 * include/symtab.h (struct ht): New field 'entries_owned'
6597 (ht_load): New prototype.
b453c95f 6598
963e23c5
PB
65992004-05-26 Paolo Bonzini <bonzini@gnu.org>
6600
6601 PR bootstrap/15651
6602 * configure.ac: Fix m4 quoting when picking
6603 the size of HOST_WIDE_INT.
6604 * configure: Regenerate.
6605
0429bc77
PB
66062004-05-25 Paolo Bonzini <bonzini@gnu.org>
6607
6608 * Makefile.am: the correct directory for
6609 gettext include files is given by @INCINTL@.
6610 * Makefile.in: Regenerate.
6611
c86dd7db
PB
66122004-05-24 Paolo Bonzini <bonzini@gnu.org>
6613
6614 * system.h [!ENABLE_NLS]: dgettext takes two
6615 parameters.
6616
4f4e53dd
PB
66172004-05-23 Paolo Bonzini <bonzini@gnu.org>
6618
6619 Moved libcpp from the gcc subdirectory to the toplevel.
6620 * Makefile.am: New file.
6621 * Makefile.in: Regenerate.
6622 * configure.ac: New file.
6623 * configure: Regenerate.
6624 * config.in: Regenerate.
6625 * charset.c: Moved from gcc/cppcharset.c. Add note about
6626 brokenness of input charset detection. Adjust for change
6627 in name of cppucnid.h.
6628 * errors.c: Moved from gcc/cpperror.c. Do not include intl.h.
6629 * expr.c: Moved from gcc/cppexp.c.
6630 * files.c: Moved from gcc/cppfiles.c. Do not include intl.h.
6631 Remove #define of O_BINARY, it is in system.h.
6632 * identifiers.c: Moved from gcc/cpphash.c.
6633 * internal.h: Moved from gcc/cpphash.h. Change header
6634 guard name. All other files adjusted to match name change.
6635 * init.c: Moved from gcc/cppinit.c.
6636 (init_library) [ENABLE_NLS]: Call bindtextdomain.
6637 * lex.c: Moved from gcc/cpplex.c.
6638 * directives.c: Moved from gcc/cpplib.c.
6639 * macro.c: Moved from gcc/cppmacro.c.
6640 * pch.c: Moved from gcc/cpppch.c. Do not include intl.h.
6641 * traditional.c: Moved from gcc/cpptrad.c.
6642 * ucnid.h: Moved from gcc/cppucnid.h. Change header
6643 guard name.
6644 * ucnid.pl: Moved from gcc/cppucnid.pl.
6645 * ucnid.tab: Moved from gcc/cppucnid.tab. Change header
6646 guard name.
6647 * symtab.c: Moved from gcc/hashtable.c.
6648 * line-map.c: Moved from gcc. Do not include intl.h.
6649 * mkdeps.c: Moved from gcc.
6650 * system.h: New file.
2cf22451
ZW
6651 * include/cpplib.h: Moved from gcc. Change header guard name.
6652 * include/line-map.h: Moved from gcc. Change header guard name.
6653 * include/mkdeps.h: Moved from gcc. Change header guard name.
6654 * include/symtab.h: Moved from gcc/hashtable.h. Change header
6655 guard name.
818ab71a 6656\f
c48514be 6657Copyright (C) 2004-2021 Free Software Foundation, Inc.
818ab71a
JJ
6658
6659Copying and distribution of this file, with or without modification,
6660are permitted in any medium without royalty provided the copyright
6661notice and this notice are preserved.