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