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