Don't use C++ style comments in libcpp
[gcc.git] / libcpp / ChangeLog
1 2012-04-29 Dodji Seketeli <dodji@redhat.com>
2
3 * lex.c (lex_raw_string): Change C++ style comments into C style
4 comments.
5 (lex_string): Likewise.
6
7 2012-04-27 Ollie Wild <aaw@google.com>
8
9 * include/cpplib.h (struct cpp_options): Add new field,
10 warn_literal_suffix.
11 (CPP_W_LITERAL_SUFFIX): New enum.
12 * init.c (cpp_create_reader): Default initialization of
13 warn_literal_suffix.
14 * lex.c (lex_raw_string): Treat user-defined literals which don't
15 begin with '_' as separate tokens and produce a warning.
16 (lex_string): Ditto.
17
18 2012-04-26 Manuel López-Ibáñez <manu@gcc.gnu.org>
19
20 * line-map.c (linemap_resolve_location): Synchronize comments with
21 those in line-map.h.
22 * include/line-map.h (linemap_resolve_location): Fix spelling in
23 comment.
24
25 2012-03-22 Richard Earnshaw <rearnsha@arm.com>
26
27 * lex.c (search_line_fast): Provide Neon-optimized version for ARM.
28
29 2012-03-14 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
30
31 * lex.c: Remove Solaris 8 reference.
32
33 2012-02-14 Walter Lee <walt@tilera.com>
34
35 * configure.ac: Require 64-bit hwint for tilegx and tilepro.
36 * configure: Regenerate.
37
38 2012-01-09 Richard Guenther <rguenther@suse.de>
39
40 * macro.c (_cpp_builtin_macro_text): Remove unused variable map.
41
42 2012-01-09 Gary Funck <gary@intrepid.com>
43
44 PR preprocessor/33919
45 * files.c (_cpp_get_file_name): New. Implement file name
46 access function.
47 * internal.h (_cpp_get_file_name): New prototype.
48 * macro.c (_cpp_builtin_macro_text): Call _cpp_get_file_name()
49 to use pfile->main_file in lieu of traversing INCLUDED_FROM chain.
50
51 2012-01-03 Olivier Hainque <hainque@adacore.com>
52
53 * system.h: Prior to #define, #undef fopen and freopen unconditionally.
54
55 2011-12-20 Joseph Myers <joseph@codesourcery.com>
56
57 * include/cpplib.h (CLK_GNUC1X): Change to CLK_GNUC11.
58 (CLK_STDC1X): Change to CLK_STDC11.
59 * init.c (lang_defaults): Update comments.
60 (cpp_init_builtins): Update language tests. Use 201112L for C11
61 __STDC_VERSION__.
62
63 2011-12-20 Andreas Schwab <schwab@linux-m68k.org>
64
65 * configure: Regenerate.
66
67 2011-12-19 Andreas Schwab <schwab@linux-m68k.org>
68
69 * configure: Regenerate.
70
71 2011-12-07 Jakub Jelinek <jakub@redhat.com>
72
73 PR bootstrap/50237
74 * internal.h (_cpp_init_lexer): New prototype.
75 * init.c (init_library): Call it.
76 * lex.c (init_vectorized_lexer): Remove constructor attribute,
77 add inline keyword.
78 (HAVE_init_vectorized_lexer): Define.
79 (_cpp_init_lexer): New function.
80
81 2011-12-03 Dodji Seketeli <dodji@redhat.com>
82
83 * macro.c (tokens_buff_remove_last_token)
84 (tokens_buff_put_token_to): Add an 'inline' function specifier to
85 the prototype.
86
87 2011-11-22 Diego Novillo <dnovillo@google.com>
88
89 * include/line-map.h (linemap_dump): Declare.
90 (line_table_dump): Declare.
91 * line-map.c (linemap_dump): New.
92 (line_table_dump): New.
93
94 2011-11-21 Ed Smith-Rowland <3dw4rd@verizon.net>
95
96 PR c++/50958
97 * expr.c (cpp_userdef_char_remove_type): Fix typo.
98
99 2011-11-03 Michael Matz <matz@suse.de>
100
101 PR bootstrap/50857
102 * configure.ac: Check for -fno-exceptions -fno-rtti.
103 * configure: Regenerate.
104 * Makefile.in (NOEXCEPTION_FLAGS): New flag.
105 (ALL_CXXFLAGS): Use it.
106
107 2011-11-02 Paolo Carlini <paolo.carlini@oracle.com>
108
109 * internal.h (uxstrdup, ustrchr): Return const unsigned char *.
110
111 2011-11-02 Jason Merrill <jason@redhat.com>
112
113 PR c++/50810
114 * configure.ac: Add -Wno-narrowing to warning options.
115
116 2011-10-31 Jason Merrill <jason@redhat.com>
117
118 PR libstdc++/1773
119 * init.c (cpp_init_builtins): Set __cplusplus for C++11.
120
121 PR c++/50920
122 * include/cpplib.h (enum c_lang): Rename CLK_CXX0X to CLK_CXX11,
123 CLK_GNUCXX0X to CLK_GNUCXX11.
124
125 2011-10-26 Ed Smith-Rowland <3dw4rd@verizon.net>
126
127 Implement C++11 user-defined literals.
128 * expr.c: (cpp_interpret_float_suffix, cpp_interpret_int_suffix,
129 cpp_userdef_string_remove_type, cpp_userdef_string_add_type,
130 cpp_userdef_char_remove_type, cpp_userdef_char_add_type,
131 cpp_userdef_string_p, cpp_userdef_char_p, cpp_get_userdef_suffix): New.
132 (cpp_classify_number): Classify unrecognized tokens as user-defined
133 literals.
134 * include/cpplib.h: Add new tokens for user-defined literals.
135 * init.c: Add new preprocessor flag (cxx11).
136 * lex.c: (lex_string, lex_raw_string): Handle user-defined literals
137 including concatenation and promotion with suffixes.
138
139 2011-10-24 Dodji Seketeli <dodji@redhat.com>
140
141 * line-map.c (linemap_macro_map_lookup): Fix logic.
142
143 2011-10-24 Dodji Seketeli <dodji@redhat.com>
144
145 * include/line-map.h (linemap_expand_location): Take a line table
146 parameter. Update comment.
147 (linemap_resolve_location): Update comment.
148 (linemap_expand_location_full): Remove.
149 * line-map.c (linemap_resolve_location): Handle reserved
150 locations; return a NULL map in those cases.
151 (linemap_expand_location): If location is reserved, return a
152 zeroed expanded location. Update comment. Take a line table to
153 assert that the function takes non-virtual locations only.
154 (linemap_expand_location_full): remove.
155 (linemap_dump_location): Handle the fact that
156 linemap_resolve_location can return NULL line maps when the
157 location resolves to a reserved location.
158
159 * line-map.c (linemap_macro_map_lookup): Fix logic.
160
161 2011-10-22 Dodji Seketeli <dodji@redhat.com>
162
163 PR bootstrap/50778
164 * include/internal.h (_cpp_remaining_tokens_num_in_context): Take the
165 context to act upon.
166 * lex.c (_cpp_remaining_tokens_num_in_context): Likewise. Update
167 comment.
168 (cpp_token_from_context_at): Likewise.
169 (cpp_peek_token): Use the context to peek tokens from.
170
171 2011-10-20 Dodji Seketeli <dodji@redhat.com>
172
173 PR bootstrap/50801
174 * lex.c (_cpp_remaining_tokens_num_in_context): Fix computation of
175 number of tokens.
176
177 2011-10-18 Dodji Seketeli <dodji@redhat.com>
178
179 PR bootstrap/50760
180 * include/line-map.h (struct linemap_stats): Change the type of
181 the members from size_t to long.
182 * macro.c (macro_arg_token_iter_init): Unconditionally initialize
183 iter->location_ptr.
184
185 2011-10-17 Dodji Seketeli <dodji@redhat.com>
186
187 * line-map.c (linemap_macro_map_loc_to_exp_point): Avoid setting a
188 variable without using it if ENABLE_CHECKING is not defined. Mark
189 the LOCATION parameter as being unused.
190
191 2011-10-15 Tom Tromey <tromey@redhat.com>
192 Dodji Seketeli <dodji@redhat.com>
193
194 * include/line-map.h (struct line_maps::alloced_size_for_request):
195 New member.
196 * line-map.c (new_linemap): Use set->alloced_size_for_request to
197 get the actual allocated size of line maps.
198
199 2011-10-15 Tom Tromey <tromey@redhat.com>
200 Dodji Seketeli <dodji@redhat.com>
201
202 * line-map.h (struct linemap_stats): Declare new struct.
203 (linemap_get_statistics): Declare ...
204 * line-map.c (linemap_get_statistics): ... new function.
205 * macro.c (num_expanded_macros_counter, num_macro_tokens_counter):
206 Declare new counters.
207 (enter_macro_context, replace_args): Update
208 num_macro_tokens_counter.
209 (cpp_get_token_1): Update num_expanded_macros_counter.
210
211 2011-10-15 Tom Tromey <tromey@redhat.com>
212 Dodji Seketeli <dodji@redhat.com>
213
214 * include/cpplib.h (struct cpp_options)<debug>: New struct member.
215 * include/line-map.h (linemap_dump_location): Declare ...
216 * line-map.c (linemap_dump_location): ... new function.
217
218 2011-10-15 Tom Tromey <tromey@redhat.com>
219 Dodji Seketeli <dodji@redhat.com>
220
221 * include/cpplib.h (struct cpp_options)<track_macro_expansion>:
222 New option.
223 * internal.h (struct macro_context): New struct.
224 (enum context_tokens_kind): New enum.
225 (struct cpp_context)<tokens_kind>: New member of type enum
226 context_tokens_kind.
227 (struct cpp_context)<macro>: Remove this. Replace it with an enum
228 of macro and macro_context.
229 (struct cpp_context)<direct_p>: Remove.
230 (_cpp_remaining_tokens_num_in_context): Declare new function.
231 * directives.c (destringize_and_run): Adjust.
232 * lex.c (_cpp_remaining_tokens_num_in_context)
233 (_cpp_token_from_context_at): Define new functions
234 (cpp_peek_token): Use them.
235 * init.c (cpp_create_reader): Initialize the base context to zero.
236 (_cpp_token_from_context_at): Define new static function.
237 (cpp_peek_token): Use new _cpp_remaining_tokens_num_in_context and
238 _cpp_token_from_context_at.
239 * macro.c (struct macro_arg)<virt_locs, expanded_virt_locs>: New
240 members.
241 (enum macro_arg_token_kind): New enum.
242 (struct macro_arg_token_iter): New struct.
243 (maybe_adjust_loc_for_trad_cpp, push_extended_tokens_context)
244 (alloc_expanded_arg_mem, ensure_expanded_arg_room)
245 (delete_macro_args, set_arg_token, get_arg_token_location)
246 (arg_token_ptr_at, macro_arg_token_iter_init)
247 (macro_arg_token_iter_get_token)
248 (macro_arg_token_iter_get_location, macro_arg_token_iter_forward)
249 (expanded_token_index, tokens_buff_new, tokens_buff_count)
250 (tokens_buff_last_token_ptr, tokens_buff_put_token_to)
251 (tokens_buff_add_token, tokens_buff_remove_last_token)
252 (reached_end_of_context, consume_next_token_from_context): New
253 static functions.
254 (cpp_get_token_1): New static function. Split and extended from
255 cpp_get_token. Use reached_end_of_context and
256 consume_next_token_from_context. Unify its return point. Move
257 the location tweaking from cpp_get_token_with_location in here.
258 (cpp_get_token): Use cpp_get_token_1
259 (stringify_arg): Use the new arg_token_at.
260 (paste_all_tokens): Support tokens coming from extended tokens
261 contexts.
262 (collect_args): Return the number of collected arguments, by
263 parameter. Store virtual locations of tokens that constitute the
264 collected args.
265 (funlike_invocation_p): Return the number of collected arguments,
266 by parameter.
267 (enter_macro_context): Add a parameter for macro expansion point.
268 Pass it to replace_args and to the "used" cpp callback. Get the
269 number of function-like macro arguments from funlike_invocation_p,
270 pass it to the new delete_macro_args to free the memory used by
271 macro args. When -ftrack-macro-expansion is in effect, for macros
272 that have no arguments, create a macro map for the macro expansion
273 and use it to allocate proper virtual locations for tokens
274 resulting from the expansion. Push an extended tokens context
275 containing the tokens resulting from macro expansion and their
276 virtual locations.
277 (replace_args): Rename the different variables named 'count' into
278 variables with more meaningful names. Create a macro map;
279 allocate virtual locations of tokens resulting from this
280 expansion. Use macro_arg_token_iter to iterate over tokens of a
281 given macro. Handle the case of the argument of
282 -ftrack-macro-expansion being < 2. Don't free macro arguments
283 memory resulting from expand_arg here, as these are freed by the
284 caller of replace_arg using delete_macro_args now. Push extended
285 token context.
286 (next_context, push_ptoken_context, _cpp_push_token_context)
287 (_cpp_push_text_context): Properly initialize the context.
288 (expand_arg): Use the new alloc_expanded_arg_mem,
289 push_extended_tokens_context, cpp_get_token_1, and set_arg_token.
290 (_cpp_pop_context): Really free the memory held by the context.
291 Handle freeing memory used by extended tokens contexts.
292 (cpp_get_token_with_location): Use cpp_get_token_1.
293 (cpp_sys_macro_p): Adjust.
294 (_cpp_backup_tokens): Support the new kinds of token contexts.
295 * traditional.c (recursive_macro): Adjust.
296
297 2011-10-15 Tom Tromey <tromey@redhat>
298 Dodji Seketeli <dodji@redhat.com>
299
300 * include/line-map.h (enum lc_reason)<LC_ENTER_MACRO>: New enum
301 member.
302 (MAX_SOURCE_LOCATION): New constant.
303 (struct line_map_ordinary, struct line_map_macro): New structs.
304 (struct line_map): Turn this into a union of the two above. Add
305 comments.
306 (struct maps_info): New struct.
307 (struct line_maps)<info_ordinary, info_macro>: Two new fields.
308 These now carry the map information that was previously scattered
309 in struct line_maps.
310 (struct map_info::allocated): Fix comment.
311 (MAP_START_LOCATION, ORDINARY_MAP_FILE_NAME)
312 (ORDINARY_MAP_STARTING_LINE_NUMBER)
313 (ORDINARY_MAP_INCLUDER_FILE_INDEX)
314 (ORDINARY_MAP_IN_SYSTEM_HEADER_P)
315 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS, MACRO_MAP_MACRO)
316 (MACRO_MAP_NUM_MACRO_TOKENS MACRO_MAP_LOCATIONS)
317 (MACRO_MAP_EXPANSION_POINT_LOCATION)
318 (LOCATION_POSSIBLY_IN_MACRO_MAP_P, LINEMAPS_MAP_INFO)
319 (LINEMAPS_MAPS, LINEMAPS_ALLOCATE, LINEMAPS_USED, LINEMAPS_CACHE)
320 (LINEMAPS_LAST_MAP, LINEMAPS_LAST_ALLOCATED_MAP)
321 (LINEMAPS_ORDINARY_MAPS, LINEMAPS_ORDINARY_ALLOCATED)
322 (LINEMAPS_ORDINARY_USED, LINEMAPS_ORDINARY_CACHE)
323 (LINEMAPS_LAST_ORDINARY_MAP, LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP)
324 (LINEMAPS_MACRO_MAPS, LINEMAPS_MACRO_ALLOCATED)
325 (LINEMAPS_MACRO_USED, LINEMAPS_MACRO_CACHE)
326 (LINEMAPS_LAST_MACRO_MAP, LINEMAPS_LAST_ALLOCATED_MACRO_MAP)
327 (LINEMAPS_MAP_AT, LINEMAPS_ORDINARY_MAP_AT)
328 (LINEMAPS_MACRO_MAP_AT): New accessors for ordinary and macro map
329 information.
330 (linemap_check_ordinary, linemap_assert)
331 (linemap_location_before_p): New macros.
332 (linemap_position_for_line_and_column)
333 (linemap_tracks_macro_expansion_locs_p, linemap_add_macro_token)
334 (linemap_macro_expansion_map_p)
335 (linemap_macro_map_loc_to_def_point)
336 (linemap_macro_map_loc_unwind_once)
337 (linemap_macro_map_loc_to_exp_point, linemap_step_out_once)
338 (linemap_get_source_line linemap_get_source_column)
339 (linemap_map_get_macro_name, linemap_get_file_path)
340 (linemap_location_in_system_header_p)
341 (linemap_location_from_macro_expansion_p): Declare new functions.
342 (SOURCE_LINE, SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION)
343 (LINEMAP_FILE, LINEMAP_LINE, LINEMAP_SYSP): Assert that this
344 accessors act on ordinary maps only.
345 (INCLUDED_FROM): Return NULL for main files; use the new
346 accessors.
347 (LINEMAP_POSITION_FOR_COLUMN): Use the new accessors.
348 (struct expanded_location): Move here from gcc/input.h
349 (linemap_resolve_location, linemap_expand_location)
350 (linemap_expand_location_full): Declare new functions.
351 * line-map.c: Include cpplib.h, internal.h
352 (linemap_enter_macro, linemap_add_macro_token)
353 (linemap_get_expansion_line, linemap_get_expansion_filename): New
354 functions that are private to libcpp.
355 (linemap_assert): New macro.
356 (linemap_macro_loc_to_exp_point, linemap_macro_loc_to_exp_point)
357 (linemap_macro_loc_unwind, linemap_macro_map_loc_to_def_point)
358 (linemap_macro_map_loc_unwind_toward_spelling)
359 (linemap_macro_map_loc_to_exp_point)
360 (first_map_in_common_1, first_map_in_common): New static
361 functions.
362 (new_linemap): Define new static functions. Extracted and
363 enhanced from ...
364 (linemap_add): ... here. Use linemap_assert in lieu of abort
365 previously.
366 (linemap_tracks_macro_expansion_locs_p)
367 (linemap_add_macro_token, linemap_macro_expansion_map_p)
368 (linemap_check_ordinary, linemap_macro_map_loc_to_exp_point)
369 (linemap_macro_map_loc_to_def_point)
370 (linemap_macro_map_loc_unwind_once)
371 (linemap_step_out_once, linemap_map_get_index)
372 (linemap_get_source_line,linemap_get_source_column)
373 (linemap_get_file_path, linemap_map_get_macro_name)
374 (linemap_location_in_system_header_p)
375 (linemap_location_originated_from_system_header_p)
376 (linemap_location_from_macro_expansion_p)
377 (linemap_tracks_macro_expansion_locs_p)
378 (linemap_resolve_location, linemap_expand_location)
379 (linemap_expand_location_full)
380 (linemap_tracks_macro_expansion_locs_p)
381 (linemap_position_for_line_and_column, linemap_compare_locations):
382 Define new public functions.
383 (linemap_init): Initialize ordinary and macro maps information in
384 the map set.
385 (linemap_check_files_exited): Use the new accessors.
386 (linemap_free): Remove this dead code.
387 (linemap_line_start): Assert this uses an ordinary map. Adjust to
388 use the new ordinary map accessors and data structures. Don't
389 overflow past the lowest possible macro token's location.
390 (linemap_position_for_column): Assert the ordinary maps of the map
391 set are really ordinary. Use ordinary map accessors.
392 (linemap_lookup): Keep the same logic but generalize to allow
393 lookup of both ordinary and macro maps. Do not crash when called
394 with an empty line table.
395 * directives-only.c (_cpp_preprocess_dir_only): Adjust to use the
396 new API of line-map.h.
397 * directives.c (start_directive, do_line, do_linemarker)
398 (do_linemarker): Likewise.
399 * files.c (_cpp_find_file, _cpp_stack_include, open_file_failed)
400 (make_cpp_dir, cpp_make_system_header): Likewise.
401 * init.c (cpp_read_main_file): Likewise.
402 * internal.h (CPP_INCREMENT_LINE): Likewise.
403 (linemap_enter_macro, linemap_add_macro_token)
404 (linemap_get_expansion_line, linemap_get_expansion_filename): New
405 functions private to libcpp.
406 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment)
407 (skip_line_comment, skip_whitespace, lex_raw_string)
408 (_cpp_lex_direct): Likewise.
409 * macro.c (_cpp_builtin_macro_text): Likewise.
410 (_cpp_aligned_alloc): Initialize the new name member of the macro.
411 * traditional.c (copy_comment, _cpp_scan_out_logical_line):
412 Likewise.
413 * errors.c (cpp_diagnostic): Adjust to new linemap API.
414
415 2011-08-28 Dodji Seketeli <dodji@redhat.com>
416
417 * line-map.c (linemap_add): Assert that reason must not be
418 LC_RENAME when called for the first time on a "main input file".
419
420 2011-08-22 Gabriel Charette <gchare@google.com>
421
422 * init.c (cpp_create_reader): Inititalize forced_token_location_p.
423 * internal.h (struct cpp_reader): Add field forced_token_location_p.
424 * lex.c (_cpp_lex_direct): Use forced_token_location_p.
425 (cpp_force_token_locations): New.
426 (cpp_stop_forcing_token_locations): New.
427
428 2011-08-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
429
430 PR libstdc++/1773
431 * init.c (cpp_init_builtins): Define __cplusplus 19971L.
432
433 2011-08-18 Joseph Myers <joseph@codesourcery.com>
434
435 * include/cpplib.h (struct cpp_options): Fix typo.
436
437 2011-08-18 Joseph Myers <joseph@codesourcery.com>
438
439 * include/cpplib.h (struct cpp_options): Add rliterals.
440 * init.c (struct lang_flags, lang_defaults): Add rliterals.
441 (cpp_set_lang): Set rliterals option.
442 (cpp_init_builtins): Define __STDC_UTF_16__ and __STDC_UTF_32__.
443 * lex.c (_cpp_lex_direct): Only accept raw strings if rliterals.
444
445 2011-08-15 Gabriel Charette <gchare@google.com>
446
447 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Remove.
448 Update all users to use linemap_position_for_column instead.
449
450 2011-07-28 Gabriel Charette <gchare@google.com>
451
452 * include/line-map.h (struct line_maps):
453 Remove unused field last_listed. Update all users.
454
455 2011-07-28 H.J. Lu <hongjiu.lu@intel.com>
456
457 * configure.ac: Set need_64bit_hwint to yes for x86 targets.
458 * configure: Regenerated.
459
460 2011-07-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
461
462 * system.h [__cplusplus]: Wrap C function declarations in extern "C".
463
464 2011-07-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
465 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
466
467 PR bootstrap/49794
468 * configure.ac: Test AM_ICONV with CXX.
469 * configure: Regenerate.
470 * system.h (HAVE_DESIGNATED_INITIALIZERS): Never define for C++.
471
472 2011-07-15 Dodji Seketeli <dodji@redhat.com>
473
474 * directives.c (struct if_stack): Use source_location as type
475 here.
476 * include/cpplib.h (struct cpp_callbacks)<include, define, undef,
477 indent, def_pragma, used_define, used_undef>: Properly use
478 source_location as parameter type, rather than unsigned int.
479
480 2011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
481
482 PR target/39150
483 * configure.ac (host_wide_int): Handle x86_64-*-solaris2.1[0-9]
484 like i[34567]86-*-solaris2.1[0-9]*.
485 * configure: Regenerate.
486
487 2011-06-16 Jason Merrill <jason@redhat.com>
488
489 PR c++/45399
490 * lex.c (lex_raw_string): Don't check for embedded NUL.
491
492 2011-06-06 Dodji Seketeli <dodji@redhat.com>
493
494 PR preprocessor/48532
495 * directives.c (do_pragma): Don't forget the invocation location
496 when parsing the pragma name of a namespaced pragma directive.
497
498 2011-05-29 John Tytgat <John.Tytgat@aaug.net>
499
500 * files.c (read_file_guts): Add test on non-zero value of S_ISREG.
501
502 2011-05-22 Uros Bizjak <ubizjak@gmail.com>
503
504 PR target/49104
505 * lex.c (init_vectorized_lexer): Do not set "minimum" when __3dNOW_A__
506 is defined. Check bit_MMXEXT and bit_CMOV to use search_line_mmx.
507
508 2011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
509
510 * system.h (ENUM_BITFIELD): Remove.
511
512 2011-04-24 Jakub Jelinek <jakub@redhat.com>
513
514 PR preprocessor/48740
515 * lex.c (lex_raw_string): When raw string ends with
516 ??) followed by raw prefix and ", ensure it is preprocessed
517 with ??) rather than ??].
518
519 2011-04-20 Jim Meyering <meyering@redhat.com>
520
521 * files.c (destroy_cpp_file): Remove useless if-before-free.
522 * init.c (cpp_destroy): Likewise.
523 * macro.c (replace_args): Likewise.
524 * pch.c (cpp_valid_state): Likewise.
525
526 2011-03-25 Kai Tietz <ktietz@redhat.com>
527
528 * files.c (file_hash_eq): Use filename_cmp
529 instead of strcmp.
530 (nonexistent_file_hash_eq): Likewise.
531 (remap_filename): Likewise.
532 Handle absolute DOS-path,
533 (append_file_to_dir): Check for IS_DIR_SEPARATOR
534 instead of slash.
535 (read_name_map): Likewise.
536 * linemap.c (linemap_add): Use filename_cmp
537 instead of strcmp.
538 * mkdeps.c (apply_vpath): Use filename_ncmp
539 instead of strncmp.
540 (deps_restore): Use filename_cmp instead of
541 strcmp.
542 * init.c (read_original_directory): Use
543 IS_DIR_SEPARATOR instead of checking for slash.
544
545 2011-03-21 Michael Meissner <meissner@linux.vnet.ibm.com>
546
547 PR preprocessor/48192
548 * directives.c (do_ifdef): Do not consider conditional macros as
549 being defined.
550 (do_ifndef): Ditto.
551 * expr.c (parse_defined): Ditto.
552
553 2011-03-18 Richard Henderson <rth@redhat.com>
554
555 PR bootstrap/45381
556 * lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5.
557
558 2011-11-04 Eric Botcazou <ebotcazou@adacore.com>
559 Jakub Jelinek <jakub@redhat.com>
560
561 PR preprocessor/39213
562 * directives.c (end_directive): Call _cpp_remove_overlay for deferred
563 pragmas as well in traditional mode.
564
565 2010-11-17 Ian Lance Taylor <iant@google.com>
566
567 PR bootstrap/45538
568 * configure.ac: Use AC_USE_SYSTEM_EXTENSIONS. Remove switch of
569 AC_LANG based on ENABLE_BUILD_WITH_CXX.
570
571 2010-11-16 Kai Tietz <kai.tietz@onevision.com>
572
573 PR preprocessor/17349
574 * lex.c (save_comment): Handle in argument passing c++
575 comments special.
576
577 2010-11-02 Ian Lance Taylor <iant@google.com>
578
579 * configure.ac: Use AC_SYS_LARGEFILE.
580 * configure: Rebuild.
581 * config.in: Rebuild.
582
583 2010-10-19 Basile Starynkevitch <basile@starynkevitch.net>
584
585 * line-map.h (source_location): Remove obsolete comment
586 mentioning location_s.
587
588 2010-09-29 Kai Tietz <kai.tietz@onevision.com>
589
590 PR preprocessor/45362
591 * directives.c (cpp_pop_definition): Make static.
592 (do_pragma_push_macro): Reworked to store text
593 definition.
594 (do_pragma_pop_macro): Add free text definition.
595 (cpp_push_definition): Removed.
596 * include/cpplib.h (cpp_push_definition): Removed.
597 (cpp_pop_definition): Likewise.
598 * internal.h (def_pragma_macro): Remove member 'value'
599 and add new members 'definition', 'line',
600 'syshdr', 'sued' and 'is_undef'.
601 * pch.c (_cpp_restore_pushed_macros): Rework to work
602 on text definition and store additional macro flags.
603 (_cpp_save_pushed_macros): Likewise.
604
605 2010-09-29 Joseph Myers <joseph@codesourcery.com>
606
607 * include/cpplib.h (cpp_options): Rename warn_deprecated,
608 warn_traditional, warn_long_long and pedantic.
609 * directives.c (directive_diagnostics, _cpp_handle_directive):
610 Update names of cpp_options members.
611 * expr.c (cpp_classify_number, eval_token): Update names of
612 cpp_options members.
613 * init.c (cpp_create_reader, post_options): Update names of
614 cpp_options members.
615 * internal.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Update names of
616 cpp_options members.
617 * macro.c (parse_params): Update names of cpp_options members.
618
619 2010-09-15 Ian Lance Taylor <iant@google.com>
620
621 * init.c: Fix type name in comment.
622
623 2010-08-31 Jakub Jelinek <jakub@redhat.com>
624
625 PR preprocessor/45457
626 * expr.c (parse_defined): Call pfile->cb.user_builtin_macro hook if
627 needed.
628 * directives.c (do_ifdef, do_ifndef): Likewise.
629
630 2010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
631
632 * system.h [HAVE_INTTYPES_H]: Include inttypes.h.
633
634 2010-08-24 Richard Henderson <rth@redhat.com>
635
636 PR bootstrap/45376
637 * configure.ac (HAVE_SSE4): New check.
638 * configure, config.in: Rebuild.
639 * lex.c (search_line_sse42): Omit if !HAVE_SSE4.
640
641 2010-08-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
642
643 * lex.c [__sun__ && __svr4__]: Disable init_vectorized_lexer
644 etc. on Solaris 2/x86.
645
646 2010-08-21 Richard Henderson <rth@redhat.com>
647 Andi Kleen <ak@linux.intel.com>
648 David S. Miller <davem@davemloft.net>
649
650 * configure.ac (AC_C_BIGENDIAN, AC_TYPE_UINTPTR_T): New tests.
651 (ssize_t): Check via AC_TYPE_SSIZE_T instead of AC_CHECK_TYPE.
652 (ptrdiff_t): Check via AC_CHECK_TYPE.
653 * config.in, configure: Rebuild.
654 * system.h: Include stdint.h, if available.
655 * lex.c (WORDS_BIGENDIAN): Provide default.
656 (acc_char_mask_misalign, acc_char_replicate, acc_char_cmp,
657 acc_char_index, search_line_acc_char, repl_chars, search_line_mmx,
658 search_line_sse2, search_line_sse42, init_vectorized_lexer,
659 search_line_fast): New.
660 (_cpp_clean_line): Use search_line_fast. Restructure the fast
661 loop to make it clear when we're leaving the loop. Stay in the
662 fast loop for non-trigraph '?'.
663
664 2010-06-11 Jakub Jelinek <jakub@redhat.com>
665
666 * include/cpplib.h (struct cpp_callbacks): Add user_builtin_macro
667 callback.
668 (enum cpp_builtin_type): Add BT_FIRST_USER and BT_LAST_USER.
669 (cpp_macro_definition): Remove const qual from second argument.
670 * macro.c (enter_macro_context): Call user_builtin_macro callback for
671 NODE_BUILTIN !NODE_USED macros.
672 (warn_of_redefinition): Likewise. Remove const qual from second
673 argument.
674 (cpp_macro_definition): Likewise.
675 * pch.c (write_macdef, save_macros): Call user_builtin_macro callback
676 for NODE_BUILTIN !NODE_USED macros.
677
678 2010-06-10 Joseph Myers <joseph@codesourcery.com>
679
680 * include/cpplib.h (struct cpp_options): Remove show_column.
681 * init.c (cpp_create_reader, post_options): Don't set show_column.
682
683 2010-06-09 Joern Rennecke <joern.rennecke@embecosm.com>
684
685 PR bootstrap/44432
686 * configure.ac: Before using ZW_PROG_COMPILER_DEPENDENCIES for C++,
687 check that C++ compiler works.
688 * configure: Regenerate.
689
690 2010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
691
692 * include/symtab.h (ht_identifier_ptr): New.
693
694 2010-06-03 Joern Rennecke <joern.rennecke@embecosm.com>
695 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
696
697 PR bootstrap/42798
698 * configure.ac: Check for declaration of 'basename(char *)'.
699 * configure: Regenerate.
700 * config.in: Regenerate.
701
702 2010-04-25 Joseph Myers <joseph@codesourcery.com>
703
704 * include/cpplib.h (enum c_lang): Add CLK_GNUC1X and CLK_STDC1X.
705 * init.c (lang_defaults): Add entries for new language variants.
706 (cpp_init_builtins): Define __STDC_VERSION__ to 201000L for C1X
707 variants.
708
709 2010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
710
711 PR cpp/43195
712 * files.c (report_missing_guard): Test for #pragma once.
713
714 2010-04-07 Simon Baldwin <simonb@google.com>
715
716 * directives.c (do_diagnostic): Add warning reason argument,
717 call appropriate error reporting function for code.
718 (directive_diagnostics): Call specific warning functions with
719 warning reason where appropriate.
720 (do_error, do_warning, do_pragma_dependency): Add warning reason
721 argument to do_diagnostic calls.
722 * macro.c (_cpp_warn_if_unused_macro, enter_macro_context,
723 _cpp_create_definition): Call specific warning functions with
724 warning reason where appropriate.
725 * Makefile.in: Add new diagnostic functions to gettext translations.
726 * include/cpplib.h (struct cpp_callbacks): Add warning reason code
727 to error callback.
728 (CPP_DL_WARNING, CPP_DL_WARNING_SYSHDR, CPP_DL_PEDWARN, CPP_DL_ERROR,
729 CPP_DL_ICE, CPP_DL_NOTE, CPP_DL_FATAL): Replace macros with enums.
730 (CPP_W_NONE, CPP_W_DEPRECATED, CPP_W_COMMENTS,
731 CPP_W_MISSING_INCLUDE_DIRS, CPP_W_TRIGRAPHS, CPP_W_MULTICHAR,
732 CPP_W_TRADITIONAL, CPP_W_LONG_LONG, CPP_W_ENDIF_LABELS,
733 CPP_W_NUM_SIGN_CHANGE, CPP_W_VARIADIC_MACROS,
734 CPP_W_BUILTIN_MACRO_REDEFINED, CPP_W_DOLLARS, CPP_W_UNDEF,
735 CPP_W_UNUSED_MACROS, CPP_W_CXX_OPERATOR_NAMES, CPP_W_NORMALIZE,
736 CPP_W_INVALID_PCH, CPP_W_WARNING_DIRECTIVE): New enums for cpp
737 warning reason codes.
738 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
739 cpp_warning_with_line, cpp_pedwarning_with_line,
740 cpp_warning_with_line_syshdr): New specific error reporting functions.
741 * pch.c (cpp_valid_state): Call specific warning functions with
742 warning reason where appropriate.
743 * errors.c (cpp_diagnostic, cpp_diagnostic_with_line): New central
744 diagnostic handlers.
745 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
746 cpp_warning_with_line, cpp_pedwarning_with_line,
747 cpp_warning_with_line_syshdr): New specific error reporting functions.
748 * expr.c (cpp_classify_number, eval_token, num_unary_op): Call
749 specific warning functions with warning reason where appropriate.
750 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment,
751 warn_about_normalization, lex_identifier_intern, lex_identifier,
752 _cpp_lex_direct): Ditto.
753 * charset.c (_cpp_valid_ucn, convert_hex, convert_escape,
754 narrow_str_to_charconst): Ditto.
755
756 2010-04-06 Jakub Jelinek <jakub@redhat.com>
757
758 PR preprocessor/43642
759 * lex.c (lex_raw_string): Change type of TYPE variable to
760 unsigned char.
761
762 2010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
763
764 * aclocal.m4: Regenerate.
765
766 2010-03-29 Jason Merrill <jason@redhat.com>
767
768 More N3077 raw string changes
769 * charset.c (cpp_interpret_string): Don't transform UCNs in raw
770 strings.
771 * lex.c (bufring_append): Split out from...
772 (lex_raw_string): ...here. Undo trigraph and line splicing
773 transformations. Do process line notes in multi-line literals.
774 (_cpp_process_line_notes): Ignore notes that were already handled.
775
776 Some raw string changes from N3077
777 * charset.c (cpp_interpret_string): Change inner delimiters to ().
778 * lex.c (lex_raw_string): Likewise. Also disallow '\' in delimiter.
779
780 2010-02-11 Jakub Jelinek <jakub@redhat.com>
781
782 * init.c (read_original_filename): Don't call read_original_directory
783 if _cpp_handle_directive returns 0.
784
785 2010-01-01 Joseph Myers <joseph@codesourcery.com>
786
787 PR preprocessor/41947
788 * expr.c (cpp_classify_number): Give error for hexadecimal
789 floating-point constant with no digits before or after point.
790
791 2009-11-20 Arnaud Charlet <charlet@adacore.com>
792
793 * macro.c (enter_macro_context): Call cb.used callback if defined.
794 * directives.c (do_idef, do_ifndef): Ditto.
795 * include/cpplib.h (struct cpp_callbacks): Add used callback.
796
797 2009-11-11 Kai Tietz <kai.tietz@onevision.com>
798
799 * directives.c (do_pragma_push_macro): New pragma handler.
800 (do_pragma_pop_macro): Likewise.
801 (_cpp_init_internal_pragmas): Add push_macro and
802 pop_macro handler to internal pragmas.
803 (lex_macro_node_from_str): Removed.
804 (cpp_push_definition): Replace lex_macro_node_from_str
805 by _cpp_lex_identifier.
806 (cpp_pop_definition): Likewise.
807 * internal.h (_cpp_lex_identifier): New prototype.
808 (def_pragma_macro): New structure.
809 (cpp_reader): New member pushed_macros.
810 * lex.c (_cpp_lex_identifier): New function.
811 (lex_identifier_intern): New function.
812 * init.c (cpp_create_reader): Initialize pushed_macros
813 member.
814 (cpp_destroy): Free elements in pushed_macros member.
815 * pch.c (_cpp_save_pushed_macros): New function.
816 (_cpp_restore_pushed_macros): Likewise.
817 (_cpp_restore_pushed_macros): Use _cpp_save_pushed_macros.
818 (cpp_read_state): Use _cpp_restore_pushed_macros.
819
820 2009-10-19 Jakub Jelinek <jakub@redhat.com>
821
822 * charset.c (cpp_init_iconv): Initialize utf8_cset_desc.
823 (_cpp_destroy_iconv): Destroy utf8_cset_desc, char16_cset_desc
824 and char32_cset_desc.
825 (converter_for_type): Handle CPP_UTF8STRING.
826 (cpp_interpret_string): Handle CPP_UTF8STRING and raw-strings.
827 * directives.c (get__Pragma_string): Handle CPP_UTF8STRING.
828 (parse_include): Reject raw strings.
829 * include/cpplib.h (CPP_UTF8STRING): New token type.
830 * internal.h (struct cpp_reader): Add utf8_cset_desc field.
831 * lex.c (lex_raw_string): New function.
832 (lex_string): Handle u8 string literals, call lex_raw_string
833 for raw string literals.
834 (_cpp_lex_direct): Call lex_string even for u8" and {,u,U,L,u8}R"
835 sequences.
836 * macro.c (stringify_arg): Handle CPP_UTF8STRING.
837
838 2009-10-14 Jakub Jelinek <jakub@redhat.com>
839
840 PR preprocessor/41543
841 * include/line-map.h (RESERVED_LOCATION_COUNT): Define.
842 * line-map.c (linemap_init): Initialize highest_location and
843 highest_line to RESERVED_LOCATION_COUNT-1 instead of 0.
844
845 2009-10-09 Jason Merrill <jason@redhat.com>
846
847 * charset.c (_cpp_valid_ucn): Update C++0x restrictions.
848
849 2009-10-09 Neil Vachharajani <nvachhar@google.com>
850
851 * directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and
852 sccs.
853
854 2009-09-23 Loren J. Rittle <ljrittle@acm.org>
855
856 * configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h.
857 * configure: Rebuilt.
858
859 2009-09-22 Richard Guenther <rguenther@suse.de>
860
861 PR pch/38987
862 * files.c (pch_open_file): Disallow non-toplevel PCH inclusion.
863
864 2009-09-18 Chris Demetriou <cgd@google.com>
865
866 PR preprocessor/28435:
867 * include/cpplib.h (struct cpp_options): Add new member
868 deps.need_preprocessor_output.
869 * files.c (open_file_failed): If preprocessor output is needed
870 always report an error.
871
872 2009-09-13 Kai Tietz <kai.tietz@onevision.com>
873
874 * configure.ac: Set for i?86-w64-mingw*
875 need_64bit_hwint to yes.
876 * configure: Regenerated.
877
878 2009-09-10 Jason Merrill <jason@redhat.com>
879
880 * directives.c (cpp_define): constify.
881
882 2009-09-02 Ian Lance Taylor <iant@google.com>
883
884 * macro.c (stringify_arg): Escape CPP_WCHAR tokens.
885
886 2009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
887
888 * configure.ac (AC_PREREQ): Bump to 2.64.
889
890 2009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
891
892 * aclocal.m4: Regenerate.
893 * config.in: Regenerate.
894 * configure: Regenerate.
895
896 2009-08-17 Tom Tromey <tromey@redhat.com>
897
898 PR preprocessor/41067:
899 * charset.c (convert_escape): Add missing ":" to error text.
900
901 2009-07-27 Douglas B Rupp <rupp@gnat.com>
902
903 * include/cpplib.h (INO_T_CPP): New macro.
904 (struct cpp_dir): Use it.
905
906 2009-07-20 Jerry Quinn <jlquinn@optonline.net>
907
908 PR regression/40800
909 * configure.ac: Use = instead of == for testing
910 ENABLE_BUILD_WITH_CXX.
911 * configure: Rebuild.
912
913 2009-07-17 Jerry Quinn <jlquinn@optonline.net>
914
915 * directives.c (do_linemarker, do_line): Use CPP_STRING for
916 ignored enum value.
917 * files.c (find_file_in_dir): Add cast from void* to char*.
918 * symtab.c (ht_lookup_with_hash): Add cast from void* to char*.
919 * Makefile.in: (WARN_CFLAGS): Use general and C-specific
920 warnings.
921 (CXX, CXXFLAGS, WARN_CXXFLAGS, ALL_CXXFLAGS,
922 ENABLE_BUILD_WITH_CXX, CCDEPMODE, CXXDEPMODE, COMPILER,
923 COMPILER_FLAGS): New.
924 (DEPMODE): Set from CCDEPMODE or CXXDEPMODE.
925 (COMPILE.base): Use COMPILER instead of CC. Use COMPILER_FLAGS
926 instead of ALL_CFLAGS.
927 * configure.ac: Invoke AC_PROG_CXX. Separate C-specific warnings
928 from other warnings. Add -Wc++-compat to C-specific warnings.
929 Check for --enable-build-with-cxx. Set and substitute
930 ENABLE_BUILD_WITH_CXX. Invoke ZW_PROG_COMPILER_DEPENDENCIES
931 according to ENABLE_BUILD_WITH_CXX. Invoke AC_LANG before
932 AC_CHECK_HEADERS.
933 * configure: Rebuild.
934 * include/cpp-id-data.h: Remove extern "C".
935 * include/line-map.h: Likewise.
936 * include/mkdeps.h: Likewise.
937 * include/symtab.h: Likewise.
938 * internal.h: Likewise.
939
940 2009-06-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
941
942 * directives.c (parse_include): Add location argument. Update all
943 calls.
944 (parse_answer): Likewise.
945 (do_include_common): Error with exact location.
946 (parse_assertion): Likewise.
947
948 2009-06-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
949
950 * expr.c (num_div_op): Take explicit location.
951
952 2009-06-17 Ian Lance Taylor <iant@google.com>
953
954 * include/cpplib.h (progname): Don't declare.
955
956 2009-06-12 Ian Lance Taylor <iant@google.com>
957
958 * include/cpplib.h (struct cpp_options): Add
959 warn_cxx_operator_names field.
960 (NODE_WARN_OPERATOR): Define.
961 (struct cpp_hashnode): Increase flags field to 10 bits, decrease
962 type to 6 bits.
963 * init.c (mark_named_operators): Add flags parameter.
964 (cpp_post_options): Pick flags value to pass to
965 mark_named_operators.
966 * lex.c (lex_identifier): If NODE_WARN_OPERATOR is set, warn that
967 identifier is an operator name in C++.
968
969 2009-06-01 Aldy Hernandez <aldyh@redhat.com>
970
971 * include/line-map.h (LAST_SOURCE_COLUMN): New.
972
973 2009-06-01 Ian Lance Taylor <iant@google.com>
974
975 * include/cpp-id-data.h: Add extern "C".
976 * include/line-map.h: Likewise.
977 * include/mkdeps.h: Likewise.
978 * include/symtab.h: Likewise.
979 * internal.h: Likewise.
980
981 2009-05-15 Ian Lance Taylor <iant@google.com>
982
983 * include/cpplib.h (enum cpp_builtin_type): Rename from enum
984 builtin_type. Change all uses.
985
986 2009-05-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
987
988 PR cpp/36674
989 * directives (do_linemarker): Compensate for the increment in
990 location that occurs when we reach the end of line.
991 * files (_cpp_stack_include): Mention _cpp_find_file in the
992 comment.
993
994 2009-05-10 Joseph Myers <joseph@codesourcery.com>
995
996 * include/cpplib.h (enum cpp_token_fld_kind): Add
997 CPP_TOKEN_FLD_TOKEN_NO.
998 (struct cpp_macro_arg, struct cpp_identifier): Define.
999 (union cpp_token_u): Use struct cpp_identifier for identifiers.
1000 Use struct cpp_macro_arg for macro arguments. Add token_no for
1001 CPP_PASTE token numbers.
1002 * directives.c (_cpp_handle_directive, lex_macro_node, do_pragma,
1003 do_pragma_poison, parse_assertion): Use val.node.node in place of
1004 val.node.
1005 * expr.c (parse_defined, eval_token): Use val.node.node in place
1006 of val.node.
1007 * lex.c (cpp_ideq, _cpp_lex_direct, cpp_token_len,
1008 cpp_spell_token, cpp_output_token, _cpp_equiv_tokens,
1009 cpp_token_val_index): Use val.macro_arg.arg_no or val.token_no in
1010 place of val.arg_no. Use val.node.node in place of val.node.
1011 * macro.c (replace_args, cpp_get_token, parse_params,
1012 lex_expansion_token, create_iso_definition, cpp_macro_definition):
1013 Use val.macro_arg.arg_no or val.token_no in place of val.arg_no.
1014 Use val.node.node in place of val.node.
1015
1016 2009-05-03 Joseph Myers <joseph@codesourcery.com>
1017
1018 * charset.c (one_utf8_to_cppchar): Correct mask used for 5-byte
1019 UTF-8 sequences.
1020
1021 2009-04-25 Joseph Myers <joseph@codesourcery.com>
1022
1023 PR preprocessor/39559
1024 * expr.c (cpp_interpret_integer): Use a pedwarn for decimal
1025 constants larger than intmax_t in C99 mode.
1026
1027 2009-04-21 Taras Glek <tglek@mozilla.com>
1028
1029 * include/cpp-id-data.h: Update GTY annotations to new syntax.
1030 * include/cpplib.h: Likewise.
1031 * include/line-map.h: Likewise.
1032 * include/symtab.h: Likewise.
1033
1034 2009-04-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1035
1036 PR c++/14875
1037 * lex.c (cpp_type2name): Take a flags parameter. Call
1038 cpp_named_operator2name for named operators and cpp_digraph2name
1039 for digraphs.
1040 (cpp_digraph2name): New.
1041 (cpp_spell_token): Use it.
1042 (cpp_output_token): Likewise.
1043 * include/cpplib.h (cpp_type2name): Update declaration.
1044 * init.c (cpp_named_operator2name): New.
1045 * internal.h (cpp_named_operator2name): Declare.
1046
1047 2009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1048
1049 PR c++/13358
1050 * init.c (cpp_create_reader): Wlong_long is disabled by default.
1051 * expr.c (cpp_classify_number): Give different messages for C and
1052 C++ front-ends.
1053
1054 2009-04-19 Joseph Myers <joseph@codesourcery.com>
1055
1056 PR preprocessor/20078
1057 * include/cpp-id-data.h (struct cpp_macro): Add extra_tokens
1058 field.
1059 * include/cpplib.h (SP_DIGRAPH, SP_PREV_WHITE): Define.
1060 (struct cpp_token): Change flags to unsigned short.
1061 * lex.c (_cpp_lex_direct): Initialize arg_no for CPP_PASTE tokens.
1062 (_cpp_equiv_tokens): Check arg_no for CPP_PASTE tokens.
1063 (cpp_token_val_index): Return CPP_TOKEN_FLD_ARG_NO for CPP_PASTE
1064 tokens.
1065 * macro.c (macro_real_token_count): New.
1066 (enter_macro_context, replace_args): Use macro_real_token_count.
1067 (create_iso_definition): Record whitespace surrounding and digraph
1068 spelling of # and ## tokens using SP_PREV_WHITE and SP_DIGRAPH.
1069 Set extra_tokens and save CPP_PASTE tokens with arg_no set for
1070 multiple consecutive ## tokens.
1071 (_cpp_create_definition): Initialize extra_tokens.
1072 (cpp_macro_definition): Use macro_real_token_count.
1073
1074 2009-04-18 Joseph Myers <joseph@codesourcery.com>
1075
1076 * directives.c (parse_include): Pass true to check_eol.
1077
1078 2009-04-18 Joseph Myers <joseph@codesourcery.com>
1079
1080 PR preprocessor/39646
1081 * include/line-map.h (enum lc_reason): Add LC_RENAME_VERBATIM.
1082 * line-map.c (linemap_add): Handle LC_RENAME_VERBATIM.
1083 * directives.c (do_line, do_linemarker): Use LC_RENAME_VERBATIM in
1084 place of LC_RENAME.
1085
1086 2009-04-18 Joseph Myers <joseph@codesourcery.com>
1087
1088 PR preprocessor/39647
1089 * directives.c (check_eol): Add parameter expand.
1090 (do_undef, parse_include, do_line, do_linemarker, do_ident,
1091 do_pragma_once, do_pragma_system_header, do_ifdef, do_ifndef,
1092 do_else, do_endif, do_assert, do_unassert): All callers changed.
1093 Pass true from do_line, false elsewhere.
1094
1095 2009-04-12 Joseph Myers <joseph@codesourcery.com>
1096
1097 PR preprocessor/31869
1098 * macro.c (stringify_arg): Handle NULL source token in padding
1099 token where previous padding token did not have source token with
1100 preceding whitespace.
1101
1102 2009-04-09 Jakub Jelinek <jakub@redhat.com>
1103
1104 * Makefile.in: Change copyright header to refer to version
1105 3 of the GNU General Public License and to point readers at the
1106 COPYING3 file and the FSF's license web page.
1107 * charset.c: Likewise.
1108 * directives-only.c: Likewise.
1109 * directives.c: Likewise.
1110 * errors.c: Likewise.
1111 * expr.c: Likewise.
1112 * files.c: Likewise.
1113 * identifiers.c: Likewise.
1114 * include/cpp-id-data.h: Likewise.
1115 * include/cpplib.h: Likewise.
1116 * include/line-map.h: Likewise.
1117 * include/mkdeps.h: Likewise.
1118 * include/symtab.h: Likewise.
1119 * init.c: Likewise.
1120 * internal.h: Likewise.
1121 * lex.c: Likewise.
1122 * line-map.c: Likewise.
1123 * macro.c: Likewise.
1124 * makeucnid.c: Likewise.
1125 * mkdeps.c: Likewise.
1126 * pch.c: Likewise.
1127 * symtab.c: Likewise.
1128 * system.h: Likewise.
1129 * traditional.c: Likewise.
1130 * ucnid.tab: Likewise.
1131 * ucnid.h: Regenerate.
1132
1133 2009-04-01 Janis Johnson <janis187@us.ibm.com>
1134
1135 PR c/39027
1136 * include/cpplib.h (CPP_N_DEFAULT): Define.
1137 * expr.c (interpret_float_suffix): Recognize d or D for double,
1138 return new value for default.
1139 (cpp_classify_number): Issue pedwarn for use of d or D in suffix.
1140
1141 PR c/33466
1142 * expr.c (interpret_float_suffix): Reject invalid suffix that uses
1143 letters from decimal float and fixed-point suffixes.
1144
1145 2009-03-31 Joseph Myers <joseph@codesourcery.com>
1146
1147 PR preprocessor/15638
1148 * files.c (_cpp_find_file): Call open_file_failed after diagnosing
1149 invalid PCH.
1150 (open_file_failed): Make error for missing file fatal.
1151 * include/cpplib.h (CPP_DL_FATAL): Define.
1152
1153 2009-03-30 Sergiy Vyshnevetskiy <serg@vostok.net>
1154
1155 PR preprocessor/31932:
1156 * internal.h: Don't mention HAVE_ICONV_H.
1157 * configure, config.in: Rebuild.
1158 * configure.ac: Don't check for iconv.h.
1159
1160 2009-03-30 Tom Tromey <tromey@redhat.com>
1161
1162 PR preprocessor/39512:
1163 * line-map.c (linemap_init): Initialize 'reallocator' field.
1164
1165 2009-03-30 Jakub Jelinek <jakub@redhat.com>
1166
1167 PR target/39558
1168 * macro.c (cpp_get_token): If macro_to_expand returns NULL
1169 and used some tokens, add CPP_PADDING before next token.
1170
1171 2009-03-29 Joseph Myers <joseph@codesourcery.com>
1172
1173 PR preprocessor/34695
1174 * makedepend.c: Remove.
1175 * Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
1176 (all, clean, TAGS_SOURCES, include): Remove makedepend handling.
1177 * directives.c (cpp_errors): Remove.
1178 * errors.c (print_location, _cpp_begin_message, v_message):
1179 Remove.
1180 (cpp_error, cpp_error_with_line): Always use error callback.
1181 (cpp_error, cpp_error_with_line, cpp_errno): Return bool.
1182 * include/cpplib.h (cpp_options): Remove pedantic_errors,
1183 inhibit_warnings, warn_system_headers, inhibit_errors,
1184 warnings_are_errors, client_diagnostic.
1185 (cpp_callbacks): Add extra arguments to error callback; make it
1186 return bool.
1187 (cpp_finish): Return void.
1188 (cpp_destroy): Remove inaccurate comment about return value.
1189 (cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
1190 (CPP_DL_NOTE): Define.
1191 * include/line-map.h (linemap_print_containing_files): Remove.
1192 * init.c (cpp_finish): Do not check for or return number of
1193 errors.
1194 * internal.h (cpp_reader): Remove errors field.
1195 * line-map.c (linemap_print_containing_files): Remove.
1196 * macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
1197 about previous definition. Only emit it if previous diagnostic
1198 was emitted.
1199
1200 2009-03-28 Joseph Myers <joseph@codesourcery.com>
1201
1202 * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
1203 mkinstalldirs.
1204
1205 2009-03-18 Jakub Jelinek <jakub@redhat.com>
1206
1207 * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
1208
1209 2009-02-21 Joseph Myers <joseph@codesourcery.com>
1210
1211 * lex.c (lex_string): Return a CPP_LESS token for missing '>' in a
1212 header name.
1213 (_cpp_lex_direct): Handle this.
1214
1215 2009-02-15 Richard Guenther <rguenther@suse.de>
1216
1217 Revert last change.
1218
1219 2009-02-13 Richard Guenther <rguenther@suse.de>
1220
1221 * configure.ac: Enable LFS.
1222 * configure: Re-generate.
1223 * config.in: Likewise.
1224
1225 2009-01-05 Ben Elliston <bje@au.ibm.com>
1226
1227 * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
1228 (.po.pox): Likewise.
1229 (po/$(PACKAGE).pot): Likewise.
1230
1231 2008-12-10 Alexandre Oliva <aoliva@redhat.com>
1232
1233 PR target/37033
1234 * pch.c (cpp_valid_state): Improve message for poisoned symbols.
1235 Allow for differences in __GCC_HAVE_DWARF2_CFI_ASM.
1236
1237 2008-11-29 Joseph Myers <joseph@codesourcery.com>
1238
1239 * lex.c (cpp_token_len): Use 6 as default length.
1240
1241 2008-10-31 Manuel López-Ibáñez <manu@gcc.gnu.org>
1242
1243 * expr.c (struct op): Add location.
1244 (_cpp_parse_expr): Propagate locations throught the stack
1245 of expressions.
1246 (reduce): Likewise.
1247 (check_promotion): Use explicit location in errors.
1248
1249 2008-10-05 Matthew Gingell <gingell@adacore.com>
1250 Arnaud Charlet <charlet@adacore.com>
1251
1252 * include/cpplib.h (cpp_comments, cpp_comment_table): New structs.
1253 (cpp_get_comments): New function.
1254 * internal.h (struct cpp_reader): Add comments field.
1255 * init.c (cpp_destroy): Free comments.
1256 * lex.c (store_comment, cpp_get_comments): New functions.
1257 (comments): New struct.
1258 (save_comment): Store comments in comments struct.
1259
1260 2008-09-18 Simon Baldwin <simonb@google.com>
1261
1262 * include/cpplib.h (struct cpp_options): Add new boolean flag
1263 warn_builtin_macro_redefined.
1264 * init.c (cpp_create_reader): Initialize warn_builtin_macro_redefined.
1265 * (struct builtin_operator): Split out from previous struct builtin,
1266 enhance extra const correctness.
1267 * (struct builtin_macro): Split out from previous struct builtin, add
1268 new always_warn_if_redefined flag, enhance const correctness.
1269 * (mark_named_operators): Use struct builtin_operator.
1270 * (cpp_init_special_builtins): Use struct builtin_macro, add NODE_WARN
1271 to builtins selectively.
1272 * macro.c (warn_of_redefinition): Return false if a builtin macro
1273 is not flagged with NODE_WARN.
1274
1275 2008-07-31 Jakub Jelinek <jakub@redhat.com>
1276
1277 PR preprocessor/36649
1278 * files.c (struct report_missing_guard_data): New type.
1279 (report_missing_guard): Put paths into an array instead of printing
1280 them right away. Return 1 rather than 0.
1281 (report_missing_guard_cmp): New function.
1282 (_cpp_report_missing_guards): Sort and print paths gathered by
1283 report_missing_guard callback.
1284
1285 2008-07-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1286
1287 PR 28079
1288 * directives.c (strtolinenum): Handle overflow.
1289 (do_line): Give a warning if line number overflowed.
1290 (do_linemarker): Update call to strtolinenum.
1291
1292 2008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1293
1294 * include/line-map.h (linenum_type): New typedef.
1295 (struct line_map): Use it.
1296 (SOURCE_LINE): Second arguments is a LOCATION not a LINE.
1297 (SOURCE_COLUMN): Likewise.
1298 * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store
1299 source_location values in a variable of type linenum_type.
1300 * directives.c (struct if_stack): Use linenum_type.
1301 (strtoul_for_line): Rename as strtolinenum.
1302 (do_line): Use linenum_type.
1303 (do_linemarker): Use linenum_type and strtolinenum.
1304 (_cpp_do_file_change): Use linenum_t.
1305 * line-map.c (linemap_add): Likewise.
1306 (linemap_line_start): Likewise.
1307 * traditional.c (struct fun_macro): 'line' is a source_location.
1308 * errors.c (print_location): Use linenum_type.
1309 * directives-only.c (_cpp_preprocess_dir_only): Likewise.
1310 * internal.h (CPP_INCREMENT_LINE): Likewise.
1311 * lex.c (_cpp_skip_block_comment): Use source_location.
1312
1313 2008-07-14 Ben Elliston <bje@au.ibm.com>
1314
1315 * include/cpplib.h (NODE_CONDITIONAL): New.
1316 (struct cpp_callbacks): New macro_to_expand field.
1317 (struct cpp_hashnode): Adjust size of flags and type fields.
1318 (cpp_peek_token): Prototype.
1319 * lex.c (cpp_peek_token): New function.
1320 (_cpp_temp_token): Protect pre-existing lookaheads.
1321 * macro.c (cpp_get_token): Expand any conditional macros.
1322 (_cpp_backup_tokens_direct): New.
1323 (_cpp_backup_tokens): Call _cpp_backup_tokens_direct.
1324 (warn_of_redefinition): Silently allow redefined conditional
1325 macros.
1326 (_cpp_create_definition): Remove the conditional flag when a user
1327 defines one of the conditional macros.
1328 * internal.h (_cpp_backup_tokens_direct): New prototype.
1329
1330 2008-06-13 Andrew Haley <aph@redhat.com>
1331
1332 PR preprocessor/33305
1333 * macro.c (replace_args): Print a warning for empty macro
1334 arguments in C89 and C++.
1335
1336 2008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1337
1338 * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies.
1339 * configure: Regenerate.
1340
1341 2008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1342
1343 * Makefile.in (datarootdir): New variable.
1344
1345 2008-06-12 H.J. Lu <hongjiu.lu@intel.com>
1346
1347 PR preprocessor/36479
1348 * charset.c (cpp_interpret_string_notranslate): Also set
1349 narrow_cset_desc.width.
1350
1351 2008-06-07 Joseph Myers <joseph@codesourcery.com>
1352
1353 * configure.ac (parisc*64*-*-*): Remove.
1354 * configure: Regenerate.
1355
1356 2008-05-30 Tom Tromey <tromey@redhat.com>
1357
1358 PR preprocessor/36320:
1359 * internal.h (_cpp_parse_expr): Update.
1360 * expr.c (_cpp_parse_expr): Add 'is_if' argument. Update error
1361 messages.
1362 * directives.c (do_if): Update.
1363 (do_elif): Require expression if processing group.
1364
1365 2008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
1366
1367 * include/cpplib.h (struct cpp_dir): Add new field, canonical_name.
1368
1369 2008-05-21 Tom Tromey <tromey@redhat.com>
1370
1371 PR preprocessor/27777:
1372 * lex.c (cpp_output_line_to_string): New function.
1373 * internal.h (_cpp_begin_message): Don't declare.
1374 * errors.c (_cpp_begin_message): Now static.
1375 * include/cpplib.h (cpp_output_line_to_string): Declare.
1376 * directives.c (do_diagnostic): Rewrote. Use
1377 cpp_output_line_to_string. Don't use _cpp_begin_message.
1378
1379 2008-05-21 Tom Tromey <tromey@redhat.com>
1380
1381 * include/symtab.h (HT_ALLOCED): Remove.
1382 (ht_purge): Declare.
1383 * symtab.c (DELETED): New define.
1384 (ht_lookup): Update comment.
1385 (ht_lookup_with_hash): Handle deleted entries. Remove HT_ALLOCED
1386 code. Use subobject allocator for strings, if it exists.
1387 (ht_expand): Handle deleted entries.
1388 (ht_forall): Likewise.
1389 (ht_purge): New function.
1390 (ht_dump_statistics): Print deletion statistics.
1391
1392 2008-05-13 Tom Tromey <tromey@redhat.com>
1393
1394 PR preprocessor/22168:
1395 * include/cpplib.h (struct cpp_options) <objc>: Update
1396 documentation.
1397 * expr.c (eval_token): Warn for use of assertions.
1398 * directives.c (directive_diagnostics): Warn about extensions.
1399 (DEPRECATED): New define.
1400 (DIRECTIVE_TABLE): Use it.
1401
1402 2008-05-06 Tom Tromey <tromey@redhat.com>
1403
1404 PR preprocessor/35313, PR preprocessor/36088:
1405 * expr.c (optab) <QUERY, COMMA>: Set precedence to 4.
1406 (reduce) <case CPP_QUERY>: Special case CPP_COMMA and CPP_COLON.
1407
1408 2008-05-04 David S. Miller <davem@davemloft.net>
1409
1410 * configure.ac (sparc*-*-*): Always set need_64bit_hwint to yes.
1411 * configure: Regenerate.
1412
1413 2008-04-22 Daniel Franke <franke.daniel@gmail.com>
1414
1415 * include/cpplib.h (cpp_define_formatted): New.
1416 * directives.c (cpp_define_formatted): New.
1417
1418 2008-04-21 Tom Tromey <tromey@redhat.com>
1419
1420 PR libcpp/33415:
1421 * charset.c (_cpp_convert_input): Add buffer_start argument.
1422 Ignore UTF-8 BOM if seen.
1423 * internal.h (_cpp_convert_input): Add argument.
1424 * files.c (struct _cpp_file) <buffer_start>: New field.
1425 (destroy_cpp_file): Free buffer_start, not buffer.
1426 (_cpp_pop_file_buffer): Likewise.
1427 (read_file_guts): Update.
1428
1429 2008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
1430
1431 * include/cpp-id-data.h (UC): Was U, conflicts with U"..." literal.
1432 * include/cpplib.h (CHAR16, CHAR32, STRING16, STRING32): New tokens.
1433 (struct cpp_options): Added uliterals.
1434 (cpp_interpret_string): Update prototype.
1435 (cpp_interpret_string_notranslate): Idem.
1436 * charset.c (init_iconv_desc): New width member in cset_converter.
1437 (cpp_init_iconv): Add support for char{16,32}_cset_desc.
1438 (convert_ucn): Idem.
1439 (emit_numeric_escape): Idem.
1440 (convert_hex): Idem.
1441 (convert_oct): Idem.
1442 (convert_escape): Idem.
1443 (converter_for_type): New function.
1444 (cpp_interpret_string): Use converter_for_type, support u and U prefix.
1445 (cpp_interpret_string_notranslate): Match changed prototype.
1446 (wide_str_to_charconst): Use converter_for_type.
1447 (cpp_interpret_charconst): Add support for CPP_CHAR{16,32}.
1448 * directives.c (linemarker_dir): Macro U changed to UC.
1449 (parse_include): Idem.
1450 (register_pragma_1): Idem.
1451 (restore_registered_pragmas): Idem.
1452 (get__Pragma_string): Support CPP_STRING{16,32}.
1453 * expr.c (eval_token): Support CPP_CHAR{16,32}.
1454 * init.c (struct lang_flags): Added uliterals.
1455 (lang_defaults): Idem.
1456 * internal.h (struct cset_converter) <width>: New field.
1457 (struct cpp_reader) <char16_cset_desc>: Idem.
1458 (struct cpp_reader) <char32_cset_desc>: Idem.
1459 * lex.c (digraph_spellings): Macro U changed to UC.
1460 (OP, TK): Idem.
1461 (lex_string): Add support for u'...', U'...', u"..." and U"...".
1462 (_cpp_lex_direct): Idem.
1463 * macro.c (_cpp_builtin_macro_text): Macro U changed to UC.
1464 (stringify_arg): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
1465
1466 2008-04-18 Paolo Bonzini <bonzini@gnu.org>
1467
1468 PR bootstrap/35457
1469 * aclocal.m4: Regenerate.
1470 * configure: Regenerate.
1471
1472 2008-04-17 Tom Tromey <tromey@redhat.com>
1473
1474 PR libcpp/34866:
1475 * errors.c (cpp_error): Don't reference a token before the start
1476 of the current run.
1477
1478 2008-04-16 Tom Tromey <tromey@redhat.com>
1479
1480 * Makefile.in (TAGS_SOURCES): New variable.
1481 (TAGS): New target.
1482
1483 2008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
1484
1485 * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-*
1486 and shbe-*-*.
1487 * configure: Rebuilt.
1488
1489 2008-04-02 Joseph Myers <joseph@codesourcery.com>
1490
1491 * include/cpplib.h (struct cpp_callbacks): Add used_define,
1492 used_undef and before_define.
1493 (NODE_USED): Define.
1494 * directives.c (do_define, do_undef, undefine_macros, do_ifdef,
1495 do_ifndef, cpp_pop_definition): Handle new flag and use new
1496 callbacks.
1497 * expr.c (parse_defined): Handle new flag and use new callbacks.
1498 * macro.c (enter_macro_context, _cpp_free_definition): Handle new
1499 flag and use new callbacks.
1500
1501 2008-04-01 Jakub Jelinek <jakub@redhat.com>
1502
1503 PR pch/13675
1504 * files.c (struct _cpp_file): Remove pch field.
1505 (pch_open_file): Don't set file->pch, just file->pchname.
1506 (should_stack_file): After pfile->cb.read_pch call
1507 free pchname and clear pchname, don't close file->fd.
1508 Test file->pchname instead of file->pch. Don't close fd after cb.
1509 (_cpp_stack_include): Test file->pchname instead of file->pch.
1510
1511 2008-03-28 Tom Tromey <tromey@redhat.com>
1512
1513 * Makefile.in (POSTCOMPILE): New variable.
1514 (.c.o): Use it.
1515
1516 2008-03-13 Tom Tromey <tromey@redhat.com>
1517
1518 PR libcpp/35322:
1519 * directives.c (destringize_and_run): Set pfile->directive.
1520
1521 2008-03-06 Markus Milleder <markus.milleder@generali.at>
1522
1523 PR preprocessor/35458
1524 * mkdeps.c (munge): Quote '#' with a '\'.
1525
1526 2008-02-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1527
1528 PR preprocessor/35379
1529 * mkdeps.c (deps_write): Ensure the first target always appears
1530 in the first column, without leading backslash newline. Avoid
1531 some more extra whitespace.
1532
1533 2008-02-25 Thiemo Seufer <ths@mips.com>
1534
1535 * Makefile.in ($(srcdir)/config.in): Depend on configure.ac.
1536
1537 2008-02-19 Tom Tromey <tromey@redhat.com>
1538
1539 * traditional.c (lex_identifier): Use CPP_HASHNODE.
1540 * lex.c (lex_identifier): Use CPP_HASHNODE.
1541 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
1542 do-while.
1543 * identifiers.c (alloc_node): Change return type.
1544 (_cpp_init_hashtable): Don't cast 'alloc_node'.
1545 (proxy_assertion_broken): New declaration.
1546 (cpp_forall_identifiers): Move comment.
1547 * line-map.c (linemap_add): Comment fix.
1548 (linemap_line_start): Indentation fix.
1549
1550 2008-01-25 Jakub Jelinek <jakub@redhat.com>
1551
1552 PR preprocessor/34692
1553 * macro.c (collect_args): Add pragma_buff argument. Push
1554 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens to *pragma_buff, rather
1555 than into arguments. Reset prevent_expansion and parsing_args
1556 state at CPP_PRAGMA_EOL/CPP_EOF.
1557 (funlike_invocation_p): Add pragma_buff argument, pass it through
1558 to collect_args.
1559 (enter_macro_context): Add result argument. Adjust
1560 funlike_invocation_p caller. Emit all deferred pragma tokens
1561 gathered during collect_args before the expansion, add a padding
1562 token. Return 2 instead of 1 if any pragma tokens were prepended.
1563 (cpp_get_token): If enter_macro_context returns 2, don't return
1564 a padding token, instead cycle to grab CPP_PRAGMA token.
1565 * directives.c (_cpp_handle_directive): If was_parsing_args
1566 in deferred pragma, leave parsing_args and prevent_expansion as is.
1567
1568 2008-01-22 Tom Tromey <tromey@redhat.com>
1569
1570 PR c++/34859
1571 * macro.c (_cpp_create_definition): Handle __STDC_LIMIT_MACROS and
1572 __STDC_CONSTANT_MACROS.
1573
1574 2008-01-07 Fred Fish <fnf@specifix.com>
1575
1576 PR preprocessor/30363
1577 * traditional.c (replace_args_and_push): Add local variable
1578 cxtquote, calculate the replacement text size assuming a
1579 worst case of every input character quoted with backslash,
1580 and properly handle output quoting of quote characters in
1581 actual arguments used in function-like macros.
1582
1583 2008-01-03 Tom Tromey <tromey@redhat.com>
1584
1585 PR preprocessor/34602
1586 * directives.c (do_line): Don't try to spell EOF token.
1587 (do_linemarker): Add comment.
1588
1589 2007-12-11 DJ Delorie <dj@redhat.com>
1590
1591 * charset.c (convert_using_iconv): Close out any shift states,
1592 returning to the initial state.
1593
1594 2007-12-06 Tom Tromey <tromey@redhat.com>
1595
1596 PR c/29172
1597 * internal.h (struct cpp_reader) <file_hash_entries>: Changed
1598 type.
1599 <file_hash_entries_allocated, file_hash_entries_used>: Removed.
1600 * files.c (FILE_HASH_POOL_SIZE): New macro.
1601 (struct file_hash_entry_pool): New.
1602 (destroy_all_cpp_files): New function.
1603 (allocate_file_hash_entries): Allocate a file_hash_entry_pool.
1604 (new_file_hash_entry): Update.
1605 (free_file_hash_entries): New function.
1606 (_cpp_cleanup_files): Call free_file_hash_entries and
1607 destroy_all_cpp_files.
1608 (cpp_clear_file_cache): New function.
1609 * include/cpplib.h (cpp_clear_file_cache): Declare.
1610
1611 2007-12-03 Tom Tromey <tromey@redhat.com>
1612
1613 PR preprocessor/34288
1614 * configure.ac, config.in: Rebuilt.
1615 * configure.ac: Check for ssize_t.
1616
1617 2007-11-30 Tom Tromey <tromey@redhat.com>
1618
1619 PR preprocessor/32868
1620 * macro.c (_cpp_create_definition): Special case
1621 __STDC_FORMAT_MACROS.
1622
1623 2007-11-16 Michael Matz <matz@suse.de>
1624
1625 * files.c (search_path_head): Fix check for absolute paths.
1626
1627 2007-11-11 Tom Tromey <tromey@redhat.com>
1628
1629 PR c++/17557
1630 * include/cpplib.h (cpp_included_before): Declare.
1631 * files.c (struct file_hash_entry) <location>: New field.
1632 (_cpp_find_file): Initialize new field.
1633 (make_cpp_dir): Likewise.
1634 (cpp_included_before): New function.
1635
1636 2007-11-01 Tom Tromey <tromey@redhat.com>
1637
1638 PR preprocessor/30805
1639 * macro.c (paste_tokens): Handle padding token.
1640 (paste_tokens): Don't abort unless padding has PASTE_LEFT flag.
1641
1642 2007-10-31 Tom Tromey <tromey@redhat.com>
1643
1644 PR preprocessor/30786
1645 * macro.c (builtin_macro): Return result of _cpp_do__Pragma.
1646 * directives.c (_cpp_do__Pragma): Return error status.
1647 * internal.h (_cpp_do__Pragma): Update.
1648 * directives.c (get__Pragma_string): Back up if EOF seen.
1649
1650 2007-09-06 Tom Tromey <tromey@redhat.com>
1651
1652 * internal.h (struct cpp_reader) <invocation_location>: New
1653 field.
1654 (struct cpp_reader) <set_invocation_location>: Likewise.
1655 * init.c (cpp_set_line_map): New function.
1656 * line-map.c (linemap_add): Use linemap's allocator.
1657 * include/line-map.h (GTY): Define.
1658 (line_map_realloc): New typedef.
1659 (struct line_map): Mark with GTY.
1660 (struct line_maps): Likewise.
1661 (struct line_maps) <maps>: Likewise.
1662 (struct line_maps) <reallocator>: New field.
1663 * include/symtab.h (GTY): Conditionally define.
1664 * include/cpplib.h (cpp_set_line_map): Declare.
1665 (cpp_get_token_with_location): Declare.
1666 * macro.c (cpp_get_token): Set invocation_location on the reader.
1667 (cpp_get_token_with_location): New function.
1668
1669 2007-08-30 Chao-ying Fu <fu@mips.com>
1670
1671 * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
1672 ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
1673 (cpp_classify_number): Support decimal fixed-point constants without
1674 exponents.
1675 Warn about fixed-point constants when -pedantic.
1676 * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
1677 comments to support fixed-point values.
1678 (CPP_N_FRACT, CPP_N_ACCUM): Define.
1679
1680 2007-08-18 Tom Tromey <tromey@redhat.com>
1681
1682 PR preprocessor/32974
1683 * directives.c (parse_include): Don't check for EOL when
1684 processing #pragma dependency.
1685
1686 2007-07-30 Ollie Wild <aaw@google.com>
1687
1688 * directives-only.c: New file.
1689 * internal.h (struct _cpp_dir_only_callbacks): New.
1690 (_cpp_preprocess_dir_only): New function.
1691 * directives.c (_cpp_handle_directive): Check directives_only before
1692 disabling execution of indented directives.
1693 * files.c (_cpp_stack_file): Add directives_only check.
1694 * include/cpplib.h (struct cpp_options): Add directives_only.
1695 (cpp_init_special_builtins): New function.
1696 * init.c (cpp_init_special_builtins): New function.
1697 (cpp_init_builtins): Move builtin_array initialization to
1698 cpp_init_special_builtins.
1699 (post_options): Check directives_only before setting
1700 pfile->state.prevent_expansion = 1.
1701 * macro.c (_cpp_builtin_macro_text): Print an error if __COUNTER__
1702 is expanded inside a directive while -fdirectives-only is enabled.
1703 * Makefile.in (libcpp_a_OBJS): Add directives-only.o.
1704 (libcpp_a_SOURCES): Add directives-only.c.
1705
1706 2007-07-04 Uros Bizjak <ubizjak@gmail.com>
1707
1708 * traditional.c (_cpp_scan_out_logical_line): Initialize
1709 fmacro.args, fmacro.node, fmacro.offset, fmacro.line and
1710 fmacro.args to prevent 'may be used uninitialized' warning.
1711
1712 2007-07-03 Uros Bizjak <ubizjak@gmail.com>
1713
1714 * include/cpplib.h (CPP_N_WIDTH_MD, CPP_N_MD_W, CPP_N_MD_Q):
1715 Add new constants.
1716 * expr.c (interpret_float_suffix): Process 'w', 'W', 'q' and 'Q'
1717 suffixes. Return CPP_N_MD_W for 'w' or 'W' suffixes and CPP_N_MD_Q
1718 for 'q' or 'Q' suffixes.
1719
1720 2007-06-17 Danny Smith <dannysmith@users.sourceforge.net
1721
1722 * files.c (open_file): Correct typo.
1723
1724 2007-06-16 Vladimir Prus <vladimir@codesourcery.com>
1725
1726 * files.c (open_file): Prevent the call
1727 for stat from overwriting errno.
1728
1729 2007-06-09 Vladimir Prus <vladimir@codesourcery.com>
1730
1731 * files.c (open_file): Account for the
1732 fact that on windows, opening a directory gives
1733 EACCES.
1734
1735 2007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
1736
1737 PR preprocessor/23479
1738 * expr.c (cpp_classify_number): Implement 0b-prefixed binary
1739 integer constants.
1740 (append_digit): Likewise.
1741 * include/cpplib.h: Add CPP_N_BINARY, to be used for 0b-prefixed
1742 binary integer constants.
1743
1744 2007-05-31 Dave Korn <dave.korn@artimi.com>
1745
1746 PR preprocessor/14331
1747 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
1748
1749 2007-05-24 Ollie Wild <aaw@google.com>
1750
1751 * macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
1752 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
1753 (cpp_write_pch_state): Save __COUNTER__ state.
1754 (cpp_valid_state): Check valid __COUNTER__ state.
1755 (cpp_read_state): Read new __COUNTER__ state.
1756 * include/cpplib.h (enum builtin_type): Add BT_COUNTER enumerator.
1757 * init.c (builtin_array): Add __COUNTER__/BT_COUNTER.
1758 * internal.h (struct cpp_reader): Add counter member.
1759
1760 2007-05-23 Simon Martin <simartin@users.sourceforge.net>
1761
1762 PR preprocessor/20077
1763 * macro.c (create_iso_definition): Fixed the method to determine
1764 whether the token-pasting operator appears at the beginning or the end
1765 of a macro.
1766
1767 2007-05-21 Ian Lance Taylor <iant@google.com>
1768
1769 * internal.h (struct cpp_reader): Add new fields:
1770 nonexistent_file_hash and nonexistent_file_ob.
1771 * files.c: Include "obstack.h".
1772 (find_file_in_dir): Before trying to open the file, look up the
1773 path name in the hash table of nonexistent files. After failing
1774 to open the file, add the path name to the hash table.
1775 (_cpp_find_file): Cache the results of looking up the file name
1776 starting with the quote and bracket chain heads, if we can.
1777 (nonexistent_file_hash_eq): New static function.
1778 (_cpp_init_files): Initialize pfile->nonexistent_file_hash and
1779 pfile->nonexistent_file_ob.
1780 (_cpp_cleanup_files): Free pfile->nonexistent_file_hash and
1781 pfile->nonexistent_file_ob.
1782
1783 2007-05-14 Janis Johnson <janis187@us.ibm.com>
1784
1785 * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
1786
1787 PR c/31924
1788 * expr.c (interpret_float_suffix): Check for invalid suffix.
1789
1790 2007-05-02 Eric Christopher <echristo@apple.com>
1791
1792 * expr.c (num_div_op): Don't overflow if the result is
1793 zero.
1794
1795 2007-05-02 Tom Tromey <tromey@redhat.com>
1796
1797 PR preprocessor/28709
1798 * macro.c (paste_tokens): Remove PASTE_LEFT from the old lhs.
1799
1800 2007-03-30 Michael Meissner <michael.meissner@amd.com>
1801
1802 * directives.c (lex_macro_node_from_str): Fix alloca call to be
1803 type correct.
1804
1805 2007-03-30 Richard Henderson <rth@redhat.com>
1806
1807 * directives.c (lex_macro_node_from_str): New.
1808 (cpp_push_definition, cpp_pop_definition): New.
1809 * include/cpplib.h (cpp_push_definition, cpp_pop_definition): Declare.
1810
1811 2007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
1812
1813 * Makefile.in: Add dummy install-pdf target.
1814
1815 2007-01-30 Tom Tromey <tromey@redhat.com>
1816
1817 PR preprocessor/30468
1818 * mkdeps.c (apply_vpath): Strip successive '/'s if we stripped
1819 './'.
1820
1821 2007-01-30 Tom Tromey <tromey@redhat.com>
1822
1823 PR preprocessor/29966
1824 * macro.c (lex_expansion_token): Save and restore cpp_reader's
1825 cur_token.
1826 (_cpp_create_definition): Don't restore cur_token here.
1827 * lex.c (_cpp_lex_token): Added assertion.
1828
1829 2007-01-27 Tom Tromey <tromey@redhat.com>
1830
1831 * configure: Rebuilt.
1832
1833 2007-01-12 Tom Tromey <tromey@redhat.com>
1834
1835 PR preprocessor/28227
1836 * directives.c (lex_macro_node): Added 'is_def_or_undef'
1837 argument.
1838 (do_define): Update.
1839 (do_undef): Update.
1840 (do_ifdef): Update.
1841 (do_ifndef): Update.
1842
1843 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
1844
1845 * configure: Regenerate.
1846
1847 2007-01-11 Paolo Bonzini <bonzini@gnu.org>
1848
1849 * configure: Regenerate.
1850
1851 2007-01-04 Tom Tromey <tromey@redhat.com>
1852
1853 PR preprocessor/28165
1854 * internal.h (cpp_in_primary_file): New function.
1855 * directives.c (do_include_next): Use cpp_in_primary_file.
1856 (do_pragma_once): Likewise.
1857 (do_pragma_system_header): Likewise.
1858
1859 2006-12-29 Ian Lance Taylor <iant@google.com>
1860
1861 * lex.c (_cpp_clean_line): Add uses of __builtin_expect. Don't
1862 look backward at the end of the line unless we saw a backslash.
1863
1864 2006-12-29 Jakub Jelinek <jakub@redhat.com>
1865
1866 PR preprocessor/29612
1867 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not
1868 only when new_sysp is non-zero.
1869
1870 2006-12-28 Tom Tromey <tromey@redhat.com>
1871
1872 PR preprocessor/30001
1873 * charset.c (_cpp_convert_input): Check that to.len is greater
1874 than zero.
1875
1876 2006-11-20 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
1877
1878 * configure.ac (need_64bit_hwint): Need 64bit hwint for SPU.
1879 * configure: Rebuilt.
1880
1881 2006-11-01 Douglas Gregor <doug.gregor@gmail.com>
1882
1883 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX0X and CLK_CXX0X
1884 for experimental C++0x mode.
1885 * init.c (lang_defaults): Add defaults for C++0x modes. C++0x has
1886 adopted the preprocessor changes introduced in C99.
1887
1888 2006-10-29 Joseph Myers <joseph@codesourcery.com>
1889
1890 * configure.ac (need_64bit_hwint): Set for i[34567]86-*-linux*
1891 depending on --enable-targets=all.
1892 * configure: Regenerate.
1893
1894 2006-10-12 Jakub Jelinek <jakub@redhat.com>
1895
1896 PR preprocessor/28709
1897 * macro.c (paste_tokens): Do error reporting here, use BUF with the
1898 spelled LHS token as opposed to spelling it again.
1899 (paste_all_tokens): Don't report errors here, just break on failure.
1900
1901 2006-10-10 Brooks Moses <bmoses@stanford.edu>
1902
1903 * Makefile.in: Added empty "pdf" target.
1904
1905 2006-09-22 Geoffrey Keating <geoffk@apple.com>
1906
1907 * configure.ac: Make need_64_bit_hwint case for x86-darwin
1908 match exactly the glob in gcc/config.gcc.
1909 * configure: Regenerate.
1910
1911 2006-09-13 Joseph S. Myers <joseph@codesourcery.com>
1912
1913 PR c/28768
1914 PR preprocessor/14634
1915 * lex.c (lex_string): Pedwarn for unterminated literals.
1916
1917 2006-09-08 Eric Christopher <echristo@apple.com>
1918
1919 * configure.ac: Add 64-bit HWI support for i?86-darwin.
1920
1921 2006-08-14 Steve Ellcey <sje@cup.hp.com>
1922
1923 PR c++/28288
1924 PR c++/14556
1925 * include/cpplib.h: Remove <?, >?, <?=, and >?= tokens.
1926 (CPP_LAST_EQ): Change.
1927 (CPP_LAST_PUNCTUATOR): Change.
1928 * expr.c (cpp_operator): Remove MIN and MAX.
1929 (reduce): Remove CPP_MIN and CPP_MAX.
1930 (num_binary_op): Ditto.
1931 * lex.c (_cpp_lex_direct): Ditto.
1932 (cpp_avoid_paste): Remove ? as legal symbol after > or <.
1933
1934 2006-06-09 Jakub Jelinek <jakub@redhat.com>
1935
1936 PR preprocessor/27746
1937 * directives.c (do_pragma): Handle pragma with valid namespace
1938 and invalid name coming from macro expansion.
1939 * directives.c (destringize_and_run): Initialize next field in
1940 context.
1941
1942 PR c/27747
1943 PR c++/27748
1944 * directives.c (destringize_and_run): Set NO_EXPAND on the
1945 tokens.
1946
1947 * macro.c (_cpp_backup_tokens): Fix comment typo.
1948
1949 2006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
1950
1951 * Makefile.in (CATALOGS): Add po/ prefix.
1952 * configure: Regenerated.
1953
1954 2006-05-23 Carlos O'Donell <carlos@codesourcery.com>
1955
1956 * Makefile.in: Add install-html target. Add install-html to .PHONY
1957
1958 2006-02-17 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
1959
1960 * macro.c (_cpp_builtin_macro_text): Handle BT_TIMESTAMP.
1961 * files.c (_cpp_get_file_stat): New function.
1962 * include/cpplib.h (builtin_type): Add BT_TIMESTAMP.
1963 * init.c (builtin_array): Add support for __TIMESTAMP__/BT_TIMESTAMP.
1964 * internal.h (_cpp_get_file_stat): Prototype.
1965 (struct cpp_buffer): Add timestamp.
1966
1967 2006-01-23 Jakub Jelinek <jakub@redhat.com>
1968
1969 PR preprocessor/25717
1970 * init.c (cpp_init_builtins): If __STDC__ will not change value
1971 between system headers and other sources, define it as a normal
1972 macro rather than a builtin.
1973 * macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
1974 cpp_in_system_header condition.
1975
1976 2006-01-05 Paolo Bonzini <bonzini@gnu.org>
1977
1978 * Makefile.in: Use -MMD instead of -MD.
1979
1980 2006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
1981 Richard Henderson <rth@redhat.com>
1982
1983 Merge from gomp branch:
1984 * directives.c (struct pragma_entry): Add is_deferred. Add ident
1985 entry to value union.
1986 (end_directive): Don't eat the line if in_deferred_pragma.
1987 (run_directive): Remove pragma hacks.
1988 (insert_pragma_entry): Remove.
1989 (new_pragma_entry): New.
1990 (register_pragma_1): Split out of register_pragma. Only handle
1991 the lookup tree and return the new entry.
1992 (cpp_register_pragma): Fill in the pragma entry here.
1993 (cpp_register_deferred_pragma): New.
1994 (register_pragma_internal): New.
1995 (_cpp_init_internal_pragmas): Use register_pragma_internal.
1996 (do_pragma): Allow pragma expansion after namespace. For deferred
1997 pragmas, don't slurp the line into a string.
1998 (destringize_and_run): Save tokens for deferred pragmas.
1999 (cpp_handle_deferred_pragma): Remove.
2000 * macro.c (builtin_macro): Remove pragma token hack.
2001 (_cpp_push_token_context): Rename from push_token_context and export.
2002 * internal.h (struct lexer_state): Add pragma_allow_expansion.
2003 (_cpp_push_token_context): Declare.
2004 * lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
2005 a token. Update the line number correctly if so.
2006 (_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
2007 (cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
2008 * include/cpplib.h (PRAGMA_EOL): New.
2009 (CPP_TOKEN_FLD_PRAGMA): New.
2010 (struct cpp_token): Add val.pragma.
2011 (struct cpp_options): Remove defer_pragmas.
2012 (cpp_handle_deferred_pragma): Remove.
2013 (cpp_register_deferred_pragma): Declare.
2014
2015 2006-01-01 Jakub Jelinek <jakub@redhat.com>
2016
2017 PR c++/25294
2018 * directives.c (do_pragma): If pragma line ends with multi-line
2019 block comment, end the saved deferred pragma string before that
2020 comment. Handle embedded '\0' chars on the pragma line.
2021
2022 2005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
2023
2024 PR c++/23333
2025 * include/cpplib.h: Add PURE_ZERO to flags for the cpp_token structure.
2026
2027 2005-12-07 Jon Grimm <jgrimm2@us.ibm.com>
2028 Ben Elliston <bje@au.ibm.com>
2029
2030 * include/cpplib.h (CPP_N_DFLOAT): New.
2031 * expr.c (interpret_float_suffix): Identify df, dd, and dl
2032 suffixes as decimal floating point constants.
2033 (cpp_classify_number): Disallow hexadecimal DFP constants.
2034
2035 2005-11-14 Gerald Pfeifer <gerald@pfeifer.com>
2036 Ian Lance Taylor <ian@airs.com>
2037
2038 * include/cpplib.h (struct cpp_callbacks): Annotate error with
2039 ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
2040
2041 2005-11-09 Per Bothner <per@bothner.com>
2042 Uros Bizjak <uros@kss-loka.si>
2043
2044 PR c/24101
2045 * init.c (read_original_filename): Temporarily set
2046 state.in_directive before calling _cpp_lex_direct for
2047 CPP_HASH tokens.
2048
2049 2005-11-03 James E Wilson <wilson@specifix.com>
2050
2051 PR preprocessor/24202
2052 * files.c (_cpp_pop_file_buffer): Set buffer_valid to false.
2053
2054 2005-11-04 Joseph S. Myers <joseph@codesourcery.com>
2055
2056 * include/cpplib.h (struct cpp_callbacks): Make error take
2057 va_list* parameter.
2058 * errors.c (cpp_error): Update call to callback.
2059
2060 2005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
2061
2062 PR preprocessor/22042
2063 * macro.c (_cpp_builtin_macro_text): Lower the needed max
2064 buffer size.
2065 (cpp_quote_string): Don't octalify non printable
2066 charactors.
2067
2068 2005-11-03 Joseph S. Myers <joseph@codesourcery.com>
2069
2070 PR c++/17964
2071 * include/cpplib.h (struct cpp_options): Add client_diagnostic.
2072 (struct cpp_callbacks): Add error.
2073 * errors.c (cpp_error): If client_diagnostic, use error callback.
2074 * charset.c (convert_escape): Don't use %03o in diagnostic.
2075
2076 2005-10-21 James E Wilson <wilson@specifix.com>
2077
2078 PR preprocessor/15220
2079 * files.c (_cpp_find_file): New parameter angle_brackets. Fix all
2080 callers. Pass to open_file_failed.
2081 (open_file_failed): New parameter angle_brackets. Fix all callers.
2082 Use in print_dep assignment.
2083 * init.c (cpp_read_main_file): Pass additional arg to _cpp_find_file.
2084 * internal.h (_cpp_find_file): Add new parm to declaration.
2085
2086 2005-10-08 Kazu Hirata <kazu@codesourcery.com>
2087
2088 * configure.ac: Require 64-bit int for arm*-*-*eabi*.
2089 * configure: Regenerate.
2090
2091 2005-10-04 Ian Lance Taylor <ian@airs.com>
2092
2093 PR preprocessor/13726
2094 * directives.c (check_eol_return_comments): New static function.
2095 (parse_include): Add buf parameter. Change all callers.
2096 (do_include_common): If not discard comments, turn on
2097 save_comments. Pass collected comments to include callback.
2098 * include/cpplib.h (struct cpp_callbacks): Add new parameter to
2099 include callback: cpp_token list.
2100
2101 2005-09-20 Joseph S. Myers <joseph@codesourcery.com>
2102
2103 * include/cpplib.h (struct cpp_options): Add extended_identifiers.
2104 * init.c (struct lang_flags, lang_defaults): Add
2105 extended_identifiers.
2106 (cpp_set_lang): Use it.
2107 * lex.c (forms_identifier_p): Check extended_identifiers.
2108
2109 2005-08-30 Jakub Jelinek <jakub@redhat.com>
2110
2111 PR preprocessor/20348
2112 PR preprocessor/20356
2113 * files.c (_cpp_find_file, search_cache): Revert 2004-06-26 and
2114 2004-06-05 changes.
2115
2116 2005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2117
2118 * configure.ac (ACX_PROG_CC_WARNING_OPTS): add
2119 -Wmissing-format-attribute.
2120
2121 * configure: Regenerate.
2122
2123 2005-06-29 Kelley Cook <kcook@gcc.gnu.org>
2124
2125 * all files: Update FSF address in copyright headers.
2126 * makeucnid.c (write_copyright): Update outputted FSF address.
2127
2128 2005-06-13 Zack Weinberg <zack@codesourcery.com>
2129
2130 * configure.ac: Invoke ZW_CREATE_DEPDIR and
2131 ZW_PROG_COMPILER_DEPENDENCIES.
2132 * aclocal.m4, configure: Regenerate.
2133 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.base, COMPILE):
2134 New variables.
2135 (distclean): Clean up $(DEPDIR) and its contents.
2136 (.c.o): Use $(COMPILE).
2137 Include $(DEPDIR)/*.Po for most object->header dependencies.
2138
2139 2005-05-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
2140
2141 * configure.ac: Check declarations for asprintf and vasprintf.
2142 * config.in: Regenerate.
2143 * configure: Likewise.
2144
2145 * charset.c (conversion_loop): Use XRESIZEVEC.
2146 (convert_no_conversion): Likewise.
2147 (convert_using_iconv): Likewise.
2148 (init_iconv_desc): Cast return value of alloca.
2149 (cpp_host_to_exec_charset): Use XNEWVEC.
2150 (emit_numeric_escape): Use XRESIZEVEC.
2151 (cpp_interpret_string): Use XNEWVEC.
2152 (cpp_interpret_string): Use XRESIZEVEC.
2153 (_cpp_interpret_identifier): Cast return value of alloca.
2154 (_cpp_convert_input): Use XNEWVEC and XRESIZEVEC.
2155 * directives.c (glue_header_name): Use XNEWVEC and XRESIZEVEC.
2156 (parse_include): Use XNEWVEC.
2157 (insert_pragma_entry): Rename local variable "new" to
2158 "new_entry".
2159 (save_registered_pragmas): Cast return value of xmemdup.
2160 (destringize_and_run): Same for alloca.
2161 (parse_assertion): Likewise.
2162 (do_assert): Cast allocated storage to proper type.
2163 (cpp_define): Likewise.
2164 (_cpp_define_builtin): Likewise.
2165 (cpp_undef): Likewise.
2166 (handle_assertion): Likewise.
2167 (cpp_push_buffer): Rename local variable "new" to "new_buffer".
2168 * expr.c (CPP_UPLUS): Cast value to type cpp_ttype.
2169 (CPP_UMINUS): Likewise.
2170 (struct cpp_operator): Rename from struct operator.
2171 (_cpp_expand_op_stack): Use XRESIZEVEC.
2172 * files.c (pch_open_file): Use XNEWVEC.
2173 (pch_open_file): Use XRESIZEVEC.
2174 (read_file_guts): Use XNEWVEC and XRESIZEVEC.
2175 (dir_name_of_file): Use XNEWVEC.
2176 (make_cpp_file): Use XCNEW.
2177 (make_cpp_dir): Likewise.
2178 (allocate_file_hash_entries): USE XNEWVEC.
2179 (cpp_included): Cast return value of htab_find_with_hash.
2180 (append_file_to_dir): Use XNEWVEC.
2181 (read_filename_string): Likewise. Use XRESIZEVEC too.
2182 (read_name_map): Cast return value of alloca. Use XRESIZEVEC.
2183 (remap_filename): Use XNEWVEC.
2184 (struct pchf_entry): Move definition out of struct pchf_data.
2185 (_cpp_save_file_entries): Use XCNEWVAR.
2186 (_cpp_read_file_entries): Use XNEWVAR.
2187 * identifiers.c (alloc_node): Use XOBNEW.
2188 * init.c (cpp_create_reader): Use XCNEW.
2189 (cpp_init_builtins): Cast of b->value to enum builtin_type.
2190 (read_original_directory): Cast return value of alloca.
2191 * lex.c (add_line_note): Use XRESIZEVEC.
2192 (warn_about_normalization): Use XNEWVEC.
2193 (_cpp_lex_direct): Cast node->directive_index to (enum cpp_ttype).
2194 (new_buff): Use XNEWVEC.
2195 * line-map.c (linemap_add): Use XRESIZEVEC.
2196 * macro.c (builtin_macro): Cast return value of alloca.
2197 (paste_tokens): Likewise.
2198 (expand_arg): Use XNEWVEC and XRESIZEVEC.
2199 (_cpp_save_parameter): Use XRESIZEVEC.
2200 (create_iso_definition): Cast allocated storage to proper type.
2201 (_cpp_create_definition): Likewise.
2202 (cpp_macro_definition): Use XRESIZEVEC.
2203 * makedepend.c (add_clm): Use XNEW.
2204 (add_dir): Likewise.
2205 * mkdeps.c (munge): Use XNEWVEC.
2206 (deps_init): Use XCNEW.
2207 (deps_add_target): Use XRESIZEVEC.
2208 (deps_add_default_target): Cast return value of alloca.
2209 (deps_add_dep): Use XRESIZEVEC.
2210 (deps_add_vpath): Likewise. Use XNEWVEC too.
2211 (deps_restore): Likewise.
2212 * pch.c (save_idents): Use XNEW and XNEWVEC.
2213 (cpp_save_state): Use XNEW.
2214 (count_defs): Cast return value of htab_find.
2215 (write_defs): Likewise.
2216 (cpp_write_pch_deps): Use XNEWVEC.
2217 (collect_ht_nodes): Use XRESIZEVEC.
2218 (cpp_valid_state): Use XNEWVEC.
2219 (save_macros): Use XRESIZEVEC. Cast return value of xmemdup.
2220 * symtab.c (ht_create): Use XCNEW.
2221 (ht_lookup_with_hash): Cast return value of obstack_copy0.
2222 (ht_expand): Use XCNEWVEC.
2223 * system.h (HAVE_DESIGNATED_INITIALIZERS): False if __cplusplus.
2224 (bool): Do not define if __cplusplus.
2225
2226 2005-05-12 Zack Weinberg <zack@codesourcery.com>
2227
2228 * directives.c (#sccs table entry): Mark IN_I, consistent with #ident.
2229 (do_sccs): Delete function definition, #define to do_ident.
2230 (do_ident): Don't hardwire directive name.
2231
2232 2005-05-12 Ryota Kunisawa <kunisawa@access.co.jp>
2233
2234 PR bootstrap/21230
2235 * configure: Regenerate.
2236
2237 2005-04-27 Andris Pavenis <pavenis@latnet.lv>
2238
2239 * files.c: Include io.h for DJGPP to get prototype of setmode.
2240
2241 2005-04-19 Per Bothner <per@bothner.com>
2242
2243 PR preprocessor/20907
2244 * line-map.c (linemap_line_start): Fix bug when we need to increse
2245 column_bits but can re-use the current line_map.
2246
2247 2005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2248
2249 * system.h (fopen, fdopen, freopen): Define these to the unlocked
2250 libiberty functions.
2251
2252 2005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2253
2254 * configure.ac (libcpp_UNLOCKED_FUNCS): New.
2255 (AC_CHECK_FUNCS, AC_CHECK_DECLS): Check for libcpp_UNLOCKED_FUNCS.
2256 * system.h (putchar, getc, getchar, clearerr, feof, fileno,
2257 fflush, fgetc, fgets, ferror, fread): Redefine to the associated
2258 _unlocked function.
2259 (fwrite_unlocked): Fix prototype.
2260
2261 * configure, config.in: Regenerate.
2262
2263 2005-04-05 Jakub Jelinek <jakub@redhat.com>
2264
2265 PR preprocessor/19475
2266 * macro.c (create_iso_definition): For < ISO C99, don't
2267 pedwarn if there is no whitespace between macro name and its
2268 replacement, but the replacement starts with a basic character
2269 set character.
2270
2271 2005-03-28 Andreas Jaeger <aj@suse.de>
2272
2273 * lex.c (warn_about_normalization): Cast field width to int to
2274 avoid warning.
2275
2276 2005-03-19 Joseph S. Myers <joseph@codesourcery.com>
2277
2278 * configure.ac: Consistently use solaris2.1[0-9]* instead of
2279 solaris2.1[0-9].
2280 * configure: Regenerate.
2281
2282 2005-03-15 Geoffrey Keating <geoffk@apple.com>
2283
2284 * charset.c (_cpp_valid_ucn): In identifiers, reject a partial
2285 UCN rather than printing an error.
2286
2287 2005-03-14 Geoffrey Keating <geoffk@apple.com>
2288
2289 * lex.c (forms_identifier_p): Disable UCNs in C89 mode.
2290
2291 2005-03-14 Geoffrey Keating <geoffk@apple.com>
2292
2293 * init.c (cpp_create_reader): Default warn_normalize to normalized_C.
2294 * charset.c: Update for new format of ucnid.h.
2295 (ucn_valid_in_identifier): Update for new format of ucnid.h.
2296 Add NST parameter, and update it; update callers.
2297 (cpp_valid_ucn): Add NST parameter, update callers. Replace abort
2298 with cpp_error.
2299 (convert_ucn): Pass normalize_state to cpp_valid_ucn.
2300 * internal.h (struct normalize_state): New.
2301 (INITIAL_NORMALIZE_STATE): New.
2302 (NORMALIZE_STATE_RESULT): New.
2303 (NORMALIZE_STATE_UPDATE_IDNUM): New.
2304 (_cpp_valid_ucn): New.
2305 * lex.c (warn_about_normalization): New.
2306 (forms_identifier_p): Add normalize_state parameter, update callers.
2307 (lex_identifier): Add normalize_state parameter, update callers. Keep
2308 the state current.
2309 (lex_number): Likewise.
2310 (_cpp_lex_direct): Pass normalize_state to subroutines. Check
2311 it with warn_about_normalization.
2312 * makeucnid.c: New.
2313 * ucnid.h: Replace.
2314 * ucnid.pl: Remove.
2315 * ucnid.tab: Make appropriate for input to makeucnid.c. Remove
2316 comments about obsolete version of C++.
2317 * include/cpplib.h (enum cpp_normalize_level): New.
2318 (struct cpp_options): Add warn_normalize field.
2319
2320 2005-03-11 Geoffrey Keating <geoffk@apple.com>
2321
2322 * directives.c (glue_header_name): Update call to cpp_spell_token.
2323 * internal.h (_cpp_interpret_identifier): New.
2324 * charset.c (_cpp_interpret_identifier): New.
2325 (_cpp_valid_ucn): Allow UCN version of '$'.
2326 * lex.c (lex_identifier): Add extra parameter to indicate if initial
2327 character was '$' or '\'. Support identifiers with UCNs.
2328 (forms_identifier_p): Allow UCNs.
2329 (_cpp_lex_direct): Pass extra parameter to lex_identifier.
2330 (utf8_to_ucn): New.
2331 (cpp_spell_token): Add FORSTRING parameter. Use it.
2332 (cpp_token_as_text): Update call to cpp_spell_token.
2333 (cpp_output_token): Write UCNs back out.
2334 (stringify_arg): Update call to cpp_spell_token.
2335 (paste_tokens): Likewise.
2336 (cpp_macro_definition): Likewise.
2337 * macro.c (stringify_arg): Likewise.
2338 (paste_tokens): Likewise.
2339 (cpp_macro_definition): Likewise.
2340 * include/cpplib.h: Add parameter to cpp_spell_token.
2341
2342 2005-03-04 Jakub Jelinek <jakub@redhat.com>
2343
2344 PR bootstrap/20282
2345 PR bootstrap/20305
2346 * macro.c (replace_args, cpp_get_token): Copy whole
2347 cpp_token_u instead of just cpp_string field from it.
2348
2349 2005-02-28 Devang Patel <dpatel@apple.com>
2350
2351 * directives.c (do_line): Save sysp early before line table is
2352 realloc'ed.
2353
2354 2005-02-20 Zack Weinberg <zack@codesourcery.com>
2355
2356 PR 18785
2357 * charset.c (LAST_POSSIBLY_BASIC_SOURCE_CHAR): New helper macro.
2358 (cpp_host_to_exec_charset): New function.
2359 * include/cpplib.h: Declare cpp_host_to_exec_charset.
2360
2361 2005-02-19 Devang Patel <dpatel@apple.com>
2362
2363 * charset.c (_cpp_convert_input): Check '\r' before inserting
2364 '\n' at the end.
2365
2366 2005-02-15 Eric Christopher <echristo@redhat.com>
2367
2368 PR preprocessor/19077
2369 * macro.c (cpp_macro_definition): Move handling of whitespace
2370 to PREV_WHITE conditional. Remove overloading of len
2371 variable.
2372
2373 2005-02-14 Kazu Hirata <kazu@cs.umass.edu>
2374
2375 * directives.c, files.c, init.c, internal.h, macro.c, pch.c,
2376 traditional.c: Update copyright.
2377
2378 2005-02-14 Paolo Bonzini <bonzini@gnu.org>
2379
2380 PR bootstrap/19818
2381 * configure.ac: Check for declaration of basename and getopt.
2382 * config.in: Regenerate.
2383 * configure: Regenerate.
2384 * internal.h (ustrcspn): New.
2385 * macro.c (create_iso_definition): Fix allocation of memory.
2386 (padding_token): Add cast to remove const-ness.
2387 * pch.c (cpp_read_state): Use ustrcspn.
2388
2389 2005-02-08 Mike Stump <mrs@apple.com>
2390
2391 * files.c (pchf_adder): Remove.
2392 (struct pchf_adder_info): Likewise.
2393 (_cpp_save_file_entries): Write out all files so that #import works.
2394
2395 2005-01-23 Joseph S. Myers <joseph@codesourcery.com>
2396
2397 * configure: Regenerate.
2398
2399 2005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
2400
2401 * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader.
2402
2403 * include/cpplib.h: Also update copyright years.
2404
2405 2005-01-03 Geoffrey Keating <geoffk@apple.com>
2406
2407 * files.c (_cpp_find_file): Add files found by search_path_exhausted
2408 to the list of all files.
2409
2410 2005-01-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
2411
2412 * internal.h: Update references to Cpp lib filenames.
2413 * directives.c: Likewise.
2414 * init.c: Likewise.
2415 * macro.c: Likewise.
2416 * traditional.c: Likewise.
2417
2418 2004-12-15 Eric Botcazou <ebotcazou@libertysurf.fr>
2419
2420 PR preprocessor/15167
2421 * files.c (destroy_cpp_file): New function.
2422 (should_stack_file): Make a new file if the
2423 compared file is still stacked.
2424
2425 2004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
2426
2427 PR preprocessor/17610
2428 * directives.c (do_include_common): Error out if an empty filename
2429 is given for #include (or #include_next or #import).
2430
2431 2004-11-27 Roger Sayle <roger@eyesopen.com>
2432 Zack Weinberg <zack@codesourcery.com>
2433
2434 * internal.h: Replace all uses of uchar with unsigned char.
2435 * include/cpp-id-data.h: Likewise. Guard typedef of uchar
2436 with !IN_GCC, so uchar is only defined whilst building libcpp.
2437
2438 2004-11-24 Kelley Cook <kcook@gcc.gnu.org>
2439
2440 * aclocal.m4: Regenerate.
2441
2442 2004-11-24 Roger Sayle <roger@eyesopen.com>
2443
2444 PR preprocessor/15824
2445 * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
2446 directly, instead of the non-existant "system.h" and "ansidecl.h".
2447 * configure: Regenerate.
2448
2449 2004-11-23 Daniel Jacobowitz <dan@codesourcery.com>
2450 Joseph Myers <joseph@codesourcery.com>
2451
2452 * internal.h (struct lexer_state): Add in_deferred_pragma.
2453 * directives.c (struct pragma_entry): Add allow_expansion.
2454 (insert_pragma_entry): Take allow_expansion flag.
2455 (register_pragma): Likewise.
2456 (cpp_register_pragma): Likewise.
2457 (_cpp_init_internal_pragmas): Update calls to cpp_register_pragma.
2458 (do_pragma): Honor allow_expansion.
2459 (cpp_handle_deferred_pragma): Set in_deferred_pragma.
2460 * include/cpplib.h (cpp_register_pragma): Update prototype.
2461
2462 2004-11-18 Daniel Jacobowitz <dan@codesourcery.com>
2463 Mark Mitchell <mark@codesourcery.com>
2464
2465 * configure.ac (i[34567]86-*-solaris2.1[0-9]*): Set
2466 need_64bit_hwint=yes.
2467 * configure: Regenerate.
2468
2469 2004-11-09 Joseph S. Myers <joseph@codesourcery.com>
2470
2471 * Makefile.in ($(PACKAGE).pot): New rule. Depend on
2472 po/$(PACKAGE).pot.
2473 (po/$(PACKAGE).pot): Use ":" instead of "," in --keyword
2474 arguments. Add keywords _, N_, SYNTAX_ERROR and SYNTAX_ERROR2.
2475 Remove local srcdir path from generated file.
2476
2477 2004-11-04 Zack Weinberg <zack@codesourcery.com>
2478 Gerald Pfeifer <gerald@pfeifer.com>
2479
2480 * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H
2481 as well.
2482
2483 2004-10-27 Zack Weinberg <zack@codesourcery.com>
2484
2485 PR 18075
2486 * directives.c (do_pragma): Do not defer pragmas which are unknown.
2487 (cpp_handle_deferred_pragma): Add cast to silence warning.
2488
2489 2004-10-14 Joseph S. Myers <jsm@polyomino.org.uk>
2490
2491 * errors.c (_cpp_begin_message): Print "error: " for errors.
2492
2493 2004-10-10 Andreas Jaeger <aj@suse.de>
2494
2495 * makedepend.c: Include mkdeps.h for prototype of deps_add_vpath.
2496 * Makefile.in (makedepend.o): Add dependency on mkdeps.h.
2497
2498 2004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
2499
2500 * pch.c (cpp_write_pch_state): Remove variable z as it is not
2501 used.
2502 (cpp_read_state): Remove unused variables, m, d and mac_count.
2503
2504 2004-09-29 Per Bothner <per@bothner.com>
2505
2506 * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
2507 cb.line_change. Otherwise do_pragma will call the line_change
2508 call-back with a meaningless line number.
2509
2510 2004-09-24 Zack Weinberg <zack@codesourcery.com>
2511
2512 * configure.ac: Move AC_PROG_MAKE_SET, AC_PROG_INSTALL to
2513 programs cluster. Use ACX_PROG_CC_WARNING_OPTS,
2514 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_PROG_CC_WARNINGS_ARE_ERRORS.
2515 * aclocal.m4, configure: Regenerate.
2516 * init.c: Include localedir.h.
2517 * Makefile.in (WARN_CFLAGS, ALL_CFLAGS): New variables.
2518 (DEFS): Delete.
2519 (.c.o): Use $(ALL_CFLAGS).
2520 (localedir.h, localedir.hs): New rules.
2521 (clean): Use rm -rf to remove directories.
2522 (distclean): Also delete localedir.h and localedir.hs.
2523 (init.o): Update dependencies.
2524
2525 2004-09-22 Kelley Cook <kcook@gcc.gnu.org>
2526
2527 * Makefile.in (aclocal.m4): Update dependencies.
2528 * configure.ac (AC_CONFIG_MACRO_DIR): New.
2529 * aclocal.m4, configure: Regenerate.
2530
2531 2004-09-17 Zack Weinberg <zack@codesourcery.com>
2532
2533 * charset.c (_cpp_destroy_iconv, emit_numeric_escape)
2534 (_cpp_convert_input, _cpp_default_encoding): Add comments.
2535 Some other comments in this file also tweaked.
2536
2537 * directives.c (do_pragma): Save current buffer position
2538 before lexing the pragma keywords; don't call
2539 _cpp_backup_tokens in the defer_pragmas case.
2540
2541 2004-09-15 Per Bothner <per@bothner.com>
2542
2543 * include/line-map.h (line_map_start): Add parameter names so
2544 preceding comment makes sense.
2545 (linemap_add): Remove from comment mention of non-existing parameter.
2546
2547 2004-09-09 Matt Austern <austern@apple.com>
2548 Zack Weinberg <zack@codesourcery.com>
2549
2550 * include/cpplib.h (TTYPE_TABLE): Remove CPP_ and SPELL_
2551 prefixes throughout. Add entry for PRAGMA. Remove
2552 unnecessary "= 0" from EQ.
2553 (enum cpp_ttype): Adjust OP and TK definitions to restore
2554 prefixes, via token-paste.
2555 (CPP_LAST_EQ, CPP_FIRST_DIGRAPH, CPP_LAST_PUNCTUATOR, CPP_LAST_CPP_OP):
2556 Change from #defines to additional cpp_ttype enumerators.
2557 (struct cpp_options): Add defer_pragmas.
2558 (cpp_handle_deferred_pragma): Prototype new interface.
2559
2560 * internal.h (struct cpp_reader): Add directive_result.
2561 * directives.c (struct pragma_entry): Add is_internal field;
2562 give boolean fields type bool.
2563 (start_directive): Initialize pfile->directive_result.type.
2564 (_cpp_do__Pragma): Likewise.
2565 (run_directive): Do not crash if pfile->buffer->prev is NULL.
2566 (insert_pragma_entry): Add 'internal' argument; set new->is_internal
2567 from it.
2568 (register_pragma): New static function, bulk of former
2569 cpp_register_pragma here; add 'internal' argument, pass along
2570 to insert_pragma_entry.
2571 (cpp_register_pragma): Now a wrapper around register_pragma which
2572 always passes false for 'internal' argument.
2573 (_cpp_init_internal_pragmas): Call register_pragma directly, passing
2574 true for 'internal'.
2575 (do_pragma): If CPP_OPTION (pfile, defer_pragmas) and this isn't
2576 an internal pragma, save text till the end of the line as a CPP_PRAGMA
2577 token instead of executing the pragma.
2578 (cpp_handle_deferred_pragma): New interface.
2579 * lex.c (token_spellings): Adjust OP and TK definitions to
2580 match changes to cpplib.h.
2581 (_cpp_lex_token): Check for a directive-result token and
2582 return it if present.
2583 (cpp_token_val_index): Handle CPP_PRAGMA.
2584 * macro.c (cpp_builtin_macro_text): Correct comment.
2585 (builtin_macro): Handle directive-result tokens from _cpp_do__Pragma.
2586
2587 2004-09-06 Serge Belyshev <belyshev@lubercy.com>
2588
2589 PR preprocessor/14699
2590 * symtab.c (ht_dump_statistics): Change type of sum_of_squares
2591 from size_t to double.
2592
2593 2004-08-28 Andreas Schwab <schwab@suse.de>
2594 Andreas Jaeger <aj@suse.de>
2595
2596 * configure.ac: Set PACKAGE correctly.
2597 * configure: Regenerated.
2598
2599 2004-08-25 Paolo Bonzini <bonzini@gnu.org>
2600
2601 * Makefile.in: Add back top_builddir.
2602
2603 2004-08-25 Paolo Bonzini <bonzini@gnu.org>
2604
2605 * configure.ac: Replace Automake macro invocations
2606 with manual Autoconf checks and substitutions.
2607 * configure: Regenerate.
2608 * aclocal.m4: Regenerate.
2609 * config.in: Regenerate.
2610 * Makefile.am: Removed.
2611 * Makefile.in: Heavy simplification and reorganization.
2612
2613 2004-08-09 Mark Mitchell <mark@codesourcery.com>
2614
2615 * configure.ac (arm*-*-eabi*): New target.
2616 (arm*-*-symbianelf*): Likewise.
2617 * configure: Regenerated.
2618
2619 2004-07-24 Bernardo Innocenti <bernie@develer.com>
2620
2621 * internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
2622 * directives.c: Use XNEW-family macros from libiberty.
2623 * lex.c: Likewise.
2624 * macro.c: Likewise.
2625 * cpplib.h (cpp_deps_style): Export enum with name.
2626
2627 2004-07-23 Matthias Klose <doko@debian.org>
2628
2629 * init.c (init_library): Use PACKAGE for the text domain.
2630
2631 2004-07-16 Andris Pavenis <pavenis@latnet.lv>
2632
2633 PR preprocessor/16366
2634 * internal.h (struct cpp_reader): New field dir_hash.
2635 * files.c (make_cpp_dir): Use dir_hash, not file_hash.
2636 (_cpp_init_files, _cpp_cleanup_files): Update for new field.
2637
2638 2004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
2639
2640 PR preprocessor/16192
2641 PR preprocessor/15913
2642 PR preprocessor/15572
2643 * expr.c (_cpp_parse_expr): Handle remaining cases where an
2644 expression is missing.
2645 * init.c (post_options): Traditional cpp doesn't do // comments.
2646
2647 2004-06-30 Per Bothner <per@bothner.com>
2648
2649 * include/line-map.h (fileline): Remove old typedef.
2650 * internal.h (struct cpp_reader): Use source_location typedef instead.
2651
2652 2004-06-26 Zack Weinberg <zack@codesourcery.com>
2653
2654 Partially revert patch of 2004-06-05.
2655 * files.c (search_cache): Remove pfile argument. Don't check
2656 for file that would be found by "" or <> search here...
2657 (_cpp_find_file): ...do it here, before calling find_file_in_dir.
2658 Do not apply directory-of-current-file correction to files
2659 found by this check. Rearrange code slightly.
2660
2661 2004-06-21 Geoffrey Keating <geoffk@apple.com>
2662
2663 * files.c (should_stack_file): Correct swapped parameters to call
2664 to cb.read_pch.
2665 * pch.c (cpp_valid_state): Handle -fpreprocessed.
2666
2667 2004-06-15 Paolo Bonzini <bonzini@gnu.org>
2668
2669 * Makefile.in: Regenerate with automake 1.8.5.
2670 * aclocal.m4: Likewise.
2671 * configure: Regenerate.
2672
2673 2004-06-11 Zack Weinberg <zack@codesourcery.com>
2674
2675 * configure.ac: Don't invoke ACX_HEADER_STDBOOL.
2676 * configure, config.in: Regenerate.
2677 * system.h: Unconditionally define bool as unsigned char,
2678 BOOL_BITFIELD as unsigned int.
2679 * .cvsignore: New file.
2680
2681 2004-06-09 Geoffrey Keating <geoffk@apple.com>
2682
2683 * traditional.c (push_replacement_text): Set macro->traditional.
2684 (save_replacement_text): Likewise.
2685 * pch.c (cpp_write_pch_state): Don't write list of defined macros.
2686 (struct save_macro_item): Delete.
2687 (struct save_macro_data): Use a character array not the previous
2688 structured format.
2689 (save_macros): Save macro as text not as internal structures.
2690 (cpp_prepare_state): Update for changes to save_macro_data.
2691 (cpp_read_state): Don't read macros defined in PCH. Restore
2692 -D macros as text.
2693 * macro.c (create_iso_definition): Honour alloc_subobject.
2694 Clear traditional flag.
2695 (_cpp_create_definition): Honour alloc_subobject.
2696 * lex.c (cpp_token_val_index): New.
2697 * internal.h: Include cpp-id-data.h.
2698 (uchar): Move definition to cpp-id-data.h.
2699 (U): Likewise.
2700 (cpp_macro): Likewise.
2701 * directives.c (struct answer): Move to cpp-id-data.h.
2702 (do_assert): Honour alloc_subobject.
2703
2704 * include/symtab.h (struct ht): Add field 'alloc_subobject'.
2705 * include/cpplib.h (struct cpp_string): Add GTY marker.
2706 (enum cpp_token_fld_kind): New.
2707 (struct cpp_token): Add GTY markers.
2708 (cpp_token_val_index): Prototype.
2709 (CPP_HASHNODE_VALUE_IDX): New.
2710 (struct cpp_hashnode): Don't skip fields of 'value' when marking.
2711 * include/cpp-id-data.h: New file.
2712
2713 2004-06-09 Paolo Bonzini <bonzini@gnu.org>
2714
2715 * Makefile.am (all-local): New.
2716 * Makefile.in: Regenerate.
2717
2718 2004-06-06 Roger Sayle <roger@eyesopen.com>
2719
2720 * Makefile.am (LIBICONV): Declare.
2721 (makedepend_LDADD): Use LIBICONV.
2722 * Makefile.in: Regenerate.
2723
2724 2004-06-05 Andrew Pinski <pinskia@physics.uc.edu>
2725
2726 * Makefile.am (LIBINTL): Declare
2727 (makedepend_LDADD): Use LIBINTL.
2728 * Makefile.in: Regenerate.
2729
2730 2004-06-05 Zack Weinberg <zack@codesourcery.com>
2731
2732 * Makefile.am: Add makedepend.
2733 * Makefile.in, aclocal.m4: Regenerate.
2734 * charset.c: Insert a space to avoid a warning.
2735 * directives.c: Include mkdeps.h.
2736 (_cpp_handle_directive): Reenable macro expander if appropriate.
2737 (undefine_macros): Inline body of _cpp_free_definition for speed.
2738 Do not call undef callback or _cpp_warn_if_unused_macro.
2739 (cpp_get_deps): New interface.
2740 * files.c (search_cache): Add pfile argument. Check for file
2741 that would be found by "" or <> search here...
2742 (_cpp_find_file): ...not here. Correct recorded start_dir of
2743 files found by directory-of-current-file search that would be
2744 found by "" or <> search.
2745 * init.c (cpp_add_dependency_target): Delete.
2746 * internal.h (struct lexer_state): Add discarding_output flag.
2747 * lex.c (lex_identifier): Compute hash function while scanning.
2748 * macro.c (cpp_scan_nooutput): Disable macro expansion outside
2749 directives.
2750 * makedepend.c: New file.
2751 * mkdeps.c (struct deps): Add vpath vector.
2752 (apply_vpath, deps_add_vpath): New function.
2753 (deps_free): Free vpath vector.
2754 (deps_add_dep, deps_add_target): Use apply_vpath.
2755 * symtab.c (calc_hash): Use HT_HASHSTEP and HT_FINISH.
2756 (ht_lookup_with_hash): New function.
2757 * cpplib.h, mkdeps.h: Update prototypes.
2758 * symtab.h: Update prototypes.
2759 (HT_HASHSTEP, HT_FINISH): New macros.
2760
2761 2004-05-29 Geoffrey Keating <geoffk@apple.com>
2762
2763 * symtab.c (ht_create): Set entries_owned.
2764 (ht_destroy): Honour entries_owned.
2765 (ht_expand): Likewise.
2766 (ht_load): New.
2767 * include/symtab.h (struct ht): New field 'entries_owned'
2768 (ht_load): New prototype.
2769
2770 2004-05-26 Paolo Bonzini <bonzini@gnu.org>
2771
2772 PR bootstrap/15651
2773 * configure.ac: Fix m4 quoting when picking
2774 the size of HOST_WIDE_INT.
2775 * configure: Regenerate.
2776
2777 2004-05-25 Paolo Bonzini <bonzini@gnu.org>
2778
2779 * Makefile.am: the correct directory for
2780 gettext include files is given by @INCINTL@.
2781 * Makefile.in: Regenerate.
2782
2783 2004-05-24 Paolo Bonzini <bonzini@gnu.org>
2784
2785 * system.h [!ENABLE_NLS]: dgettext takes two
2786 parameters.
2787
2788 2004-05-23 Paolo Bonzini <bonzini@gnu.org>
2789
2790 Moved libcpp from the gcc subdirectory to the toplevel.
2791 * Makefile.am: New file.
2792 * Makefile.in: Regenerate.
2793 * configure.ac: New file.
2794 * configure: Regenerate.
2795 * config.in: Regenerate.
2796 * charset.c: Moved from gcc/cppcharset.c. Add note about
2797 brokenness of input charset detection. Adjust for change
2798 in name of cppucnid.h.
2799 * errors.c: Moved from gcc/cpperror.c. Do not include intl.h.
2800 * expr.c: Moved from gcc/cppexp.c.
2801 * files.c: Moved from gcc/cppfiles.c. Do not include intl.h.
2802 Remove #define of O_BINARY, it is in system.h.
2803 * identifiers.c: Moved from gcc/cpphash.c.
2804 * internal.h: Moved from gcc/cpphash.h. Change header
2805 guard name. All other files adjusted to match name change.
2806 * init.c: Moved from gcc/cppinit.c.
2807 (init_library) [ENABLE_NLS]: Call bindtextdomain.
2808 * lex.c: Moved from gcc/cpplex.c.
2809 * directives.c: Moved from gcc/cpplib.c.
2810 * macro.c: Moved from gcc/cppmacro.c.
2811 * pch.c: Moved from gcc/cpppch.c. Do not include intl.h.
2812 * traditional.c: Moved from gcc/cpptrad.c.
2813 * ucnid.h: Moved from gcc/cppucnid.h. Change header
2814 guard name.
2815 * ucnid.pl: Moved from gcc/cppucnid.pl.
2816 * ucnid.tab: Moved from gcc/cppucnid.tab. Change header
2817 guard name.
2818 * symtab.c: Moved from gcc/hashtable.c.
2819 * line-map.c: Moved from gcc. Do not include intl.h.
2820 * mkdeps.c: Moved from gcc.
2821 * system.h: New file.
2822 * include/cpplib.h: Moved from gcc. Change header guard name.
2823 * include/line-map.h: Moved from gcc. Change header guard name.
2824 * include/mkdeps.h: Moved from gcc. Change header guard name.
2825 * include/symtab.h: Moved from gcc/hashtable.h. Change header
2826 guard name.