]> git.ipfire.org Git - thirdparty/gcc.git/blame - libcpp/ChangeLog
Support -fdebug-cpp option
[thirdparty/gcc.git] / libcpp / ChangeLog
CommitLineData
847e697a
TT
12011-10-15 Tom Tromey <tromey@redhat.com>
2 Dodji Seketeli <dodji@redhat.com>
3
4 * include/cpplib.h (struct cpp_options)<debug>: New struct member.
5 * include/line-map.h (linemap_dump_location): Declare ...
6 * line-map.c (linemap_dump_location): ... new function.
7
92582b75
TT
82011-10-15 Tom Tromey <tromey@redhat.com>
9 Dodji Seketeli <dodji@redhat.com>
10
11 * include/cpplib.h (struct cpp_options)<track_macro_expansion>:
12 New option.
13 * internal.h (struct macro_context): New struct.
14 (enum context_tokens_kind): New enum.
15 (struct cpp_context)<tokens_kind>: New member of type enum
16 context_tokens_kind.
17 (struct cpp_context)<macro>: Remove this. Replace it with an enum
18 of macro and macro_context.
19 (struct cpp_context)<direct_p>: Remove.
20 (_cpp_remaining_tokens_num_in_context): Declare new function.
21 * directives.c (destringize_and_run): Adjust.
22 * lex.c (_cpp_remaining_tokens_num_in_context)
23 (_cpp_token_from_context_at): Define new functions
24 (cpp_peek_token): Use them.
25 * init.c (cpp_create_reader): Initialize the base context to zero.
26 (_cpp_token_from_context_at): Define new static function.
27 (cpp_peek_token): Use new _cpp_remaining_tokens_num_in_context and
28 _cpp_token_from_context_at.
29 * macro.c (struct macro_arg)<virt_locs, expanded_virt_locs>: New
30 members.
31 (enum macro_arg_token_kind): New enum.
32 (struct macro_arg_token_iter): New struct.
33 (maybe_adjust_loc_for_trad_cpp, push_extended_tokens_context)
34 (alloc_expanded_arg_mem, ensure_expanded_arg_room)
35 (delete_macro_args, set_arg_token, get_arg_token_location)
36 (arg_token_ptr_at, macro_arg_token_iter_init)
37 (macro_arg_token_iter_get_token)
38 (macro_arg_token_iter_get_location, macro_arg_token_iter_forward)
39 (expanded_token_index, tokens_buff_new, tokens_buff_count)
40 (tokens_buff_last_token_ptr, tokens_buff_put_token_to)
41 (tokens_buff_add_token, tokens_buff_remove_last_token)
42 (reached_end_of_context, consume_next_token_from_context): New
43 static functions.
44 (cpp_get_token_1): New static function. Split and extended from
45 cpp_get_token. Use reached_end_of_context and
46 consume_next_token_from_context. Unify its return point. Move
47 the location tweaking from cpp_get_token_with_location in here.
48 (cpp_get_token): Use cpp_get_token_1
49 (stringify_arg): Use the new arg_token_at.
50 (paste_all_tokens): Support tokens coming from extended tokens
51 contexts.
52 (collect_args): Return the number of collected arguments, by
53 parameter. Store virtual locations of tokens that constitute the
54 collected args.
55 (funlike_invocation_p): Return the number of collected arguments,
56 by parameter.
57 (enter_macro_context): Add a parameter for macro expansion point.
58 Pass it to replace_args and to the "used" cpp callback. Get the
59 number of function-like macro arguments from funlike_invocation_p,
60 pass it to the new delete_macro_args to free the memory used by
61 macro args. When -ftrack-macro-expansion is in effect, for macros
62 that have no arguments, create a macro map for the macro expansion
63 and use it to allocate proper virtual locations for tokens
64 resulting from the expansion. Push an extended tokens context
65 containing the tokens resulting from macro expansion and their
66 virtual locations.
67 (replace_args): Rename the different variables named 'count' into
68 variables with more meaningful names. Create a macro map;
69 allocate virtual locations of tokens resulting from this
70 expansion. Use macro_arg_token_iter to iterate over tokens of a
71 given macro. Handle the case of the argument of
72 -ftrack-macro-expansion being < 2. Don't free macro arguments
73 memory resulting from expand_arg here, as these are freed by the
74 caller of replace_arg using delete_macro_args now. Push extended
75 token context.
76 (next_context, push_ptoken_context, _cpp_push_token_context)
77 (_cpp_push_text_context): Properly initialize the context.
78 (expand_arg): Use the new alloc_expanded_arg_mem,
79 push_extended_tokens_context, cpp_get_token_1, and set_arg_token.
80 (_cpp_pop_context): Really free the memory held by the context.
81 Handle freeing memory used by extended tokens contexts.
82 (cpp_get_token_with_location): Use cpp_get_token_1.
83 (cpp_sys_macro_p): Adjust.
84 (_cpp_backup_tokens): Support the new kinds of token contexts.
85 * traditional.c (recursive_macro): Adjust.
86
46427374
TT
872011-10-15 Tom Tromey <tromey@redhat>
88 Dodji Seketeli <dodji@redhat.com>
89
90 * include/line-map.h (enum lc_reason)<LC_ENTER_MACRO>: New enum
91 member.
92 (MAX_SOURCE_LOCATION): New constant.
93 (struct line_map_ordinary, struct line_map_macro): New structs.
94 (struct line_map): Turn this into a union of the two above. Add
95 comments.
96 (struct maps_info): New struct.
97 (struct line_maps)<info_ordinary, info_macro>: Two new fields.
98 These now carry the map information that was previously scattered
99 in struct line_maps.
100 (struct map_info::allocated): Fix comment.
101 (MAP_START_LOCATION, ORDINARY_MAP_FILE_NAME)
102 (ORDINARY_MAP_STARTING_LINE_NUMBER)
103 (ORDINARY_MAP_INCLUDER_FILE_INDEX)
104 (ORDINARY_MAP_IN_SYSTEM_HEADER_P)
105 (ORDINARY_MAP_NUMBER_OF_COLUMN_BITS, MACRO_MAP_MACRO)
106 (MACRO_MAP_NUM_MACRO_TOKENS MACRO_MAP_LOCATIONS)
107 (MACRO_MAP_EXPANSION_POINT_LOCATION)
108 (LOCATION_POSSIBLY_IN_MACRO_MAP_P, LINEMAPS_MAP_INFO)
109 (LINEMAPS_MAPS, LINEMAPS_ALLOCATE, LINEMAPS_USED, LINEMAPS_CACHE)
110 (LINEMAPS_LAST_MAP, LINEMAPS_LAST_ALLOCATED_MAP)
111 (LINEMAPS_ORDINARY_MAPS, LINEMAPS_ORDINARY_ALLOCATED)
112 (LINEMAPS_ORDINARY_USED, LINEMAPS_ORDINARY_CACHE)
113 (LINEMAPS_LAST_ORDINARY_MAP, LINEMAPS_LAST_ALLOCATED_ORDINARY_MAP)
114 (LINEMAPS_MACRO_MAPS, LINEMAPS_MACRO_ALLOCATED)
115 (LINEMAPS_MACRO_USED, LINEMAPS_MACRO_CACHE)
116 (LINEMAPS_LAST_MACRO_MAP, LINEMAPS_LAST_ALLOCATED_MACRO_MAP)
117 (LINEMAPS_MAP_AT, LINEMAPS_ORDINARY_MAP_AT)
118 (LINEMAPS_MACRO_MAP_AT): New accessors for ordinary and macro map
119 information.
120 (linemap_check_ordinary, linemap_assert)
121 (linemap_location_before_p): New macros.
122 (linemap_position_for_line_and_column)
123 (linemap_tracks_macro_expansion_locs_p, linemap_add_macro_token)
124 (linemap_macro_expansion_map_p)
125 (linemap_macro_map_loc_to_def_point)
126 (linemap_macro_map_loc_unwind_once)
127 (linemap_macro_map_loc_to_exp_point, linemap_step_out_once)
128 (linemap_get_source_line linemap_get_source_column)
129 (linemap_map_get_macro_name, linemap_get_file_path)
130 (linemap_location_in_system_header_p)
131 (linemap_location_from_macro_expansion_p): Declare new functions.
132 (SOURCE_LINE, SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION)
133 (LINEMAP_FILE, LINEMAP_LINE, LINEMAP_SYSP): Assert that this
134 accessors act on ordinary maps only.
135 (INCLUDED_FROM): Return NULL for main files; use the new
136 accessors.
137 (LINEMAP_POSITION_FOR_COLUMN): Use the new accessors.
138 (struct expanded_location): Move here from gcc/input.h
139 (linemap_resolve_location, linemap_expand_location)
140 (linemap_expand_location_full): Declare new functions.
141 * line-map.c: Include cpplib.h, internal.h
142 (linemap_enter_macro, linemap_add_macro_token)
143 (linemap_get_expansion_line, linemap_get_expansion_filename): New
144 functions that are private to libcpp.
145 (linemap_assert): New macro.
146 (linemap_macro_loc_to_exp_point, linemap_macro_loc_to_exp_point)
147 (linemap_macro_loc_unwind, linemap_macro_map_loc_to_def_point)
148 (linemap_macro_map_loc_unwind_toward_spelling)
149 (linemap_macro_map_loc_to_exp_point)
150 (first_map_in_common_1, first_map_in_common): New static
151 functions.
152 (new_linemap): Define new static functions. Extracted and
153 enhanced from ...
154 (linemap_add): ... here. Use linemap_assert in lieu of abort
155 previously.
156 (linemap_tracks_macro_expansion_locs_p)
157 (linemap_add_macro_token, linemap_macro_expansion_map_p)
158 (linemap_check_ordinary, linemap_macro_map_loc_to_exp_point)
159 (linemap_macro_map_loc_to_def_point)
160 (linemap_macro_map_loc_unwind_once)
161 (linemap_step_out_once, linemap_map_get_index)
162 (linemap_get_source_line,linemap_get_source_column)
163 (linemap_get_file_path, linemap_map_get_macro_name)
164 (linemap_location_in_system_header_p)
165 (linemap_location_originated_from_system_header_p)
166 (linemap_location_from_macro_expansion_p)
167 (linemap_tracks_macro_expansion_locs_p)
168 (linemap_resolve_location, linemap_expand_location)
169 (linemap_expand_location_full)
170 (linemap_tracks_macro_expansion_locs_p)
171 (linemap_position_for_line_and_column, linemap_compare_locations):
172 Define new public functions.
173 (linemap_init): Initialize ordinary and macro maps information in
174 the map set.
175 (linemap_check_files_exited): Use the new accessors.
176 (linemap_free): Remove this dead code.
177 (linemap_line_start): Assert this uses an ordinary map. Adjust to
178 use the new ordinary map accessors and data structures. Don't
179 overflow past the lowest possible macro token's location.
180 (linemap_position_for_column): Assert the ordinary maps of the map
181 set are really ordinary. Use ordinary map accessors.
182 (linemap_lookup): Keep the same logic but generalize to allow
183 lookup of both ordinary and macro maps. Do not crash when called
184 with an empty line table.
185 * directives-only.c (_cpp_preprocess_dir_only): Adjust to use the
186 new API of line-map.h.
187 * directives.c (start_directive, do_line, do_linemarker)
188 (do_linemarker): Likewise.
189 * files.c (_cpp_find_file, _cpp_stack_include, open_file_failed)
190 (make_cpp_dir, cpp_make_system_header): Likewise.
191 * init.c (cpp_read_main_file): Likewise.
192 * internal.h (CPP_INCREMENT_LINE): Likewise.
193 (linemap_enter_macro, linemap_add_macro_token)
194 (linemap_get_expansion_line, linemap_get_expansion_filename): New
195 functions private to libcpp.
196 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment)
197 (skip_line_comment, skip_whitespace, lex_raw_string)
198 (_cpp_lex_direct): Likewise.
199 * macro.c (_cpp_builtin_macro_text): Likewise.
200 (_cpp_aligned_alloc): Initialize the new name member of the macro.
201 * traditional.c (copy_comment, _cpp_scan_out_logical_line):
202 Likewise.
203 * errors.c (cpp_diagnostic): Adjust to new linemap API.
204
892a371f
DS
2052011-08-28 Dodji Seketeli <dodji@redhat.com>
206
207 * line-map.c (linemap_add): Assert that reason must not be
208 LC_RENAME when called for the first time on a "main input file".
209
e3dfef44
GC
2102011-08-22 Gabriel Charette <gchare@google.com>
211
212 * init.c (cpp_create_reader): Inititalize forced_token_location_p.
213 * internal.h (struct cpp_reader): Add field forced_token_location_p.
214 * lex.c (_cpp_lex_direct): Use forced_token_location_p.
215 (cpp_force_token_locations): New.
216 (cpp_stop_forcing_token_locations): New.
217
32fe396e
RO
2182011-08-18 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
219
220 PR libstdc++/1773
221 * init.c (cpp_init_builtins): Define __cplusplus 19971L.
222
7c1ffff9
JM
2232011-08-18 Joseph Myers <joseph@codesourcery.com>
224
225 * include/cpplib.h (struct cpp_options): Fix typo.
226
a48e3dd1
JM
2272011-08-18 Joseph Myers <joseph@codesourcery.com>
228
229 * include/cpplib.h (struct cpp_options): Add rliterals.
230 * init.c (struct lang_flags, lang_defaults): Add rliterals.
231 (cpp_set_lang): Set rliterals option.
232 (cpp_init_builtins): Define __STDC_UTF_16__ and __STDC_UTF_32__.
233 * lex.c (_cpp_lex_direct): Only accept raw strings if rliterals.
234
3f6ced10
GC
2352011-08-15 Gabriel Charette <gchare@google.com>
236
237 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Remove.
238 Update all users to use linemap_position_for_column instead.
239
0681d04c
GC
2402011-07-28 Gabriel Charette <gchare@google.com>
241
242 * include/line-map.h (struct line_maps):
243 Remove unused field last_listed. Update all users.
244
5e9627ca
L
2452011-07-28 H.J. Lu <hongjiu.lu@intel.com>
246
247 * configure.ac: Set need_64bit_hwint to yes for x86 targets.
248 * configure: Regenerated.
249
a024b70f
RO
2502011-07-25 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
251
252 * system.h [__cplusplus]: Wrap C function declarations in extern "C".
253
5b6d595b
RO
2542011-07-22 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
255 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
256
257 PR bootstrap/49794
258 * configure.ac: Test AM_ICONV with CXX.
259 * configure: Regenerate.
260 * system.h (HAVE_DESIGNATED_INITIALIZERS): Never define for C++.
261
d0a9fbe1
DS
2622011-07-15 Dodji Seketeli <dodji@redhat.com>
263
264 * directives.c (struct if_stack): Use source_location as type
265 here.
266 * include/cpplib.h (struct cpp_callbacks)<include, define, undef,
267 indent, def_pragma, used_define, used_undef>: Properly use
268 source_location as parameter type, rather than unsigned int.
269
fbdd5d87
RO
2702011-07-07 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
271
272 PR target/39150
273 * configure.ac (host_wide_int): Handle x86_64-*-solaris2.1[0-9]
274 like i[34567]86-*-solaris2.1[0-9]*.
275 * configure: Regenerate.
276
8787a05a
JM
2772011-06-16 Jason Merrill <jason@redhat.com>
278
279 PR c++/45399
280 * lex.c (lex_raw_string): Don't check for embedded NUL.
281
38fbfaf6
DS
2822011-06-06 Dodji Seketeli <dodji@redhat.com>
283
284 PR preprocessor/48532
285 * directives.c (do_pragma): Don't forget the invocation location
286 when parsing the pragma name of a namespaced pragma directive.
287
fc0993ac
JT
2882011-05-29 John Tytgat <John.Tytgat@aaug.net>
289
290 * files.c (read_file_guts): Add test on non-zero value of S_ISREG.
291
ef230b38
UB
2922011-05-22 Uros Bizjak <ubizjak@gmail.com>
293
294 PR target/49104
295 * lex.c (init_vectorized_lexer): Do not set "minimum" when __3dNOW_A__
296 is defined. Check bit_MMXEXT and bit_CMOV to use search_line_mmx.
297
e5b0dad8
JK
2982011-04-25 Jan Kratochvil <jan.kratochvil@redhat.com>
299
300 * system.h (ENUM_BITFIELD): Remove.
301
6cfae070
JJ
3022011-04-24 Jakub Jelinek <jakub@redhat.com>
303
304 PR preprocessor/48740
305 * lex.c (lex_raw_string): When raw string ends with
306 ??) followed by raw prefix and ", ensure it is preprocessed
307 with ??) rather than ??].
308
04695783
JM
3092011-04-20 Jim Meyering <meyering@redhat.com>
310
311 * files.c (destroy_cpp_file): Remove useless if-before-free.
312 * init.c (cpp_destroy): Likewise.
313 * macro.c (replace_args): Likewise.
314 * pch.c (cpp_valid_state): Likewise.
315
4489800d
KT
3162011-03-25 Kai Tietz <ktietz@redhat.com>
317
318 * files.c (file_hash_eq): Use filename_cmp
319 instead of strcmp.
320 (nonexistent_file_hash_eq): Likewise.
321 (remap_filename): Likewise.
322 Handle absolute DOS-path,
323 (append_file_to_dir): Check for IS_DIR_SEPARATOR
324 instead of slash.
325 (read_name_map): Likewise.
326 * linemap.c (linemap_add): Use filename_cmp
327 instead of strcmp.
328 * mkdeps.c (apply_vpath): Use filename_ncmp
329 instead of strncmp.
330 (deps_restore): Use filename_cmp instead of
331 strcmp.
332 * init.c (read_original_directory): Use
333 IS_DIR_SEPARATOR instead of checking for slash.
334
f3c33d9d
MM
3352011-03-21 Michael Meissner <meissner@linux.vnet.ibm.com>
336
337 PR preprocessor/48192
338 * directives.c (do_ifdef): Do not consider conditional macros as
339 being defined.
340 (do_ifndef): Ditto.
341 * expr.c (parse_defined): Ditto.
342
01956319
RH
3432011-03-18 Richard Henderson <rth@redhat.com>
344
345 PR bootstrap/45381
346 * lex.c [ALTIVEC] (search_line_fast): Require gcc version 4.5.
347
c5a62c6f
EB
3482011-11-04 Eric Botcazou <ebotcazou@adacore.com>
349 Jakub Jelinek <jakub@redhat.com>
350
351 PR preprocessor/39213
352 * directives.c (end_directive): Call _cpp_remove_overlay for deferred
353 pragmas as well in traditional mode.
354
0e1a989c
ILT
3552010-11-17 Ian Lance Taylor <iant@google.com>
356
357 PR bootstrap/45538
358 * configure.ac: Use AC_USE_SYSTEM_EXTENSIONS. Remove switch of
359 AC_LANG based on ENABLE_BUILD_WITH_CXX.
360
651a20b5
KT
3612010-11-16 Kai Tietz <kai.tietz@onevision.com>
362
363 PR preprocessor/17349
364 * lex.c (save_comment): Handle in argument passing c++
365 comments special.
366
480767a9
ILT
3672010-11-02 Ian Lance Taylor <iant@google.com>
368
369 * configure.ac: Use AC_SYS_LARGEFILE.
370 * configure: Rebuild.
371 * config.in: Rebuild.
372
078419c9 3732010-10-19 Basile Starynkevitch <basile@starynkevitch.net>
480767a9 374
078419c9
BS
375 * line-map.h (source_location): Remove obsolete comment
376 mentioning location_s.
377
d6874138
KT
3782010-09-29 Kai Tietz <kai.tietz@onevision.com>
379
380 PR preprocessor/45362
381 * directives.c (cpp_pop_definition): Make static.
382 (do_pragma_push_macro): Reworked to store text
383 definition.
384 (do_pragma_pop_macro): Add free text definition.
385 (cpp_push_definition): Removed.
386 * include/cpplib.h (cpp_push_definition): Removed.
387 (cpp_pop_definition): Likewise.
388 * internal.h (def_pragma_macro): Remove member 'value'
389 and add new members 'definition', 'line',
390 'syshdr', 'sued' and 'is_undef'.
391 * pch.c (_cpp_restore_pushed_macros): Rework to work
392 on text definition and store additional macro flags.
393 (_cpp_save_pushed_macros): Likewise.
394
e3339d0f
JM
3952010-09-29 Joseph Myers <joseph@codesourcery.com>
396
397 * include/cpplib.h (cpp_options): Rename warn_deprecated,
398 warn_traditional, warn_long_long and pedantic.
399 * directives.c (directive_diagnostics, _cpp_handle_directive):
400 Update names of cpp_options members.
401 * expr.c (cpp_classify_number, eval_token): Update names of
402 cpp_options members.
403 * init.c (cpp_create_reader, post_options): Update names of
404 cpp_options members.
405 * internal.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Update names of
406 cpp_options members.
407 * macro.c (parse_params): Update names of cpp_options members.
408
128465e6
ILT
4092010-09-15 Ian Lance Taylor <iant@google.com>
410
411 * init.c: Fix type name in comment.
412
a69d2520
JJ
4132010-08-31 Jakub Jelinek <jakub@redhat.com>
414
415 PR preprocessor/45457
416 * expr.c (parse_defined): Call pfile->cb.user_builtin_macro hook if
417 needed.
418 * directives.c (do_ifdef, do_ifndef): Likewise.
419
707bcb7a
RO
4202010-08-26 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
421
422 * system.h [HAVE_INTTYPES_H]: Include inttypes.h.
423
6f173e52
RH
4242010-08-24 Richard Henderson <rth@redhat.com>
425
426 PR bootstrap/45376
427 * configure.ac (HAVE_SSE4): New check.
428 * configure, config.in: Rebuild.
429 * lex.c (search_line_sse42): Omit if !HAVE_SSE4.
430
789d73cb
RO
4312010-08-24 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE>
432
433 * lex.c [__sun__ && __svr4__]: Disable init_vectorized_lexer
434 etc. on Solaris 2/x86.
435
246a2fcb
RH
4362010-08-21 Richard Henderson <rth@redhat.com>
437 Andi Kleen <ak@linux.intel.com>
438 David S. Miller <davem@davemloft.net>
439
440 * configure.ac (AC_C_BIGENDIAN, AC_TYPE_UINTPTR_T): New tests.
441 (ssize_t): Check via AC_TYPE_SSIZE_T instead of AC_CHECK_TYPE.
442 (ptrdiff_t): Check via AC_CHECK_TYPE.
443 * config.in, configure: Rebuild.
444 * system.h: Include stdint.h, if available.
445 * lex.c (WORDS_BIGENDIAN): Provide default.
446 (acc_char_mask_misalign, acc_char_replicate, acc_char_cmp,
447 acc_char_index, search_line_acc_char, repl_chars, search_line_mmx,
448 search_line_sse2, search_line_sse42, init_vectorized_lexer,
449 search_line_fast): New.
450 (_cpp_clean_line): Use search_line_fast. Restructure the fast
451 loop to make it clear when we're leaving the loop. Stay in the
452 fast loop for non-trigraph '?'.
453
8e680db5
JJ
4542010-06-11 Jakub Jelinek <jakub@redhat.com>
455
456 * include/cpplib.h (struct cpp_callbacks): Add user_builtin_macro
457 callback.
458 (enum cpp_builtin_type): Add BT_FIRST_USER and BT_LAST_USER.
459 (cpp_macro_definition): Remove const qual from second argument.
460 * macro.c (enter_macro_context): Call user_builtin_macro callback for
461 NODE_BUILTIN !NODE_USED macros.
462 (warn_of_redefinition): Likewise. Remove const qual from second
463 argument.
464 (cpp_macro_definition): Likewise.
465 * pch.c (write_macdef, save_macros): Call user_builtin_macro callback
466 for NODE_BUILTIN !NODE_USED macros.
467
1cb42611
JM
4682010-06-10 Joseph Myers <joseph@codesourcery.com>
469
470 * include/cpplib.h (struct cpp_options): Remove show_column.
471 * init.c (cpp_create_reader, post_options): Don't set show_column.
472
ff5dfc48
JR
4732010-06-09 Joern Rennecke <joern.rennecke@embecosm.com>
474
475 PR bootstrap/44432
476 * configure.ac: Before using ZW_PROG_COMPILER_DEPENDENCIES for C++,
477 check that C++ compiler works.
478 * configure: Regenerate.
479
a9429e29
LB
4802010-06-08 Laurynas Biveinis <laurynas.biveinis@gmail.com>
481
482 * include/symtab.h (ht_identifier_ptr): New.
483
c3f247f4
RW
4842010-06-03 Joern Rennecke <joern.rennecke@embecosm.com>
485 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
486
487 PR bootstrap/42798
488 * configure.ac: Check for declaration of 'basename(char *)'.
489 * configure: Regenerate.
490 * config.in: Regenerate.
491
2778d766
JM
4922010-04-25 Joseph Myers <joseph@codesourcery.com>
493
494 * include/cpplib.h (enum c_lang): Add CLK_GNUC1X and CLK_STDC1X.
495 * init.c (lang_defaults): Add entries for new language variants.
496 (cpp_init_builtins): Define __STDC_VERSION__ to 201000L for C1X
497 variants.
498
d8a12e84
MLI
4992010-04-09 Manuel López-Ibáñez <manu@gcc.gnu.org>
500
501 PR cpp/43195
502 * files.c (report_missing_guard): Test for #pragma once.
503
87cf0651
SB
5042010-04-07 Simon Baldwin <simonb@google.com>
505
506 * directives.c (do_diagnostic): Add warning reason argument,
507 call appropriate error reporting function for code.
508 (directive_diagnostics): Call specific warning functions with
509 warning reason where appropriate.
510 (do_error, do_warning, do_pragma_dependency): Add warning reason
511 argument to do_diagnostic calls.
512 * macro.c (_cpp_warn_if_unused_macro, enter_macro_context,
513 _cpp_create_definition): Call specific warning functions with
514 warning reason where appropriate.
515 * Makefile.in: Add new diagnostic functions to gettext translations.
516 * include/cpplib.h (struct cpp_callbacks): Add warning reason code
517 to error callback.
518 (CPP_DL_WARNING, CPP_DL_WARNING_SYSHDR, CPP_DL_PEDWARN, CPP_DL_ERROR,
519 CPP_DL_ICE, CPP_DL_NOTE, CPP_DL_FATAL): Replace macros with enums.
520 (CPP_W_NONE, CPP_W_DEPRECATED, CPP_W_COMMENTS,
521 CPP_W_MISSING_INCLUDE_DIRS, CPP_W_TRIGRAPHS, CPP_W_MULTICHAR,
522 CPP_W_TRADITIONAL, CPP_W_LONG_LONG, CPP_W_ENDIF_LABELS,
523 CPP_W_NUM_SIGN_CHANGE, CPP_W_VARIADIC_MACROS,
524 CPP_W_BUILTIN_MACRO_REDEFINED, CPP_W_DOLLARS, CPP_W_UNDEF,
525 CPP_W_UNUSED_MACROS, CPP_W_CXX_OPERATOR_NAMES, CPP_W_NORMALIZE,
526 CPP_W_INVALID_PCH, CPP_W_WARNING_DIRECTIVE): New enums for cpp
527 warning reason codes.
528 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
529 cpp_warning_with_line, cpp_pedwarning_with_line,
530 cpp_warning_with_line_syshdr): New specific error reporting functions.
531 * pch.c (cpp_valid_state): Call specific warning functions with
532 warning reason where appropriate.
533 * errors.c (cpp_diagnostic, cpp_diagnostic_with_line): New central
534 diagnostic handlers.
535 (cpp_warning, cpp_pedwarning, cpp_warning_syshdr,
536 cpp_warning_with_line, cpp_pedwarning_with_line,
537 cpp_warning_with_line_syshdr): New specific error reporting functions.
538 * expr.c (cpp_classify_number, eval_token, num_unary_op): Call
539 specific warning functions with warning reason where appropriate.
540 * lex.c (_cpp_process_line_notes, _cpp_skip_block_comment,
541 warn_about_normalization, lex_identifier_intern, lex_identifier,
542 _cpp_lex_direct): Ditto.
543 * charset.c (_cpp_valid_ucn, convert_hex, convert_escape,
544 narrow_str_to_charconst): Ditto.
545
d947ada0
JJ
5462010-04-06 Jakub Jelinek <jakub@redhat.com>
547
548 PR preprocessor/43642
549 * lex.c (lex_raw_string): Change type of TYPE variable to
550 unsigned char.
551
4d9e8446
RW
5522010-04-02 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
553
554 * aclocal.m4: Regenerate.
555
52150625
JM
5562010-03-29 Jason Merrill <jason@redhat.com>
557
00a81b8b
JM
558 More N3077 raw string changes
559 * charset.c (cpp_interpret_string): Don't transform UCNs in raw
560 strings.
561 * lex.c (bufring_append): Split out from...
562 (lex_raw_string): ...here. Undo trigraph and line splicing
563 transformations. Do process line notes in multi-line literals.
564 (_cpp_process_line_notes): Ignore notes that were already handled.
565
52150625
JM
566 Some raw string changes from N3077
567 * charset.c (cpp_interpret_string): Change inner delimiters to ().
568 * lex.c (lex_raw_string): Likewise. Also disallow '\' in delimiter.
569
709d7160
JJ
5702010-02-11 Jakub Jelinek <jakub@redhat.com>
571
572 * init.c (read_original_filename): Don't call read_original_directory
573 if _cpp_handle_directive returns 0.
574
dadab4fd
JM
5752010-01-01 Joseph Myers <joseph@codesourcery.com>
576
577 PR preprocessor/41947
578 * expr.c (cpp_classify_number): Give error for hexadecimal
579 floating-point constant with no digits before or after point.
580
3de8a540
AC
5812009-11-20 Arnaud Charlet <charlet@adacore.com>
582
583 * macro.c (enter_macro_context): Call cb.used callback if defined.
584 * directives.c (do_idef, do_ifndef): Ditto.
585 * include/cpplib.h (struct cpp_callbacks): Add used callback.
586
17e7cb85
KT
5872009-11-11 Kai Tietz <kai.tietz@onevision.com>
588
589 * directives.c (do_pragma_push_macro): New pragma handler.
590 (do_pragma_pop_macro): Likewise.
591 (_cpp_init_internal_pragmas): Add push_macro and
592 pop_macro handler to internal pragmas.
593 (lex_macro_node_from_str): Removed.
594 (cpp_push_definition): Replace lex_macro_node_from_str
595 by _cpp_lex_identifier.
596 (cpp_pop_definition): Likewise.
597 * internal.h (_cpp_lex_identifier): New prototype.
598 (def_pragma_macro): New structure.
599 (cpp_reader): New member pushed_macros.
600 * lex.c (_cpp_lex_identifier): New function.
601 (lex_identifier_intern): New function.
602 * init.c (cpp_create_reader): Initialize pushed_macros
603 member.
604 (cpp_destroy): Free elements in pushed_macros member.
605 * pch.c (_cpp_save_pushed_macros): New function.
606 (_cpp_restore_pushed_macros): Likewise.
607 (_cpp_restore_pushed_macros): Use _cpp_save_pushed_macros.
608 (cpp_read_state): Use _cpp_restore_pushed_macros.
609
2c6e3f55
JJ
6102009-10-19 Jakub Jelinek <jakub@redhat.com>
611
612 * charset.c (cpp_init_iconv): Initialize utf8_cset_desc.
613 (_cpp_destroy_iconv): Destroy utf8_cset_desc, char16_cset_desc
614 and char32_cset_desc.
615 (converter_for_type): Handle CPP_UTF8STRING.
616 (cpp_interpret_string): Handle CPP_UTF8STRING and raw-strings.
617 * directives.c (get__Pragma_string): Handle CPP_UTF8STRING.
618 (parse_include): Reject raw strings.
619 * include/cpplib.h (CPP_UTF8STRING): New token type.
620 * internal.h (struct cpp_reader): Add utf8_cset_desc field.
621 * lex.c (lex_raw_string): New function.
622 (lex_string): Handle u8 string literals, call lex_raw_string
623 for raw string literals.
624 (_cpp_lex_direct): Call lex_string even for u8" and {,u,U,L,u8}R"
625 sequences.
626 * macro.c (stringify_arg): Handle CPP_UTF8STRING.
627
96c169e1
JJ
6282009-10-14 Jakub Jelinek <jakub@redhat.com>
629
630 PR preprocessor/41543
631 * include/line-map.h (RESERVED_LOCATION_COUNT): Define.
632 * line-map.c (linemap_init): Initialize highest_location and
633 highest_line to RESERVED_LOCATION_COUNT-1 instead of 0.
634
30c99a9e
JM
6352009-10-09 Jason Merrill <jason@redhat.com>
636
637 * charset.c (_cpp_valid_ucn): Update C++0x restrictions.
638
2214382c
NV
6392009-10-09 Neil Vachharajani <nvachhar@google.com>
640
641 * directives.c (DIRECTIVE_TABLE): Remove DEPRECATED from ident and
642 sccs.
643
e02222d2
LR
6442009-09-23 Loren J. Rittle <ljrittle@acm.org>
645
646 * configure.ac (AC_CHECK_HEADERS after AC_LANG(C++)): Add sys/stat.h.
647 * configure: Rebuilt.
648
9a8a2b7a
RG
6492009-09-22 Richard Guenther <rguenther@suse.de>
650
651 PR pch/38987
652 * files.c (pch_open_file): Disallow non-toplevel PCH inclusion.
653
74dc6a11
CD
6542009-09-18 Chris Demetriou <cgd@google.com>
655
656 PR preprocessor/28435:
657 * include/cpplib.h (struct cpp_options): Add new member
658 deps.need_preprocessor_output.
659 * files.c (open_file_failed): If preprocessor output is needed
660 always report an error.
661
933608b7
KT
6622009-09-13 Kai Tietz <kai.tietz@onevision.com>
663
664 * configure.ac: Set for i?86-w64-mingw*
665 need_64bit_hwint to yes.
666 * configure: Regenerated.
667
86373e7e
JM
6682009-09-10 Jason Merrill <jason@redhat.com>
669
670 * directives.c (cpp_define): constify.
671
fd2ab214
ILT
6722009-09-02 Ian Lance Taylor <iant@google.com>
673
674 * macro.c (stringify_arg): Escape CPP_WCHAR tokens.
675
df58e648
RW
6762009-08-24 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
677
678 * configure.ac (AC_PREREQ): Bump to 2.64.
679
5213506e
RW
6802009-08-22 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
681
682 * aclocal.m4: Regenerate.
683 * config.in: Regenerate.
684 * configure: Regenerate.
685
709a22df
TT
6862009-08-17 Tom Tromey <tromey@redhat.com>
687
688 PR preprocessor/41067:
689 * charset.c (convert_escape): Add missing ":" to error text.
690
0c539b47
DR
6912009-07-27 Douglas B Rupp <rupp@gnat.com>
692
693 * include/cpplib.h (INO_T_CPP): New macro.
694 (struct cpp_dir): Use it.
695
2b69c841
JQ
6962009-07-20 Jerry Quinn <jlquinn@optonline.net>
697
698 PR regression/40800
699 * configure.ac: Use = instead of == for testing
700 ENABLE_BUILD_WITH_CXX.
701 * configure: Rebuild.
702
f1bf410c
JQ
7032009-07-17 Jerry Quinn <jlquinn@optonline.net>
704
705 * directives.c (do_linemarker, do_line): Use CPP_STRING for
706 ignored enum value.
707 * files.c (find_file_in_dir): Add cast from void* to char*.
708 * symtab.c (ht_lookup_with_hash): Add cast from void* to char*.
709 * Makefile.in: (WARN_CFLAGS): Use general and C-specific
710 warnings.
711 (CXX, CXXFLAGS, WARN_CXXFLAGS, ALL_CXXFLAGS,
712 ENABLE_BUILD_WITH_CXX, CCDEPMODE, CXXDEPMODE, COMPILER,
713 COMPILER_FLAGS): New.
714 (DEPMODE): Set from CCDEPMODE or CXXDEPMODE.
715 (COMPILE.base): Use COMPILER instead of CC. Use COMPILER_FLAGS
716 instead of ALL_CFLAGS.
717 * configure.ac: Invoke AC_PROG_CXX. Separate C-specific warnings
718 from other warnings. Add -Wc++-compat to C-specific warnings.
719 Check for --enable-build-with-cxx. Set and substitute
720 ENABLE_BUILD_WITH_CXX. Invoke ZW_PROG_COMPILER_DEPENDENCIES
721 according to ENABLE_BUILD_WITH_CXX. Invoke AC_LANG before
722 AC_CHECK_HEADERS.
723 * configure: Rebuild.
724 * include/cpp-id-data.h: Remove extern "C".
725 * include/line-map.h: Likewise.
726 * include/mkdeps.h: Likewise.
727 * include/symtab.h: Likewise.
728 * internal.h: Likewise.
729
a28fbdba
MLI
7302009-06-23 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
731
732 * directives.c (parse_include): Add location argument. Update all
733 calls.
734 (parse_answer): Likewise.
735 (do_include_common): Error with exact location.
736 (parse_assertion): Likewise.
737
b506a5a2
MLI
7382009-06-18 Manuel López-Ibáñez <manu@gcc.gnu.org>
739
740 * expr.c (num_div_op): Take explicit location.
741
7d8847a4
ILT
7422009-06-17 Ian Lance Taylor <iant@google.com>
743
744 * include/cpplib.h (progname): Don't declare.
745
3d8b2a98
ILT
7462009-06-12 Ian Lance Taylor <iant@google.com>
747
748 * include/cpplib.h (struct cpp_options): Add
749 warn_cxx_operator_names field.
750 (NODE_WARN_OPERATOR): Define.
751 (struct cpp_hashnode): Increase flags field to 10 bits, decrease
752 type to 6 bits.
753 * init.c (mark_named_operators): Add flags parameter.
754 (cpp_post_options): Pick flags value to pass to
755 mark_named_operators.
756 * lex.c (lex_identifier): If NODE_WARN_OPERATOR is set, warn that
757 identifier is an operator name in C++.
758
e74fe492
AH
7592009-06-01 Aldy Hernandez <aldyh@redhat.com>
760
761 * include/line-map.h (LAST_SOURCE_COLUMN): New.
762
4851089f
ILT
7632009-06-01 Ian Lance Taylor <iant@google.com>
764
765 * include/cpp-id-data.h: Add extern "C".
766 * include/line-map.h: Likewise.
767 * include/mkdeps.h: Likewise.
768 * include/symtab.h: Likewise.
769 * internal.h: Likewise.
770
7e5487a2
ILT
7712009-05-15 Ian Lance Taylor <iant@google.com>
772
773 * include/cpplib.h (enum cpp_builtin_type): Rename from enum
774 builtin_type. Change all uses.
775
00b0c19b
MLI
7762009-05-14 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
777
778 PR cpp/36674
779 * directives (do_linemarker): Compensate for the increment in
780 location that occurs when we reach the end of line.
781 * files (_cpp_stack_include): Mention _cpp_find_file in the
782 comment.
783
9a0c6187
JM
7842009-05-10 Joseph Myers <joseph@codesourcery.com>
785
786 * include/cpplib.h (enum cpp_token_fld_kind): Add
787 CPP_TOKEN_FLD_TOKEN_NO.
788 (struct cpp_macro_arg, struct cpp_identifier): Define.
789 (union cpp_token_u): Use struct cpp_identifier for identifiers.
790 Use struct cpp_macro_arg for macro arguments. Add token_no for
791 CPP_PASTE token numbers.
792 * directives.c (_cpp_handle_directive, lex_macro_node, do_pragma,
793 do_pragma_poison, parse_assertion): Use val.node.node in place of
794 val.node.
795 * expr.c (parse_defined, eval_token): Use val.node.node in place
796 of val.node.
797 * lex.c (cpp_ideq, _cpp_lex_direct, cpp_token_len,
798 cpp_spell_token, cpp_output_token, _cpp_equiv_tokens,
799 cpp_token_val_index): Use val.macro_arg.arg_no or val.token_no in
800 place of val.arg_no. Use val.node.node in place of val.node.
801 * macro.c (replace_args, cpp_get_token, parse_params,
802 lex_expansion_token, create_iso_definition, cpp_macro_definition):
803 Use val.macro_arg.arg_no or val.token_no in place of val.arg_no.
804 Use val.node.node in place of val.node.
805
9e322bc1
JM
8062009-05-03 Joseph Myers <joseph@codesourcery.com>
807
808 * charset.c (one_utf8_to_cppchar): Correct mask used for 5-byte
809 UTF-8 sequences.
810
f88d0772
JM
8112009-04-25 Joseph Myers <joseph@codesourcery.com>
812
813 PR preprocessor/39559
814 * expr.c (cpp_interpret_integer): Use a pedwarn for decimal
815 constants larger than intmax_t in C99 mode.
816
d1b38208
TG
8172009-04-21 Taras Glek <tglek@mozilla.com>
818
819 * include/cpp-id-data.h: Update GTY annotations to new syntax.
820 * include/cpplib.h: Likewise.
821 * include/line-map.h: Likewise.
822 * include/symtab.h: Likewise.
823
cfc93532
MLI
8242009-04-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
825
826 PR c++/14875
827 * lex.c (cpp_type2name): Take a flags parameter. Call
828 cpp_named_operator2name for named operators and cpp_digraph2name
829 for digraphs.
830 (cpp_digraph2name): New.
831 (cpp_spell_token): Use it.
832 (cpp_output_token): Likewise.
833 * include/cpplib.h (cpp_type2name): Update declaration.
834 * init.c (cpp_named_operator2name): New.
835 * internal.h (cpp_named_operator2name): Declare.
836
9c650d90
MLI
8372009-04-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
838
839 PR c++/13358
840 * init.c (cpp_create_reader): Wlong_long is disabled by default.
841 * expr.c (cpp_classify_number): Give different messages for C and
842 C++ front-ends.
843
aa508502
JM
8442009-04-19 Joseph Myers <joseph@codesourcery.com>
845
846 PR preprocessor/20078
847 * include/cpp-id-data.h (struct cpp_macro): Add extra_tokens
848 field.
849 * include/cpplib.h (SP_DIGRAPH, SP_PREV_WHITE): Define.
850 (struct cpp_token): Change flags to unsigned short.
851 * lex.c (_cpp_lex_direct): Initialize arg_no for CPP_PASTE tokens.
852 (_cpp_equiv_tokens): Check arg_no for CPP_PASTE tokens.
853 (cpp_token_val_index): Return CPP_TOKEN_FLD_ARG_NO for CPP_PASTE
854 tokens.
855 * macro.c (macro_real_token_count): New.
856 (enter_macro_context, replace_args): Use macro_real_token_count.
857 (create_iso_definition): Record whitespace surrounding and digraph
858 spelling of # and ## tokens using SP_PREV_WHITE and SP_DIGRAPH.
859 Set extra_tokens and save CPP_PASTE tokens with arg_no set for
860 multiple consecutive ## tokens.
861 (_cpp_create_definition): Initialize extra_tokens.
862 (cpp_macro_definition): Use macro_real_token_count.
863
61cc8223
JM
8642009-04-18 Joseph Myers <joseph@codesourcery.com>
865
866 * directives.c (parse_include): Pass true to check_eol.
867
c7f9c0b9
JM
8682009-04-18 Joseph Myers <joseph@codesourcery.com>
869
870 PR preprocessor/39646
871 * include/line-map.h (enum lc_reason): Add LC_RENAME_VERBATIM.
872 * line-map.c (linemap_add): Handle LC_RENAME_VERBATIM.
873 * directives.c (do_line, do_linemarker): Use LC_RENAME_VERBATIM in
874 place of LC_RENAME.
875
a5cb563b
JM
8762009-04-18 Joseph Myers <joseph@codesourcery.com>
877
878 PR preprocessor/39647
879 * directives.c (check_eol): Add parameter expand.
880 (do_undef, parse_include, do_line, do_linemarker, do_ident,
881 do_pragma_once, do_pragma_system_header, do_ifdef, do_ifndef,
882 do_else, do_endif, do_assert, do_unassert): All callers changed.
883 Pass true from do_line, false elsewhere.
884
18f41a1b
JM
8852009-04-12 Joseph Myers <joseph@codesourcery.com>
886
887 PR preprocessor/31869
888 * macro.c (stringify_arg): Handle NULL source token in padding
889 token where previous padding token did not have source token with
890 preceding whitespace.
891
748086b7
JJ
8922009-04-09 Jakub Jelinek <jakub@redhat.com>
893
894 * Makefile.in: Change copyright header to refer to version
895 3 of the GNU General Public License and to point readers at the
896 COPYING3 file and the FSF's license web page.
897 * charset.c: Likewise.
898 * directives-only.c: Likewise.
899 * directives.c: Likewise.
900 * errors.c: Likewise.
901 * expr.c: Likewise.
902 * files.c: Likewise.
903 * identifiers.c: Likewise.
904 * include/cpp-id-data.h: Likewise.
905 * include/cpplib.h: Likewise.
906 * include/line-map.h: Likewise.
907 * include/mkdeps.h: Likewise.
908 * include/symtab.h: Likewise.
909 * init.c: Likewise.
910 * internal.h: Likewise.
911 * lex.c: Likewise.
912 * line-map.c: Likewise.
913 * macro.c: Likewise.
914 * makeucnid.c: Likewise.
915 * mkdeps.c: Likewise.
916 * pch.c: Likewise.
917 * symtab.c: Likewise.
918 * system.h: Likewise.
919 * traditional.c: Likewise.
920 * ucnid.tab: Likewise.
921 * ucnid.h: Regenerate.
922
eec49116
JJ
9232009-04-01 Janis Johnson <janis187@us.ibm.com>
924
839a3b8a
JJ
925 PR c/39027
926 * include/cpplib.h (CPP_N_DEFAULT): Define.
927 * expr.c (interpret_float_suffix): Recognize d or D for double,
928 return new value for default.
929 (cpp_classify_number): Issue pedwarn for use of d or D in suffix.
930
eec49116
JJ
931 PR c/33466
932 * expr.c (interpret_float_suffix): Reject invalid suffix that uses
933 letters from decimal float and fixed-point suffixes.
934
47580d22
JM
9352009-03-31 Joseph Myers <joseph@codesourcery.com>
936
937 PR preprocessor/15638
938 * files.c (_cpp_find_file): Call open_file_failed after diagnosing
939 invalid PCH.
940 (open_file_failed): Make error for missing file fatal.
941 * include/cpplib.h (CPP_DL_FATAL): Define.
942
5a2df0fa
SV
9432009-03-30 Sergiy Vyshnevetskiy <serg@vostok.net>
944
945 PR preprocessor/31932:
946 * internal.h: Don't mention HAVE_ICONV_H.
947 * configure, config.in: Rebuild.
948 * configure.ac: Don't check for iconv.h.
949
c1a8a3c6
TT
9502009-03-30 Tom Tromey <tromey@redhat.com>
951
952 PR preprocessor/39512:
953 * line-map.c (linemap_init): Initialize 'reallocator' field.
954
a37a7b8a
JJ
9552009-03-30 Jakub Jelinek <jakub@redhat.com>
956
957 PR target/39558
958 * macro.c (cpp_get_token): If macro_to_expand returns NULL
959 and used some tokens, add CPP_PADDING before next token.
960
148e4216
JM
9612009-03-29 Joseph Myers <joseph@codesourcery.com>
962
963 PR preprocessor/34695
964 * makedepend.c: Remove.
965 * Makefile.in (makedepend_OBJS, makedepend$(EXEEXT)): Remove.
966 (all, clean, TAGS_SOURCES, include): Remove makedepend handling.
967 * directives.c (cpp_errors): Remove.
968 * errors.c (print_location, _cpp_begin_message, v_message):
969 Remove.
970 (cpp_error, cpp_error_with_line): Always use error callback.
971 (cpp_error, cpp_error_with_line, cpp_errno): Return bool.
972 * include/cpplib.h (cpp_options): Remove pedantic_errors,
973 inhibit_warnings, warn_system_headers, inhibit_errors,
974 warnings_are_errors, client_diagnostic.
975 (cpp_callbacks): Add extra arguments to error callback; make it
976 return bool.
977 (cpp_finish): Return void.
978 (cpp_destroy): Remove inaccurate comment about return value.
979 (cpp_errors, CPP_DL_EXTRACT, CPP_DL_WARNING_P): Remove.
980 (CPP_DL_NOTE): Define.
981 * include/line-map.h (linemap_print_containing_files): Remove.
982 * init.c (cpp_finish): Do not check for or return number of
983 errors.
984 * internal.h (cpp_reader): Remove errors field.
985 * line-map.c (linemap_print_containing_files): Remove.
986 * macro.c (_cpp_create_definition): Use CPP_DL_NOTE for message
987 about previous definition. Only emit it if previous diagnostic
988 was emitted.
989
f1450211
JM
9902009-03-28 Joseph Myers <joseph@codesourcery.com>
991
992 * Makefile.in (po/$(PACKAGE).pot): Use $(mkinstalldirs) not
993 mkinstalldirs.
994
8f5929e1
JJ
9952009-03-18 Jakub Jelinek <jakub@redhat.com>
996
997 * include/cpplib.h (struct cpp_dir): Reorder fields for 64-bit hosts.
998
4bb09c26
JM
9992009-02-21 Joseph Myers <joseph@codesourcery.com>
1000
1001 * lex.c (lex_string): Return a CPP_LESS token for missing '>' in a
1002 header name.
1003 (_cpp_lex_direct): Handle this.
1004
68c9ab45
RG
10052009-02-15 Richard Guenther <rguenther@suse.de>
1006
1007 Revert last change.
1008
601b3e1a
RG
10092009-02-13 Richard Guenther <rguenther@suse.de>
1010
1011 * configure.ac: Enable LFS.
1012 * configure: Re-generate.
1013 * config.in: Likewise.
1014
fc0cd180
BE
10152009-01-05 Ben Elliston <bje@au.ibm.com>
1016
1017 * Makefile.in (.po.gmo): Use mkinstalldirs, not test -d || mkdir.
1018 (.po.pox): Likewise.
1019 (po/$(PACKAGE).pot): Likewise.
1020
db89a3be
AO
10212008-12-10 Alexandre Oliva <aoliva@redhat.com>
1022
1023 PR target/37033
1024 * pch.c (cpp_valid_state): Improve message for poisoned symbols.
1025 Allow for differences in __GCC_HAVE_DWARF2_CFI_ASM.
1026
cc955282
JM
10272008-11-29 Joseph Myers <joseph@codesourcery.com>
1028
1029 * lex.c (cpp_token_len): Use 6 as default length.
1030
47960aaf
MLI
10312008-10-31 Manuel López-Ibáñez <manu@gcc.gnu.org>
1032
1033 * expr.c (struct op): Add location.
1034 (_cpp_parse_expr): Propagate locations throught the stack
1035 of expressions.
1036 (reduce): Likewise.
1037 (check_promotion): Use explicit location in errors.
1038
631d0d36
MG
10392008-10-05 Matthew Gingell <gingell@adacore.com>
1040 Arnaud Charlet <charlet@adacore.com>
1041
1042 * include/cpplib.h (cpp_comments, cpp_comment_table): New structs.
1043 (cpp_get_comments): New function.
1044 * internal.h (struct cpp_reader): Add comments field.
1045 * init.c (cpp_destroy): Free comments.
1046 * lex.c (store_comment, cpp_get_comments): New functions.
1047 (comments): New struct.
1048 (save_comment): Store comments in comments struct.
1049
c047ce93
SB
10502008-09-18 Simon Baldwin <simonb@google.com>
1051
1052 * include/cpplib.h (struct cpp_options): Add new boolean flag
1053 warn_builtin_macro_redefined.
1054 * init.c (cpp_create_reader): Initialize warn_builtin_macro_redefined.
1055 * (struct builtin_operator): Split out from previous struct builtin,
1056 enhance extra const correctness.
1057 * (struct builtin_macro): Split out from previous struct builtin, add
1058 new always_warn_if_redefined flag, enhance const correctness.
1059 * (mark_named_operators): Use struct builtin_operator.
1060 * (cpp_init_special_builtins): Use struct builtin_macro, add NODE_WARN
1061 to builtins selectively.
1062 * macro.c (warn_of_redefinition): Return false if a builtin macro
1063 is not flagged with NODE_WARN.
1064
affa55c6
JJ
10652008-07-31 Jakub Jelinek <jakub@redhat.com>
1066
1067 PR preprocessor/36649
1068 * files.c (struct report_missing_guard_data): New type.
1069 (report_missing_guard): Put paths into an array instead of printing
1070 them right away. Return 1 rather than 0.
1071 (report_missing_guard_cmp): New function.
1072 (_cpp_report_missing_guards): Sort and print paths gathered by
1073 report_missing_guard callback.
1074
3b8f20a1
MLI
10752008-07-22 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1076
1077 PR 28079
1078 * directives.c (strtolinenum): Handle overflow.
1079 (do_line): Give a warning if line number overflowed.
1080 (do_linemarker): Update call to strtolinenum.
1081
1bb64668
MLI
10822008-07-21 Manuel Lopez-Ibanez <manu@gcc.gnu.org>
1083
1084 * include/line-map.h (linenum_type): New typedef.
1085 (struct line_map): Use it.
1086 (SOURCE_LINE): Second arguments is a LOCATION not a LINE.
1087 (SOURCE_COLUMN): Likewise.
1088 * macro.c (_cpp_builtin_macro_text): Use linenum_type. Don't store
1089 source_location values in a variable of type linenum_type.
1090 * directives.c (struct if_stack): Use linenum_type.
1091 (strtoul_for_line): Rename as strtolinenum.
1092 (do_line): Use linenum_type.
1093 (do_linemarker): Use linenum_type and strtolinenum.
1094 (_cpp_do_file_change): Use linenum_t.
1095 * line-map.c (linemap_add): Likewise.
1096 (linemap_line_start): Likewise.
1097 * traditional.c (struct fun_macro): 'line' is a source_location.
1098 * errors.c (print_location): Use linenum_type.
1099 * directives-only.c (_cpp_preprocess_dir_only): Likewise.
1100 * internal.h (CPP_INCREMENT_LINE): Likewise.
1101 * lex.c (_cpp_skip_block_comment): Use source_location.
1102
5950c3c9
BE
11032008-07-14 Ben Elliston <bje@au.ibm.com>
1104
1105 * include/cpplib.h (NODE_CONDITIONAL): New.
1106 (struct cpp_callbacks): New macro_to_expand field.
1107 (struct cpp_hashnode): Adjust size of flags and type fields.
1108 (cpp_peek_token): Prototype.
1109 * lex.c (cpp_peek_token): New function.
1110 (_cpp_temp_token): Protect pre-existing lookaheads.
1111 * macro.c (cpp_get_token): Expand any conditional macros.
1112 (_cpp_backup_tokens_direct): New.
1113 (_cpp_backup_tokens): Call _cpp_backup_tokens_direct.
1114 (warn_of_redefinition): Silently allow redefined conditional
1115 macros.
1116 (_cpp_create_definition): Remove the conditional flag when a user
1117 defines one of the conditional macros.
1118 * internal.h (_cpp_backup_tokens_direct): New prototype.
1119
e85edc9e
AH
11202008-06-13 Andrew Haley <aph@redhat.com>
1121
1122 PR preprocessor/33305
1123 * macro.c (replace_args): Print a warning for empty macro
1124 arguments in C89 and C++.
1125
18c04407
RW
11262008-06-17 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1127
1128 * Makefile.in ($(srcdir)/aclocal.m4): Update dependencies.
1129 * configure: Regenerate.
1130
2d09b640
RW
11312008-06-16 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1132
1133 * Makefile.in (datarootdir): New variable.
1134
0b7c73cc
L
11352008-06-12 H.J. Lu <hongjiu.lu@intel.com>
1136
1137 PR preprocessor/36479
1138 * charset.c (cpp_interpret_string_notranslate): Also set
1139 narrow_cset_desc.width.
1140
cd985f66
JM
11412008-06-07 Joseph Myers <joseph@codesourcery.com>
1142
1143 * configure.ac (parisc*64*-*-*): Remove.
1144 * configure: Regenerate.
1145
d750887f
TT
11462008-05-30 Tom Tromey <tromey@redhat.com>
1147
1148 PR preprocessor/36320:
1149 * internal.h (_cpp_parse_expr): Update.
1150 * expr.c (_cpp_parse_expr): Add 'is_if' argument. Update error
1151 messages.
1152 * directives.c (do_if): Update.
1153 (do_elif): Require expression if processing group.
1154
c100de59
DS
11552008-05-30 Danny Smith <dannysmith@users.sourceforge.net>
1156
1157 * include/cpplib.h (struct cpp_dir): Add new field, canonical_name.
1158
5d6342eb
TT
11592008-05-21 Tom Tromey <tromey@redhat.com>
1160
1161 PR preprocessor/27777:
1162 * lex.c (cpp_output_line_to_string): New function.
1163 * internal.h (_cpp_begin_message): Don't declare.
1164 * errors.c (_cpp_begin_message): Now static.
1165 * include/cpplib.h (cpp_output_line_to_string): Declare.
1166 * directives.c (do_diagnostic): Rewrote. Use
1167 cpp_output_line_to_string. Don't use _cpp_begin_message.
1168
dae4174e
TT
11692008-05-21 Tom Tromey <tromey@redhat.com>
1170
1171 * include/symtab.h (HT_ALLOCED): Remove.
1172 (ht_purge): Declare.
1173 * symtab.c (DELETED): New define.
1174 (ht_lookup): Update comment.
1175 (ht_lookup_with_hash): Handle deleted entries. Remove HT_ALLOCED
1176 code. Use subobject allocator for strings, if it exists.
1177 (ht_expand): Handle deleted entries.
1178 (ht_forall): Likewise.
1179 (ht_purge): New function.
1180 (ht_dump_statistics): Print deletion statistics.
1181
899015a0
TT
11822008-05-13 Tom Tromey <tromey@redhat.com>
1183
1184 PR preprocessor/22168:
1185 * include/cpplib.h (struct cpp_options) <objc>: Update
1186 documentation.
1187 * expr.c (eval_token): Warn for use of assertions.
1188 * directives.c (directive_diagnostics): Warn about extensions.
1189 (DEPRECATED): New define.
1190 (DIRECTIVE_TABLE): Use it.
1191
71c10038
TT
11922008-05-06 Tom Tromey <tromey@redhat.com>
1193
1194 PR preprocessor/35313, PR preprocessor/36088:
1195 * expr.c (optab) <QUERY, COMMA>: Set precedence to 4.
1196 (reduce) <case CPP_QUERY>: Special case CPP_COMMA and CPP_COLON.
1197
2bd0fe3d
DM
11982008-05-04 David S. Miller <davem@davemloft.net>
1199
1200 * configure.ac (sparc*-*-*): Always set need_64bit_hwint to yes.
1201 * configure: Regenerate.
1202
28f68625
DF
12032008-04-22 Daniel Franke <franke.daniel@gmail.com>
1204
1205 * include/cpplib.h (cpp_define_formatted): New.
1206 * directives.c (cpp_define_formatted): New.
1207
688e7a53
TT
12082008-04-21 Tom Tromey <tromey@redhat.com>
1209
1210 PR libcpp/33415:
1211 * charset.c (_cpp_convert_input): Add buffer_start argument.
1212 Ignore UTF-8 BOM if seen.
1213 * internal.h (_cpp_convert_input): Add argument.
1214 * files.c (struct _cpp_file) <buffer_start>: New field.
1215 (destroy_cpp_file): Free buffer_start, not buffer.
1216 (_cpp_pop_file_buffer): Likewise.
1217 (read_file_guts): Update.
1218
b6baa67d
KVH
12192008-04-18 Kris Van Hees <kris.van.hees@oracle.com>
1220
1221 * include/cpp-id-data.h (UC): Was U, conflicts with U"..." literal.
1222 * include/cpplib.h (CHAR16, CHAR32, STRING16, STRING32): New tokens.
1223 (struct cpp_options): Added uliterals.
1224 (cpp_interpret_string): Update prototype.
1225 (cpp_interpret_string_notranslate): Idem.
1226 * charset.c (init_iconv_desc): New width member in cset_converter.
1227 (cpp_init_iconv): Add support for char{16,32}_cset_desc.
1228 (convert_ucn): Idem.
1229 (emit_numeric_escape): Idem.
1230 (convert_hex): Idem.
1231 (convert_oct): Idem.
1232 (convert_escape): Idem.
1233 (converter_for_type): New function.
1234 (cpp_interpret_string): Use converter_for_type, support u and U prefix.
1235 (cpp_interpret_string_notranslate): Match changed prototype.
1236 (wide_str_to_charconst): Use converter_for_type.
1237 (cpp_interpret_charconst): Add support for CPP_CHAR{16,32}.
1238 * directives.c (linemarker_dir): Macro U changed to UC.
1239 (parse_include): Idem.
1240 (register_pragma_1): Idem.
1241 (restore_registered_pragmas): Idem.
1242 (get__Pragma_string): Support CPP_STRING{16,32}.
1243 * expr.c (eval_token): Support CPP_CHAR{16,32}.
1244 * init.c (struct lang_flags): Added uliterals.
1245 (lang_defaults): Idem.
1246 * internal.h (struct cset_converter) <width>: New field.
1247 (struct cpp_reader) <char16_cset_desc>: Idem.
1248 (struct cpp_reader) <char32_cset_desc>: Idem.
1249 * lex.c (digraph_spellings): Macro U changed to UC.
1250 (OP, TK): Idem.
1251 (lex_string): Add support for u'...', U'...', u"..." and U"...".
1252 (_cpp_lex_direct): Idem.
1253 * macro.c (_cpp_builtin_macro_text): Macro U changed to UC.
1254 (stringify_arg): Support CPP_CHAR{16,32} and CPP_STRING{16,32}.
1255
deb984e6
PB
12562008-04-18 Paolo Bonzini <bonzini@gnu.org>
1257
1258 PR bootstrap/35457
1259 * aclocal.m4: Regenerate.
1260 * configure: Regenerate.
1261
bf048bea
TT
12622008-04-17 Tom Tromey <tromey@redhat.com>
1263
1264 PR libcpp/34866:
1265 * errors.c (cpp_error): Don't reference a token before the start
1266 of the current run.
1267
7f27b0f8
TT
12682008-04-16 Tom Tromey <tromey@redhat.com>
1269
1270 * Makefile.in (TAGS_SOURCES): New variable.
1271 (TAGS): New target.
1272
a1fcb9a1
KK
12732008-04-11 Kaz Kojima <kkojima@gcc.gnu.org>
1274
1275 * configure.ac: (need_64bit_hwint): Need 64bit hwint for sh-*-*
1276 and shbe-*-*.
1277 * configure: Rebuilt.
1278
93d45d9e
JM
12792008-04-02 Joseph Myers <joseph@codesourcery.com>
1280
1281 * include/cpplib.h (struct cpp_callbacks): Add used_define,
1282 used_undef and before_define.
1283 (NODE_USED): Define.
1284 * directives.c (do_define, do_undef, undefine_macros, do_ifdef,
1285 do_ifndef, cpp_pop_definition): Handle new flag and use new
1286 callbacks.
1287 * expr.c (parse_defined): Handle new flag and use new callbacks.
1288 * macro.c (enter_macro_context, _cpp_free_definition): Handle new
1289 flag and use new callbacks.
1290
d4c32e1d
JJ
12912008-04-01 Jakub Jelinek <jakub@redhat.com>
1292
1293 PR pch/13675
1294 * files.c (struct _cpp_file): Remove pch field.
1295 (pch_open_file): Don't set file->pch, just file->pchname.
1296 (should_stack_file): After pfile->cb.read_pch call
1297 free pchname and clear pchname, don't close file->fd.
1298 Test file->pchname instead of file->pch. Don't close fd after cb.
1299 (_cpp_stack_include): Test file->pchname instead of file->pch.
1300
161031e3
TT
13012008-03-28 Tom Tromey <tromey@redhat.com>
1302
1303 * Makefile.in (POSTCOMPILE): New variable.
1304 (.c.o): Use it.
1305
14ccf800
TT
13062008-03-13 Tom Tromey <tromey@redhat.com>
1307
1308 PR libcpp/35322:
1309 * directives.c (destringize_and_run): Set pfile->directive.
1310
830465c6
MM
13112008-03-06 Markus Milleder <markus.milleder@generali.at>
1312
1313 PR preprocessor/35458
1314 * mkdeps.c (munge): Quote '#' with a '\'.
1315
d482a073
RW
13162008-02-27 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
1317
1318 PR preprocessor/35379
1319 * mkdeps.c (deps_write): Ensure the first target always appears
1320 in the first column, without leading backslash newline. Avoid
1321 some more extra whitespace.
1322
185a6cc1
TS
13232008-02-25 Thiemo Seufer <ths@mips.com>
1324
d482a073 1325 * Makefile.in ($(srcdir)/config.in): Depend on configure.ac.
185a6cc1 1326
2bf41bf0
TT
13272008-02-19 Tom Tromey <tromey@redhat.com>
1328
1329 * traditional.c (lex_identifier): Use CPP_HASHNODE.
1330 * lex.c (lex_identifier): Use CPP_HASHNODE.
1331 * include/line-map.h (LINEMAP_POSITION_FOR_COLUMN): Wrap in
1332 do-while.
1333 * identifiers.c (alloc_node): Change return type.
1334 (_cpp_init_hashtable): Don't cast 'alloc_node'.
1335 (proxy_assertion_broken): New declaration.
1336 (cpp_forall_identifiers): Move comment.
1337 * line-map.c (linemap_add): Comment fix.
1338 (linemap_line_start): Indentation fix.
1339
765d600a
JJ
13402008-01-25 Jakub Jelinek <jakub@redhat.com>
1341
1342 PR preprocessor/34692
1343 * macro.c (collect_args): Add pragma_buff argument. Push
1344 CPP_PRAGMA ... CPP_PRAGMA_EOL tokens to *pragma_buff, rather
1345 than into arguments. Reset prevent_expansion and parsing_args
1346 state at CPP_PRAGMA_EOL/CPP_EOF.
1347 (funlike_invocation_p): Add pragma_buff argument, pass it through
1348 to collect_args.
1349 (enter_macro_context): Add result argument. Adjust
1350 funlike_invocation_p caller. Emit all deferred pragma tokens
1351 gathered during collect_args before the expansion, add a padding
1352 token. Return 2 instead of 1 if any pragma tokens were prepended.
1353 (cpp_get_token): If enter_macro_context returns 2, don't return
1354 a padding token, instead cycle to grab CPP_PRAGMA token.
1355 * directives.c (_cpp_handle_directive): If was_parsing_args
1356 in deferred pragma, leave parsing_args and prevent_expansion as is.
1357
ec46053b
TT
13582008-01-22 Tom Tromey <tromey@redhat.com>
1359
765d600a 1360 PR c++/34859
ec46053b
TT
1361 * macro.c (_cpp_create_definition): Handle __STDC_LIMIT_MACROS and
1362 __STDC_CONSTANT_MACROS.
1363
681c6ab0
FF
13642008-01-07 Fred Fish <fnf@specifix.com>
1365
765d600a 1366 PR preprocessor/30363
681c6ab0
FF
1367 * traditional.c (replace_args_and_push): Add local variable
1368 cxtquote, calculate the replacement text size assuming a
1369 worst case of every input character quoted with backslash,
1370 and properly handle output quoting of quote characters in
1371 actual arguments used in function-like macros.
1372
33ae4837
TT
13732008-01-03 Tom Tromey <tromey@redhat.com>
1374
765d600a 1375 PR preprocessor/34602
33ae4837
TT
1376 * directives.c (do_line): Don't try to spell EOF token.
1377 (do_linemarker): Add comment.
1378
675575f5
DD
13792007-12-11 DJ Delorie <dj@redhat.com>
1380
1381 * charset.c (convert_using_iconv): Close out any shift states,
1382 returning to the initial state.
1383
97f6bd40
TT
13842007-12-06 Tom Tromey <tromey@redhat.com>
1385
765d600a 1386 PR c/29172
97f6bd40
TT
1387 * internal.h (struct cpp_reader) <file_hash_entries>: Changed
1388 type.
1389 <file_hash_entries_allocated, file_hash_entries_used>: Removed.
1390 * files.c (FILE_HASH_POOL_SIZE): New macro.
1391 (struct file_hash_entry_pool): New.
1392 (destroy_all_cpp_files): New function.
1393 (allocate_file_hash_entries): Allocate a file_hash_entry_pool.
1394 (new_file_hash_entry): Update.
1395 (free_file_hash_entries): New function.
1396 (_cpp_cleanup_files): Call free_file_hash_entries and
1397 destroy_all_cpp_files.
1398 (cpp_clear_file_cache): New function.
1399 * include/cpplib.h (cpp_clear_file_cache): Declare.
1400
d56a25e1
TT
14012007-12-03 Tom Tromey <tromey@redhat.com>
1402
765d600a 1403 PR preprocessor/34288
d56a25e1
TT
1404 * configure.ac, config.in: Rebuilt.
1405 * configure.ac: Check for ssize_t.
1406
607f74e9
TT
14072007-11-30 Tom Tromey <tromey@redhat.com>
1408
765d600a 1409 PR preprocessor/32868
607f74e9
TT
1410 * macro.c (_cpp_create_definition): Special case
1411 __STDC_FORMAT_MACROS.
1412
b0f4807f
MM
14132007-11-16 Michael Matz <matz@suse.de>
1414
1415 * files.c (search_path_head): Fix check for absolute paths.
1416
f1e20710
TT
14172007-11-11 Tom Tromey <tromey@redhat.com>
1418
765d600a 1419 PR c++/17557
f1e20710
TT
1420 * include/cpplib.h (cpp_included_before): Declare.
1421 * files.c (struct file_hash_entry) <location>: New field.
1422 (_cpp_find_file): Initialize new field.
1423 (make_cpp_dir): Likewise.
1424 (cpp_included_before): New function.
1425
f373b44d
TT
14262007-11-01 Tom Tromey <tromey@redhat.com>
1427
765d600a 1428 PR preprocessor/30805
f373b44d
TT
1429 * macro.c (paste_tokens): Handle padding token.
1430 (paste_tokens): Don't abort unless padding has PASTE_LEFT flag.
1431
5b9a40df
TT
14322007-10-31 Tom Tromey <tromey@redhat.com>
1433
765d600a 1434 PR preprocessor/30786
5b9a40df
TT
1435 * macro.c (builtin_macro): Return result of _cpp_do__Pragma.
1436 * directives.c (_cpp_do__Pragma): Return error status.
1437 * internal.h (_cpp_do__Pragma): Update.
1438 * directives.c (get__Pragma_string): Back up if EOF seen.
1439
5ffeb913
TT
14402007-09-06 Tom Tromey <tromey@redhat.com>
1441
1442 * internal.h (struct cpp_reader) <invocation_location>: New
1443 field.
1444 (struct cpp_reader) <set_invocation_location>: Likewise.
1445 * init.c (cpp_set_line_map): New function.
1446 * line-map.c (linemap_add): Use linemap's allocator.
1447 * include/line-map.h (GTY): Define.
1448 (line_map_realloc): New typedef.
1449 (struct line_map): Mark with GTY.
1450 (struct line_maps): Likewise.
1451 (struct line_maps) <maps>: Likewise.
1452 (struct line_maps) <reallocator>: New field.
1453 * include/symtab.h (GTY): Conditionally define.
1454 * include/cpplib.h (cpp_set_line_map): Declare.
1455 (cpp_get_token_with_location): Declare.
1456 * macro.c (cpp_get_token): Set invocation_location on the reader.
1457 (cpp_get_token_with_location): New function.
1458
ac6b1c67
CF
14592007-08-30 Chao-ying Fu <fu@mips.com>
1460
1461 * expr.c (interpret_float_suffix): Support hr, r, lr, llr, uhr, ur,
1462 ulr, ullr, hk, k, lk, llk, uhk, uk, ulk, ullk.
1463 (cpp_classify_number): Support decimal fixed-point constants without
1464 exponents.
1465 Warn about fixed-point constants when -pedantic.
1466 * include/cpplib.h (CPP_N_SMALL, CPP_N_MEDIUM, CPP_N_LARGE): Change
1467 comments to support fixed-point values.
1468 (CPP_N_FRACT, CPP_N_ACCUM): Define.
1469
cda5e672
TT
14702007-08-18 Tom Tromey <tromey@redhat.com>
1471
765d600a 1472 PR preprocessor/32974
cda5e672
TT
1473 * directives.c (parse_include): Don't check for EOL when
1474 processing #pragma dependency.
1475
ccfc4c91
OW
14762007-07-30 Ollie Wild <aaw@google.com>
1477
1478 * directives-only.c: New file.
1479 * internal.h (struct _cpp_dir_only_callbacks): New.
1480 (_cpp_preprocess_dir_only): New function.
1481 * directives.c (_cpp_handle_directive): Check directives_only before
1482 disabling execution of indented directives.
1483 * files.c (_cpp_stack_file): Add directives_only check.
1484 * include/cpplib.h (struct cpp_options): Add directives_only.
1485 (cpp_init_special_builtins): New function.
1486 * init.c (cpp_init_special_builtins): New function.
1487 (cpp_init_builtins): Move builtin_array initialization to
1488 cpp_init_special_builtins.
1489 (post_options): Check directives_only before setting
1490 pfile->state.prevent_expansion = 1.
1491 * macro.c (_cpp_builtin_macro_text): Print an error if __COUNTER__
1492 is expanded inside a directive while -fdirectives-only is enabled.
1493 * Makefile.in (libcpp_a_OBJS): Add directives-only.o.
1494 (libcpp_a_SOURCES): Add directives-only.c.
1495
a206413a
UB
14962007-07-04 Uros Bizjak <ubizjak@gmail.com>
1497
1498 * traditional.c (_cpp_scan_out_logical_line): Initialize
1499 fmacro.args, fmacro.node, fmacro.offset, fmacro.line and
1500 fmacro.args to prevent 'may be used uninitialized' warning.
1501
c77cd3d1
UB
15022007-07-03 Uros Bizjak <ubizjak@gmail.com>
1503
1504 * include/cpplib.h (CPP_N_WIDTH_MD, CPP_N_MD_W, CPP_N_MD_Q):
1505 Add new constants.
1506 * expr.c (interpret_float_suffix): Process 'w', 'W', 'q' and 'Q'
1507 suffixes. Return CPP_N_MD_W for 'w' or 'W' suffixes and CPP_N_MD_Q
1508 for 'q' or 'Q' suffixes.
1509
66938a1d
DS
15102007-06-17 Danny Smith <dannysmith@users.sourceforge.net
1511
e1311401 1512 * files.c (open_file): Correct typo.
66938a1d 1513
71995ede
VP
15142007-06-16 Vladimir Prus <vladimir@codesourcery.com>
1515
e1311401 1516 * files.c (open_file): Prevent the call
71995ede
VP
1517 for stat from overwriting errno.
1518
84152c25
VP
15192007-06-09 Vladimir Prus <vladimir@codesourcery.com>
1520
e1311401 1521 * files.c (open_file): Account for the
84152c25
VP
1522 fact that on windows, opening a directory gives
1523 EACCES.
1524
f7fd775f
JW
15252007-06-05 Joerg Wunsch <j.gnu@uriah.heep.sax.de>
1526
1527 PR preprocessor/23479
1528 * expr.c (cpp_classify_number): Implement 0b-prefixed binary
1529 integer constants.
1530 (append_digit): Likewise.
1531 * include/cpplib.h: Add CPP_N_BINARY, to be used for 0b-prefixed
1532 binary integer constants.
1533
ed0e74e0
DK
15342007-05-31 Dave Korn <dave.korn@artimi.com>
1535
1536 PR preprocessor/14331
1537 * lex.c (_cpp_get_fresh_line): Don't warn if no newline at EOF.
1538
a702045a
OW
15392007-05-24 Ollie Wild <aaw@google.com>
1540
1541 * macro.c (_cpp_builtin_macro_text): Handle BT_COUNTER.
1542 * pch.c (cpp_write_pch_deps): Save __COUNTER__ state.
1543 (cpp_write_pch_state): Save __COUNTER__ state.
1544 (cpp_valid_state): Check valid __COUNTER__ state.
1545 (cpp_read_state): Read new __COUNTER__ state.
1546 * include/cpplib.h (enum builtin_type): Add BT_COUNTER enumerator.
1547 * init.c (builtin_array): Add __COUNTER__/BT_COUNTER.
1548 * internal.h (struct cpp_reader): Add counter member.
1549
126e073b
SM
15502007-05-23 Simon Martin <simartin@users.sourceforge.net>
1551
1552 PR preprocessor/20077
1553 * macro.c (create_iso_definition): Fixed the method to determine
1554 whether the token-pasting operator appears at the beginning or the end
1555 of a macro.
1556
0b4cafec
ILT
15572007-05-21 Ian Lance Taylor <iant@google.com>
1558
1559 * internal.h (struct cpp_reader): Add new fields:
1560 nonexistent_file_hash and nonexistent_file_ob.
1561 * files.c: Include "obstack.h".
1562 (find_file_in_dir): Before trying to open the file, look up the
1563 path name in the hash table of nonexistent files. After failing
1564 to open the file, add the path name to the hash table.
1565 (_cpp_find_file): Cache the results of looking up the file name
1566 starting with the quote and bracket chain heads, if we can.
1567 (nonexistent_file_hash_eq): New static function.
1568 (_cpp_init_files): Initialize pfile->nonexistent_file_hash and
1569 pfile->nonexistent_file_ob.
1570 (_cpp_cleanup_files): Free pfile->nonexistent_file_hash and
1571 pfile->nonexistent_file_ob.
1572
30e04921
JJ
15732007-05-14 Janis Johnson <janis187@us.ibm.com>
1574
5a6bb57e
JJ
1575 * expr.c (cpp_classify_number): Warn about dfp constant for -pedantic.
1576
30e04921
JJ
1577 PR c/31924
1578 * expr.c (interpret_float_suffix): Check for invalid suffix.
1579
22a8a52d
EC
15802007-05-02 Eric Christopher <echristo@apple.com>
1581
1582 * expr.c (num_div_op): Don't overflow if the result is
1583 zero.
1584
fca35e1b
TT
15852007-05-02 Tom Tromey <tromey@redhat.com>
1586
765d600a 1587 PR preprocessor/28709
fca35e1b
TT
1588 * macro.c (paste_tokens): Remove PASTE_LEFT from the old lhs.
1589
4cd97075
MM
15902007-03-30 Michael Meissner <michael.meissner@amd.com>
1591
1592 * directives.c (lex_macro_node_from_str): Fix alloca call to be
1593 type correct.
1594
121de39f
RH
15952007-03-30 Richard Henderson <rth@redhat.com>
1596
1597 * directives.c (lex_macro_node_from_str): New.
1598 (cpp_push_definition, cpp_pop_definition): New.
1599 * include/cpplib.h (cpp_push_definition, cpp_pop_definition): Declare.
1600
4fcb360b
BM
16012007-03-01 Brooks Moses <brooks.moses@codesourcery.com>
1602
1603 * Makefile.in: Add dummy install-pdf target.
1604
67e64439
TT
16052007-01-30 Tom Tromey <tromey@redhat.com>
1606
765d600a 1607 PR preprocessor/30468
67e64439
TT
1608 * mkdeps.c (apply_vpath): Strip successive '/'s if we stripped
1609 './'.
1610
ee380365
TT
16112007-01-30 Tom Tromey <tromey@redhat.com>
1612
765d600a 1613 PR preprocessor/29966
ee380365
TT
1614 * macro.c (lex_expansion_token): Save and restore cpp_reader's
1615 cur_token.
1616 (_cpp_create_definition): Don't restore cur_token here.
1617 * lex.c (_cpp_lex_token): Added assertion.
1618
024abeb3
TT
16192007-01-27 Tom Tromey <tromey@redhat.com>
1620
1621 * configure: Rebuilt.
1622
ee1c2a10
TT
16232007-01-12 Tom Tromey <tromey@redhat.com>
1624
765d600a 1625 PR preprocessor/28227
ee1c2a10
TT
1626 * directives.c (lex_macro_node): Added 'is_def_or_undef'
1627 argument.
1628 (do_define): Update.
1629 (do_undef): Update.
1630 (do_ifdef): Update.
1631 (do_ifndef): Update.
1632
67214c16
PB
16332007-01-11 Paolo Bonzini <bonzini@gnu.org>
1634
1635 * configure: Regenerate.
1636
1aa6ca40
PB
16372007-01-11 Paolo Bonzini <bonzini@gnu.org>
1638
1639 * configure: Regenerate.
1640
705e2d28
TT
16412007-01-04 Tom Tromey <tromey@redhat.com>
1642
765d600a 1643 PR preprocessor/28165
705e2d28
TT
1644 * internal.h (cpp_in_primary_file): New function.
1645 * directives.c (do_include_next): Use cpp_in_primary_file.
1646 (do_pragma_once): Likewise.
1647 (do_pragma_system_header): Likewise.
1648
7af45bd4
ILT
16492006-12-29 Ian Lance Taylor <iant@google.com>
1650
1651 * lex.c (_cpp_clean_line): Add uses of __builtin_expect. Don't
1652 look backward at the end of the line unless we saw a backslash.
1653
9d30f270
JJ
16542006-12-29 Jakub Jelinek <jakub@redhat.com>
1655
1656 PR preprocessor/29612
1657 * directives.c (do_linemarker): Set pfile->buffer->sysp always, not
1658 only when new_sysp is non-zero.
1659
30b0edc0
TT
16602006-12-28 Tom Tromey <tromey@redhat.com>
1661
765d600a 1662 PR preprocessor/30001
30b0edc0
TT
1663 * charset.c (_cpp_convert_input): Check that to.len is greater
1664 than zero.
1665
85d9c13c
TS
16662006-11-20 Trevor Smigiel <Trevor_Smigiel@playstation.sony.com>
1667
1668 * configure.ac (need_64bit_hwint): Need 64bit hwint for SPU.
83cc06b2 1669 * configure: Rebuilt.
85d9c13c 1670
dfafdaa6
DG
16712006-11-01 Douglas Gregor <doug.gregor@gmail.com>
1672
1673 * include/cpplib.h (enum c_lang): Add CLK_GNUCXX0X and CLK_CXX0X
1674 for experimental C++0x mode.
1675 * init.c (lang_defaults): Add defaults for C++0x modes. C++0x has
1676 adopted the preprocessor changes introduced in C99.
1677
0f45f0f5
JM
16782006-10-29 Joseph Myers <joseph@codesourcery.com>
1679
1680 * configure.ac (need_64bit_hwint): Set for i[34567]86-*-linux*
1681 depending on --enable-targets=all.
1682 * configure: Regenerate.
1683
de000d22
JJ
16842006-10-12 Jakub Jelinek <jakub@redhat.com>
1685
1686 PR preprocessor/28709
1687 * macro.c (paste_tokens): Do error reporting here, use BUF with the
1688 spelled LHS token as opposed to spelling it again.
1689 (paste_all_tokens): Don't report errors here, just break on failure.
1690
b5422ad7
BM
16912006-10-10 Brooks Moses <bmoses@stanford.edu>
1692
1693 * Makefile.in: Added empty "pdf" target.
1694
aaf50ff2
GK
16952006-09-22 Geoffrey Keating <geoffk@apple.com>
1696
1697 * configure.ac: Make need_64_bit_hwint case for x86-darwin
1698 match exactly the glob in gcc/config.gcc.
1699 * configure: Regenerate.
1700
c663e301
JM
17012006-09-13 Joseph S. Myers <joseph@codesourcery.com>
1702
1703 PR c/28768
1704 PR preprocessor/14634
1705 * lex.c (lex_string): Pedwarn for unterminated literals.
1706
f7288899
EC
17072006-09-08 Eric Christopher <echristo@apple.com>
1708
1709 * configure.ac: Add 64-bit HWI support for i?86-darwin.
1710
b52dbbf8
SE
17112006-08-14 Steve Ellcey <sje@cup.hp.com>
1712
1713 PR c++/28288
1714 PR c++/14556
1715 * include/cpplib.h: Remove <?, >?, <?=, and >?= tokens.
1716 (CPP_LAST_EQ): Change.
1717 (CPP_LAST_PUNCTUATOR): Change.
1718 * expr.c (cpp_operator): Remove MIN and MAX.
1719 (reduce): Remove CPP_MIN and CPP_MAX.
1720 (num_binary_op): Ditto.
1721 * lex.c (_cpp_lex_direct): Ditto.
1722 (cpp_avoid_paste): Remove ? as legal symbol after > or <.
1723
1c90c6f9
JJ
17242006-06-09 Jakub Jelinek <jakub@redhat.com>
1725
1726 PR preprocessor/27746
1727 * directives.c (do_pragma): Handle pragma with valid namespace
1728 and invalid name coming from macro expansion.
1729 * directives.c (destringize_and_run): Initialize next field in
1730 context.
1731
1732 PR c/27747
1733 PR c++/27748
1734 * directives.c (destringize_and_run): Set NO_EXPAND on the
1735 tokens.
1736
1737 * macro.c (_cpp_backup_tokens): Fix comment typo.
1738
5c3c3683
DJ
17392006-05-31 Daniel Jacobowitz <dan@codesourcery.com>
1740
1741 * Makefile.in (CATALOGS): Add po/ prefix.
1742 * configure: Regenerated.
1743
b2bd74bc
CD
17442006-05-23 Carlos O'Donell <carlos@codesourcery.com>
1745
1746 * Makefile.in: Add install-html target. Add install-html to .PHONY
1747
be8ac3e2
GZ
17482006-02-17 Grigory Zagorodnev <grigory_zagorodnev@linux.intel.com>
1749
1750 * macro.c (_cpp_builtin_macro_text): Handle BT_TIMESTAMP.
1751 * files.c (_cpp_get_file_stat): New function.
1752 * include/cpplib.h (builtin_type): Add BT_TIMESTAMP.
1753 * init.c (builtin_array): Add support for __TIMESTAMP__/BT_TIMESTAMP.
1754 * internal.h (_cpp_get_file_stat): Prototype.
1755 (struct cpp_buffer): Add timestamp.
1756
83900997
JJ
17572006-01-23 Jakub Jelinek <jakub@redhat.com>
1758
1759 PR preprocessor/25717
1760 * init.c (cpp_init_builtins): If __STDC__ will not change value
1761 between system headers and other sources, define it as a normal
1762 macro rather than a builtin.
1763 * macro.c (_cpp_builtin_macro_text) <case BT_STDC>: Only check
1764 cpp_in_system_header condition.
1765
17662006-01-05 Paolo Bonzini <bonzini@gnu.org>
9220c30c
PB
1767
1768 * Makefile.in: Use -MMD instead of -MD.
1769
bc4071dd
RH
17702006-01-04 Dmitry Kurochkin <dmitry.kurochkin@gmail.com>
1771 Richard Henderson <rth@redhat.com>
1772
1773 Merge from gomp branch:
1774 * directives.c (struct pragma_entry): Add is_deferred. Add ident
1775 entry to value union.
1776 (end_directive): Don't eat the line if in_deferred_pragma.
1777 (run_directive): Remove pragma hacks.
1778 (insert_pragma_entry): Remove.
1779 (new_pragma_entry): New.
1780 (register_pragma_1): Split out of register_pragma. Only handle
1781 the lookup tree and return the new entry.
1782 (cpp_register_pragma): Fill in the pragma entry here.
1783 (cpp_register_deferred_pragma): New.
1784 (register_pragma_internal): New.
1785 (_cpp_init_internal_pragmas): Use register_pragma_internal.
1786 (do_pragma): Allow pragma expansion after namespace. For deferred
1787 pragmas, don't slurp the line into a string.
1788 (destringize_and_run): Save tokens for deferred pragmas.
1789 (cpp_handle_deferred_pragma): Remove.
1790 * macro.c (builtin_macro): Remove pragma token hack.
1791 (_cpp_push_token_context): Rename from push_token_context and export.
1792 * internal.h (struct lexer_state): Add pragma_allow_expansion.
1793 (_cpp_push_token_context): Declare.
1794 * lex.c (_cpp_lex_token): Allow _cpp_handle_directive to return
1795 a token. Update the line number correctly if so.
1796 (_cpp_lex_direct): Emit CPP_PRAGMA_EOL tokens.
1797 (cpp_token_val_index): Return CPP_TOKEN_FLD_PRAGMA for pragmas.
1798 * include/cpplib.h (PRAGMA_EOL): New.
1799 (CPP_TOKEN_FLD_PRAGMA): New.
1800 (struct cpp_token): Add val.pragma.
1801 (struct cpp_options): Remove defer_pragmas.
1802 (cpp_handle_deferred_pragma): Remove.
1803 (cpp_register_deferred_pragma): Declare.
1804
d09e893f
JJ
18052006-01-01 Jakub Jelinek <jakub@redhat.com>
1806
1807 PR c++/25294
1808 * directives.c (do_pragma): If pragma line ends with multi-line
1809 block comment, end the saved deferred pragma string before that
1810 comment. Handle embedded '\0' chars on the pragma line.
1811
ab84748a
VR
18122005-12-22 Volker Reichelt <reichelt@igpm.rwth-aachen.de>
1813
1814 PR c++/23333
1815 * include/cpplib.h: Add PURE_ZERO to flags for the cpp_token structure.
1816
ad6ed77e
JG
18172005-12-07 Jon Grimm <jgrimm2@us.ibm.com>
1818 Ben Elliston <bje@au.ibm.com>
1819
1820 * include/cpplib.h (CPP_N_DFLOAT): New.
1821 * expr.c (interpret_float_suffix): Identify df, dd, and dl
1822 suffixes as decimal floating point constants.
1823 (cpp_classify_number): Disallow hexadecimal DFP constants.
1824
ba096620 18252005-11-14 Gerald Pfeifer <gerald@pfeifer.com>
bc4071dd 1826 Ian Lance Taylor <ian@airs.com>
ba096620
GP
1827
1828 * include/cpplib.h (struct cpp_callbacks): Annotate error with
1829 ATTRIBUTE_FPTR_PRINTF(3,0) instead of ATTRIBUTE_PRINTF(3,0).
1830
456b8ce5
UB
18312005-11-09 Per Bothner <per@bothner.com>
1832 Uros Bizjak <uros@kss-loka.si>
f7288899 1833
456b8ce5
UB
1834 PR c/24101
1835 * init.c (read_original_filename): Temporarily set
1836 state.in_directive before calling _cpp_lex_direct for
1837 CPP_HASH tokens.
1838
5571f74f
JW
18392005-11-03 James E Wilson <wilson@specifix.com>
1840
1841 PR preprocessor/24202
1842 * files.c (_cpp_pop_file_buffer): Set buffer_valid to false.
1843
a63607ed
JM
18442005-11-04 Joseph S. Myers <joseph@codesourcery.com>
1845
1846 * include/cpplib.h (struct cpp_callbacks): Make error take
1847 va_list* parameter.
1848 * errors.c (cpp_error): Update call to callback.
1849
651ed942
AP
18502005-11-03 Andrew Pinski <pinskia@physics.uc.edu>
1851
1852 PR preprocessor/22042
1853 * macro.c (_cpp_builtin_macro_text): Lower the needed max
1854 buffer size.
1855 (cpp_quote_string): Don't octalify non printable
1856 charactors.
1857
178b58b5
JM
18582005-11-03 Joseph S. Myers <joseph@codesourcery.com>
1859
1860 PR c++/17964
1861 * include/cpplib.h (struct cpp_options): Add client_diagnostic.
1862 (struct cpp_callbacks): Add error.
1863 * errors.c (cpp_error): If client_diagnostic, use error callback.
1864 * charset.c (convert_escape): Don't use %03o in diagnostic.
1865
3ee5ed11 18662005-10-21 James E Wilson <wilson@specifix.com>
6568f34b
JW
1867
1868 PR preprocessor/15220
1869 * files.c (_cpp_find_file): New parameter angle_brackets. Fix all
1870 callers. Pass to open_file_failed.
1871 (open_file_failed): New parameter angle_brackets. Fix all callers.
1872 Use in print_dep assignment.
1873 * init.c (cpp_read_main_file): Pass additional arg to _cpp_find_file.
1874 * internal.h (_cpp_find_file): Add new parm to declaration.
f7288899 1875
077fc835
KH
18762005-10-08 Kazu Hirata <kazu@codesourcery.com>
1877
1878 * configure.ac: Require 64-bit int for arm*-*-*eabi*.
1879 * configure: Regenerate.
1880
cbc43ae0
ILT
18812005-10-04 Ian Lance Taylor <ian@airs.com>
1882
1883 PR preprocessor/13726
1884 * directives.c (check_eol_return_comments): New static function.
1885 (parse_include): Add buf parameter. Change all callers.
1886 (do_include_common): If not discard comments, turn on
1887 save_comments. Pass collected comments to include callback.
1888 * include/cpplib.h (struct cpp_callbacks): Add new parameter to
1889 include callback: cpp_token list.
1890
af15a2fe
JM
18912005-09-20 Joseph S. Myers <joseph@codesourcery.com>
1892
1893 * include/cpplib.h (struct cpp_options): Add extended_identifiers.
1894 * init.c (struct lang_flags, lang_defaults): Add
1895 extended_identifiers.
1896 (cpp_set_lang): Use it.
1897 * lex.c (forms_identifier_p): Check extended_identifiers.
1898
f5eab47e
JJ
18992005-08-30 Jakub Jelinek <jakub@redhat.com>
1900
1901 PR preprocessor/20348
1902 PR preprocessor/20356
1903 * files.c (_cpp_find_file, search_cache): Revert 2004-06-26 and
1904 2004-06-05 changes.
1905
467129e6
KG
19062005-07-23 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1907
1908 * configure.ac (ACX_PROG_CC_WARNING_OPTS): add
1909 -Wmissing-format-attribute.
1910
1911 * configure: Regenerate.
1912
200031d1
KC
19132005-06-29 Kelley Cook <kcook@gcc.gnu.org>
1914
1915 * all files: Update FSF address in copyright headers.
1916 * makeucnid.c (write_copyright): Update outputted FSF address.
1917
f610dd5f
ZW
19182005-06-13 Zack Weinberg <zack@codesourcery.com>
1919
1920 * configure.ac: Invoke ZW_CREATE_DEPDIR and
1921 ZW_PROG_COMPILER_DEPENDENCIES.
1922 * aclocal.m4, configure: Regenerate.
1923 * Makefile.in (DEPMODE, DEPDIR, depcomp, COMPILE.base, COMPILE):
1924 New variables.
1925 (distclean): Clean up $(DEPDIR) and its contents.
1926 (.c.o): Use $(COMPILE).
1927 Include $(DEPDIR)/*.Po for most object->header dependencies.
1928
c3f829c1
GDR
19292005-05-28 Gabriel Dos Reis <gdr@integrable-solutions.net>
1930
1931 * configure.ac: Check declarations for asprintf and vasprintf.
1932 * config.in: Regenerate.
1933 * configure: Likewise.
1934
1935 * charset.c (conversion_loop): Use XRESIZEVEC.
1936 (convert_no_conversion): Likewise.
1937 (convert_using_iconv): Likewise.
1938 (init_iconv_desc): Cast return value of alloca.
1939 (cpp_host_to_exec_charset): Use XNEWVEC.
1940 (emit_numeric_escape): Use XRESIZEVEC.
1941 (cpp_interpret_string): Use XNEWVEC.
1942 (cpp_interpret_string): Use XRESIZEVEC.
1943 (_cpp_interpret_identifier): Cast return value of alloca.
1944 (_cpp_convert_input): Use XNEWVEC and XRESIZEVEC.
1945 * directives.c (glue_header_name): Use XNEWVEC and XRESIZEVEC.
1946 (parse_include): Use XNEWVEC.
1947 (insert_pragma_entry): Rename local variable "new" to
f610dd5f 1948 "new_entry".
c3f829c1
GDR
1949 (save_registered_pragmas): Cast return value of xmemdup.
1950 (destringize_and_run): Same for alloca.
1951 (parse_assertion): Likewise.
1952 (do_assert): Cast allocated storage to proper type.
1953 (cpp_define): Likewise.
1954 (_cpp_define_builtin): Likewise.
1955 (cpp_undef): Likewise.
1956 (handle_assertion): Likewise.
1957 (cpp_push_buffer): Rename local variable "new" to "new_buffer".
1958 * expr.c (CPP_UPLUS): Cast value to type cpp_ttype.
1959 (CPP_UMINUS): Likewise.
1960 (struct cpp_operator): Rename from struct operator.
1961 (_cpp_expand_op_stack): Use XRESIZEVEC.
1962 * files.c (pch_open_file): Use XNEWVEC.
1963 (pch_open_file): Use XRESIZEVEC.
1964 (read_file_guts): Use XNEWVEC and XRESIZEVEC.
1965 (dir_name_of_file): Use XNEWVEC.
1966 (make_cpp_file): Use XCNEW.
1967 (make_cpp_dir): Likewise.
1968 (allocate_file_hash_entries): USE XNEWVEC.
1969 (cpp_included): Cast return value of htab_find_with_hash.
1970 (append_file_to_dir): Use XNEWVEC.
1971 (read_filename_string): Likewise. Use XRESIZEVEC too.
1972 (read_name_map): Cast return value of alloca. Use XRESIZEVEC.
1973 (remap_filename): Use XNEWVEC.
1974 (struct pchf_entry): Move definition out of struct pchf_data.
1975 (_cpp_save_file_entries): Use XCNEWVAR.
1976 (_cpp_read_file_entries): Use XNEWVAR.
1977 * identifiers.c (alloc_node): Use XOBNEW.
1978 * init.c (cpp_create_reader): Use XCNEW.
1979 (cpp_init_builtins): Cast of b->value to enum builtin_type.
1980 (read_original_directory): Cast return value of alloca.
1981 * lex.c (add_line_note): Use XRESIZEVEC.
1982 (warn_about_normalization): Use XNEWVEC.
1983 (_cpp_lex_direct): Cast node->directive_index to (enum cpp_ttype).
1984 (new_buff): Use XNEWVEC.
1985 * line-map.c (linemap_add): Use XRESIZEVEC.
1986 * macro.c (builtin_macro): Cast return value of alloca.
1987 (paste_tokens): Likewise.
1988 (expand_arg): Use XNEWVEC and XRESIZEVEC.
1989 (_cpp_save_parameter): Use XRESIZEVEC.
1990 (create_iso_definition): Cast allocated storage to proper type.
1991 (_cpp_create_definition): Likewise.
1992 (cpp_macro_definition): Use XRESIZEVEC.
1993 * makedepend.c (add_clm): Use XNEW.
1994 (add_dir): Likewise.
1995 * mkdeps.c (munge): Use XNEWVEC.
1996 (deps_init): Use XCNEW.
1997 (deps_add_target): Use XRESIZEVEC.
1998 (deps_add_default_target): Cast return value of alloca.
1999 (deps_add_dep): Use XRESIZEVEC.
2000 (deps_add_vpath): Likewise. Use XNEWVEC too.
2001 (deps_restore): Likewise.
2002 * pch.c (save_idents): Use XNEW and XNEWVEC.
2003 (cpp_save_state): Use XNEW.
2004 (count_defs): Cast return value of htab_find.
2005 (write_defs): Likewise.
2006 (cpp_write_pch_deps): Use XNEWVEC.
2007 (collect_ht_nodes): Use XRESIZEVEC.
2008 (cpp_valid_state): Use XNEWVEC.
2009 (save_macros): Use XRESIZEVEC. Cast return value of xmemdup.
2010 * symtab.c (ht_create): Use XCNEW.
2011 (ht_lookup_with_hash): Cast return value of obstack_copy0.
2012 (ht_expand): Use XCNEWVEC.
2013 * system.h (HAVE_DESIGNATED_INITIALIZERS): False if __cplusplus.
2014 (bool): Do not define if __cplusplus.
2015
1ed17cd5
ZW
20162005-05-12 Zack Weinberg <zack@codesourcery.com>
2017
2018 * directives.c (#sccs table entry): Mark IN_I, consistent with #ident.
2019 (do_sccs): Delete function definition, #define to do_ident.
2020 (do_ident): Don't hardwire directive name.
2021
5a8c20ce
RK
20222005-05-12 Ryota Kunisawa <kunisawa@access.co.jp>
2023
2024 PR bootstrap/21230
2025 * configure: Regenerate.
2026
473c5bc9
AP
20272005-04-27 Andris Pavenis <pavenis@latnet.lv>
2028
2029 * files.c: Include io.h for DJGPP to get prototype of setmode.
2030
c1fc5047
PB
20312005-04-19 Per Bothner <per@bothner.com>
2032
2033 PR preprocessor/20907
2034 * line-map.c (linemap_line_start): Fix bug when we need to increse
2035 column_bits but can re-use the current line_map.
2036
042630ad
KG
20372005-04-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2038
2039 * system.h (fopen, fdopen, freopen): Define these to the unlocked
2040 libiberty functions.
2041
0d667716
KG
20422005-04-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2043
2044 * configure.ac (libcpp_UNLOCKED_FUNCS): New.
2045 (AC_CHECK_FUNCS, AC_CHECK_DECLS): Check for libcpp_UNLOCKED_FUNCS.
2046 * system.h (putchar, getc, getchar, clearerr, feof, fileno,
2047 fflush, fgetc, fgets, ferror, fread): Redefine to the associated
2048 _unlocked function.
2049 (fwrite_unlocked): Fix prototype.
1ed17cd5 2050
0d667716
KG
2051 * configure, config.in: Regenerate.
2052
cae064e7
JJ
20532005-04-05 Jakub Jelinek <jakub@redhat.com>
2054
2055 PR preprocessor/19475
2056 * macro.c (create_iso_definition): For < ISO C99, don't
2057 pedwarn if there is no whitespace between macro name and its
2058 replacement, but the replacement starts with a basic character
2059 set character.
2060
cbada204
AJ
20612005-03-28 Andreas Jaeger <aj@suse.de>
2062
2063 * lex.c (warn_about_normalization): Cast field width to int to
2064 avoid warning.
2065
f42eccdb
JM
20662005-03-19 Joseph S. Myers <joseph@codesourcery.com>
2067
2068 * configure.ac: Consistently use solaris2.1[0-9]* instead of
2069 solaris2.1[0-9].
2070 * configure: Regenerate.
2071
c79e602b
GK
20722005-03-15 Geoffrey Keating <geoffk@apple.com>
2073
2074 * charset.c (_cpp_valid_ucn): In identifiers, reject a partial
2075 UCN rather than printing an error.
2076
50668cf6
GK
20772005-03-14 Geoffrey Keating <geoffk@apple.com>
2078
6baba9bb
GK
2079 * lex.c (forms_identifier_p): Disable UCNs in C89 mode.
2080
20812005-03-14 Geoffrey Keating <geoffk@apple.com>
1ed17cd5 2082
50668cf6
GK
2083 * init.c (cpp_create_reader): Default warn_normalize to normalized_C.
2084 * charset.c: Update for new format of ucnid.h.
2085 (ucn_valid_in_identifier): Update for new format of ucnid.h.
2086 Add NST parameter, and update it; update callers.
2087 (cpp_valid_ucn): Add NST parameter, update callers. Replace abort
2088 with cpp_error.
2089 (convert_ucn): Pass normalize_state to cpp_valid_ucn.
2090 * internal.h (struct normalize_state): New.
2091 (INITIAL_NORMALIZE_STATE): New.
2092 (NORMALIZE_STATE_RESULT): New.
2093 (NORMALIZE_STATE_UPDATE_IDNUM): New.
2094 (_cpp_valid_ucn): New.
2095 * lex.c (warn_about_normalization): New.
2096 (forms_identifier_p): Add normalize_state parameter, update callers.
2097 (lex_identifier): Add normalize_state parameter, update callers. Keep
2098 the state current.
2099 (lex_number): Likewise.
2100 (_cpp_lex_direct): Pass normalize_state to subroutines. Check
2101 it with warn_about_normalization.
2102 * makeucnid.c: New.
2103 * ucnid.h: Replace.
2104 * ucnid.pl: Remove.
2105 * ucnid.tab: Make appropriate for input to makeucnid.c. Remove
2106 comments about obsolete version of C++.
2107 * include/cpplib.h (enum cpp_normalize_level): New.
2108 (struct cpp_options): Add warn_normalize field.
2109
47e20491
GK
21102005-03-11 Geoffrey Keating <geoffk@apple.com>
2111
2112 * directives.c (glue_header_name): Update call to cpp_spell_token.
2113 * internal.h (_cpp_interpret_identifier): New.
2114 * charset.c (_cpp_interpret_identifier): New.
2115 (_cpp_valid_ucn): Allow UCN version of '$'.
2116 * lex.c (lex_identifier): Add extra parameter to indicate if initial
2117 character was '$' or '\'. Support identifiers with UCNs.
2118 (forms_identifier_p): Allow UCNs.
2119 (_cpp_lex_direct): Pass extra parameter to lex_identifier.
2120 (utf8_to_ucn): New.
2121 (cpp_spell_token): Add FORSTRING parameter. Use it.
2122 (cpp_token_as_text): Update call to cpp_spell_token.
2123 (cpp_output_token): Write UCNs back out.
2124 (stringify_arg): Update call to cpp_spell_token.
2125 (paste_tokens): Likewise.
2126 (cpp_macro_definition): Likewise.
2127 * macro.c (stringify_arg): Likewise.
2128 (paste_tokens): Likewise.
2129 (cpp_macro_definition): Likewise.
2130 * include/cpplib.h: Add parameter to cpp_spell_token.
2131
73096711
JJ
21322005-03-04 Jakub Jelinek <jakub@redhat.com>
2133
2134 PR bootstrap/20282
2135 PR bootstrap/20305
2136 * macro.c (replace_args, cpp_get_token): Copy whole
2137 cpp_token_u instead of just cpp_string field from it.
2138
2203a881
DP
21392005-02-28 Devang Patel <dpatel@apple.com>
2140
2141 * directives.c (do_line): Save sysp early before line table is
2142 realloc'ed.
1ed17cd5 2143
c5ff069d
ZW
21442005-02-20 Zack Weinberg <zack@codesourcery.com>
2145
2146 PR 18785
2147 * charset.c (LAST_POSSIBLY_BASIC_SOURCE_CHAR): New helper macro.
2148 (cpp_host_to_exec_charset): New function.
2149 * include/cpplib.h: Declare cpp_host_to_exec_charset.
2150
04c90eea
DP
21512005-02-19 Devang Patel <dpatel@apple.com>
2152
2153 * charset.c (_cpp_convert_input): Check '\r' before inserting
2154 '\n' at the end.
c5ff069d 2155
6da55c00
EC
21562005-02-15 Eric Christopher <echristo@redhat.com>
2157
2158 PR preprocessor/19077
2159 * macro.c (cpp_macro_definition): Move handling of whitespace
2160 to PREV_WHITE conditional. Remove overloading of len
2161 variable.
2162
31c3e631
KH
21632005-02-14 Kazu Hirata <kazu@cs.umass.edu>
2164
2165 * directives.c, files.c, init.c, internal.h, macro.c, pch.c,
2166 traditional.c: Update copyright.
2167
be0f1e54
PB
21682005-02-14 Paolo Bonzini <bonzini@gnu.org>
2169
2170 PR bootstrap/19818
2171 * configure.ac: Check for declaration of basename and getopt.
2172 * config.in: Regenerate.
2173 * configure: Regenerate.
2174 * internal.h (ustrcspn): New.
2175 * macro.c (create_iso_definition): Fix allocation of memory.
2176 (padding_token): Add cast to remove const-ness.
2177 * pch.c (cpp_read_state): Use ustrcspn.
2178
ecddfb39
MS
21792005-02-08 Mike Stump <mrs@apple.com>
2180
2181 * files.c (pchf_adder): Remove.
2182 (struct pchf_adder_info): Likewise.
2183 (_cpp_save_file_entries): Write out all files so that #import works.
2184
9fcdd891
JM
21852005-01-23 Joseph S. Myers <joseph@codesourcery.com>
2186
2187 * configure: Regenerate.
2188
ecfd72e7
TS
21892005-01-11 Tobias Schlueter <tobias.schlueter@physik.uni-muenchen.de>
2190
2191 * include/cpplib.h (c_lang): Fix comment to say cpp_create_reader.
2192
6c25a4f7 2193 * include/cpplib.h: Also update copyright years.
c5ff069d 2194
942926ad
GK
21952005-01-03 Geoffrey Keating <geoffk@apple.com>
2196
2197 * files.c (_cpp_find_file): Add files found by search_path_exhausted
2198 to the list of all files.
2199
a2566ae9
GDR
22002005-01-01 Gabriel Dos Reis <gdr@integrable-solutions.net>
2201
2202 * internal.h: Update references to Cpp lib filenames.
2203 * directives.c: Likewise.
2204 * init.c: Likewise.
2205 * macro.c: Likewise.
2206 * traditional.c: Likewise.
2207
1b449375
EB
22082004-12-15 Eric Botcazou <ebotcazou@libertysurf.fr>
2209
2210 PR preprocessor/15167
2211 * files.c (destroy_cpp_file): New function.
2212 (should_stack_file): Make a new file if the
2213 compared file is still stacked.
2214
28303828
NN
22152004-11-28 Nathanael Nerode <neroden@gcc.gnu.org>
2216
c5ff069d 2217 PR preprocessor/17610
28303828
NN
2218 * directives.c (do_include_common): Error out if an empty filename
2219 is given for #include (or #include_next or #import).
2220
c812785a
RS
22212004-11-27 Roger Sayle <roger@eyesopen.com>
2222 Zack Weinberg <zack@codesourcery.com>
2223
2224 * internal.h: Replace all uses of uchar with unsigned char.
2225 * include/cpp-id-data.h: Likewise. Guard typedef of uchar
2226 with !IN_GCC, so uchar is only defined whilst building libcpp.
2227
f91eaa01
KC
22282004-11-24 Kelley Cook <kcook@gcc.gnu.org>
2229
2230 * aclocal.m4: Regenerate.
2231
f78ce0c2
RS
22322004-11-24 Roger Sayle <roger@eyesopen.com>
2233
2234 PR preprocessor/15824
2235 * configure.ac: Correct HAVE_UCHAR test to #include <sys/types.h>
2236 directly, instead of the non-existant "system.h" and "ansidecl.h".
2237 * configure: Regenerate.
2238
b5b3e36a 22392004-11-23 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 2240 Joseph Myers <joseph@codesourcery.com>
b5b3e36a
DJ
2241
2242 * internal.h (struct lexer_state): Add in_deferred_pragma.
2243 * directives.c (struct pragma_entry): Add allow_expansion.
2244 (insert_pragma_entry): Take allow_expansion flag.
2245 (register_pragma): Likewise.
2246 (cpp_register_pragma): Likewise.
2247 (_cpp_init_internal_pragmas): Update calls to cpp_register_pragma.
2248 (do_pragma): Honor allow_expansion.
2249 (cpp_handle_deferred_pragma): Set in_deferred_pragma.
2250 * include/cpplib.h (cpp_register_pragma): Update prototype.
2251
a8e68029 22522004-11-18 Daniel Jacobowitz <dan@codesourcery.com>
c5ff069d 2253 Mark Mitchell <mark@codesourcery.com>
a8e68029
DJ
2254
2255 * configure.ac (i[34567]86-*-solaris2.1[0-9]*): Set
2256 need_64bit_hwint=yes.
2257 * configure: Regenerate.
2258
50f47ee0
JM
22592004-11-09 Joseph S. Myers <joseph@codesourcery.com>
2260
2261 * Makefile.in ($(PACKAGE).pot): New rule. Depend on
2262 po/$(PACKAGE).pot.
2263 (po/$(PACKAGE).pot): Use ":" instead of "," in --keyword
2264 arguments. Add keywords _, N_, SYNTAX_ERROR and SYNTAX_ERROR2.
2265 Remove local srcdir path from generated file.
2266
968e08d6 22672004-11-04 Zack Weinberg <zack@codesourcery.com>
c5ff069d 2268 Gerald Pfeifer <gerald@pfeifer.com>
968e08d6
ZW
2269
2270 * internal.h (HAVE_ICONV): Undefine if we do not have HAVE_ICONV_H
2271 as well.
2272
3da3d587
ZW
22732004-10-27 Zack Weinberg <zack@codesourcery.com>
2274
2275 PR 18075
2276 * directives.c (do_pragma): Do not defer pragmas which are unknown.
2277 (cpp_handle_deferred_pragma): Add cast to silence warning.
2278
ac24fc25
JM
22792004-10-14 Joseph S. Myers <jsm@polyomino.org.uk>
2280
2281 * errors.c (_cpp_begin_message): Print "error: " for errors.
2282
7731405b
AJ
22832004-10-10 Andreas Jaeger <aj@suse.de>
2284
2285 * makedepend.c: Include mkdeps.h for prototype of deps_add_vpath.
2286 * Makefile.in (makedepend.o): Add dependency on mkdeps.h.
2287
646544e3
AP
22882004-10-08 Andrew Pinski <pinskia@physics.uc.edu>
2289
2290 * pch.c (cpp_write_pch_state): Remove variable z as it is not
2291 used.
2292 (cpp_read_state): Remove unused variables, m, d and mac_count.
2293
67a74146
PB
22942004-09-29 Per Bothner <per@bothner.com>
2295
2296 * directives.c (cpp_handle_deferred_pragma): Save, clear and restore
2297 cb.line_change. Otherwise do_pragma will call the line_change
2298 call-back with a meaningless line number.
2299
018a4785
ZW
23002004-09-24 Zack Weinberg <zack@codesourcery.com>
2301
2302 * configure.ac: Move AC_PROG_MAKE_SET, AC_PROG_INSTALL to
2303 programs cluster. Use ACX_PROG_CC_WARNING_OPTS,
2304 ACX_PROG_CC_WARNING_ALMOST_PEDANTIC, ACX_PROG_CC_WARNINGS_ARE_ERRORS.
2305 * aclocal.m4, configure: Regenerate.
2306 * init.c: Include localedir.h.
2307 * Makefile.in (WARN_CFLAGS, ALL_CFLAGS): New variables.
2308 (DEFS): Delete.
2309 (.c.o): Use $(ALL_CFLAGS).
2310 (localedir.h, localedir.hs): New rules.
2311 (clean): Use rm -rf to remove directories.
2312 (distclean): Also delete localedir.h and localedir.hs.
2313 (init.o): Update dependencies.
2314
88fa57d7
KC
23152004-09-22 Kelley Cook <kcook@gcc.gnu.org>
2316
2317 * Makefile.in (aclocal.m4): Update dependencies.
2318 * configure.ac (AC_CONFIG_MACRO_DIR): New.
2319 * aclocal.m4, configure: Regenerate.
2320
8f8e9aa5
ZW
23212004-09-17 Zack Weinberg <zack@codesourcery.com>
2322
a29f62d9
ZW
2323 * charset.c (_cpp_destroy_iconv, emit_numeric_escape)
2324 (_cpp_convert_input, _cpp_default_encoding): Add comments.
2325 Some other comments in this file also tweaked.
2326
8f8e9aa5
ZW
2327 * directives.c (do_pragma): Save current buffer position
2328 before lexing the pragma keywords; don't call
2329 _cpp_backup_tokens in the defer_pragmas case.
2330
a2981930
PB
23312004-09-15 Per Bothner <per@bothner.com>
2332
2333 * include/line-map.h (line_map_start): Add parameter names so
2334 preceding comment makes sense.
2335 (linemap_add): Remove from comment mention of non-existing parameter.
2336
21b11495
ZW
23372004-09-09 Matt Austern <austern@apple.com>
2338 Zack Weinberg <zack@codesourcery.com>
2339
2340 * include/cpplib.h (TTYPE_TABLE): Remove CPP_ and SPELL_
2341 prefixes throughout. Add entry for PRAGMA. Remove
2342 unnecessary "= 0" from EQ.
2343 (enum cpp_ttype): Adjust OP and TK definitions to restore
2344 prefixes, via token-paste.
2345 (CPP_LAST_EQ, CPP_FIRST_DIGRAPH, CPP_LAST_PUNCTUATOR, CPP_LAST_CPP_OP):
2346 Change from #defines to additional cpp_ttype enumerators.
2347 (struct cpp_options): Add defer_pragmas.
2348 (cpp_handle_deferred_pragma): Prototype new interface.
2349
2350 * internal.h (struct cpp_reader): Add directive_result.
2351 * directives.c (struct pragma_entry): Add is_internal field;
2352 give boolean fields type bool.
2353 (start_directive): Initialize pfile->directive_result.type.
2354 (_cpp_do__Pragma): Likewise.
2355 (run_directive): Do not crash if pfile->buffer->prev is NULL.
2356 (insert_pragma_entry): Add 'internal' argument; set new->is_internal
2357 from it.
2358 (register_pragma): New static function, bulk of former
2359 cpp_register_pragma here; add 'internal' argument, pass along
2360 to insert_pragma_entry.
2361 (cpp_register_pragma): Now a wrapper around register_pragma which
2362 always passes false for 'internal' argument.
2363 (_cpp_init_internal_pragmas): Call register_pragma directly, passing
2364 true for 'internal'.
2365 (do_pragma): If CPP_OPTION (pfile, defer_pragmas) and this isn't
2366 an internal pragma, save text till the end of the line as a CPP_PRAGMA
2367 token instead of executing the pragma.
2368 (cpp_handle_deferred_pragma): New interface.
2369 * lex.c (token_spellings): Adjust OP and TK definitions to
2370 match changes to cpplib.h.
2371 (_cpp_lex_token): Check for a directive-result token and
2372 return it if present.
2373 (cpp_token_val_index): Handle CPP_PRAGMA.
2374 * macro.c (cpp_builtin_macro_text): Correct comment.
2375 (builtin_macro): Handle directive-result tokens from _cpp_do__Pragma.
2376
0fd9e8dd
SB
23772004-09-06 Serge Belyshev <belyshev@lubercy.com>
2378
2379 PR preprocessor/14699
2380 * symtab.c (ht_dump_statistics): Change type of sum_of_squares
2381 from size_t to double.
2382
39b8ce7f
AS
23832004-08-28 Andreas Schwab <schwab@suse.de>
2384 Andreas Jaeger <aj@suse.de>
2385
2386 * configure.ac: Set PACKAGE correctly.
2387 * configure: Regenerated.
2388
5d1f4b27
PB
23892004-08-25 Paolo Bonzini <bonzini@gnu.org>
2390
2391 * Makefile.in: Add back top_builddir.
2392
078e3ffe
PB
23932004-08-25 Paolo Bonzini <bonzini@gnu.org>
2394
2395 * configure.ac: Replace Automake macro invocations
2396 with manual Autoconf checks and substitutions.
2397 * configure: Regenerate.
2398 * aclocal.m4: Regenerate.
2399 * config.in: Regenerate.
2400 * Makefile.am: Removed.
2401 * Makefile.in: Heavy simplification and reorganization.
2402
b3f8d95d
MM
24032004-08-09 Mark Mitchell <mark@codesourcery.com>
2404
2405 * configure.ac (arm*-*-eabi*): New target.
2406 (arm*-*-symbianelf*): Likewise.
2407 * configure: Regenerated.
2408
72bb2c39
BI
24092004-07-24 Bernardo Innocenti <bernie@develer.com>
2410
2411 * internal.h (xnew, xcnew, xnewvec, xcnewvec, xobnew): Remove.
2412 * directives.c: Use XNEW-family macros from libiberty.
2413 * lex.c: Likewise.
2414 * macro.c: Likewise.
2415 * cpplib.h (cpp_deps_style): Export enum with name.
2416
21b11495 24172004-07-23 Matthias Klose <doko@debian.org>
72bb2c39 2418
21b11495 2419 * init.c (init_library): Use PACKAGE for the text domain.
85eac2a0 2420
a23ee064
AP
24212004-07-16 Andris Pavenis <pavenis@latnet.lv>
2422
2423 PR preprocessor/16366
2424 * internal.h (struct cpp_reader): New field dir_hash.
2425 * files.c (make_cpp_dir): Use dir_hash, not file_hash.
2426 (_cpp_init_files, _cpp_cleanup_files): Update for new field.
2427
a09d4744
NB
24282004-07-04 Neil Booth <neil@duron.akihabara.co.uk>
2429
2430 PR preprocessor/16192
2431 PR preprocessor/15913
2432 PR preprocessor/15572
2433 * expr.c (_cpp_parse_expr): Handle remaining cases where an
2434 expression is missing.
2435 * init.c (post_options): Traditional cpp doesn't do // comments.
2436
f58f7def
PB
24372004-06-30 Per Bothner <per@bothner.com>
2438
2439 * include/line-map.h (fileline): Remove old typedef.
2440 * internal.h (struct cpp_reader): Use source_location typedef instead.
2441
e83d8d43
ZW
24422004-06-26 Zack Weinberg <zack@codesourcery.com>
2443
2444 Partially revert patch of 2004-06-05.
2445 * files.c (search_cache): Remove pfile argument. Don't check
2446 for file that would be found by "" or <> search here...
2447 (_cpp_find_file): ...do it here, before calling find_file_in_dir.
2448 Do not apply directory-of-current-file correction to files
2449 found by this check. Rearrange code slightly.
2450
c0d578e6
GK
24512004-06-21 Geoffrey Keating <geoffk@apple.com>
2452
2453 * files.c (should_stack_file): Correct swapped parameters to call
2454 to cb.read_pch.
2455 * pch.c (cpp_valid_state): Handle -fpreprocessed.
2456
159d5224
PB
24572004-06-15 Paolo Bonzini <bonzini@gnu.org>
2458
2459 * Makefile.in: Regenerate with automake 1.8.5.
2460 * aclocal.m4: Likewise.
2461 * configure: Regenerate.
2462
2fac9c01
ZW
24632004-06-11 Zack Weinberg <zack@codesourcery.com>
2464
2465 * configure.ac: Don't invoke ACX_HEADER_STDBOOL.
2466 * configure, config.in: Regenerate.
2467 * system.h: Unconditionally define bool as unsigned char,
2468 BOOL_BITFIELD as unsigned int.
2469 * .cvsignore: New file.
2470
d8044160
GK
24712004-06-09 Geoffrey Keating <geoffk@apple.com>
2472
2473 * traditional.c (push_replacement_text): Set macro->traditional.
2474 (save_replacement_text): Likewise.
2475 * pch.c (cpp_write_pch_state): Don't write list of defined macros.
2476 (struct save_macro_item): Delete.
2477 (struct save_macro_data): Use a character array not the previous
2478 structured format.
2479 (save_macros): Save macro as text not as internal structures.
2480 (cpp_prepare_state): Update for changes to save_macro_data.
2481 (cpp_read_state): Don't read macros defined in PCH. Restore
2cf22451 2482 -D macros as text.
d8044160
GK
2483 * macro.c (create_iso_definition): Honour alloc_subobject.
2484 Clear traditional flag.
2485 (_cpp_create_definition): Honour alloc_subobject.
2486 * lex.c (cpp_token_val_index): New.
2487 * internal.h: Include cpp-id-data.h.
2488 (uchar): Move definition to cpp-id-data.h.
2489 (U): Likewise.
2490 (cpp_macro): Likewise.
2491 * directives.c (struct answer): Move to cpp-id-data.h.
2492 (do_assert): Honour alloc_subobject.
2cf22451
ZW
2493
2494 * include/symtab.h (struct ht): Add field 'alloc_subobject'.
2495 * include/cpplib.h (struct cpp_string): Add GTY marker.
2496 (enum cpp_token_fld_kind): New.
2497 (struct cpp_token): Add GTY markers.
2498 (cpp_token_val_index): Prototype.
2499 (CPP_HASHNODE_VALUE_IDX): New.
2500 (struct cpp_hashnode): Don't skip fields of 'value' when marking.
2501 * include/cpp-id-data.h: New file.
d8044160 2502
0ca8e815
PB
25032004-06-09 Paolo Bonzini <bonzini@gnu.org>
2504
2505 * Makefile.am (all-local): New.
2506 * Makefile.in: Regenerate.
2507
b51fa00f
RS
25082004-06-06 Roger Sayle <roger@eyesopen.com>
2509
2510 * Makefile.am (LIBICONV): Declare.
2511 (makedepend_LDADD): Use LIBICONV.
2512 * Makefile.in: Regenerate.
2513
5e2f3f39
AP
25142004-06-05 Andrew Pinski <pinskia@physics.uc.edu>
2515
2516 * Makefile.am (LIBINTL): Declare
2517 (makedepend_LDADD): Use LIBINTL.
2518 * Makefile.in: Regenerate.
2519
c6e83800
ZW
25202004-06-05 Zack Weinberg <zack@codesourcery.com>
2521
2522 * Makefile.am: Add makedepend.
2523 * Makefile.in, aclocal.m4: Regenerate.
2524 * charset.c: Insert a space to avoid a warning.
2525 * directives.c: Include mkdeps.h.
2526 (_cpp_handle_directive): Reenable macro expander if appropriate.
2527 (undefine_macros): Inline body of _cpp_free_definition for speed.
2528 Do not call undef callback or _cpp_warn_if_unused_macro.
2529 (cpp_get_deps): New interface.
2530 * files.c (search_cache): Add pfile argument. Check for file
2531 that would be found by "" or <> search here...
2532 (_cpp_find_file): ...not here. Correct recorded start_dir of
2533 files found by directory-of-current-file search that would be
2534 found by "" or <> search.
2535 * init.c (cpp_add_dependency_target): Delete.
2536 * internal.h (struct lexer_state): Add discarding_output flag.
2537 * lex.c (lex_identifier): Compute hash function while scanning.
2538 * macro.c (cpp_scan_nooutput): Disable macro expansion outside
2539 directives.
2540 * makedepend.c: New file.
2541 * mkdeps.c (struct deps): Add vpath vector.
2542 (apply_vpath, deps_add_vpath): New function.
2543 (deps_free): Free vpath vector.
2544 (deps_add_dep, deps_add_target): Use apply_vpath.
2545 * symtab.c (calc_hash): Use HT_HASHSTEP and HT_FINISH.
2546 (ht_lookup_with_hash): New function.
2547 * cpplib.h, mkdeps.h: Update prototypes.
2548 * symtab.h: Update prototypes.
2549 (HT_HASHSTEP, HT_FINISH): New macros.
2550
b453c95f
GK
25512004-05-29 Geoffrey Keating <geoffk@apple.com>
2552
2553 * symtab.c (ht_create): Set entries_owned.
2554 (ht_destroy): Honour entries_owned.
2555 (ht_expand): Likewise.
2556 (ht_load): New.
2cf22451
ZW
2557 * include/symtab.h (struct ht): New field 'entries_owned'
2558 (ht_load): New prototype.
b453c95f 2559
963e23c5
PB
25602004-05-26 Paolo Bonzini <bonzini@gnu.org>
2561
2562 PR bootstrap/15651
2563 * configure.ac: Fix m4 quoting when picking
2564 the size of HOST_WIDE_INT.
2565 * configure: Regenerate.
2566
0429bc77
PB
25672004-05-25 Paolo Bonzini <bonzini@gnu.org>
2568
2569 * Makefile.am: the correct directory for
2570 gettext include files is given by @INCINTL@.
2571 * Makefile.in: Regenerate.
2572
c86dd7db
PB
25732004-05-24 Paolo Bonzini <bonzini@gnu.org>
2574
2575 * system.h [!ENABLE_NLS]: dgettext takes two
2576 parameters.
2577
4f4e53dd
PB
25782004-05-23 Paolo Bonzini <bonzini@gnu.org>
2579
2580 Moved libcpp from the gcc subdirectory to the toplevel.
2581 * Makefile.am: New file.
2582 * Makefile.in: Regenerate.
2583 * configure.ac: New file.
2584 * configure: Regenerate.
2585 * config.in: Regenerate.
2586 * charset.c: Moved from gcc/cppcharset.c. Add note about
2587 brokenness of input charset detection. Adjust for change
2588 in name of cppucnid.h.
2589 * errors.c: Moved from gcc/cpperror.c. Do not include intl.h.
2590 * expr.c: Moved from gcc/cppexp.c.
2591 * files.c: Moved from gcc/cppfiles.c. Do not include intl.h.
2592 Remove #define of O_BINARY, it is in system.h.
2593 * identifiers.c: Moved from gcc/cpphash.c.
2594 * internal.h: Moved from gcc/cpphash.h. Change header
2595 guard name. All other files adjusted to match name change.
2596 * init.c: Moved from gcc/cppinit.c.
2597 (init_library) [ENABLE_NLS]: Call bindtextdomain.
2598 * lex.c: Moved from gcc/cpplex.c.
2599 * directives.c: Moved from gcc/cpplib.c.
2600 * macro.c: Moved from gcc/cppmacro.c.
2601 * pch.c: Moved from gcc/cpppch.c. Do not include intl.h.
2602 * traditional.c: Moved from gcc/cpptrad.c.
2603 * ucnid.h: Moved from gcc/cppucnid.h. Change header
2604 guard name.
2605 * ucnid.pl: Moved from gcc/cppucnid.pl.
2606 * ucnid.tab: Moved from gcc/cppucnid.tab. Change header
2607 guard name.
2608 * symtab.c: Moved from gcc/hashtable.c.
2609 * line-map.c: Moved from gcc. Do not include intl.h.
2610 * mkdeps.c: Moved from gcc.
2611 * system.h: New file.
2cf22451
ZW
2612 * include/cpplib.h: Moved from gcc. Change header guard name.
2613 * include/line-map.h: Moved from gcc. Change header guard name.
2614 * include/mkdeps.h: Moved from gcc. Change header guard name.
2615 * include/symtab.h: Moved from gcc/hashtable.h. Change header
2616 guard name.