]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/ChangeLog
New macro expander.
[thirdparty/gcc.git] / gcc / ChangeLog
1 2000-10-28 Neil Booth <neilb@earthling.net>
2
3 New macro expander.
4
5 * cpplib.c (struct answer): New.
6 (struct if_stack): Use cpp_lexer_pos rather than line and col.
7 Rename cmacro mi_cmacro.
8 (struct directive, KANDR, STDC89, EXTENSION, COND, IF_COND, INCL,
9 IN_I): New directive and flags.
10 (skip_rest_of_line, check_eol, run_directive, glue_header_name,
11 parse_answer, parse_assertion, find_answer): New functions.
12 (parse_ifdef, detect_if_not_defined, validate_else): Remove.
13 (lex_macro_node): New function to replace parse_ifdef and
14 get_define_node.
15
16 (_cpp_handle_directive): New function, combines _cpp_check_directive
17 and _cpp_check_linemarker.
18
19 (do_define, do_undef, parse_include, do_include, do_import,
20 do_include_next, read_line_number, do_line, do_ident, do_pragma,
21 do_pragma_once, do_pragma_poison, do_pragma_dependency):
22 Update for new token getting interface.
23
24 (do_ifdef, do_ifndef, do_if, do_else, do_endif, push_conditional)
25 : Update for new multiple-include optimisation technique.
26 (do_elif): Don't forget to invalidate controlling macros.
27
28 (unwind_if_stack, cpp_defined, cpp_push_buffer, cpp_pop_buffer): Update.
29 (parse_assertion, parse_answer, find_answer, _cpp_test_assertion):
30 Functions to handle assertions with the new token interface.
31 (do_assert, do_unassert): Use them.
32
33 (cpp_define, _cpp_define_builtin, cpp_undef, cpp_assert, cpp_unassert):
34 Use run_directive.
35
36 (_cpp_init_stacks): Register directive names. Don't register special
37 nodes.
38
39 * cpperror.c (print_containing_files, _cpp_begin_message): Update to
40 new position recording regime.
41 (cpp_ice, cpp_fatal, cpp_error, cpp_error_with_line, cpp_warning,
42 cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
43 cpp_pedwarn_with_file_and_line): Update for _cpp_begin_message changes.
44 (cpp_type2name): Move to cpplex.c.
45
46 * cppexp.c (parse_charconst): spec_nodes is no longer a pointer.
47 (parse_defined): Update to handle new multiple include optimisation
48 method. Remove poisoned identifier warning.
49 (parse_assertion, TYPE_NAME): Delete.
50 (lex): Update for multiple include optimisation, removal of
51 CPP_DEFINED, to use _cpp_test_assertion for assertions and
52 cpp_token_as_text.
53 (_cpp_parse_expr): Update for MI optimisation, and to use op_as_text.
54 (op_as_text): New function, to wrap cpp_token_as_text.
55
56 * cppfiles.c (stack_include_file, _cpp_pop_file_buffer):
57 Update for MI optimisation.
58 (_cpp_execute_include): Take a token rather than 3 arguments. Fix
59 segfault on diagnostic.
60 (_cpp_compare_file_date): Take a token rather than 3 args.
61 (cpp_read_file): Work correctly for zero-length files.
62
63 * cpphash.c (_cpp_init_macros, _cpp_cleanup_macros): Rename
64 _cpp_init_hashtable and _cpp_cleanup_hashtable.
65 (cpp_lookup): Place identifiers at front of identifier pool
66 for _cpp_lookup_with_hash.
67 (_cpp_lookup_with_hash): Require identifiers to be at the front of
68 the identifier pool. Commit the memory if not already in the
69 hash table.
70
71 * cppinit.c (cpp_reader_init): Move cpp_init_completed test to top.
72 Initialise various members of cpp_reader, memory pools, and the
73 special nodes.
74 (cpp_printer_init): Delete.
75 (cpp_cleanup): Update.
76 (struct builtin, builtin_array, initialize_builtins): Update for new
77 hashnode definition and builtin handling.
78 (cpp_start_read, cpp_finish): Don't take or initialise a
79 printer. Update.
80
81 * cpplib.h (cpp_printer, cpp_toklist, CPP_DEFINED, BOL,
82 PASTED, VAR_ARGS, BEG_OF_FILE, IN_DIRECTIVE, KNOWN_DIRECTIVE,
83 T_VOID, T_SPECLINE, T_DATE, T_FILE, T_BASE_FILE, T_INCLUDE_LEVEL,
84 T_TIME, T_STDC, T_OPERATOR, T_POISON, T_MACRO, T_ASSERTION): Delete.
85 (struct cpp_pool, struct cpp_macro, struct cpp_lexer_pos,
86 struct cpp_lookahead, CPP_DHASH, enum mi_state, enum mi_ind,
87 NO_EXPAND, VARARGS_FIRST, struct cpp_token_with_pos,
88 struct toklist, struct cpp_context, struct specnodes,
89 TOKEN_LOOKAHEAD, TOKEN_BUFFSIZE, NODE_OPERATOR, NODE_POISONED,
90 NODE_BUILTIN, NODE_DIAGNOSTIC, NT_VOID, NT_MACRO, NT_ASSERTION,
91 enum builtin_type, cpp_can_paste): New.
92 (struct cpp_token): Delete line and col members.
93 (struct cpp_buffer): New member output_lineno.
94 (struct lexer_state): Delete indented, in_lex_line, seen_dot.
95 Add va_args_ok, poisoned_ok, prevent_expansion, parsing_args.
96 (struct cpp_reader): New members lexer_pos, macro_pos, directive_pos,
97 ident_pool, temp_string_pool, macro_pool, argument_pool, string_pool,
98 base_context, context, directive, mi_state, mi_if_not_defined,
99 mi_lexed, mi_cmacro, mi_ind_cmacro, la_read, la_write, la_unused,
100 mlstring_pos, macro_buffer, macro_buffer_len.
101 Delete members mls_line, mls_column, token_list, potential_control_macro,
102 temp_tokens, temp_cap, temp_alloced, temp_used, first_directive_token,
103 context_cap, cur_context, no_expand_level, paste_level, contexts, args,
104 save_parameter_spellings, need_newline, .
105 Change type of date, time and spec_nodes members.
106 Change prototypes for include and ident callbacks.
107 (struct cpp_hashnode): Change type of name. Remove union members
108 expansion and code. Add members macro, operator and builtin.
109
110 (cpp_token_len, cpp_token_as_text, cpp_spell_token, cpp_start_read,
111 cpp_finish, cpp_avoid_paste, cpp_get_token, cpp_get_line,
112 cpp_get_output_line, cpp_macro_definition, cpp_start_lookahead,
113 cpp_stop_lookahead): New prototypes.
114 (cpp_printer_init, cpp_dump_definition): Delete prototypes.
115
116 (U_CHAR, U, ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr, ufputs):
117 Move from cpphash.h.
118
119 * cpphash.h (U_CHAR, U, ustrcmp, ustrncmp, ustrlen, uxstrdup, ustrchr,
120 ufputs): Move to cpplib.h.
121 (enum spell_type, struct token_spelling, _cpp_token_spellings, TOKEN_SPELL,
122 TOKEN_NAME, struct answer, FREE_ANSWER, KANDR, STDC89, EXTENSION,
123 COND, EXPAND, INCL, COMMENTS, IN_I, struct directive, directive_handler,
124 struct spec_nodes, _cpp_digraph_spellings, _cpp_free_temp_tokens,
125 _cpp_init_input_buffer, _cpp_grow_token_buffer, _cpp_init_toklist,
126 _cpp_clear_toklist, _cpp_expand_token_space, _cpp_expand_name_space,
127 _cpp_equiv_tokens, _cpp_equiv_toklists, _cpp_process_directive,
128 _cpp_run_directive, _cpp_get_line, _cpp_get_raw_token, _cpp_glue_header_name,
129 _cpp_can_paste, _cpp_check_directive, _cpp_check_linemarker,
130 _cpp_parse_assertion, _cpp_find_answer): Delete.
131 (VALID_SIGN, ALIGN, POOL_FRONT, POOL_LIMIT, POOL_BASE, POOL_SIZE,
132 POOL_USED, POOL_COMMIT, struct cpp_chunk, _cpp_lex_token, _cpp_init_pool,
133 _cpp_free_pool, _cpp_pool_reserve, _cpp_pool_alloc, _cpp_next_chunk,
134 _cpp_lock_pool, _cpp_unlock_pool, _cpp_test_assertion,
135 _cpp_handle_directive, DSC): New.
136 (struct include_file): New member defined.
137
138 (DO_NOT_REREAD, _cpp_begin_message, _cpp_execute_include,
139 _cpp_compare_file_date): Update.
140 (_cpp_pop_context, _cpp_get_token, _cpp_free_lookaheads, _cpp_push_token): New.
141 (_cpp_init_macros, _cpp_cleanup_macros): Rename to _cpp_init_hashtable,
142 _cpp_cleanup_hashtable.
143
144 * Makefile.in: Remove cppoutput.c.
145
146 * cppoutput.c: Delete
147
148 * fixheader.c (read_scan_file): Update for new cpp_get_token
149 prototype.
150 (recognized_function): New argument LINE.
151
152 * scan-decls.c (skip_to_closing_brace, scan_decls): Update for
153 new cpp_get_token prototype.
154
155 * scan.h (recognized_function): Update prototype.
156
157 * po/POTFILES.in: Remove cppoutput.c.
158
159 2000-10-27 Mark Mitchell <mark@codesourcery.com>
160
161 * c-typeck.c (check_init_type_bitfields): Remove.
162 (constructor_incremental): Likewise.
163 (struct constructor_stack): Remove incremental bit.
164 (struct initializer_stack): Likewise.
165 (start_init): Don't play with constructor_incremental.
166 (finish_init): Likewise.
167 (really_start_incremental_init): Likewise.
168 (push_init_level): Likewise.
169 (pop_init_level): Likewise.
170 (output_init_level): Likewise.
171 (output_pending_init_elements): Likewise.
172
173 2000-10-21 Mike Coleman <mcoleman2@kc.rr.com>
174
175 * c-pragma.c (handle_pragma_pack): Initialize align to -1.
176 Improve error messages. Correct parsing of
177 #pragma pack(pop [,id]). Do not check the user-supplied
178 alignment if we're popping.
179
180 * gcc.dg/pack-test-1.c: New test case.
181 * gcc.dg/pack-test-2.c: New test case.
182 * gcc.dg/pack-test-1.h: New file.
183
184 2000-10-27 Neil Booth <neilb@earthling.net>
185
186 * cpp.texi: Update.
187
188 2000-10-27 Kelley Cook <kelley.cook@home.com>
189
190 * invoke.texi: Document -mintel-syntax
191
192 2000-10-27 Richard Henderson <rth@redhat.com>
193
194 * invoke.texi: Document -frename-registers. Add it to -O3.
195 * toplev.c (rest_of_compilation): Run regrename before ifcvt2.
196 (enum dump_file_index, dump_file): Update order.
197 (main): Set flag_rename_registers at -O3.
198
199 2000-10-27 Richard Henderson <rth@redhat.com>
200
201 * config/alpha/alpha.h (enum reg_class): Add PV_REG.
202 (REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGNO_REG_CLASS): Update.
203 (REG_CLASS_FROM_LETTER): Assign it to 'c'.
204 * config/alpha/alpha.md (call_osf_1): Use it.
205 (call_value_osf_1): Likewise.
206
207 * config/ia64/ia64.c: Revert 10-23 patch.
208 (ia64_hard_regno_rename_ok): New.
209 * config/ia64/ia64-protos.h: Declare it.
210 * config/ia64/ia64.h (HARD_REGNO_RENAME_OK): Use it.
211
212 2000-10-27 Bernd Schmidt <bernds@redhat.co.uk>
213 Richard Henderson <rth@redhat.com>
214
215 * regrename.c: Rewrite to handle multi-register modes and
216 cond_exec instructions.
217 * Makefile.in (regrename.o): Update dependancies.
218 * recog.h (struct operand_alternative): Add is_address.
219 * recog.c (preprocess_constraints) [case 'p']: Set it.
220
221 2000-10-27 Zack Weinberg <zack@wolery.stanford.edu>
222
223 * configure.in: If not NO_MINUS_C_MINUS_O, substitute
224 OUTPUT_OPTION with '-o $@'. Make zlibdir, zlibinc relative to
225 top level. Kill oldstyle_subdirs. Do not include
226 $srcdir/$s/Makefile.in in all_lang_makefiles, but do include
227 $outputs. Do not run configure.lang from config.status.
228 Rearrange warning-flag logic to correspond to what the
229 makefile wants. Put special vax stage1 options in
230 @stage1_flags@ not @stage1_warn_cflags@. Don't do anything
231 with extra_c_objs, extra_cxx_objs, or extra_cpp_objs.
232 (--enable-c-cpplib): AC_SUBST(maybe_cpplib) with "libcpp.a" if
233 switch is given, nothing otherwise.
234 * configure.lang: Delete.
235
236 * Makefile.in: Expunge all traces of extra_c_objs,
237 extra_cxx_objs, and extra_cpp_objs. Set MAYBE_CPPLIB from
238 @maybe_cpplib@. Add $(MAYBE_CPPLIB) to C_AND_OBJC_OBJS. Set
239 warning options via a three level scheme so that -pedantic and
240 -Wtraditional are not used for non-C front ends: LOOSE_WARN,
241 STRICT1_WARN, STRICT2_WARN -> $(@D)-warn, GCC_WARN_CFLAGS ->
242 WARN_CFLAGS. Distinguish STAGE1_CFLAGS from BOOT_CFLAGS.
243 Add -I$(@D) and -I$(srcdir)/$(@D) to INCLUDES.
244 Set OUTPUT_OPTION, ZLIB, ZLIBINC. Do not set P,
245 LANG_FLAGS_TO_PASS. Add OUTPUT_OPTION to all object-file
246 generation rules. Wrap all rules that change the current
247 directory in parentheses; pmake doesn't spawn a new shell for
248 each command. Expunge all references to $(P). When one
249 command depends on another and they're run all at once, use &&
250 to separate them, not ;. Add libgcc_s$(SHLIB_EXT) to files
251 deleted on make clean. Force OUTPUT_OPTION='-o $@' in stage2
252 and beyond.
253
254 * objc/Make-lang.in: Wrap all rules that change the current
255 directory in parentheses. Expunge all references to $(P).
256 When one command depends on another and they're run all at
257 once, use && to separate them, not ;. Add OUTPUT_OPTION to
258 all object-file generation rules. Delete obsolete variables.
259 * objc/Makefile.in: Delete.
260
261 2000-10-27 Jakub Jelinek <jakub@redhat.com>
262
263 * calls.c (expand_call): If sibcall_failure is set during pass 1,
264 clear tail_call_insns as well.
265
266 2000-10-27 Nick Clifton <nickc@redhat.com>
267
268 * config/arm/arm-protos.h (arm_function_ok_for_sibcall): Add
269 prototype.
270
271 2000-10-26 Richard Henderson <rth@redhat.com>
272
273 * calls.c (expand_call): Supress sibcall if we have a
274 BLKmode return in registers.
275
276 2000-10-26 Bernd Schmidt <bernds@redhat.co.uk>
277
278 * ia64.h (PREFERRED_RELOAD_CLASS): Force floating point constants
279 into memory.
280
281 2000-10-26 Nathan Sidwell <nathan@codesourcery.com>
282
283 * tree.c (make_node, case 't'): Set alignment to that of
284 char_type_node.
285 * expr.c (move_by_pieces_ninsns): Abort if some length remains.
286
287 2000-10-25 Mark Mitchell <mark@codesourcery.com>
288
289 * Makefile.in (site.exp): Define HAVE_LIBSTDCXX_V3.
290 * configure.in (enable-libstdcxx-v3): Arrange to have
291 HAVE_LIBSTDCXX_V3 substituted into the output files.
292
293 2000-10-25 Richard Henderson <rth@redhat.com>
294
295 * recog.c (constrain_operands): Initialize which_alternative
296 before no alternatives early exit.
297
298 * cse.c (find_comparison_args): Check that we can reverse a
299 comparison if needed before accepting the substitution.
300
301 * reload.c (find_reloads_address_part): Kill rtx obstack hackery.
302
303 * simplify-rtx.c (simplify_relational_operation): Sign extend
304 low words before sign extending to high words.
305
306 2000-10-25 Nick Clifton <nickc@redhat.com>
307
308 * config/mcore/mcore.c: Include config.h before system.h.
309
310 2000-10-25 Ray Essick <essick@ddna.labs.mot.com>
311
312 * config/mcore/mcore.md (return): Force function epilogue to
313 always be generated to work around epilogue suppression bug in
314 M*Core backend.
315
316 2000-10-25 Joseph S. Myers <jsm28@cam.ac.uk>
317
318 * c-decl.c (grokdeclarator): Move warning for qualified void
319 return types with -pedantic to when the function type is
320 constructed. At -W, warn in general for qualified function return
321 types, except for volatile void.
322 * invoke.texi: Document this new warning at -W.
323
324 2000-10-25 Neil Booth <neilb@earthling.net>
325
326 * cpp.texi: Update with implementation-defined behavior and
327 internal limits.
328
329 2000-10-25 Jakub Jelinek <jakub@redhat.com>
330
331 * stor-layout.c (layout_type): If TYPE_ALIAS_SET was already set on the
332 incomplete type force it into alias set 0.
333
334 Wed Oct 25 01:02:44 EDT 2000 John Wehle (john@feith.com)
335
336 * alias.c: Include basic-block.h.
337 (loop_p): New function.
338 (mark_constant_function): Use it.
339 * Makefile.in (alias.o): Update dependencies.
340
341 2000-10-24 Aldy Hernandez <aldyh@redhat.com>
342
343 * config/mn10300/mn10300.c (secondary_reload_class): Treat pseudos
344 like memory.
345
346 2000-10-24 Jim Wilson <wilson@cygnus.com>
347
348 * expmed.c (store_bit_field): Move integer pun code down after
349 code that calls emit_move_insn for entire register move.
350 * stor-layout.c (compute_record_mode): Revert Mar 25, Aug 18, and
351 Oct 20 changes. Only store mode in TYPE_MODE if RECORD_TYPE.
352
353 2000-10-24 Richard Henderson <rth@cygnus.com>
354
355 * rtlanal.c (rtx_unstable_p, rtx_varies_p): Don't consider pic
356 register stable if PIC_OFFSET_TABLE_REG_CALL_CLOBBERED.
357
358 2000-10-24 Aldy Hernandez <aldyh@redhat.com>
359
360 * gcse.c (cprop_insn): do not propagate constants into jump_insn
361 for machines with CC0 more than once.
362
363 2000-10-24 Richard Henderson <rth@cygnus.com>, Aldy <aldyh@cygnus.com>
364
365 * config/mn10300/mn10300.h (PREFERRED_RELOAD_CLASS): Treat
366 pseudos just like memory.
367
368 2000-10-24 Alexandre Oliva <aoliva@redhat.com>
369
370 * combine.c (distribute_notes): Discard REG_LIBCALL and REG_RETVAL
371 when deleting libcall sequence collapsed to a single instruction.
372
373 2000-10-24 Andrew Haley <aph@cygnus.co.uk>
374
375 * expr.c (do_store_flag): Don't crash if either side of a
376 comparison is error_mark_node.
377
378 2000-10-24 Jakub Jelinek <jakub@redhat.com>
379
380 * sibcall.c (purge_mem_unchanging_flag): New function.
381 (optimize_sibling_and_tail_recursive_calls): Call it.
382
383 2000-10-24 Philipp Thomas <pthomas@suse.de>
384
385 * Makefile.in (check-po): New target for doing checks in the po
386 subdir if all languages configured.
387 (CHECK_TARGETS): Add @CHECK_PO@, replaced with check-po via
388 configure if NLS is enabled.
389 * configure.in: If NLS is enabled, substitute CHECK_PO by check-po,
390 otherwise leave empty.
391 * configure: Regenerate.
392
393 2000-10-23 Diego Novillo <dnovillo@cygnus.com>
394
395 * i386.c (print_operand): Handle new 'A' formatting code.
396 387 opcodes need suffixes even with -mintel-syntax.
397 Check for explicit size override (codes 'b', 'w' and 'k').
398 (print_operand_address): Check if register prefix is needed when
399 emitting `ds' segment override.
400 * i386.h: Add comment about new 'A' formatting code.
401 * i386.md (jump and call patterns): Emit absolute references using %A.
402
403 2000-10-23 Richard Henderson <rth@cygnus.com>
404
405 * config/ia64/ia64.c (ia64_expand_prologue): Mark extra
406 output registers as fixed.
407 (ia64_function_epilogue): Undo output fixation.
408
409 2000-10-23 Richard Henderson <rth@cygnus.com>
410
411 * config/alpha/alpha.md: Add names for all unnamed insns; use
412 define_insn_and_split in some obvious places.
413 (lda): Remove.
414 (zero_extendqihi2): Use an expander w/ nonimmediate_operand for BWX.
415 (zero_extendqisi2, zero_extendqidi2): Likewise.
416 (zero_extendhisi2, zero_extendhidi2): Likewise.
417 (abs splitters): Fix match_scratch operand number.
418 (bcc_reverse): Swap pc & label instead of non-canonical compare.
419
420 2000-10-23 Jim Wilson <wilson@cygnus.com>
421
422 * ia64.c (ia64_print_operand, case 'r'): Correct comment. Handle
423 CONST_INT.
424 * ia64.md (cmpsi_adjusted): Use %r3.
425 (cmpdi_adjusted): Likewise.
426
427 2000-10-23 Diego Novillo <dnovillo@cygnus.com>
428
429 * config/i386/att.h (ASM_FILE_START): Define.
430
431 2000-10-23 Diego Novillo <dnovillo@cygnus.com>
432
433 * config/i386/linux.h (ASM_FILE_START): Define.
434
435 Wed Oct 18 11:16:40 2000 Donald Lindsay <dlindsay@cygnus.com>
436
437 * gcc/configure.in: m68k-coff tm_file should not have libgloss.h,
438 since this (only) drags in a crt0.o reference that the .ld files
439 also introduce.
440
441 2000-10-23 Geoff Keating <geoffk@cygnus.com>
442
443 * reload1.c (reload_reg_reaches_end_p): A RELOAD_OTHER can
444 overwrite the value in a RELOAD_FOR_INPUT and other kinds of
445 reloads just like an RELOAD_FOR_OUTPUT would.
446
447 * local-alloc.c (update_equiv_regs): Add an abort(). When
448 deleting or moving insns, update reg_equiv[regno].init_insns.
449
450 2000-10-23 Mark Mitchell <mark@codesourcery.com>
451
452 * c-tree.texi: Improve documentation for IF_STMTs and related
453 conditional statements.
454
455 2000-10-22 Mark Mitchell <mark@codesourcery.com>
456
457 * expr.c (do_preexpand_calls): Remove.
458 (same_from_p): Don't use CALL_EXPR_RTL.
459 (expand_expr): Don't call preexpand_calls, or use CALL_EXPR_RTL.
460 (preexpand_calls): Remove.
461 * tree.c (first_rtl_op): Remove CALL_EXPR case.
462 (unsave_expr_1): Likewise.
463 * tree.def (CALL_EXPR): Give it only two slots.
464 * tree.h (CALL_EXPR_RTL): Remove.
465
466 2000-10-21 Chandrakala Chavva <cchavva@redhat.com>
467
468 * libgcc-std.ver (__addvsi3, __addvdi3, __subvsi3, __subvdi3,
469 __mulvsi3, __negvsi2, __negvdi2, __absvsi2, __absvdi2, __mulvdi3):
470 New functions.
471
472 2000-10-22 Alexandre Oliva <aoliva@redhat.com>
473
474 * calls.c (combine_pending_stack_adjustment_and_call): Don't
475 adjust stack when unadjusted_alignment ends up as zero.
476
477 2000-10-22 Joseph S. Myers <jsm28@cam.ac.uk>
478
479 * fixinc/genfixes: Remove EGCS reference.
480 * install.texi: Remove EGCS reference.
481 * INSTALL: Regenerate.
482
483 2000-10-22 Mark Mitchell <mark@codesourcery.com>
484
485 * tree.h (TYPE_IS_SIZETYPE): Add more documentation.
486
487 2000-10-21 Joseph S. Myers <jsm28@cam.ac.uk>
488
489 * diagnostic.c: Remove EGCS reference in comment.
490
491 Sat Oct 21 08:24:25 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
492
493 * loop.c (strength_reduce): Fix error in last change.
494
495 2000-10-20 David Edelsohn <edelsohn@gnu.org>
496
497 * Makefile.in (SHLIB_NM_FLAGS): New.
498 (libgcc.mk): Pass it.
499 * mklibgcc.in (libgcc.map): Use it.
500
501 * rs6000/t-aix43 (SHLIB_EXT, SHLIB_LINK, SHLIB_LIBS,
502 SHLIB_MKMAP, SHLIB_MAPFILES, SHLIB_NM_FLAGS): New.
503
504 2000-10-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
505
506 * mips.h (REG_CLASS_FROM_LETTER): Cast array arg to unsigned char.
507
508 * sparc.c (load_pic_register): Delete unused varaible.
509
510 * libgcc2.c (__addvsi3): Delete unused variable.
511
512 * libgcc2.h (__absvsi2, __absvdi2, __addvsi3, __addvdi3,
513 __subvsi3, __subvdi3, __mulvsi3, __mulvdi3, __negvsi2,
514 __negvdi2): Prototype.
515
516 * ssa.c (apply_delayed_renames): Avoid undefined operation.
517
518 * toplev.c (display_target_options): Make static to match
519 prototype. Delete empty declaration.
520
521 2000-10-20 Tom Tromey <tromey@cygnus.com>
522
523 * cppspec.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
524 * gcc.c (DEFAULT_WORD_SWITCH_TAKES_ARG): Added -MF and -MT.
525
526 Fri Oct 20 17:05:49 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
527
528 * expr.c (expand_expr, case SAVE_EXPR): Set RTX_UNCHANGING_P on
529 returned MEM.
530 (expand_expr_unaligned, case ARRAY_REF): Check that index is
531 a constant before comparing it; use tree_low_cst.
532 * tree.c (save_expr): Set TREE_READONLY.
533 (substitute_expr): Return inside of NON_LVALUE_EXPR.
534 (build, build1): Set TREE_READONLY if all operands are.
535 (build_index_type): If upper bound is a negative number, lower
536 bound is zero and sizetype is unsigned, use upper bound of one and
537 lower of zero.
538
539 2000-10-20 David Edelsohn <edelsohn@gnu.org>
540
541 * gcc.c (process_command, main): Use "because" instead of
542 "since" in error messages.
543
544 Fri Oct 20 13:33:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
545
546 * stor-layout.c (compute_record_mode): Use tree_low_cst.
547 Don't use mode of field for record unless sizes are the same.
548 (layout_type, case ARRAY_TYPE): Remove special bounds handling
549 previously added for Ada; also change to using host_integerp
550 and tree_low_cst.
551
552 * loop.c (strength_reduce): Show when new register made for
553 giv is known to be a pointer and its aligment if so and known.
554 (loop_dump_aux): Show VERBOSE parameter unused.
555
556 * gcse.c (set_hash_table_size): Now unsigned.
557 * sdbout.c (template_name_p): Add "const" to avoid warnings.
558 (sdbout_record_type_name, plain_type_1, sdbout_symbol): Likewise.
559 (sdbout_one_type, sdbout_parms, sdbout_reg_parms): Likewise.
560 (sdbout_end_epilogue): Remove variable NAME.
561 * system.h (getopt): Add default definition.
562 * config/alpha/alpha.c (print_operand): Don't continue processing
563 after issuing error.
564 (summarize_insn): Avoid use of UL in constant.
565
566 * function.c (locate_and_pad_parm): Use host_integerp and tree_low_cst.
567
568 * fold-const.c (force_fit_type): Unsigned values can overflow
569 if they are sizetype.
570 (int_const_binop): Don't use cache if overflows.
571
572 2000-10-20 Richard Henderson <rth@cygnus.com>
573
574 * function.c (locate_and_pad_parm): Zero alignment_pad.
575
576 * regrename.c (rr_replace_reg): Rewrite to use recog_data to
577 perform substitutions, and apply_change_group to see if it worked.
578
579 Fri Oct 20 13:33:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
580
581 * dwarf2out.c (add_bound_info): Also ignore COND_EXPR.
582
583 * combine.c (struct undo): Change int to unsigned int.
584 (do_SUBST_INT): Args are unsigned int.
585 (make_extraction, force_to_mode): Use proper type when forming mask.
586 (make_field_assignment): Likewise.
587
588 2000-10-20 Joseph S. Myers <jsm28@cam.ac.uk>
589
590 * c-common.c (check_format_info_recurse): Extract string constant
591 initializers from non-volatile constant arrays and check them as
592 formats.
593 * c-typeck.c (decl_constant_value): Don't check pedantic or check
594 for DECL_MODE (decl) != BLKmode.
595 (decl_constant_value_for_broken_optimization): New function which
596 includes these checks.
597 (default_conversion, convert_for_assignment, digest_init): Use
598 decl_constant_value_for_broken_optimization instead of
599 decl_constant_value.
600
601 2000-10-20 Mark Mitchell <mark@codesourcery.com>
602
603 * tree.h (DECL_ALIGN_UNIT): New macro.
604
605 2000-10-14 Marek Michalkiewicz <marekm@linux.org.pl>
606
607 * config/avr/avr-protos.h (avr_output_bld): New.
608 (out_shift_with_cnt): Add t_len argument.
609 * config/avr/avr.c (avr_num_arg_regs): Remove -mpack-args.
610 (output_movqi, output_movhi, output_movsisf): Optimize loading
611 any constant with exactly one bit set to NO_LD_REGS.
612 (out_shift_with_cnt): Optimize output code for size or speed,
613 depending on optimize_size. Handle small shift counts as well
614 (if not hand-optimized in ?sh??i3_out). Shifts can be done
615 with or without a scratch register, with help of __tmp_reg__
616 or __zero_reg__ if necessary. Add T_LEN argument to pass the
617 length of TEMPLATE in words, return total insn length in *LEN.
618 (ashlqi3_out, ashrqi3_out, lshrqi3_out): Change all calls to
619 out_shift_with_cnt to work with the above change.
620 (ashlhi3_out, ashlsi3_out, ashrhi3_out, ashrsi3_out, lshrhi3_out,
621 lshrsi3_out): Likewise. Optimize more known shift count cases.
622 Remove cases already well optimized in out_shift_with_cnt.
623 (avr_output_bld): New function.
624 * config/avr/avr.h (MASK_PACK_ARGS, TARGET_PACK_ARGS): Remove.
625 (TARGET_SWITCHES): Remove -mpack-args backward compatibility.
626 * config/avr/avr.md (*reload_inqi, *reload_inhi, *reload_insi):
627 Add reload_completed to insn condition - only for peepholes.
628 (ashlqi3, ashrqi3, lshrqi3): Correct insn length for shift counts
629 in a register or memory.
630 (ashlhi3, ashlsi3, ashrhi3, ashrsi3, lshrhi3, lshrsi3): Likewise.
631 Do not require a scratch register.
632 (*ashlhi3_const, *ashlsi3_const, *ashrhi3_const, *ashrsi3_const,
633 *lshrhi3_const, *lshrsi3_const): New insns and matching peepholes.
634 Optimize shifts by known count using a scratch register, but only
635 if one is still available after register allocation.
636
637 2000-10-20 J. David Anglin <dave@hiauly1.hia.nrc.ca>
638
639 * t-vax: New file. Don't build modules from libgcc1.c.
640
641 Fri Oct 20 00:57:00 EDT 2000 John Wehle (john@feith.com)
642
643 * alias.c: (mark_constant_function): Don't check pure functions.
644 Initialize and end alias analysis.
645 (nonlocal_mentioned_p): Rename from nonlocal_reference_p.
646 Don't make a special exception for recursion. Handle
647 UNSPEC_VOLATILE. Don't assume ASM_OPERANDS is non-local
648 unless it's volatile.
649
650 * local-alloc.c (equivalence): New structure.
651 (reg_equiv): Define.
652 (contains_replace_regs): Remove array and use
653 field in reg_equiv.
654 (memref_referenced_p): Likewise.
655 (no_equiv): Likewise.
656 (update_equiv_regs): Likewise.
657
658 (equiv_init_varies_p,
659 equiv_init_movable_p): New functions.
660 (update_equiv_regs): Use them. Use rtx_varies_p
661 instead of function_invariant_p. Process insns
662 from end to beginning. Allow a REG_EQUIV insn
663 within the same loop as a use to be moved, also
664 allow it to be moved out of a loop. Update
665 REG_DEAD notes when substituting into an insn.
666
667 2000-10-19 Jim Wilson <wilson@cygnus.com>
668
669 * c-decl.c (start_decl): Check for error_mark_node type before using
670 COMPLETE_TYPE_P.
671 (finish_decl): Likewise. Don't give an error if decl type is
672 already error_mark_node.
673
674 * haifa-sched.c (compute_trg_info): Add explanatory comments.
675 New local update_blocks. Use update_blocks to remove duplicates
676 when computing update blocks. Check for bblst_table overflow.
677 (schedule_block): Add explanatory comment. Reduce bblst_size by
678 factor of 2.
679 * config/ia64/ia64.md (movdi_symbolic): Document loss of REG_LABEL
680 notes.
681
682 2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
683
684 * libgcc2.c (_mulvsi3): Change variables u and v to a and b.
685
686 2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
687
688 * expmed.c: Minor corrections in comments.
689 * invoke.texi: Added desciption for the new option -ftrapv.
690
691 2000-10-19 Chandrakala Chavva <cchavva@redhat.com>
692
693 * libgcc2.c: Added the missing #endif.
694
695 Thu Oct 19 14:25:11 MET DST 2000 Jan Hubicka <jh@suse.cz>
696
697 * i386.h (CONST_OK_FOR_LETTER): Re-add 'N'; document.
698
699 2000-10-18 Chandrakala Chavva <cchavva@redhat.com>
700
701 * expmed.c (expand_mult): Don't do synth_mult optimization for -ftrapv.
702 Use smulv_optab for -ftrapv.
703 (expand_mult_highpart): Use unsigned multiply.
704 (expand_divmod): Special-case division by -1.
705 For EXACT_DIV_EXPR, do right shift first, then the multiply.
706 For complex divide, use abs with unsigned result.
707 * expr.c (force_operand): Use unsigned multiply.
708 (expand_expr): Use overflow-trapping optabs for signed types if
709 flag_trapv.
710 If flag_trapv, don't generate a recursive call with EXPAND_SUM
711 if the type is signed and the original call wasn't EXPAND_SUM or
712 EXPAND_INITIALIZER.
713 * expr.h (addv_optab, subv_optab, smulv_optab, sdivv_optab): Declare.
714 (negv_optab, absv_optab): Declare.
715 * flags.h (flag_trapv): Declare.
716 * genopinit.c (optabs): Add entries for addv_optab, subv_optab,
717 smulv_optab, sdivv_optab, negv_optab and absv_optab.
718 (gen_insn): Interpret '$P' as requiring an integer mode,
719 including partial integer modes.
720 * loop.c (emit_iv_add_mult): Use unsigned expand_mult_add.
721 (product_cheap_p): Use unsigned expand_mult.
722 * optabs.c (addv_optab, subv_optab, smulv_optab, sdivv_optab): Define.
723 (negv_optab, absv_optab): Define.
724 (expand_binop): Use overflow-trapping optabs for signed types if
725 flag_trapv.
726 Handle negv_optab libe neg_optab.
727 (expand_abs): Take result_unsignedp argument instead of unsignedp one.
728 Use overflow-trapping optabs for signed result if flag_trapv.
729 (expand_complex_abs): Use overflow-trapping optabs for signed types if
730 flag_trapv.
731 Don't open-code complex absolute-value operation for flag_trapv.
732 (init_optabs): Initialize addv_optab, subv_optab, smulv_optab,
733 sdivv_optab, negv_optab and absv_optab.
734 * toplev.c (flag_trapv): Define.
735 (lang_independent_options f_options): Include flag_trapv.
736 * tree.h (TYPE_TRAP_SIGNED): Define.
737 * libgcc2.c (__addvsi3, __addvdi3, __subvsi3,__subvsi3, __subvdi3,
738 __mulvsi3, __negvsi2, __negvdi2, __absvsi2, __absvdi2, __mulvdi3):
739 New functions.
740 * Makefile.in: add _absvsi2 _absvdi2 _addvsi3 _addvdi3 _subvsi3
741 _subvdi3 _mulvsi3 _mulvdi3 _negvsi2 _negvdi2.
742
743 2000-10-18 Geoffrey Keating <geoffk@cygnus.com>
744 David V. Henkel-Wallace <gumby@cygnus.com>
745
746 * config/i386/t-netware: Bring in from the Red Hat tree.
747 * config/i386/netware.h: Likewise.
748 * config/netware.h: Likewise.
749 * config/rs6000/netware.h: Delete.
750 * configure.in: Add i[34567]86-*-netware.
751 * configure: Hand-edit to match configure.in change.
752
753 2000-10-18 Mark Mitchell <mark@codesourcery.com>
754
755 * c-common.h (flag_no_builtin): Declare.
756 (flag_no_nonansi_builtin): Likewise.
757 (c_common_nodes_and_builtins): Change prototype.
758 * c-common.c (flag_no_builtin): New variable.
759 (flag_no_nonansi_builtin): Likewise.
760 (c_common_nodes_and_builtins): Remove parameters. Adjust
761 accordingly.
762 * c-decl.c (flag_no_builtin): Remove.
763 (flag_no_nonansi_builtin): Likewise.
764 (init_decl_processing): Adjust call to
765 c_common_nodes_and_builtins.
766
767 2000-10-18 Marc Espie <espie@openbsd.org>
768
769 * tm.texi (LIBGCC_SPEC): Synch with reality.
770
771 2000-10-18 Joseph S. Myers <jsm28@cam.ac.uk>
772
773 * c-common.c (check_format_types): Check for writing through a
774 NULL pointer argument.
775
776 2000-10-18 Hans-Peter Nilsson <hp@axis.com>
777
778 * tm.texi (Exception Region Output): Document
779 DWARF_CIE_DATA_ALIGNMENT.
780 * dwarf2out.c (DWARF_CIE_DATA_ALIGNMENT): Wrap definition in
781 #ifndef.
782 [ENABLE_CHECKING] (reg_save): Abort if offset is not a multiple of
783 DWARF_CIE_DATA_ALIGNMENT.
784
785 2000-10-18 Michael Hayes <mhayes@cygnus.com>
786
787 * basic-block.h (struct loop): Delete fields pre_header_root
788 and pre_header_trace and replace with pre_header_edges
789 and num_pre_header_edges.
790 * flow.c (flow_loop_dump): Dump pre_header_edges.
791 (flow_loops_free): Free pre_header_edges.
792 (flow_loop_pre_header_scan): Calculate pre_header_edges.
793
794 2000-10-18 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
795
796 * contrib.texi: Update references to steering committee members
797 and Jeff Law's entry.
798
799 2000-10-18 Joseph S. Myers <jsm28@cam.ac.uk>
800
801 * c-common.c (CPLUSPLUS_STD_VER, C_STD_VER, C_STD_NAME): Define.
802 (maybe_read_dollar_number, check_format_info_main): Use them for
803 pedantic warning messages.
804
805 2000-10-18 Joseph S. Myers <jsm28@cam.ac.uk>
806
807 * c-common.c (check_format_info_main): Minor cleanup: move
808 variables into inner scopes; initialize declarations where
809 appropriate; don't hardcode "scanf" name on warning for zero
810 width.
811
812 2000-10-17 Mark Mitchell <mark@codesourcery.com>
813
814 * c-common.c (back_end_hook): New variable.
815 * c-common.h (back_end_hook): Declare it.
816 * c-lang.c (finish_file): Use it.
817
818 * emit-rtl.c (init_emit_once): Initialize the const_int_htab
819 earlier.
820
821 2000-10-18 Jan Hubicka <jh@suse.cz>
822
823 * i386.c (ix86_comparison_operator, put_condition_code,
824 ix86_match_ccmode, ix86_cc_mode): Handle CCRCmode.
825 (ix86_expand_strlensi_unroll_1): Use CCRCmode.
826 * i386.h (EXTRA_CC_MODES): Add CCRCmode.
827 * i386.md (adddi and negdi splitter): Use CCRCmode.
828 (add?i_3, add?i_4, add?i_5): Use CCRCmode; swap operands
829 (subsi3_carry): add '*'
830 (addsi3_carry_rc, subsi3_carry_rc, x86_movsicc_0_m1_rc): New.
831 (cmp to add peep2): Use CCRCmode; swap operands.
832
833 2000-10-18 Kazu Hirata <kazu@hxi.com>
834
835 * h8300.c: Fix a comment typo.
836 (round_frame_size): New.
837 (compute_saved_regs): Likewise.
838 (push): Likewise.
839 (pop): Likewise.
840 (push_order): Remove.
841 (pop_order): Likewise.
842 (function_prologue): Rearrange code for readability.
843 (function_epilogue): Likewise.
844
845 * config/h8300/h8300.md: Remove an unnecessary sign_extend
846 expander that is used when not optimizing. Output a tab after
847 each assembly insns.
848
849 * reorg.c: Fix formatting.
850
851 2000-10-17 Joern Rennecke <amylaar@redhat.co.uk>
852
853 * reload1.c (move2add_note_store): Check for simple
854 auto-inc in destination.
855
856 2000-10-17 Michael Chastain <chastain@redhat.com>
857
858 * config/i386/i386-aout.h: define INT_ASM_OP.
859
860 Tue Oct 17 20:11:08 2000 Alan Modra <alan@linuxcare.com.au>
861
862 * pa.c (print_operand): Handle case 'c' for .vtable_inherit
863
864 Tue Oct 17 20:05:51 2000 Martin Buchholz <martin@xemacs.org>
865
866 * i370.md: Fix spelling typo.
867
868 2000-10-17 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
869
870 * function.c (locate_and_pad_parm): Don't align stack unconditionally.
871 Fixes execute/20001017-1.c on powerpc-linux-gnu.
872
873 * expr.c (store_constructor): Apply MEM_ALIAS_SET to MEMs only.
874 * rs6000/rs6000.c (rs6000_hash_constant): Use X0INT to access a
875 LABEL_REF.
876
877 * rs6000/rs6000.h (NO_DOLLAR_IN_LABEL, DOLLARS_IN_IDENTIFIERS,
878 ENCODE_SECTION_INFO, ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Move from
879 here...
880 * rs6000/aix.h: ...to here.
881 * rs6000/linux.h (ASM_APP_ON, ASM_APP_OFF): Define to Linux-style.
882
883 2000-10-17 Jakub Jelinek <jakub@redhat.com>
884
885 * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): Reload gp if needed.
886
887 * config/sparc/sparc.h (ASM_OUTPUT_MI_THUNK): Always use call, make
888 sure linker can relax even the delay slot mov %g1,%o7, fix output
889 formating.
890
891 2000-10-17 Kazu Hirata <kazu@hxi.com>
892
893 * config/h8300/h8300.md: Remove an unnecessary zero_extend
894 expander that is used when not optimizing. Output a tab after
895 each assembly insns.
896
897 2000-10-17 Chandrakala Chavva <cchavva@redhat.com>
898
899 * gcc.c: New options --target-help.
900 (process_command): Added code to parse this new option.
901 * toplev.c (display_target_options): New function to support the
902 above new option.
903 * cppinit.c (new_pending_directive) : New option OPT_target__help.
904 (cpp_handle_option): Support this new option.
905 * invoke.texi: Added notes about --target-help option.
906
907 2000-10-17 Graham Stott <grahams@redhat.com>
908
909 * config/i386/i386.md (testqi_1): Add missing operand prefix
910 for operand 0.
911 * config/i386/i386-protos.h: Add missing prototype.
912
913 2000-10-17 Diego Novillo <dnovillo@cygnus.com>
914
915 * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Symbol
916 _GLOBAL_OFFSET_TABLE should not have a $ prefix when
917 using -mintel-syntax.
918
919 2000-10-17 Joseph S. Myers <jsm28@cam.ac.uk>
920
921 * c-common.c (FMT_FLAG_DOLLAR_MULTIPLE): Define.
922 (format_types): Use it for printf.
923 (maybe_read_dollar_number): Add parameter for the kind of format
924 involved. Warn for multiple use for arguments if this is
925 inappropriate for the kind of format involved.
926 (check_format_info_main): Update calls to maybe_read_dollar_number.
927
928 2000-10-17 J. David Anglin <dave@hiauly1.hia.nrc.ca>
929
930 * inclhack.def (hpux_maxint): Also apply fix to values.h.
931 * fixincl.x: Rebuilt.
932
933 2000-10-17 Alexandre Oliva <aoliva@redhat.com>
934
935 * genrecog.c (write_switch): Return the first condition that needs a
936 label.
937
938 2000-10-17 Bernd Schmidt <bernds@redhat.co.uk>
939
940 * c-tree.h (warn_sequence_point): Move declaration to...
941 * c-common.h (warn_sequence_point): ... here.
942 * c-decl.c (warn_sequence_point): Move definition to...
943 * c-common.c (warn_sequence_point): ... here.
944 (struct reverse_tree): New.
945 (reverse_list, reverse_max_depth): New static variables.
946 (build_reverse_tree, common_ancestor, modify_ok
947 verify_sequence_points): New functions.
948 (c_expand_expr_stmt): Call verify_sequence_points if -Wsequence-point.
949 * c-typeck.c (check_modify_expr): Delete.
950 (build_modify_expr): Don't call it.
951
952 2000-10-17 Joseph S. Myers <jsm28@cam.ac.uk>
953
954 * c-common.h (warn_missing_format_attribute): New variable.
955 * c-decl.c (warn_missing_format_attribute): New variable.
956 (c_decode_option): Decode -Wmissing-format-attribute and
957 -Wno-missing-format-attribute.
958 * c-common.c (check_function_format): If
959 -Wmissing-format-attribute, give a warning where a vprintf or
960 vscanf function is called by a function without its own printf or
961 scanf attribute.
962 * toplev.c (documented_lang_options): Add
963 -Wmissing-format-attribute.
964 * invoke.texi: Document -Wmissing-format-attribute.
965
966 2000-10-17 Marc Espie <espie@openbsd.org>
967
968 * invoke.texi (-shared): Insist on requiring code generation flags
969 to be used along with -shared, and document the subtle failure that
970 may occur otherwise.
971
972 2000-10-16 J. David Anglin <dave@hiauly1.hia.nrc.ca>
973
974 * pa.md (return_internal): Move `use' after `return'.
975
976 2000-10-16 Theodore Papadopoulo <Theodore.Papadopoulo@sophia.inria.fr>
977
978 * machmode.def: Correct comment.
979
980 2000-10-16 Rodney Brown <RodneyBrown@mynd.com>
981
982 * print-rtl.c (print_rtx_head): Constify.
983 * rtl.h (print_rtx_head): Similarly.
984
985 * config/pa/pa/pa-protos.h (output_64bit_and, output_64bit_ior):
986 Constify char * return value.
987 * config/pa/pa/pa.c
988 (output_64bit_and, output_64bit_ior): Constify char * return value.
989 (pa_can_combine_p): Make static.
990 (function_arg): Decorate unused `named' argument. Fix comment typo.
991 (function_arg_partial_nregs): Decorate unused `named' argument.
992
993 2000-10-16 Joseph S. Myers <jsm28@cam.ac.uk>
994
995 * c-common.c (format_check_results): New structure.
996 (finish_dollar_format_checking): Adjust to take a
997 format_check_results * parameter.
998 (check_format_info, check_format_info_recurse,
999 check_format_info_main): Split check_format_info into three
1000 functions, the main checking going in check_format_info_main.
1001 Recurse when any reduction of the format string argument towards a
1002 string literal is done; go down both branches of a conditional
1003 expression. Don't warn for extra format arguments or empty format
1004 strings if they only occur in some branches of a conditional
1005 expression.
1006
1007 2000-10-16 Kazu Hirata <kazu@hxi.com>
1008
1009 * config/h8300/h8300.c: Remove obstack. Include ggc.h.
1010
1011 2000-10-16 Jakub Jelinek <jakub@redhat.com>
1012
1013 * rtlanal.c (may_trap_p): Check operand modes of COMPARE.
1014
1015 2000-10-15 Diego Novillo <dnovillo@cygnus.com>
1016
1017 * i386.md (*movsi_or): Switch operand order for intel syntax.
1018
1019 2000-10-14 Joseph S. Myers <jsm28@cam.ac.uk>
1020
1021 * PROBLEMS: Remove.
1022
1023 * gcc.texi (Contributing): Update.
1024
1025 2000-10-13 Diego Novillo <dnovillo@cygnus.com>
1026
1027 * config/i386/unix.h (ASM_OUTPUT_MI_THUNK): Output final jump using
1028 appropriate assembler dialect.
1029
1030 2000-10-13 Alexandre Oliva <aoliva@redhat.com>
1031
1032 * c-common.c (c_expand_builtin): PARAMS-ize prototype.
1033
1034 2000-10-12 Marek Michalkiewicz <marekm@linux.org.pl>
1035
1036 * config/avr/avr.c (output_movhi, output_movsisf): Fix loading
1037 constants 1 and 2 to NO_LD_REGS.
1038
1039 2000-10-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1040
1041 * Makefile.in (c-parse.c, tradcif.c): Create atomically.
1042
1043 * objc/Make-lang.in (objc-parse.c): Likewise.
1044
1045 2000-10-13 Richard Earnshaw <rearnsha@arm.com>
1046
1047 * arm.c: Include obstack.h
1048 (minipool_obstack, minipool_startobj): Define.
1049 (arm_add_gc_roots): Initialize them.
1050 (create_fix_barrier): Use our new obstack.
1051 (push_minipool_barrier, push_minipool_fix): Likewise.
1052 (arm_reorg): Release obstack memory.
1053
1054 2000-10-13 Jakub Jelinek <jakub@redhat.com>
1055
1056 * config/sparc/sparc.md (nonlocal_goto_receiver): Remove.
1057 (prologue, exception_receiver, builtin_setjmp_receiver): New
1058 patterns.
1059 * config/sparc/sparc.h (FINALIZE_PIC): Remove.
1060 * config/sparc/sparc-protos.h (finalize_pic): Remove.
1061 (load_pic_register): New prototype.
1062 * config/sparc/sparc.c (pic_setup_code): Remove.
1063 (finalize_pic): Rename to...
1064 (load_pic_register): ...this function.
1065 Don't look for nonlocal_goto_receivers and emit pic setup code
1066 directly. Don't check current_function_uses_pic_offset_table.
1067
1068 2000-10-13 Richard Earnshaw <rearnsha@arm.com>
1069
1070 * tree.h (struct obstack): Declare.
1071
1072 2000-10-12 Mark Mitchell <mark@codesourcery.com>
1073
1074 Remove obstacks.
1075 * Makefile.in (ggc-callbacks.o): Remove target.
1076 (flow.o): Depend on GGC_H.
1077 * alias.c (init_alias_analysis):
1078 Remove ggc_p conditionals.
1079 (end_alias_analysis): Likewise.
1080 * basic-block.h (init_flow): New function.
1081 (allocate_reg_life_data): Declare.
1082 * bb-reorder.c (function_obstack): Replace with ...
1083 (flow_obstack): ... new variable.
1084 (fixup_reorder_chain): Use it.
1085 * c-decl.c (ggc_p): Remove.
1086 (caller-save.c): Don't call oballoc/obfree.
1087 * combine.c (struct
1088 undobuf): Remove storage.
1089 (try_combine): Don't call oballoc.
1090 (undo_all): Don't call obfree.
1091 * cse.c (insert): Use xmalloc, not
1092 oballoc.
1093 (cse_main): Adjust accordingly.
1094 * dwarf2out.c (save_rtx): Remove
1095 obstack code.
1096 (dwarf2out_init): Remove ggc_p conditionals.
1097 * emit-rtl.c (rtl_obstack): Remove.
1098 (gen_rtx_CONST_INT): Remove ggc_p conditionals.
1099 (make_insn_raw): Likewise.
1100 (emit_insn_before): Likewise.
1101 (emit_insn_after): Likewise.
1102 (emit_insn): Likewise.
1103 (gen_sequence): Likewise.
1104 (copy_insn_1): Remove handling of `b' RTL components.
1105 (init_emit_once): Remove ggc_p conditionals.
1106 * except.c (create_rethrow_ref): Don't fool with obstacks.
1107 (add_partial_entry): Likewise.
1108 (call_get_eh_context): Likewise.
1109 (begin_protect_partials): Likewise.
1110 (protect_with_terminate): Likewise.
1111 * explow.c
1112 (plus_constant_wide): Likewise.
1113 * expr.c (init_expr_once):
1114 Likewise.
1115 (emit_block_move): Likewise.
1116 (clear_storage): Likewise.
1117 (expand_expr): Likewise.
1118 * flow.c (function_obstack): Remove.
1119 (flow_obstack): New variable.
1120 (flow_firstobj): Likewise.
1121 (create_base_block): Use the flow_obstack.
1122 (split_block): Likewise.
1123 (split_edge): Likewise.
1124 (calculate_global_regs_live): Likewise.
1125 (allocate_bb_life_data): Make it static. Likewiwse.
1126 (init_flow): New function.
1127 (size_int_type_wide): Remove ggc_p conditionals.
1128 * function.c
1129 (push_function_context_to): Don't call save_tree_status.
1130 (pop_function_context_from): Or restore_tree_status.
1131 (assign_stack_local_1): Don't call push_obstacks.
1132 (find_fixup_replacement): Use xmalloc.
1133 (fixup_var_refs_insns): Free the storage.
1134 (insns_for_mem_walk): Don't mess with obstacks.
1135 (instantiate_decls): Likewise.
1136 (trampoline_address): Likewise.
1137 (expand_function_end): Likewise.
1138 * function.h (sturct function):
1139 Remove obstack-related variables.
1140 (save_tree_status): Don't declare.
1141 (restore_tree_status): Likewise.
1142 * gcse.c (compute_can_copy):
1143 Don't call oballoc/obfree.
1144 * genattrtab.c (operate_exp): Remove
1145 ggc_p conditionals.
1146 (simplify_cond): Likewise.
1147 (simplify_test_exp): Don't mess with obstacks.
1148 (optimize_attrs): Likewise.
1149 * gengenrtl.c (gendef): Don't include
1150 ggc_p conditionals.
1151 * ggc-callbacks.c (ggc_p): Remove.
1152 * ggc-none.c (ggc_p): Remove.
1153 * ggc.h (ggc_p): Don't declare.
1154 * integrate.c (save_for_inline): Don't mess with obstacks.
1155 (integrate_decl_tree): Likewise.
1156 (output_inline_function): Likewise.
1157 * lists.c
1158 (init_EXPR_INSN_LIST_cache): Likewise.
1159 * loop.c (temp_obstack):
1160 Remove.
1161 (rtl_obstack): Likewise.
1162 (init_loop): Don't mess with obstacks.
1163 (reg_address_cost): Free BIVs and GIVs.
1164 (check_insns_for_bivs): Use xmalloc, not oballoc.
1165 (find_mem_givs): Likewise.
1166 (record_biv): Likewise.
1167 (general_induction_var): Likewise.
1168 (product_cheap_p): Likewse.
1169 * optabs.c (init_one_libfunc): Remove
1170 ggc_p conditional.
1171 * print-tree.c (debug_tree): Don't use
1172 oballoc/obfree.
1173 (print_node): Likewise.
1174 * profile.c (output_func_start_profiler):
1175 Remove call to temporary_allocation.
1176 * reload1.c
1177 (eliminate_regs_in_insn): Don't mess with obstacks.
1178 * resource.c
1179 (mark_target_live_regs): Use xmalloc.
1180 (free_resource_info): Free the memory.
1181 * rtl.c (rtl_obstack):
1182 Remove.
1183 (rtvec_alloc): Don't mess with obstacks.
1184 (rtx_alloc): Likewise.
1185 (rtx_free): Remove.
1186 (copy_rtx): Don't handle `b' cases.
1187 (read_rtx): Use a local rtl_obstack.
1188 * rtl.h (oballoc): Remove.
1189 (obfree): Likewise.
1190 (pop_obstacks): Likewise.
1191 (push_obstacks): Likewise.
1192 (allocate_bb_life_data): Likewise.
1193 (allocate_reg_life_data): Likewise.
1194 (rtx_free): Likewise.
1195 * sdbout.c (sdbout_queue_anonymous_type):
1196 Use tree_cons, not saveable_tree_cons.
1197 * simplify-rtx.c
1198 (cselib_init): Don't mess with obstacks.
1199 * stmt.c
1200 (mark_block_nesting): Mark the label_chain.
1201 (epxand_label): Use ggc_alloc, not oballoc.
1202 (clear_last_expr): Don't mess with obstacks.
1203 (expand_decl_cleanup): Likewise.
1204 (expand_dcc_cleanup): Likewise.
1205 (expand_dhc_cleanup): Likewise.
1206 (expand_anon_union_decl): Likewise.
1207 (add_case_node): Use xmalloc, not oballoc.
1208 (free_case_nodes): New function.
1209 (expand_end_case): Call it.
1210 * stor-layout.c (layout_type): Don't
1211 mess with obstacks.
1212 (layout_type): Likewise.
1213 * toplev.c (wrapup_global_declarations):
1214 Likewise.
1215 (compile_file): Remove ggc_p conditionals.
1216 (rest_of_compilation): Call init_flow. Remove ggc_p conditionals.
1217 (decode_f_option): Remove ggc_p conditionals.
1218 * tree.c
1219 (function_maybepermanent_obstack): Remove.
1220 (maybepermanent_obstack): Likewise.
1221 (function_obstack): Likewise.
1222 (tmeporary_obstack): Likewise.
1223 (momentary_obstack): Likewise.
1224 (temp_decl_obstack): Likewise.
1225 (saveable_obstack): Likewise.
1226 (rtl_obstack): Likewise.
1227 (current_obstack): Likewise.
1228 (expression_obstack): Likewise.
1229 (struct obstack_stack): Likewise.
1230 (obstack_stack): Likewise.
1231 (obstack_stack_obstack): Likewise.
1232 (maybepermanent_firstobj): Likewise.
1233 (temporary_firstobj): Likewise.
1234 (momentary_firstobj): Likewise.
1235 (temp_decl_firstobj): Likewise.
1236 (momentary_function_firstobj): Likewise.
1237 (all_types_permanent): Likewise.
1238 (struct momentary_level): Likewise.
1239 (momentary_stack): Likewise.
1240 (init_obstacks): Remove initialization of removed obstacks.
1241 (save_tree_status): Remove.
1242 (restore_tree_status): Likewise.
1243 (temporary_allocation): Liekwise.
1244 (end_temporary_allocation): Liekwise.
1245 (resume_temporary_allocation): Likewise.
1246 (saveable_allocation): Likewise.
1247 (push_obstacks): Likewise.
1248 (push_obstacks_nochange): Likewise.
1249 (pop_obstacks): Likewise.
1250 (allocation_temporary_p): Likewise.
1251 (permanent_allocation): Likewise.
1252 (preserve_data): Likewise.
1253 (preserve_initializer): Likewise.
1254 (rtl_in_current_obstack): Likewise.
1255 (rtl_in_saveable_obstack): Likewise.
1256 (oballoc): Likewise.
1257 (obfree): Likewise.
1258 (savealloc): Likewise.
1259 (expralloc): Likewise.
1260 (print_obstack_name): Likewise.
1261 (debug_obstack): Likewise.
1262 (object_permanent_p): Likewise.
1263 (push_momentary): Likewise.
1264 (perserve_momentary): Likewise.
1265 (clear_momentary): Likewise.
1266 (pop_momentary): Likewise.
1267 (pop_momentary_nofree): Likewise.
1268 (suspend_momentary): Likewise.
1269 (resume_momentary): Likewise.
1270 (make_node): Don't set TREE_PERMANENT.
1271 (copy_node): Remove ggc_p conditionals. Don't set TYPE_OBSTACK.
1272 Don't set TREE_PERMANENT.
1273 (get_identifier): Remove ggc_p conditionals.
1274 (build_string): Likewise.
1275 (make_tree_vec): Likewise.
1276 (build_decl_list): Remove.
1277 (build_expr_list): Likewise.
1278 (tree_cons): Remove ggc_p conditionals.
1279 (decl_tree_cons): Remove.
1280 (expr_tree_cons): Likewise.
1281 (perm_tree_cons): Likewise.
1282 (temp_tree_cons): Likewise.
1283 (saveable_tree_cons): Likewise.
1284 (build1): Remove ggc_p conditionals.
1285 (build_parse_node): Likewise.
1286 (build_type_attribute_variant): Don't mess with obstacks.
1287 (build_type_copy): Likewise.
1288 (type_hash_canon): Likewise.
1289 (build_pointer_type): Likewise.
1290 (build_reference_type): Likewise.
1291 (build_index_type): Likewise.
1292 (build_range_type): Likewise.
1293 (dump_tree_statistics): Don't print obstack information.
1294 * tree.h
1295 (struct tree_common): Remove permanent_flag.
1296 (TREE_PERMANENT): Remove.
1297 (TREE_SET_PERMANENT): Likewise.
1298 (TYPE_OBSTACK): Likewise.
1299 (struct tree_type): Remove obstack.
1300 (oballoc): Remove.
1301 (savealloc): Likewise.
1302 (build_decl_list): Likewise.
1303 (build_expr_list): Likewise.
1304 (perm_tree_cons): Likewise.
1305 (temp_tree_cons): Likewise.
1306 (saveable_tree_cons): Likewise.
1307 (decl_tree_cons): Likewise.
1308 (expr_tree_cons): Likewise.
1309 (suspend_momentary): Likewise.
1310 (allocation_temporary_p): Likewise.
1311 (resume_momentary): Likewise.
1312 (push_obstacks_nochange): Likewise.
1313 (permanent_allocation): Likewise.
1314 (push_momentary): Likewise.
1315 (clear_momentary): Likewise.
1316 (pop_momentary): Likewise.
1317 (end_temporary_allocation): Likewise.
1318 (pop_obstacks): Likewise.
1319 (push_obstacks): Likewise.
1320 (pop_momentary_nofree): LIkewise.
1321 (preserve_momentary): Likewise.
1322 (saveable_allocation): Likewise.
1323 (temporary_allocation): Likewise.
1324 (resume_temporary_allocation): Likewise.
1325 (perserve_initializer): Likewise.
1326 (debug_obstack): Likewise.
1327 (rtl_in_current_obstack): Likewise.
1328 (rtl_in_saveable_obstack): Likewise.
1329 (obfree): Likewise.
1330 * varasm.c (current_obstack): Remove.
1331 (saveable_obstack): Remove.
1332 (rtl_obstack): Remove.
1333 (immed_double_const): Don't mess with obstacks.
1334 (immed_real_cons): Likewise.
1335 (output_constant_def): Likewise.
1336 (init_varasm_status): Use xcalloc.
1337 (mark_pool_constant): Mark the pool constant itself.
1338 (free_varasm_status): Free memory.
1339 (decode_rtx_const): Call bzero directly, rather than expanding it
1340 inline.
1341 (record_rtx_const): Don't mess with obstacks.
1342 (force_const_mem): Likewise.
1343 * config/arm/arm.c (arm_encode_call_attribute): Remove ggc_p
1344 conditionals.
1345 (aof_pic_entry): Likewise.
1346 * config/ia64/ia64.c (ia64_encode_section_info): Likewise.
1347 * config/m32r/m32r.c (m32r_encode_section_info): Likewise.
1348 * config/pa/pa.c (saveable_obstack): Remove.
1349 (rtl_obstack): Likewise.
1350 (current_obstack): Likewise.
1351 (output_call): Don't mess with obstacks.
1352 (hppa_encode_label): Remove ggc_p conditionals.
1353 * config/romp/romp.c (get_symref): Don't mess with obstacks.
1354 * config/rs6000/rs6000.c (output_toc): Remove ggc_p conditional.
1355 (rs6000_encode_section_info): Likewise.
1356 * config/sh/sh.c (get_fpscr_rtx): Likewise.
1357
1358 Thu Oct 12 16:02:31 MET DST 2000 Jan Hubicka <jh@suse.cz>
1359
1360 * i386.md (adddi3, subdi3 splitters): Update for new pattern.
1361 (addsi3_cc, addqi3_cc, subsi3_cc): Remove
1362 (addsi3_carry): Canonicalize.
1363 (addqi_5): Remove '*'.
1364 (sbb pattern): Canonicalize.
1365
1366 * i386.md (cmp to inc/add peep2): New.
1367
1368 2000-10-12 Richard Earnshaw <rearnsha@arm.com>
1369
1370 * bb-reorder.c (reorder_basic_blocks): Allocate an aux block for
1371 the exit block.
1372
1373 2000-10-12 Joseph S. Myers <jsm28@cam.ac.uk>
1374
1375 * gcc.texi: Merge in contents of README.TRAD and TESTS.FLUNK.
1376 * README.TRAD, TESTS.FLUNK: Remove.
1377
1378 2000-10-12 Joseph S. Myers <jsm28@cam.ac.uk>
1379
1380 * c-common.c (decl_attributes): Don't allow strftime formats with
1381 first_arg_num nonzero.
1382 (check_format_info): Set wanted_type and wanted_type_name to zero
1383 before they are possibly assigned and used.
1384
1385 2000-10-12 Joseph S. Myers <jsm28@cam.ac.uk>
1386
1387 * c-common.c (scanf_flag_specs): Add flags ' and I.
1388 (strftime_flag_pairs): Disallow any pair of the _, - and 0 flags,
1389 or the ^ and # flags together.
1390 (scan_char_table): Handle the ' and I flags.
1391 (format_types): Add ' and I flags for scanf.
1392
1393 2000-10-12 Joseph S. Myers <jsm28@cam.ac.uk>
1394
1395 * c-common.c (print_char_table): Use the unpromoted type for
1396 lengths "h" and "hh" with conversions dioxXu.
1397 (check_format_types): Apply the default argument promotions where
1398 the wanted type is not a pointer target.
1399
1400 2000-10-11 Michael Meeks <mmeeks@gnu.org>
1401 Joseph S. Myers <jsm28@cam.ac.uk>
1402
1403 * c-typeck.c (check_modify_expr): New function.
1404 (build_modify_expr): Call it if warn_sequence_point.
1405 * c-decl.c (warn_sequence_point): New variable.
1406 (c_decode_option): Handle -Wsequence-point and
1407 -Wno-sequence-point. Enable -Wsequence-point as part of -Wall.
1408 * c-tree.h (warn_sequence_point): Declare.
1409 * invoke.texi (-Wsequence-point): Document.
1410 * toplev.c (documented_lang_options): Add -Wsequence-point and
1411 -Wno-sequence-point.
1412 Original work by Michael Meeks, 16 Jun 1998.
1413
1414 Wed Oct 11 06:15:41 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1415
1416 * tree.c (get_narrower): Don't look at precision of field if
1417 not laid out yet.
1418
1419 Tue Oct 10 23:14:33 2000 Denis Chertykov <denisc@overta.ru>
1420
1421 * config/avr/avr.c (valid_machine_decl_attribute): Allow `extern'
1422 declaration for data with "progmem" attribute.
1423
1424 2000-10-09 Marek Michalkiewicz <marekm@linux.org.pl>
1425
1426 * config/avr/avr.c (out_shift_with_cnt): Use AS2 macro.
1427 Correct insn length if shift count is a memory operand.
1428 * config/avr/avr.md: New define_peephole2 to use *reload_inqi.
1429 (*iorhi3_clobber): Change lo8 to hi8.
1430 (zero_extendhisi2): Change %B0 to %A1.
1431 (ashlhi3, ashrhi3): Correct insn length.
1432 (andhi3, abssf2, extendqisi2, extendhisi2): Change "cc"
1433 from "clobber" to "set_n" in some alternatives.
1434
1435 2000-10-10 Jakub Jelinek <jakub@redhat.com>
1436
1437 * reload1.c (calculate_needs_all_insns): If deleting an instruction,
1438 remove its insn_chain structure as well.
1439
1440 2000-10-09 J. David Anglin <dave@hiauly1.hia.nrc.ca>
1441
1442 * dbxout.c (dbxout_source_line): Remove extra tab.
1443
1444 2000-10-09 Hans-Peter Nilsson <hp@bitrange.com>
1445
1446 * config/elfos.h (UNIQUE_SECTION): Apply STRIP_NAME_ENCODING on name.
1447
1448 2000-10-09 Richard Henderson <rth@cygnus.com>
1449
1450 * Makefile.in (LANG_LIB2FUNCS): Remove.
1451 (LIB2FUNCS): Remove _pure.
1452 (LIB2ADD): Remove LANG_LIB2FUNCS.
1453 (stage_a): Don't set LANG_LIB2FUNCS.
1454 * libgcc2.c (__terminate): Mark noreturn.
1455 (__pure_virtual): Remove.
1456 * mklibgcc.in: Remove LIB2ADD .txt processing.
1457
1458 2000-10-09 Richard Earnshaw <rearnsha@arm.com>
1459
1460 * arm.md (push_multi): Revert unintended change.
1461
1462 2000-10-09 Richard Earnshaw <rearnsha@arm.com>
1463
1464 * arm.c: Miscellaneous white space and comment clean-ups. No
1465 functional change.
1466 * arm.md: Likewise.
1467
1468 2000-10-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1469
1470 * c-common.c (c_expand_builtin_printf): Set the TREE_TYPE of a new
1471 STRING_CST by calling combine_strings.
1472
1473 2000-10-09 Richard Earnshaw <rearnsha@arm.com>
1474
1475 * arm.c (thumb_expand_movstrqi): Rewrite to support SSA form.
1476 (thumb_output_move_mem_multiple): Support new insn format.
1477 * arm.md (movmem12b): Use SSA compatible format.
1478 (movmem8b): Likewise.
1479
1480 2000-10-09 Richard Earnshaw <rearnsha@arm.com>
1481
1482 * arm.md (predicable): New attribute, default to "no".
1483 (all patterns): Mark as predicable if appropriate.
1484 (conditional execution splits): Split using predication format.
1485 (define_cond_exec): Define.
1486 * arm.c (arm_print_operand): handle insn predicate.
1487
1488 2000-10-09 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
1489
1490 * README.NS32K: Remove file.
1491
1492 2000-10-09 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
1493
1494 * README-bugs: Remove file.
1495
1496 2000-10-08 Philipp Thomas <pthomas@suse.de>
1497 * aclocal.m4 (AM_GNU_GETTEXT): Fix non portable use of == operator
1498 for test.
1499 * configure: Rebuilt.
1500
1501 2000-10-08 Philipp Thomas <pthomas@suse.de>
1502 * aclocal.m4 (AM_WITH_NLS): When not using included gettext,
1503 disable catalog building if no suitable program was found.
1504 Move warning message from here
1505 (AM_GNU_GETTEXT): To here.
1506 * configure: Rebuilt.
1507
1508 2000-10-08 Philipp Thomas <pthomas@suse.de>
1509 * aclocal.m4 (GCC_PATH_PROG): New. Like AC_PATH_PROG but uses
1510 different cache variables.
1511 (GCC_PATH_PROG_WITH_TEST): New. Like AM_PATH_PROG_WITH_TEST but
1512 uses different cache variables.
1513 (AM_WITH_NLS): Use GCC_PATH_PROG and GCC_PATH_PROG_WITH_TEST.
1514 * configure: Regenerated.
1515
1516 2000-10-08 Richard Henderson <rth@cygnus.com>
1517
1518 * Makefile.in (libgcc.mk): Pass SHLIB_EXT, not SHLIB_LIBS.
1519 * configure.in (sparc*-*-solaris*): Use t-slibgcc{,-sld}.
1520 * mklibgcc.in: Consider SHLIB_LINK the entire shlib build command.
1521 Use SHLIB_EXT.
1522
1523 * config/t-linux (SHLIB_EXT): New.
1524 (SHLIB_LINK): Use the entire build command, with substitutions.
1525 (SHLIB_LIBS): Remove.
1526 * config/alpha/t-osf4: Likewise.
1527 * config/mips/t-iris6: Likewise.
1528 * config/sparc/t-sol2: Likewise, but move shlib stuff...
1529 * config/sparc/t-slibgcc-sld: ...here.
1530 * config/sparc/t-slibgcc: New file.
1531
1532 2000-10-08 Joseph S. Myers <jsm28@cam.ac.uk>
1533
1534 * tm.texi (INTMAX_TYPE, UINTMAX_TYPE): Define.
1535 * c-common.h (enum c_tree_index): Add CTI_INTMAX_TYPE and
1536 CTI_UINTMAX_TYPE.
1537 (intmax_type_node, uintmax_type_node): Define.
1538 * c-common.c (decl_attributes): If pedantic, warn if `mode'
1539 attributes create a type wider than intmax_t.
1540 (T_IM, T_UIM): Define properly.
1541 * c-decl.c (INTMAX_TYPE, UINTMAX_TYPE): Define if not already
1542 defined.
1543 (init_decl_processing): Initialize intmax_type_node and
1544 uintmax_type_node.
1545 * c-lex.c (lex_number): When pedantic and warning for integer
1546 constants that are too large, in C99 mode warn for those that have
1547 a type wider than long long.
1548
1549 2000-10-08 Joseph S. Myers <jsm28@cam.ac.uk>
1550
1551 * c-common.c (FMT_FLAG_ARG_CONVERT, FMT_FLAG_SCANF_A_KLUDGE,
1552 FMT_FLAG_FANCY_PERCENT_OK): Define.
1553 (format_char_info): Add flag "4" to comment.
1554 (format_flag_spec, format_flag_pair): New structures.
1555 (format_kind_info): Add additional fields to control format
1556 checking.
1557 (printf_flag_specs, printf_flag_pairs, scanf_flag_specs,
1558 scanf_flag_pairs, strftime_flag_specs, strftime_flag_pairs): New
1559 arrays.
1560 (time_char_table): Use "4" flag to handle %Ey.
1561 (format_types): Add entries for new fields.
1562 (get_flag_spec): New function.
1563 (check_format_info): Increase size of flag_chars[] to 256.
1564 Control format checking using the new fields of a format_kind_info
1565 and the new tables; remove all conditionals on printf_format_type,
1566 scanf_format_type or strftime_format_type. Handle all details of
1567 bad combinations of flags (including width, precision and strftime
1568 modifiers) through data rather than ad hoc code. Handle all
1569 details of standard versions in which flags appeared through
1570 data. Use the "4" flag.
1571
1572 2000-10-07 Will Cohen <wcohen@redhat.com>, Kazu Hirata <kazu@hxi.com>
1573
1574 * config/h8300/h8300.md: Remove the memory alternative and correct
1575 the insn lengths in the templates for sign extention and zero
1576 extention.
1577
1578 2000-10-07 Richard Henderson <rth@cygnus.com>
1579
1580 * calls.c (expand_call): Disallow sibcalls to noreturn functions.
1581 * flow.c (make_edges): Revert last change.
1582
1583 * config/alpha/alpha.h (FUNCTION_OK_FOR_SIBCALL): Don't test
1584 TREE_THIS_VOLATILE.
1585 * config/pa/pa.h (FUNCTION_OK_FOR_SIBCALL): Likewise.
1586
1587 2000-10-06 David O'Brien <obrien@dragon.nuxi.com>
1588
1589 * config/alpha/elf.h: Standardize the formatting.
1590
1591 2000-10-06 David O'Brien <obrien@FreeBSD.org>
1592
1593 * config/alpha/elf.h: Protect the ASM_OUTPUT_IDENT definition with an
1594 #undef.
1595
1596 2000-10-06 Richard Henderson <rth@cygnus.com>
1597
1598 * function.c (diddle_return_value): Examine
1599 current_function_return_rtx instead of the DECL_RESULT.
1600 (expand_function_end): Handle reloading DECL_RESULT from memory
1601 into a hard register. Query promote_mode for sign of mismatched
1602 modes.
1603
1604 2000-10-06 Vladimir Makarov <vmakarov@touchme.toronto.redhat.com>
1605
1606 * haifa-sched.c (schedule_insns): Fix typo in freeing
1607 forward_dependency_cache.
1608
1609 2000-10-06 Alexandre Oliva <aoliva@redhat.com>
1610
1611 * config/sh/sh.md (calli_pcrel, call_valuei_pcrel): Add
1612 `TARGET_SH2' as a condition.
1613
1614 2000-10-06 Vladimir Makarov <vmakarov@touchme.toronto.redhat.com>
1615
1616 * haifa-sched.c (anti_dependency_cache, output_dependency_cache,
1617 forward_dependency_cache): New variables.
1618 (add_dependence, remove_dependence): Use anti_dependency_cache and
1619 output_dependency_cache.
1620 (compute_block_forward_dependences): Use forward_dependency_cache.
1621 (schedule_insns): Allocate and free memory for anti/output/forward
1622 dependencies caches.
1623
1624 2000-10-06 Alexandre Oliva <aoliva@redhat.com>
1625
1626 * config/sh/sh.md (call, call_value): Use `TARGET_SH2' instead of
1627 `! TARGET_SH1'. Reindent.
1628
1629 2000-10-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1630
1631 * builtins.c (is_valid_printf_arglist, expand_builtin_printf):
1632 Move functions from here ...
1633
1634 * c-common.c (is_valid_printf_arglist, c_expand_builtin_printf):
1635 ... to here.
1636 (c_expand_builtin): New function.
1637 (init_function_format_info): Don't set `check_function_format_ptr'.
1638 (c_common_nodes_and_builtins): Set built_in_class type for
1639 printf/__builtin_printf to BUILT_IN_FRONTEND.
1640 (c_expand_expr): Handle CALL_EXPRs that are front-end builtins.
1641
1642 * c-common.h (build_function_call): Declare.
1643
1644 * expr.c (expand_expr): Pass builtins with class BUILT_IN_FRONTEND
1645 to `lang_expand_expr' rather than `expand_builtin'.
1646
1647 * tree.c (check_function_format_ptr): Delete.
1648
1649 * tree.h (check_function_format_ptr): Likewise.
1650
1651 2000-10-06 Hans-Peter Nilsson <hp@bitrange.com>
1652
1653 * dwarf2out.c (build_cfa_loc): Correct to use DW_OP_regx or
1654 DW_OP_bregx when cfa->reg > 31.
1655
1656 * frame-dwarf2.c (decode_stack_op) [case DW_OP_regx]: Add missing
1657 break.
1658
1659 2000-10-05 Richard Henderson <rth@cygnus.com>
1660
1661 * c-decl.c (warn_missing_noreturn): Remove.
1662 (c_expand_body): Don't set or check can_reach_end.
1663 * c-tree.h (warn_missing_noreturn): Move ...
1664 * flags.h: ... here.
1665 (can_reach_end): Remove.
1666 * flow.c (check_function_return_warnings): New.
1667 (make_edges): No edge to exit for noreturn sibcalls.
1668 * function.c (expand_function_end): Save the return value
1669 clobber instruction.
1670 (mark_function_status): Mark it.
1671 * function.h (struct function): Add x_clobber_return_insn.
1672 * jump.c (can_reach_end): Remove.
1673 (calculate_can_reach_end): Remove.
1674 (jump_optimize_1): Don't call it.
1675 * output.h (check_function_return_warnings): Declare.
1676 * toplev.c (warn_missing_noreturn): Move from c-decl.c
1677 (rest_of_compilation): Call check_function_return_warnings.
1678
1679 2000-10-05 Richard Henderson <rth@cygnus.com>
1680
1681 * Makefile.in (NM_FOR_TARGET): New.
1682 (libgcc.mk): Pass SHLIB_MKMAP, SHLIB_MAPFILES.
1683 (libgcc.a, stmp-multilib): Pass NM_FOR_TARGET.
1684 * mklibgcc.in: If SHLIB_MKMAP, build libgcc.map. Depend the
1685 shared library build on that and EXTRA_MULTILIB_PARTS.
1686 * mkmap-flat.awk: New file.
1687 * mkmap-symver.awk: New file.
1688 * libgcc-std.ver: New file.
1689 * config/libgcc-glibc.ver: New file.
1690 * config/ia64/libgcc-ia64.ver: New file.
1691 * config/t-linux (SHLIB_MKMAP, SHLIB_MAPFILES): New.
1692 (SHLIB_LINK): Add --version-script.
1693 * config/ia64/t-ia64 (SHLIB_MAPFILES): Add libgcc-ia64.ver.
1694 * config/mips/t-iris6 (SHLIB_MKMAP, SHLIB_MAPFILES): New.
1695 * config/sparc/t-sol2 (SHLIB_MKMAP, SHLIB_MAPFILES): New.
1696 (SHLIB_LINK): Add -M.
1697
1698 2000-10-05 Richard Henderson <rth@cygnus.com>
1699
1700 * Makefile.in (LIB2FUNCS): Add _clz.
1701 * libgcc2.c (__ffsdi2): Use count_trailing_zeros.
1702 (__clz_tab): Put in its own unit, non-static.
1703 * libgcc2.h: Always include longlong.h.
1704
1705 * longlong.h [alpha] (count_leading_zeros): Use cmpbge with
1706 a zero instead of -1.
1707 (count_trailing_zeros): Likewise.
1708
1709 2000-10-05 Richard Henderson <rth@cygnus.com>
1710
1711 * config/alpha/alpha.c (alpha_emit_setcc): Don't swap GT tests
1712 when second op1 is const0_rtx. Validate op0 as a register.
1713 * config/alpha/alpha.md (setcc_internal): Don't allow constants
1714 in the first argument of the compare.
1715 (setcc_swapped_internal): Likewise.
1716 (setne_internal): Likewise.
1717
1718 2000-10-05 Geoff Keating <geoffk@cygnus.com>
1719
1720 * tree.c (tree_size): New function split out of copy_node.
1721 (make_node): Remove obstack handling. Use tree_size.
1722 (copy_node): Use tree_size.
1723 * tree.h: Prototype tree_size.
1724
1725 2000-10-05 Richard Henderson <rth@cygnus.com>
1726
1727 * diagnostic.c (output_format): Add missing break.
1728
1729 2000-10-05 Jim Wilson <wilson@cygnus.com>
1730
1731 * function.c (fixup_var_refs_1, case SET): When gen_move_insn returns a
1732 SEQUENCE, call emit_insn_before, copy PATTERN and REG_NOTES of last
1733 sequence insn to INSN, and delete last sequence insn.
1734
1735 2000-10-05 Phil Edwards <pme@gcc.gnu.org>
1736
1737 * gcc.c (main): Include generated configargs.h header
1738 and use arguments in '-v' output.
1739
1740 Thu Oct 5 16:16:57 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1741
1742 * gcc.c: Move data on prefixes forward in file and reorganize.
1743 (md_exec_prefix, md_startfile_prefix, md_startfile_prefix_1):
1744 Always define, but make null if no value.
1745 (static_specs): Add "md_exec_prefix", "md_startfile_prefix",
1746 and "md_startfile_prefix_1".
1747 (main): Check whether md_exec_prefix and the others are the
1748 null string rather than whether the macro is defined.
1749
1750 Thu Oct 5 19:04:18 2000 J"orn Rennecke <amylaar@redhat.co.uk>
1751
1752 * (convert_move): Use zero_extendpsisi2 to do an unsigned extension
1753 from PSImode to SImode.
1754
1755 2000-10-05 Jakub Jelinek <jakub@redhat.com>
1756
1757 * emit-rtl.c (gen_lowpart_common) [REAL_ARITHMETICS]: Fix conversion
1758 from float to integral mode with HOST_BITS_PER_WIDE_INT 64.
1759 * dwarf2out.c (add_const_value_attribute): Divide by 4, not
1760 sizeof(long).
1761
1762 Thu Oct 5 09:31:31 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
1763
1764 * fold-const.c (fold, case MINUS_EXPR, case EQ_EXPR): Perform
1765 negation in proper type.a
1766
1767 2000-10-04 Richard Henderson <rth@cygnus.com>
1768
1769 * configure.in (enable-shared): New.
1770 * Makefile.in (LIBGCC_DEPS): Depend on EXTRA_PARTS as well.
1771 (libgcc.mk): Pass SHLIB_LINK, SHLIB_LIBS, SHLIB_MULTILIB to mklibgcc.
1772 * mklibgcc.in: Use them to link shared a libgcc.
1773 * config/t-linux (SHLIB_LINK, SHLIB_LIBS): New.
1774 * config/alpha/t-ieee (SHLIB_MULTILIB): New.
1775 * config/mips/t-iris6 (SHLIB_LINK, SHLIB_LIBS): New.
1776 * config/sparc/t-sol2 (SHLIB_LINK, SHLIB_LIBS): New.
1777
1778 * configure.in (alpha-osf*): Use t-osf and x-osf.
1779 * config/alpha/t-osf: New file.
1780 * config/alpha/t-osf4: New file.
1781 * config/alpha/x-osf: New file.
1782 * config/alpha/x-alpha: Remove file.
1783
1784 2000-10-04 Will Cohen <wcohen@redhat.com>
1785
1786 * c-typeck.c (process_init_element): Added warning for zero-length
1787 array.
1788
1789 * extend.texi (Zero Length): State that static initializers for
1790 zero-length arrays are not allowed.
1791
1792 Mon Oct 2 14:50:14 MET DST 2000 Jan Hubicka <jh@suse.cz>
1793
1794 * rtlanal.c (single_set_1): Do not require USE and CLOBBERs
1795 to come last.
1796
1797 2000-10-03 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
1798
1799 * config/float-c4x.h: New.
1800 * configure.in (c4x-*): Set float_format to c4x.
1801 * configure: Regenerate.
1802
1803 2000-10-02 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
1804
1805 * configure.in (sparc-*-solaris2*): Disable 32-to-64 cross
1806 compilation for solaris versions 2.7 and greater.
1807
1808 2000-10-02 Marc Espie <espie@openbsd.org>
1809
1810 * config/alpha.h (WORD_SWITCH_TAKES_ARG): add -rpath to default,
1811 instead of redefining from scratch.
1812
1813 2000-10-02 David O'Brien <obrien@dragon.nuxi.com>
1814
1815 * config/i386/freebsd.h (NO_PROFILE_COUNTERS): Define.
1816
1817 2000-10-01 Mark Mitchell <mark@codesourcery.com>
1818
1819 * config/ns32k/genix.h: Remove.
1820 * config/ns32k/x-genix: Likewise.
1821 * config/ns32k/xm-genix.h: Likewise.
1822 * config/fx80: Remove all filee in directory.
1823 * config/pyr: Likewise.
1824 * config/tahoe: Likewise.
1825 * config/gmicro: Likewise.
1826 * config/spur: Likewise.
1827 * configure.in: Remove configury bits for above targets.
1828 * configure: Regenerated.
1829
1830 * configure.in: Don't configure chill by default.
1831 * configure: Regenerated.
1832
1833 * c-decl.c (c_expand_body): Don't generate RTL if flag_syntax_only.
1834 (lang_mark_false_label_stack): Remove.
1835 * c-lex.c (init_c_lex): Add file_info_tree as GC root. Allocate
1836 <top level> string in GC area.
1837 (mark_splay_tree_node): New function.
1838 (mark_splay_tree): Likewise.
1839 * except.c (mark_eh_status): Only call lang_mark_false_label_stack
1840 if it exists.
1841 * ggc-callbacks.c (lang_mark_false_label_stack): Remove.
1842 * ggc-common.c (lang_mark_false_label_stack): Change type.
1843 * ggc.h (ggc_alloc_string): Add comment.
1844 (ggc_strdup): New function.
1845
1846 Sat Sep 23 19:10:20 2000 Denis Chertykov <denisc@overta.ru>
1847
1848 * config/avr/avr.h (BRANCH_COST): Define as 0.
1849
1850 * config/pdp11/pdp11.c: #include "tree.h" added.
1851
1852 2000-09-30 Marek Michalkiewicz <marekm@linux.org.pl>
1853
1854 * config/avr/avr.c (ashlhi3_out, ashlsi3_out, ashrhi3_out,
1855 ashrsi3_out, lshrhi3_out, lshrsi3_out): Optimize more cases
1856 with known shift count.
1857 * config/avr/avr.md (ashlsi3, ashrsi3, lshrsi3):
1858 New alternative for shift count 2 with no scratch register.
1859 (ashlhi3, ashlsi3): Change "cc" attribute from "clobber" to
1860 "set_n" for shift counts 1 and 2.
1861
1862 2000-09-30 Geoff Keating <geoffk@cygnus.com>
1863
1864 * config/rs6000/rs6000.md (movsi_to_cr): Remove the USE. Calculate
1865 the mask value from the individual SET operations.
1866 (return_internal_si): Move the USE after the RETURN.
1867 (return_internal_di): Likewise.
1868 (return_and_restore_fpregs_si): Likewise.
1869 (return_and_restore_fpregs_di): Likewise.
1870 (return_eh_si): Likewise.
1871 (return_eh_di): Likewise.
1872 * config/rs6000/rs6000.c (mtcrf_operation): Don't look for,
1873 or check, the USE.
1874 (rs6000_emit_prologue): Don't emit the USE for movsi_to_cr.
1875 Don't generate a PARALLEL around a single operation movsi_to_cr.
1876 Generate the RETURN first in any PARALLELs.
1877
1878 * rtlanal.c (single_set_1): Use fatal_insn to display the
1879 invalid insn. Check for more cases when a USE or CLOBBER occurs
1880 before a SET.
1881 * Makefile.in: Update dependencies for rtlanal.o.
1882
1883 2000-09-30 Joseph S. Myers <jsm28@cam.ac.uk>
1884
1885 * i386.c: Move include of "config.h" to before that of <setjmp.h>.
1886
1887 2000-09-30 Joseph S. Myers <jsm28@cam.ac.uk>
1888
1889 * c-tree.texi, contrib.texi, gcc.texi, install.texi, invoke.texi:
1890 Consistently use @email for formatting email addresses.
1891
1892 2000-09-29 Richard Henderson <rth@cygnus.com>
1893
1894 * cse.c (notreg_cost): New argument outer.
1895 (COST): Pass in SET to notreg_cost
1896 (COST_IN): New.
1897 (fold_rtx): Use COST_IN. Prefer constants when costs
1898 are the same.
1899
1900 2000-09-29 David Edelsohn <edelsohn@gnu.org>
1901
1902 * fixinc/inclhack.def (broken_cabs): Generalize regex.
1903 * fixinc/fixincl.x: Regenerate.
1904
1905 2000-09-29 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1906
1907 * loop.c (check_final_value): A GIV is not replaceable if used
1908 before set.
1909
1910 Fri Sep 29 10:04:12 2000 Jeffrey A Law (law@cygnus.com)
1911
1912 * version.c: Bump to gcc-2.97.
1913
1914 Frs Sep 29 13:37:59 MET DST 2000 Jan Hubicka <jh@suse.cz>
1915
1916 * final.c (final_scan_insn): Remove extra extract_insn call;
1917 Use caching for constrain_operands.
1918 (cleanup_subreg_operands): Use caching for extract_insn.
1919 * recog.c (constrain_operands_cached): New.
1920 * recog.h (constrain_operands_cached): Declare.
1921 * i386.c (ix86_attr_length_immediate_default,
1922 ix86_attr_length_address_default, ix86_agi_dependant): Cache
1923 extract_insn call.
1924
1925 * recog.c (asm_noperands): Tweak.
1926 (extract_insn): Do not call asm_noperads for non-asm instructions.
1927
1928 Fri Sep 29 13:20:42 MET DST 2000 Jan Hubicka <jh@suse.cz>
1929
1930 * recog.c (recog_memoized): Rename to recog_memoized_1.
1931 * recog.h (recog_memoized): Rename to recog_memoized_1.
1932 (recog_memoized): New macro.
1933 * rtl.h (single_set): Rename to single_set_1
1934 (single_set): New macro.
1935 * rtlanal.c (single_set): Rename to single_set_1; expect clobbers
1936 to be last.
1937
1938 * i386.md (strmovsi_1, strmovhi_1 strmovqi_1):
1939 Do not use match_dup of input operands at outputs.
1940 Use register_operand for memory expression.
1941 (rep_movsi): Put use last, canonicalize.
1942 Use register_operand for memory expression.
1943 (rep_movqi): Put use last.
1944 Use register_operand for memory expression.
1945 (strsetsi_1, strset_hi_1, strsetqi_1): Do not use match_dup
1946 of input operands at outputs. Use register_operand for memory
1947 expression.
1948 (rep_stossi): Put use last; canonicalize; fix match_dup in
1949 the address expression
1950 (rep_stosqi): Likewise.
1951 (memcmp expander): Update calls.
1952 (cmpstrsi_nz_1, cmpstrsi_1, strlensi_1): Avoid match_dups in
1953 the clobbers.
1954
1955 * i386.md (fp_jcc_3, fp_jcc_4, jp_fcc_5): if_then_else operand is
1956 VOIDmode.
1957 (fp_jcc_4, fp_jcc_3): Refuse unordered comparisons.
1958
1959 2000-09-28 David O'Brien <obrien@FreeBSD.org>
1960
1961 * config/i386/freebsd-aout.h: New, FreeBSD a.out config file.
1962 Contains the old contents of config/i386/freebsd.h
1963 * config/i386/freebsd.h: Now the ELF rather than a.out config file.
1964 Contains the old contents of config/i386/freebsd-elf.h
1965 * config/i386/freebsd-elf.h: Retire this file -- contents moved to
1966 config/i386/freebsd.h.
1967 * configure.in: Adjust for above changes.
1968 * po/POTFILES.in: Likewise.
1969 * po/en_GB.po: Likewise.
1970 * po/gcc.pot: Likewise.
1971 * configure: Rebuilt.
1972
1973 2000-09-28 Franz Sirl <Franz.Sirl-kernel@lauterbach.com>
1974
1975 * doloop.c (doloop_modify): Prevent delete_insn() from
1976 deleting too much. Prefer loop->top over loop->start as
1977 target for the new JUMP insn.
1978 (doloop_valid_p): Ignore loop with exit_count != 0.
1979
1980 2000-09-28 Philipp Thomas <pthomas@suse.de>
1981
1982 * invoke.texi (i386 Options): Add athlon to table of possible
1983 choices for -mcpu=.
1984
1985 2000-09-28 Gabriel Dos Reis <gdr@codesourcery.com>
1986
1987 * diagnostic.h (output_clear_message_text): New function.
1988 (output_message_text): New macro.
1989
1990 * diagnostic.c (clear_text_info): Rename to
1991 output_clear_message_text.
1992 (output_clear): Adjust.
1993 (output_finish): Rename to output_finalize_message. Tweek.
1994 (output_to_stream): Adjust.
1995
1996 2000-09-28 Neil Booth <neilb@earthling.net>
1997
1998 * cpperror.c (_cpp_begin_message): Do the test for suppression
1999 of warnings and pedantic warnings before the "is a warning an
2000 error" tests.
2001 * cppinit.c (cpp_handle_option): Remove surplus \n.
2002 * cpplex.c (ON_REST_ARG): Delete.
2003 (skip_block_comment): Initialise prevc.
2004 (parse_args): Improve error messages.
2005 (maybe_paste_with_next): Use CONTEXT_VARARGS rather
2006 than ON_REST_ARG.
2007 * cpplib.c (cpp_push_buffer): Fix grammar in message.
2008 * cppmain.c (main): Set callbacks for #ident and #pragma
2009 only if no_output option is false.
2010 (do_pragma_implementation): Only call the #pragma handler
2011 if it is set in the cpp_reader structure.
2012
2013 Wed Sep 27 14:00:07 2000 Donald Lindsay <dlindsay@cygnus.com>
2014
2015 * integrate.c (copy_insn_list): if an ignored return value
2016 is being clobbered, skip cloning that into the inline copy.
2017
2018 2000-09-27 Joseph S. Myers <jsm28@cam.ac.uk>
2019
2020 * extend.texi, invoke.texi, gcc.texi, install.texi: Consistently
2021 use @uref for formatting URLs.
2022
2023 2000-09-27 Mark Elbrecht <snowball3@bigfoot.com>
2024
2025 * config/i386/djgpp.h (UNIQUE_SECTION): Constify the variables
2026 name and prefix.
2027
2028 Tue 26-Sep-2000 18:25:38 BST Neil Booth <neilb@earthling.net>
2029
2030 * gcc.c (cpp_options): Add spec for -ftabstop=.
2031 (invoke_as): New spec that handles invoking as.
2032 Update specs to handle -save-temps and -traditional.
2033 * ch/lang-specs.h, f/lang-specs.h, java/lang-specs.h:
2034 Use invoke_as.
2035 * cp/lang-specs.h, objc/lang-specs.h: Update to use
2036 invoke_as, and handle -save-temps and -traditional (if
2037 appropriate).
2038
2039 2000-09-26 Jakub Jelinek <jakub@redhat.com>
2040
2041 * config/sparc/sparc.c (sparc_emit_set_const64): Don't abort when
2042 op0 is a SUBREG.
2043 (function_arg_slotno): Accept TImode/CTImode.
2044 * config/sparc/sparc.h (MIN_UNITS_PER_WORD): If IN_LIBGCC2 define
2045 to UNITS_PER_WORD.
2046
2047 2000-09-26 Michael Hayes <mhayes@cygnus.com>
2048
2049 * flow.c (flow_loop_pre_header_scan): Punt if loop enters
2050 from entry block.
2051
2052 2000-09-25 Jim Wilson <wilson@cygnus.com>
2053
2054 * config/ia64/ia64.h (INDEX_REG_CLASS): Define to GENERAL_REGS.
2055 (REGNO_OK_FOR_INDEX_P): Define to REGNO_OK_FOR_BASE_P.
2056 (LEGITIMATE_ADDRESS_DISP): Use LEGITIMATE_ADDRESS_REG.
2057 (REG_OK_FOR_INDEX): Define to REG_OK_FOR_BASE_P.
2058
2059 Tue 26-Sep-2000 00:16:22 BST Neil Booth <neilb@earthling.net>
2060
2061 * cpplex.c (parse_args): Don't set VOID_REST flag.
2062 (CONTEXT_VARARGS): New flag.
2063 (maybe_paste_with_next): Set context earlier in loop. Use
2064 it. Do varargs test with CONTEXT_VARARGS flag.
2065 (push_arg_context): Set CONTEXT_VARARGS flag if we're
2066 pushing an argument context for a varargs argument.
2067 * cpplib.h (VOID_REST): Delete.
2068 * gcc.dg/cpp/vararg1.c: Add test case.
2069
2070 2000-09-25 Branko Cibej <branko.cibej@hermes.si>
2071
2072 * flags.h: Declare warning flag warn_system_headers.
2073 * toplev.c: Define it.
2074 (W_options): Add option -Wsystem-headers.
2075 * diagnostic.c (count_error): Test warn_system_headers.
2076 * invoke.texi: Add description for -Wsystem-headers.
2077 * cpplib.h (cpp_options): New member warn_system_headers.
2078 * cpphash.h (CPP_PEDANTIC, CPP_WTRADITIONAL): Don't test
2079 CPP_IN_SYSTEM_HEADER.
2080 * cpplib.c (do_import, do_pragma_once): Likewise.
2081 * cpperror.c (_cpp_begin_message): Test warn_system_headers
2082 and CPP_IN_SYSTEM_HEADER.
2083 * cppinit.c (handle_option): Recognize -Wsystem_headers.
2084 (print_help): Describe -Wsystem_headers.
2085 * cpplex.c (lex_line): Reorganize condition so that warnings
2086 about C++ comments in system headers can be enabled. Remove
2087 label do_line_comment.
2088
2089 Mon 25-Sep-2000 23:38:27 BST Neil Booth <neilb@earthling.net>
2090
2091 * cpplex.c (save_comment): Only store the initial '/'
2092 now.
2093 (lex_token): Combine handling of the two comment types.
2094 Pass everything but the initial '/' to save_comment.
2095
2096 Mon 25-Sep-2000 23:31:45 BST Neil Booth <neilb@earthling.net>
2097
2098 * cpphash.h (_cpp_digraph_spellings, _cpp_process_directive,
2099 _cpp_can_paste): New library-internal prototypes.
2100 * cpplex.c (dump_param_spelling, output_line_command,
2101 output_token, cpp_scan_buffer, cpp_scan_buffer_nooutput,
2102 cpp_printf, cpp_output_list): Move to cppoutput.c.
2103 (process_directive, can_paste, digraph_spellings): Add _cpp_ prefix.
2104 * cppmacro.c (dump_macro_args, cpp_dump_definition) Move to
2105 cppoutput.c.
2106 * cppoutput.c (dump_macro_args, cpp_dump_definition, output_token,
2107 dump_param_spelling, output_line_command, cpp_scan_buffer,
2108 cpp_scan_buffer_nooutput, cpp_printf, cpp_output_list): Moved
2109 from elsewhere.
2110 * Makefile.in: Add cppoutput.c.
2111 * po/POTFILES.in: Add cppoutput.c.
2112
2113 2000-09-25 Richard Henderson <rth@cygnus.com>
2114
2115 * config/ia64/ia64.c (ia64_print_operand): Define 'e' as 64-n.
2116 * config/ia64/ia64.md (rotrsi3): Allow variable rotates; don't
2117 split until after reload.
2118 (rotlsi3, rotldi3): New.
2119
2120 2000-09-25 Gabriel Dos Reis <gdr@codesourcery.com>
2121
2122 * diagnostic.c (output_last_position): Define.
2123 (set_real_maximum_length): Tweek.
2124 * diagnostic.h (output_last_position): Declare.
2125
2126 2000-09-25 Kazu Hirata <kazu@hxi.com>
2127
2128 * config/i386/i386.c: Fix formatting.
2129
2130 2000-09-24 Alan Lehotsky <alehotsky@cygnus.com>
2131
2132 * emit-rtl-c (gen_lowpart_common): Accept non-paradoxical SUBREG when
2133 UNITS_PER_WORD is small.
2134
2135 2000-09-25 Joseph S. Myers <jsm28@cam.ac.uk>
2136
2137 * c-common.c (format_char_info): Add flags2; update comments.
2138 (print_char_table, scan_char_table, time_char_table): Split some
2139 flags out into flags2.
2140 (check_format_info): Use flags2 for those flags, for identifying
2141 the initial character of a scanf scanset, and for identifying
2142 printf formats where the '0' flag is ignored with precision.
2143
2144 2000-09-25 Hans-Peter Nilsson <hp@axis.com>
2145
2146 Changes below marked "here" add TABs on either or both sides,
2147 covering start of line, up to any operand for all noted .*ASM.*_OP
2148 definitions. All callers changed.
2149 * tm.texi: Make documented *_ASM.*_OP:s include spacing
2150 (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP, SHARED_SECTION_ASM_OP,
2151 BSS_SECTION_ASM_OP, SHARED_BSS_SECTION_ASM_OP, INIT_SECTION_ASM_OP,
2152 ASM_BYTE_OP, FINI_SECTION_ASM_OP, EH_FRAME_SECTION_ASM_OP,
2153 ASM_STABS_OP, ASM_STABD_OP, ASM_STABN_OP).
2154 Fix typos in description for LONG_LONG_TYPE_SIZE and
2155 FINI_SECTION_ASM_OP.
2156 * crtstuff.c (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Explain
2157 why these defaults don't have leading spacing.
2158 * dbxout.c (ASM_STABS_OP, ASM_STABN_OP): Here.
2159 * dwarf2out.c (UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
2160 UNALIGNED_DOUBLE_INT_ASM_OP, SECTION_ASM_OP, ASM_BYTE_OP): Here.
2161 * dwarfout.c (FILE_ASM_OP, VERSION_ASM_OP,
2162 UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP, ASM_BYTE_OP,
2163 PUSHSECTION_ASM_OP, POPSECTION_ASM_OP): Here.
2164 * defaults.h (ASM_STABD_OP, EH_FRAME_SECTION_ASM_OP): Here.
2165 * varasm.c (ASM_STABS_OP): Here.
2166 * xcoffout.h (ASM_STABS_OP): Here.
2167 * config/elfos.h (IDENT_ASM_OP, ASM_BYTE_OP, SET_ASM_OP,
2168 SKIP_ASM_OP, ALIGN_ASM_OP, COMMON_ASM_OP, LOCAL_ASM_OP,
2169 INT_ASM_OP, ASCII_DATA_ASM_OP, TYPE_ASM_OP, SIZE_ASM_OP,
2170 STRING_ASM_OP): Here.
2171 * config/freebsd.h (IDENT_ASM_OP): Here.
2172 * config/linux-aout.h (SET_ASM_OP): Here.
2173 * config/linux.h (SET_ASM_OP): Here.
2174 * config/lynx.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2175 INT_ASM_OP): Here.
2176 * config/netbsd.h (TYPE_ASM_OP, SIZE_ASM_OP, SET_ASM_OP): Here.
2177 * config/nextstep.h (EH_FRAME_SECTION_ASM_OP, ALIGN_ASM_OP): Here.
2178 * config/openbsd.h (TYPE_ASM_OP, SIZE_ASM_OP, SET_ASM_OP): Here.
2179 * config/psos.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2180 INT_ASM_OP): Here.
2181 * config/ptx4.h (IDENT_ASM_OP, ASM_BYTE_OP, SET_ASM_OP,
2182 SKIP_ASM_OP, ALIGN_ASM_OP, COMMON_ASM_OP, LOCAL_ASM_OP,
2183 INT_ASM_OP, ASCII_DATA_ASM_OP, CONST_SECTION_ASM_OP,
2184 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP, INIT_SECTION_ASM_OP,
2185 FINI_SECTION_ASM_OP, TYPE_ASM_OP, SIZE_ASM_OP STRING_ASM_OP): Here.
2186 * config/svr3.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
2187 CONST_SECTION_ASM_OP, ASM_BYTE_OP): Here.
2188 * config/a29k/udi.h (INT_ASM_OP): Here.
2189 * config/alpha/alpha-interix.h (CONST_SECTION_ASM_OP,
2190 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP, INT_ASM_OP,
2191 SET_ASM_OP): Here.
2192 * config/alpha/alpha.h (TEXT_SECTION_ASM_OP,
2193 READONLY_DATA_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2194 UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
2195 UNALIGNED_DOUBLE_INT_ASM_OP, ASM_STABS_OP, ASM_STABN_OP,
2196 ASM_STABD_OP): Here.
2197 * config/alpha/elf.h (IDENT_ASM_OP, SKIP_ASM_OP, ALIGN_ASM_OP,
2198 COMMON_ASM_OP, INT_ASM_OP, ASCII_DATA_ASM_OP,
2199 CONST_SECTION_ASM_OP, CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2200 BSS_SECTION_ASM_OP, SBSS_SECTION_ASM_OP, SDATA_SECTION_ASM_OP,
2201 INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP, TYPE_ASM_OP,
2202 SIZE_ASM_OP, STRING_ASM_OP): Here.
2203 * config/alpha/vms.h (LINK_SECTION_ASM_OP,
2204 READONLY_SECTION_ASM_OP, LITERALS_SECTION_ASM_OP,
2205 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP, COMMON_ASM_OP): Here.
2206 * config/arc/arc.h (ASM_BYTE_OP, SET_ASM_OP): Here.
2207 (PUSHSECTION_ASM_OP): Define this, not PUSHSECTION_FORMAT.
2208 * config/arm/aof.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP):
2209 Here.
2210 * config/arm/aout.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2211 BSS_SECTION_ASM_OP, SET_ASM_OP): Here.
2212 * config/arm/coff.h (INT_ASM_OP): Here.
2213 * config/arm/conix-elf.h (UNALIGNED_WORD_ASM_OP): Here.
2214 * config/arm/elf.h (TYPE_ASM_OP, SIZE_ASM_OP, INT_ASM_OP): Here.
2215 * config/arm/linux-elf.h (IDENT_ASM_OP, CONST_SECTION_ASM_OP,
2216 INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP): Here.
2217 * config/arm/unknown-elf.h (UNALIGNED_WORD_ASM_OP): Here.
2218 * config/avr/avr.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2219 ASM_BYTE_OP, TYPE_ASM_OP, SIZE_ASM_OP, WEAK_ASM_OP,
2220 STRING_ASM_OP): Here. Update documentation copy in comments.
2221 * config/c4x/c4x.h (ASM_STABS_OP, BSS_SECTION_ASM_OP): Here.
2222 * config/clipper/clipper.h (TEXT_SECTION_ASM_OP,
2223 DATA_SECTION_ASM_OP): Here.
2224 * config/clipper/clix.h (BSS_SECTION_ASM_OP, INIT_SECTION_ASM_OP):
2225 Here.
2226 * config/convex/convex.h (TEXT_SECTION_ASM_OP,
2227 DATA_SECTION_ASM_OP, BSS_SECTION_ASM_OP): Here.
2228 * config/d30v/d30v.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2229 BSS_SECTION_ASM_OP): Here.
2230 * config/fr30/fr30.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2231 BSS_SECTION_ASM_OP): Here.
2232 * config/fx80/fx80.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2233 Here.
2234 * config/gmicro/gmicro.h (TEXT_SECTION_ASM_OP,
2235 DATA_SECTION_ASM_OP, BSS_SECTION_ASM_OP): Here.
2236 * config/h8300/h8300.h (ASM_WORD_OP): Here.
2237 * config/i370/i370.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2238 BSS_SECTION_ASM_OP): Here.
2239 * config/i386/aix386.h (INIT_SECTION_ASM_OP): Here.
2240 * config/i386/bsd.h (ASM_BYTE_OP): Here.
2241 * config/i386/cygwin.h (SET_ASM_OP, INT_ASM_OP): Here.
2242 * config/i386/dgux.h (CONST_SECTION_ASM_OP): Here.
2243 * config/i386/djgpp.h (IDENT_ASM_OP, INT_ASM_OP, SET_ASM_OP):
2244 Here.
2245 * config/i386/freebsd-elf.h (SET_ASM_OP): Here.
2246 * config/i386/freebsd.h (TYPE_ASM_OP, SIZE_ASM_OP, INT_ASM_OP):
2247 Here.
2248 * config/i386/i386-coff.h (CTORS_SECTION_ASM_OP,
2249 DTORS_SECTION_ASM_OP, INT_ASM_OP): Here.
2250 * config/i386/i386-interix.h (STRING_ASM_OP, CONST_SECTION_ASM_OP,
2251 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP, INT_ASM_OP,
2252 SET_ASM_OP): Here.
2253 * config/i386/i386elf.h (BSS_SECTION_ASM_OP): Here.
2254 * config/i386/netbsd.h (INT_ASM_OP): Here.
2255 * config/i386/openbsd.h (INT_ASM_OP): Here.
2256 * config/i386/osfrose.h (TYPE_ASM_OP, SIZE_ASM_OP, SET_ASM_OP,
2257 IDENT_ASM_OP): Here.
2258 * config/i386/sco5.h (ALIGN_ASM_OP, ASCII_DATA_ASM_OP,
2259 ASM_BYTE_OP, IDENT_ASM_OP, COMMON_ASM_OP, SET_ASM_OP,
2260 LOCAL_ASM_OP, INT_ASM_OP, TYPE_ASM_OP, SIZE_ASM_OP, STRING_ASM_OP,
2261 SKIP_ASM_OP, GLOBAL_ASM_OP): Here.
2262 * config/i386/seq-sysv3.h (SHARED_SECTION_ASM_OP,
2263 SHARED_BSS_SECTION_ASM_OP): Here.
2264 * config/i386/sequent.h (SHARED_SECTION_ASM_OP): Here.
2265 * config/i386/sun386.h (ASM_BYTE_OP, TEXT_SECTION_ASM_OP,
2266 DATA_SECTION_ASM_OP): Here.
2267 * config/i386/svr3gas.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
2268 CONST_SECTION_ASM_OP): Here.
2269 * config/i386/sysv3.h (INIT_SECTION_ASM_OP): Here.
2270 * config/i386/unix.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2271 BSS_SECTION_ASM_OP): Here.
2272 * config/i860/bsd-gas.h (ASCII_DATA_ASM_OP): Here.
2273 * config/i860/bsd.h (ASCII_DATA_ASM_OP): Here.
2274 * config/i860/fx2800.h (ASM_STABS_OP, ASM_STABN_OP, ASM_STABD_OP,
2275 BSS_ASM_OP): Here, but use trailing spaces.
2276 * config/i860/i860.h (ASM_BYTE_OP, TEXT_SECTION_ASM_OP,
2277 DATA_SECTION_ASM_OP): Here.
2278 * config/i860/paragon.h (ASCII_DATA_ASM_OP, BSS_SECTION_ASM_OP):
2279 Here.
2280 * config/i860/sysv3.h (ASCII_DATA_ASM_OP, CTORS_SECTION_ASM_OP,
2281 DTORS_SECTION_ASM_OP, TDESC_SECTION_ASM_OP): Here.
2282 * config/i860/sysv4.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2283 TDESC_SECTION_ASM_OP): Here.
2284 * config/i960/i960-coff.h (CTORS_SECTION_ASM_OP,
2285 DTORS_SECTION_ASM_OP, INT_ASM_OP): Here.
2286 * config/i960/i960.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2287 Here.
2288 * config/ia64/ia64.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2289 BSS_SECTION_ASM_OP, EH_FRAME_SECTION_ASM_OP,
2290 UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
2291 UNALIGNED_DOUBLE_INT_ASM_OP): Here.
2292 * config/ia64/sysv4.h (ASM_BYTE_OP, STRING_ASM_OP, SKIP_ASM_OP,
2293 COMMON_ASM_OP, ASCII_DATA_ASM_OP, INIT_SECTION_ASM_OP,
2294 FINI_SECTION_ASM_OP, CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2295 SDATA_SECTION_ASM_OP, SBSS_SECTION_ASM_OP): Here.
2296 * config/m32r/m32r.h (SCOMMON_ASM_OP): Here.
2297 * config/m68hc11/m68hc11.h (GLOBAL_ASM_OP): Here.
2298 * config/m68k/auxas.h (BYTE_ASM_OP, WORD_ASM_OP, LONG_ASM_OP,
2299 SPACE_ASM_OP, ALIGN_ASM_OP, GLOBAL_ASM_OP, SWBEG_ASM_OP,
2300 SET_ASM_OP): Here.
2301 * config/m68k/coff.h (BSS_SECTION_ASM_OP, CTORS_SECTION_ASM_OP,
2302 DTORS_SECTION_ASM_OP, INT_ASM_OP): Here.
2303 * config/m68k/crds.h (BSS_SECTION_ASM_OP): Here.
2304 * config/m68k/dpx2.h (ASM_BYTE_OP, GLOBAL_ASM_OP): Here.
2305 * config/m68k/hp320.h (ASCII_DATA_ASM_OP, GLOBAL_ASM_OP): Here.
2306 * config/m68k/linux.h (BSS_SECTION_ASM_OP): Here.
2307 * config/m68k/lynx.h (BSS_SECTION_ASM_OP): Here.
2308 * config/m68k/m68k.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2309 GLOBAL_ASM_OP): Here.
2310 * config/m68k/m68kelf.h (SWBEG_ASM_OP, BSS_ASM_OP,
2311 BSS_SECTION_ASM_OP): Here.
2312 * config/m68k/m68kv4.h (BSS_ASM_OP): Here.
2313 * config/m68k/mot3300.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2314 ASCII_DATA_ASM_OP, SET_ASM_OP, CTORS_SECTION_ASM_OP,
2315 DTORS_SECTION_ASM_OP, GLOBAL_ASM_OP, ASM_BYTE_OP, ALIGN_ASM_OP,
2316 SKIP_ASM_OP): Here.
2317 * config/m68k/newsgas.h (SET_ASM_OP): Here.
2318 * config/m68k/rtemself.h (INIT_SECTION_ASM_OP,
2319 FINI_SECTION_ASM_OP, EH_FRAME_SECTION_ASM_OP): Here.
2320 * config/m68k/sgs.h (BYTE_ASM_OP, WORD_ASM_OP, LONG_ASM_OP,
2321 SPACE_ASM_OP, ALIGN_ASM_OP, GLOBAL_ASM_OP, SWBEG_ASM_OP,
2322 SET_ASM_OP, UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP): Here,
2323 but use trailing spaces.
2324 * config/m68k/tower-as.h (TEXT_SECTION_ASM_OP,
2325 DATA_SECTION_ASM_OP, GLOBAL_ASM_OP, INIT_SECTION_ASM_OP,
2326 FINI_SECTION_ASM_OP, CONST_SECTION_ASM_OP, BSS_SECTION_ASM_OP):
2327 Here.
2328 * config/m88k/dgux.h (FINI_SECTION_ASM_OP, INIT_SECTION_ASM_OP,
2329 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Here.
2330 * config/m88k/m88k.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2331 CONST_SECTION_ASM_OP, TDESC_SECTION_ASM_OP, CTORS_SECTION_ASM_OP,
2332 DTORS_SECTION_ASM_OP, INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
2333 IDENT_ASM_OP, FILE_ASM_OP, SECTION_ASM_OP, SET_ASM_OP,
2334 GLOBAL_ASM_OP, ALIGN_ASM_OP, SKIP_ASM_OP, COMMON_ASM_OP,
2335 BSS_ASM_OP, FLOAT_ASM_OP, DOUBLE_ASM_OP, INT_ASM_OP, SHORT_ASM_OP,
2336 CHAR_ASM_OP, ASCII_DATA_ASM_OP, SBSS_ASM_OP, SCOMM_ASM_OP,
2337 SDATA_SECTION_ASM_OP, TYPE_ASM_OP, SIZE_ASM_OP, INTERNAL_ASM_OP,
2338 VERSION_ASM_OP, UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP,
2339 PUSHSECTION_ASM_OP, POPSECTION_ASM_OP, REQUIRES_88110_ASM_OP,
2340 ASM_BYTE_OP): Here.
2341 * config/m88k/openbsd.h (SET_ASM_OP): Here.
2342 * config/m88k/sysv4.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
2343 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Here.
2344 * config/mcore/mcore-elf.h (UNALIGNED_INT_ASM_OP,
2345 UNALIGNED_SHORT_ASM_OP, CTORS_SECTION_ASM_OP,
2346 DTORS_SECTION_ASM_OP): Here.
2347 * config/mcore/mcore-pe.h (CTORS_SECTION_ASM_OP,
2348 DTORS_SECTION_ASM_OP, INT_ASM_OP): Here.
2349 * config/mips/elf.h (TYPE_ASM_OP, SIZE_ASM_OP,
2350 BSS_SECTION_ASM_OP): Here.
2351 * config/mips/elf64.h (TYPE_ASM_OP, SIZE_ASM_OP): Here.
2352 * config/mips/iris5.h (ABICALLS_ASM_OP): Here.
2353 * config/mips/iris6.h (TYPE_ASM_OP, SIZE_ASM_OP,
2354 POPSECTION_ASM_OP, BSS_SECTION_ASM_OP, CONST_SECTION_ASM_OP_32,
2355 CONST_SECTION_ASM_OP_64, CTORS_SECTION_ASM_OP,
2356 DTORS_SECTION_ASM_OP, EH_FRAME_SECTION_ASM_OP): Here.
2357 * config/mips/mips.c (ABICALLS_ASM_OP): Here.
2358 * config/mips/mips.h (ASM_STABS_OP, ASM_STABN_OP, ASM_STABD_OP):
2359 Here.
2360 * config/mips/netbsd.h (TYPE_ASM_OP, SIZE_ASM_OP, WEAK_ASM_OP):
2361 Here.
2362 * config/mips/osfrose.h (SET_ASM_OP): Here.
2363 * config/mips/sni-svr4.h (ABICALLS_ASM_OP): Here.
2364 * config/ns32k/encore.h (SHARED_SECTION_ASM_OP): Here.
2365 * config/ns32k/merlin.h (SHARED_SECTION_ASM_OP): Here.
2366 * config/ns32k/ns32k.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2367 Here.
2368 * config/ns32k/sequent.h (SHARED_SECTION_ASM_OP): Here.
2369 * config/ns32k/tek6000.h (SHARED_SECTION_ASM_OP): Here.
2370 * config/pa/pa-64.h (INT_ASM_OP, TYPE_ASM_OP, SIZE_ASM_OP): Here.
2371 * config/pa/pa.h (ASM_STABS_OP, ASM_STABN_OP): Here.
2372 * config/pj/pj.h (SET_ASM_OP, BSS_SECTION_ASM_OP): Here.
2373 * config/pyr/pyr.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2374 Here.
2375 * config/romp/romp.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2376 Here.
2377 * config/rs6000/rs6000.h (SET_ASM_OP): Here.
2378 * config/rs6000/sol2.h (ASM_STABN_OP): Here.
2379 * config/rs6000/sysv4.h (SKIP_ASM_OP, LOCAL_ASM_OP, LCOMM_ASM_OP):
2380 Here.
2381 * config/sh/sh.h (SET_ASM_OP, BSS_SECTION_ASM_OP,
2382 UNALIGNED_SHORT_ASM_OP, UNALIGNED_INT_ASM_OP): Here.
2383 * config/sparc/linux.h (COMMON_ASM_OP): Here.
2384 * config/sparc/linux64.h (COMMON_ASM_OP,
2385 UNALIGNED_DOUBLE_INT_ASM_OP): Here.
2386 * config/sparc/litecoff.h (BSS_SECTION_ASM_OP,
2387 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP, INT_ASM_OP): Here.
2388 * config/sparc/lynx.h (BSS_SECTION_ASM_OP): Here.
2389 * config/sparc/pbd.h (ASM_INT_OP): Here.
2390 * config/sparc/sp64-elf.h (UNALIGNED_LONGLONG_ASM_OP): Here.
2391 * config/sparc/sparc.h (ASM_BYTE_OP, TEXT_SECTION_ASM_OP,
2392 DATA_SECTION_ASM_OP, IDENT_ASM_OP): Here.
2393 * config/sparc/sun4gas.h (UNALIGNED_DOUBLE_INT_ASM_OP,
2394 UNALIGNED_INT_ASM_OP, UNALIGNED_SHORT_ASM_OP): Here.
2395 * config/sparc/sysv4.h (STRING_ASM_OP, COMMON_ASM_OP, SKIP_ASM_OP,
2396 UNALIGNED_DOUBLE_INT_ASM_OP, UNALIGNED_INT_ASM_OP,
2397 UNALIGNED_SHORT_ASM_OP, PUSHSECTION_ASM_OP, POPSECTION_ASM_OP,
2398 TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP, BSS_SECTION_ASM_OP,
2399 CONST_SECTION_ASM_OP, INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
2400 CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP,
2401 EH_FRAME_SECTION_ASM_OP): Here.
2402 * config/sparc/vxsim.h (COMMON_ASM_OP): Here.
2403 * config/spur/spur.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2404 Here.
2405 * config/tahoe/tahoe.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2406 Here.
2407 * config/v850/v850.h (SCOMMON_ASM_OP, ZCOMMON_ASM_OP,
2408 TCOMMON_ASM_OP): Here.
2409 * config/vax/vax.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP):
2410 Here.
2411 * config/we32k/we32k.h (TEXT_SECTION_ASM_OP, DATA_SECTION_ASM_OP,
2412 ASM_BYTE_OP): Here.
2413
2414 2000-09-25 Richard Henderson <rth@cygnus.com>
2415
2416 * expmed.c (store_bit_field): Adjust last change to not consider
2417 any word-sized field naturally aligned.
2418
2419 2000-09-24 Richard Henderson <rth@cygnus.com>
2420
2421 * config/alpha/alpha.c (alpha_emit_conditional_branch): Handle
2422 TFmode unordered compares properly. Revalidate integer compare
2423 operands.
2424 (alpha_emit_setcc): New.
2425 (alpha_emit_conditional_move): Revalidate integer compare operands.
2426 * config/alpha/alpha-protos.h: Update.
2427 * config/alpha/alpha.md (cmpdi): Allow general operands.
2428 (sne): Use alpha_emit_setcc.
2429 (seq, slt, sle, sgt, sge, sltu, sleu, sgtu, sgeu): Likewise.
2430 (sunordered, sordered): New.
2431
2432 2000-09-24 Richard Henderson <rth@cygnus.com>
2433
2434 * config/ia64/ia64-protos.h: Update.
2435 * config/ia64/ia64.c (call_multiple_values_operation): Remove.
2436 (ia64_expand_call): New.
2437 (ia64_expand_prologue): Emit an alloc if we need extra input
2438 registers.
2439 (ia64_expand_epilogue): New arg sibcall_p; don't emit the return
2440 instruction if true.
2441 (struct reg_flags): Add is_sibcall.
2442 (rtx_needs_barrier): A sibcall does not use CFM et al. Ignore USEs.
2443 (emit_insn_group_barriers): Set flags.is_sibcall. Remove hacks
2444 for CODE_FOR_gr_spill_internal/CODE_FOR_gr_restore_internal.
2445 * config/ia64/ia64.h (PREDICATE_CODES): Update.
2446 * config/ia64/ia64.md (call): Use ia64_expand_call.
2447 (call_value): Likewise.
2448 (sibcall, sibcall_value): New.
2449 (call patterns): Remove extra expanders; tidy.
2450 (sibcall_epilogue): New.
2451 (set_bsp): Remove the extra USE. Put the operand inside the UNSPEC.
2452
2453 2000-09-24 Richard Henderson <rth@cygnus.com>
2454
2455 * emit-rtl.c (gen_lowpart_common): Use trunc_int_for_mode.
2456
2457 * sibcall.c (skip_pic_restore): New.
2458 (identify_call_return_value): Use it.
2459
2460 2000-09-24 Mark Mitchell <mark@codesourcery.com>
2461
2462 * c-tree.texi: Moved here from cp/ir.texi. Documented nested
2463 functions. Generalize to handle both C and C++.
2464 * Makefile.in (c-tree.info): New target.
2465 (info): Add c-tree.info.
2466
2467 Sun Sep 24 09:15:48 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2468
2469 * expr.c (store_field): If BITSIZE is negative, use size of type.
2470 (expand_expr, case COMPONENT_EXPR): Likewise.
2471
2472 Sun 24-Sep-2000 11:40:23 BST Neil Booth <NeilB@earthling.net>
2473
2474 * cpplex.c: Update TODO comment.
2475 * cpplib.c (do_error, do_warning): Merge common code of
2476 do_error and do_warning into do_diagnostic. Use it.
2477 (do_diagnostic): New function.
2478 * cpplib.h: Fix comment typo.
2479
2480 2000-09-24 Joseph S. Myers <jsm28@cam.ac.uk>
2481
2482 * c-common.c (check_format_info): Warn for a wide character string
2483 used as a non-wide format argument.
2484
2485 2000-09-24 Joseph S. Myers <jsm28@cam.ac.uk>
2486
2487 * builtins.def (BUILT_IN_LLABS): Add.
2488 * builtins.c (expand_builtin): Also abort on BUILT_IN_LLABS.
2489 * c-common.c (c_common_nodes_builtins): Create builtin functions
2490 __builtin_llabs, and plain llabs unless no_nonansi_builtins
2491 outside of C99 mode.
2492 (expand_tree_builtin): Handle BUILT_IN_LLABS.
2493
2494 Sat 23-Sep-2000 22:39:18 BST Neil Booth <NeilB@earthling.net>
2495
2496 * cpphash.h (CPP_RESERVE, CPP_PUTS_Q, CPP_PUTS, CPP_PUTC_Q,
2497 CPP_PUTC, DUMMY_TOKEN, NO_DUMMY_TOKEN): Delete.
2498 * cpplex.c (_cpp_expand_token_space, _cpp_init_toklist,
2499 _cpp_free_toklist): No need to worry about extra dummy token
2500 at the start of token lists any more.
2501 (trigraph_ok): Only warn outside comments.
2502 (skip_block_comment): Set and clear lexing_comment.
2503 (skip_line_comment): Take a cpp_reader not cpp_buffer.
2504 Set and clear lexing_comment.
2505 (parse_number): Handle leading '.' indicated by pfile->seen_dot.
2506 (check_long_token): Delete.
2507 (lex_percent, lex_dot): New subroutines of lex_token to
2508 handle lexing of '.' and '%' without lookback.
2509 (lex_token): Use lex_dot and lex_percent.
2510 (lex_line): Don't check for LIST_OFFSET.
2511 (_cpp_init_input_buffer): Update for new _cpp_init_toklist.
2512 * cpplib.c (_cpp_parse_assertion): Similarly.
2513 (cpp_push_buffer): Initialize extra_char.
2514 * cpplib.h (LIST_OFFSET): Delete.
2515 (struct cpp_buffer): New member extra_char.
2516 (struct lexer_state): New members lexing_comment and seen_dot.
2517
2518 2000-09-23 Jason Merrill <jason@redhat.com>
2519
2520 * config/rs6000/x-aix41 (CLIB): Define here.
2521 * config/rs6000/t-aix43: Not here.
2522 * config/rs6000/t-aix41: Or here. Remove.
2523 * configure.in: Don't use it.
2524
2525 2000-09-22 Jason Merrill <jason@redhat.com>
2526
2527 * configure.in: Add test for HAVE_LD_DWARF_LINKONCE.
2528 * toplev.c: Use it to initialize flag_eliminate_dwarf2dups.
2529 * config.in: Regenerate.
2530
2531 * configure.in: Fix checks for assembler features when using a
2532 one-tree assembler that has not yet been built.
2533 Fix --disable-threads.
2534
2535 2000-09-19 Geoff Keating <geoffk@cygnus.com>
2536
2537 * stmt.c (expand_asm_operands): Allow # in constraints.
2538
2539 2000-09-22 Jason Merrill <jason@redhat.com>
2540
2541 * c-lex.c (skip_white_space): Just treat CRs as horizontal whitespace.
2542
2543 * dbxout.c (dbxout_symbol_name): Just use DECL_NAME for
2544 function-local names.
2545
2546 2000-09-22 Brad Lucier <lucier@math.purdue.edu>
2547 Mark Mitchell <mark@codesourcery.com>
2548
2549 * toplev.c (warn_disabled_optimization): Declare new warning flag.
2550 * flags.h (warn_disabled_optimization): Add it here.
2551 * gcse.c (gcse_main): Add warning when disabled.
2552 * invoke.texi: Document -Wdisabled-optimization.
2553
2554 2000-09-21 Jason Merrill <jason@redhat.com>
2555
2556 * dwarf2out.c (add_const_value_attribute): Multiply by length, not 4.
2557
2558 * dwarf2out.c (tree_add_const_value_attribute): New fn.
2559 (gen_variable_die): Call it for non-definitions.
2560
2561 * dwarf2out.c (die_struct): Add die_mark field.
2562 (mark_dies, unmark_dies): New fns.
2563 (clear_die_sizes): Remove.
2564 (print_die): Check die_symbol rather than die_offset.
2565 (build_abbrev_table, output_pubnames, output_aranges): Check
2566 die_mark rather than die_offset.
2567 (output_comp_unit): Move calc_die_sizes after build_abbrev_table.
2568 Call mark_dies.
2569
2570 Thu 21-Sep-2000 18:19:05 BST Neil Booth <NeilB@earthling.net>
2571
2572 * cppfiles.c (lookup_include_file): Rename to open_file.
2573 Always create a splay tree value, even on syscall failures.
2574 Negative entries indicated by fd == -2.
2575 Re-open files closed in the meantime.
2576 (_cpp_fake_include): Create a negative splay tree entry.
2577 (find_include_file, cpp_read_file): Update for function name
2578 change.
2579 * gcc.gd/cpp/mi4.c: Testcase.
2580
2581 2000-09-21 Nick Clifton <nickc@redhat.com>
2582
2583 * config/arm/t-arm-elf (MULTILIB_DIRNAMES): Enable multilibs for
2584 ARM and THUMB modes.
2585
2586 * config/mcore/mcore.c: Fix compile time warnings.
2587 * config/mcore/mcore-protos.h: Fix compile time warnings.
2588
2589 2000-09-20 J. David Anglin <dave@hiauly1.hia.nrc.ca>
2590
2591 * configure.in: Correct test of gcc_cv_glibc.
2592 * configure: Rebuilt.
2593 * config.in: Rebuilt.
2594
2595 2000-09-20 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2596
2597 * builtins.c (expand_builtin_fputs): Also expand when length!=1.
2598 (expand_builtin): Handle BUILT_IN_FWRITE.
2599
2600 * builtins.def (BUILT_IN_FWRITE): New entry.
2601
2602 * c-common.c (c_common_nodes_and_builtins): Declare __builtin_fwrite.
2603
2604 Wed Sep 20 15:39:14 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
2605
2606 * gcc.c (modify_target): New variable and struct.
2607 (process_command): Handle MODIFY_TARGET_NAME.
2608 * tm.texi (MODIFY_TARGET_NAME): Add documentation for new macro.
2609 * config/pa/pa.h (MODIFY_TARGET_NAME): New macro.
2610
2611 * c-decl.c (finish_decl): Add else's to avoid referencing
2612 TYPE_DOMAIN of an ERROR_MARK.
2613
2614 Wed Sep 20 21:44:31 2000 Denis Chertykov <denisc@overta.ru>
2615
2616 * config/avr/avr.c (adjust_insn_length): Adjust lengths of
2617 `reload_in*' insns.
2618
2619 2000-09-19 Marek Michalkiewicz <marekm@linux.org.pl>
2620
2621 * config/avr/avr.md (neghi2): Add alternative for input and output
2622 operands in different registers, as in negsi2.
2623 (*negsi2): Remove '*' from the name. Use "movw" if available.
2624
2625 2000-09-19 Jim Wilson <wilson@cygnus.com>
2626
2627 * config/ia64/crtbegin.asm (__dso_handle): Delete use of
2628 HAVE_GAS_HIDDEN macro.
2629
2630 Tue 19-Sep-2000 22:38:57 BST Neil Booth <NeilB@earthling.net>
2631
2632 * cpplex.c (lex_line): Drop the EOF token for unknown
2633 directives in assembler.
2634
2635 2000-09-19 David Edelsohn <edelsohn@gnu.org>
2636
2637 * configure.in: Allow enable_threads_flag value of "aix". Define
2638 thread_file as "aix" for AIX 4.3 and above.
2639 * configure: Regenerated.
2640
2641 * gthr-aix.h: New file.
2642
2643 * rs6000/t-aix43: Replace soft-float multilib with pthread.
2644 Remove 403 processor multilib match. Fix rios2 processor multilib
2645 match.
2646
2647 * rs6000/aix.h (ASM_DECLARE_FUNCTION_NAME): Use function_section
2648 to return to appropriate csect.
2649
2650 2000-09-19 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2651
2652 * builtins.c (is_valid_printf_arglist, expand_builtin_printf): New
2653 functions.
2654 (expand_builtin_fputs): Set `target' parameter for `expand_expr'.
2655 (expand_builtin): Handle BUILT_IN_PUTCHAR, BUILT_IN_PUTS and
2656 BUILT_IN_PRINTF.
2657
2658 * builtins.def (BUILT_IN_PUTCHAR, BUILT_IN_PUTS, BUILT_IN_PRINTF):
2659 New entries.
2660
2661 * c-common.c (init_function_format_info): Handle __builtin_printf.
2662 Set `check_function_format_ptr'.
2663 (c_common_nodes_and_builtins): Set `puts_ftype' and
2664 `printf_ftype'. Declare __builtin_putchar, __builtin_puts,
2665 __builtin_printf and printf.
2666
2667 * tree.c, tree.h (check_function_format_ptr): Declare.
2668
2669 Tue 19-Sep-2000 18:26:57 BST Neil Booth <NeilB@earthling.net>
2670
2671 * cppfiles.c (read_include_file): Take no special action for
2672 zero-length files.
2673
2674 2000-09-19 Bernd Schmidt <bernds@redhat.co.uk>
2675
2676 * final.c (insn_current_reference_address): Use INSN_SHUID of seq
2677 rather than that of branch.
2678 (shorten_branches): Don't increment insn_current_address twice.
2679
2680 Undo most of the Wed Jan 27 23:39:53 1999 patch:
2681 * loop.h (struct induction): Delete members derived, ix and last_use.
2682 (struct loop_ivs): Delete members first_increment_giv and
2683 last_increment_giv.
2684 * loop.c (verify_dominator, find_life_end, cmp_recombine_givs_stats,
2685 recombine_givs): Delete functions.
2686 (find_and_verify_loops): Don't initialize cont_dominator.
2687 (strength_reduce): Lose code to try to find bivs that can be
2688 expressed as givs of another biv, and to convert biv increments
2689 into givs.
2690 Lose loop_scan_start variable, always use loop->scan_start.
2691 Don't call recombine_givs. Don't handle derived givs.
2692 (record_giv): Don't initialize derived and last_use fields.
2693 (biv_eliminiation_giv_has_0_offset): Lose code to handle derived
2694 givs.
2695 * unroll.c (derived_regs): Delete static variable.
2696 (unroll_loop): Don't initialize it.
2697 (copy_loop_body): Lose code to handle derived givs.
2698 (find_splittable_givs): Don't check for givs made from biv
2699 increments.
2700 Don't set derived_regs.
2701
2702 Fix misapplied earlier patch:
2703 * config/sh/sh.md (floatsisf_ie): Reenable. Remove explicit reference
2704 to fpul.
2705 (floatsisf2): Generate floatsisf_ie by default.
2706 (floatsisf_i4): Conditional on TARGET_SH4.
2707
2708 (floatsisf2, floatsidf2, extendsfdf2): Also use reg_no_subreg_operand
2709 predicate for the expanders.
2710
2711 2000-09-19 Richard Henderson <rth@cygnus.com>
2712
2713 * config/i386/i386.h (CPP_CPU_SPEC): Define i586 and i686 symbols
2714 in addition to pentium and pentiumpro symbols.
2715 (CPP_CPU_DEFAULT_SPEC): Likewise.
2716
2717 * c-typeck.c (c_expand_asm_operands): Restore the output tree
2718 after expanding.
2719
2720 * stmt.c (expand_expr_stmt): Only call warn_if_unused_value
2721 if the tree has side effects.
2722 (warn_if_unused_value): Do not warn about void constructs.
2723
2724 * c-decl.c (poplevel): Invoke warn_about_unused_variables.
2725
2726 * unroll.c (copy_loop_body): Update LABEL_NUSES before
2727 calling invert_jump.
2728
2729 2000-09-18 Geoff Keating <geoffk@cygnus.com>
2730
2731 * combine.c (can_combine_p): Don't substitute an ASM_OPERANDS
2732 into anything.
2733
2734 2000-09-18 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
2735
2736 * Makefile.in (c-common.o): Depend on diagnostic.h.
2737
2738 * c-common.c: Include diagnostic.h.
2739 (tfaff): Delete.
2740 (status_warning): New function.
2741 (check_format_info, maybe_read_dollar_number, check_format_types,
2742 finish_dollar_format_checking, check_function_format): Accept a
2743 `status' parameter. All callers changed.
2744
2745 * c-common.h (check_function_format): Accept a `status' parameter.
2746
2747 * c-typeck.c: Update call to `check_function_format'.
2748
2749 2000-09-18 Richard Henderson <rth@cygnus.com>
2750
2751 * c-decl.c (c_expand_body): Call mark_varargs before
2752 expand_function_start.
2753
2754 2000-09-18 Geoff Keating <geoffk@cygnus.com>
2755
2756 * config/rs6000/eabi-cn.asm: Use /**/ to delimit comments, not #.
2757 * config/rs6000/eabi-ci.asm: Likewise.
2758
2759 2000-09-18 Richard Henderson <rth@cygnus.com>
2760
2761 * emit-rtl.c (init_emit_once): Initialize const_tiny_rtx
2762 for BImode.
2763
2764 2000-09-18 Jim Wilson <wilson@cygnus.com>
2765
2766 * unroll.c (loop_iterations): Pass increment to extend_for_giv_value
2767 before passing it to fold_rtx_mult_add.
2768
2769 * unroll.c (final_giv_value): Pass increment through
2770 extend_value_for_giv before passing it to emit_iv_add_mult.
2771
2772 * function.c (fixup_var_refs_1, case ZERO_EXTRACT): If we have a
2773 paradoxical subreg, then directly substitute the replacement and
2774 return.
2775
2776 Mon 18-Sep-2000 22:12:44 BST Neil Booth <NeilB@earthling.net>
2777
2778 * cpp.texi: Update documentation, including some clarifications,
2779 the treatment of various newline combinations, and space between
2780 backslash and newline.
2781
2782 Mon Sep 18 21:00:47 2000 J"orn Rennecke <amylaar@redhat.co.uk>
2783
2784 * sdbout.c (PUT_SDB_DEF, PUT_SDB_TAG, PUT_SDB_EPILOGUE_END):
2785 Replace ASM_OUTPUT_LABELREF with assemble_name.
2786
2787 Mon Sep 18 20:26:50 2000 J"orn Rennecke <amylaar@redhat.co.uk>
2788
2789 * sh.c (addsubcosts): CONST is not cheap.
2790 (find_barrier): For Sh1, take alignment after jumps into account.
2791
2792 2000-09-15 Andrew Haley <aph@redhat.com>
2793
2794 * toplev.c (rest_of_compilation): Call purge_hard_subreg_sets to
2795 remove all SETs of SUBREGs of hard registers.
2796 * function.c (purge_hard_subreg_sets): New function.
2797 (purge_single_hard_subreg_set): New function.
2798 * rtl.h: (purge_hard_subreg_sets): New function.
2799
2800 2000-09-18 Richard Henderson <rth@cygnus.com>
2801
2802 * config/ia64/ia64-protos.h: Update.
2803 * config/ia64/ia64.c (signed_inequality_operator): New.
2804 (ia64_expand_compare): New.
2805 (ia64_register_move_cost): Handle PR_REGS moves.
2806 (ia64_secondary_reload_class): Require a GR when moving to a PR.
2807 (struct reg_write_state): Add written_by_and/or.
2808 (struct reg_flags): Add is_and/or.
2809 (rws_update): Set them.
2810 (rws_access_regno): Test them to allow parallel comparisons.
2811 (rtx_needs_barrier): Recognize parallel comparisons.
2812 (emit_insn_group_barriers): Set prev_insn after a call stop bit.
2813 Call recog_memoized; ignore pred_rel_mutex.
2814 (emit_predicate_relation_info): Don't call find_basic_blocks here.
2815 (ia64_reorg): Do it here instead.
2816 * config/ia64/ia64.h: s/CCmode/BImode/g
2817 (MODES_TIEABLE_P): Don't tie BImode.
2818 (PREFERRED_RELOAD_CLASS): Do not reload operations into AR regs.
2819 (CONST_COSTS): Pick sensible values for CONST_INT based on context.
2820 (RTX_COSTS): Make multiply 4 insns.
2821 (MEMORY_MOVE_COST): New.
2822 (PREDICATE_CODES): Update.
2823 * config/ia64/ia64.md: s/CCmode/BImode/g
2824 (movcci, movbi): New.
2825 (andbi3, andcmbi3, iorbi3, iorcmbi3, one_cmplbi2): New.
2826 (cmpsi_and_0, cmpsi_and_1, cmpsi_andnot_0, cmpsi_andnot_1): New.
2827 (cmpdi_and_0, cmpdi_and_1, cmpdi_andnot_0, cmpdi_andnot_1): New.
2828 (tbit_and_0, tbit_and_1, tbit_and_2, tbit_and_3): New.
2829 (cmpsi_or_0, cmpsi_or_1, cmpsi_orcm_0, cmpsi_orcm_1): New.
2830 (cmpdi_or_0, cmpdi_or_1, cmpdi_orcm_0, cmpdi_orcm_1): New.
2831 (tbit_or_0, tbit_or_1, tbit_or_2, tbit_or_3): New.
2832 (mulsi, muldi): Use xmpy not xma.
2833 (cmpbi): New.
2834 (movcc, movcc_internal): Remove.
2835 (branch expanders): Use ia64_expand_compare.
2836 (setcc expanders): Likewise.
2837 (cmov insns): Use move_operand and ia64_move_ok.
2838 (pred_rel_mutex): Use unspec not unspec_volatile. Prevent the
2839 scheduler from moving it past a use.
2840 * config/ia64/build.hacks: Remove.
2841
2842 Mon 18-Sep-2000 19:21:35 BST Neil Booth <NeilB@earthling.net>
2843
2844 * cpphash.h (HASHSTEP): Take character rather than pointer
2845 to character.
2846 (_cpp_check_directive, _cpp_check_linemarker): Update prototypes.
2847
2848 * cpphash.c (cpp_loookup): Update for new HASHSTEP.
2849
2850 * cpplex.c (auto_expand_name_space, trigraph_replace,
2851 backslash_start, handle_newline, parse_name, INIT_TOKEN_STR,
2852 IMMED_TOKEN, PREV_TOKEN_TYPE, PUSH_TOKEN, REVISE_TOKEN,
2853 BACKUP_TOKEN, BACKUP_TRIGRAPH, MIGHT_BE_DIRECTIVE,
2854 KNOWN_DIRECTIVE): Delete.
2855
2856 (handle_newline, check_long_token, skip_escaped_newlines,
2857 unterminated): New functions.
2858 (ACCEPT_CHAR, SAVE_STATE, RESTORE_STATE): New macros.
2859
2860 (parse_identifier): Was parse_name, new implementation.
2861 (skip_line_comment, skip_block_comment, skip_whitespace,
2862 parse_number, parse_string, trigraph_ok, save_comment,
2863 adjust_column, _cpp_get_line): New implementations.
2864
2865 (lex_token): New function. Lexes a token at a time, looking
2866 forwards. Contains most of the guts of the old lex_line.
2867 (lex_line): New implementation, using lex_token to obtain
2868 individual tokens.
2869 (cpp_scan_buffer): Use the token's line, not the list's line.
2870
2871 * cpplib.c (_cpp_check_directive, _cpp_check_linemarker):
2872 New implementations.
2873 (do_assert): Don't bother setting the answer's list's line.
2874 (cpp_push_buffer): Initialise new pfile and read_ahead members
2875 of struct cpp_buffer.
2876
2877 * cpplib.h (cppchar_t): New typedef.
2878 (struct cpp_buffer): read_ahead, pfile and col_adjust are
2879 new members.
2880 (struct lexer_state): New structure that determines the state
2881 and behaviour of the lexer.
2882 (IN_DIRECTIVE, KNOWN_DIRECTIVE): New macros.
2883 (struct cpp_reader): New member "state". Rename
2884 multiline_string_line and multiline_string_column. Delete
2885 col_adjust, in_lex_line members.
2886 (CPP_BUF_COLUMN): Update.
2887
2888 2000-09-18 Richard Henderson <rth@cygnus.com>
2889
2890 * combine.c (simplify_comparison): Shift a NOT out of a single
2891 bit test.
2892
2893 * combine.c (if_then_else_cond): Canonicalize BImode true to
2894 STORE_FLAG_VALUE.
2895 * explow.c (trunc_int_for_mode): Likewise.
2896
2897 * combine.c (combine_simplify_rtx): Use gen_unary to distribute
2898 the NOT for De Morgan's rule.
2899 * simplify-rtx.c (simplify_unary_operation): Simplify a BImode NOT
2900 of a comparison to the reverse comparison.
2901
2902 * combine.c (try_combine): Allow split to create a single insn.
2903
2904 * machmode.def: Add BImode. Add a column for bitsize.
2905 * machmode.h (DEF_MACHMODE): Adjust for extra column.
2906 (GET_MODE_BITSIZE): Use it.
2907 * rtl.c (DEF_MACHMODE): Adjust for extra column.
2908 (mode_bitsize): New.
2909 (mode_mask_array): Use bitsize.
2910 * combine.c (combine_simplify_rtx): Require inner and outer
2911 modes to match on nonzero_bits optimizations.
2912
2913 2000-09-18 Bernd Schmidt <bernds@redhat.co.uk>
2914
2915 * reload1.c (forget_old_reloads_1): If a hard reg is stored, clear
2916 its entry in spill_reg_store.
2917 * config/sh/lib1funcs.ams (movstr_i4 functions): Always compile in.
2918 * sh.c (reg_no_subreg_operand): New function.
2919 * sh-protos.h (reg_no_subreg_operand): Declare it.
2920 * sh.h (PREDICATE_CODES): Add it.
2921 * sh.md (floatsisf2_i4, floatsidf2_i, extendsfdf2_i4): Use it for
2922 input operand that needs to be in fpul.
2923 (fix_truncsfsi2, fix_truncsfsi2_i4): Use register_operand for output.
2924 * sh.c (find_barrier): Take into account that machine_dependent_reorg
2925 might add new insns.
2926
2927 2000-09-18 Alexandre Oliva <aoliva@redhat.com>
2928
2929 * config/sh/sh.c (sh_expand_prologue): Mark GOTaddr2picreg as
2930 MAYBE_DEAD.
2931 (sh_expand_epilogue): Take the PIC register into account when
2932 computing the frame size.
2933
2934 * config/sh/sh.c (nonpic_symbol_mentioned_p): Check LABEL_REFs.
2935 * config/sh/sh.md (sym_label2reg, symPLT_label2reg): Protect
2936 LABEL_REFs with a PIC-safe unspec.
2937
2938 2000-09-18 Joseph S. Myers <jsm28@cam.ac.uk>
2939
2940 * c-common.c (check_format_info): Properly save the argument
2941 number and parameter for $ operand number formats in case width
2942 and precision arguments are also used. Allow printf width and
2943 precision arguments to have operand numbers even if none was
2944 specified for the main format, since this is OK for %*.*m. Only
2945 object to missing $ operand number if the format used requires an
2946 argument.
2947
2948 2000-09-18 Joseph S. Myers <jsm28@cam.ac.uk>
2949
2950 * c-common.c (format_char_info): Add 'W' flag to comment.
2951 (print_char_table, scan_char_table): Use it.
2952 (check_format_info): Use the 'W' flag to determine whether a
2953 format argument is written into.
2954
2955 2000-09-18 Joseph S. Myers <jsm28@cam.ac.uk>
2956
2957 * c-common.c (check_format_types): Reorganise and clean up,
2958 checking earlier for ERROR_MARKs and making cur_type into its
2959 TYPE_MAIN_VARIANT where convenient.
2960
2961 2000-09-18 Joseph S. Myers <jsm28@cam.ac.uk>
2962
2963 * gcc.c (cpp_options): Add specs for __STDC_HOSTED__.
2964
2965 2000-09-18 Bernd Schmidt <bernds@redhat.co.uk>
2966
2967 * optabs.c (emit_libcall_block): Set CONST_CALL_P for the call.
2968
2969 * i386-protos.h (ix86_init_builtins, ix86_expand_builtin): Declare.
2970 * i386.c (struct builtin_description): New.
2971 (bdesc_comi, bdesc_2arg, bdesc_1arg): New arrays.
2972 (mmx_reg_operand): Declare MODE arg as unused.
2973 (ix86_expand_sse_comi, ix86_expand_sse_compare, safe_vector_operand,
2974 ix86_expand_unop1_builtin, ix86_expand_unop_builtin,
2975 ix86_expand_binop_builtin, ix86_expand_store_builtin,
2976 ix86_init_builtins, ix86_expand_builtin): New functions.
2977 * i386.h (ix86_builtins): New enumeration.
2978 (MD_INIT_BUILTINS, MD_EXPAND_BUILTIN): New macros.
2979 * i386.md (attr length_immediate): 0 for mmx/sse types.
2980 (attr prefix_0f): 1 for mmx/sse types.
2981 (setcc_2): Remove "*" so we get gen_setcc_2.
2982 (emms): Account for changed register numbering. Set "memory" attr
2983 to unknown.
2984 (sfence): Set "memory" attr to unknown.
2985
2986 2000-09-18 Andreas Jaeger <aj@suse.de>
2987
2988 * configure.in: Define _GNU_SOURCE only when using the GNU C
2989 Library.
2990 * configure: Regenerated.
2991 * config.in: Regenerated.
2992
2993 2000-09-17 Mark Mitchell <mark@codesourcery.com>
2994
2995 * cppinit.c (cpp_init): Don't use ANSI prototypes.
2996 * flow.c (flow_dump_loop): Likewise.
2997 (flow_loops_dump): Likewise.
2998
2999 * c-typeck.c (c_start_case): Fix typo.
3000
3001 2000-09-17 Joseph S. Myers <jsm28@cam.ac.uk>
3002
3003 * c-decl.c (grokdeclarator): Don't give a warning about defaulting
3004 to int for plain complex which defaults to complex double. Do
3005 warn about defaulting to complex double if pedantic. Warn about
3006 complex integer types if pedantic. Warn about complex types if
3007 pedantic and not in C99 mode.
3008 * c-typeck.c (build_unary_op): If pedantic, warn about use of ~
3009 for complex conjugation.
3010
3011 2000-09-17 Joseph S. Myers <jsm28@cam.ac.uk>
3012
3013 * contrib.texi: Update my entry.
3014
3015 Sun Sep 17 18:48:32 2000 Denis Chertykov <denisc@overta.ru>
3016
3017 * config/avr/avr.md (mcu_enhanced): New attribute.
3018 (mcu_mega): Likewise.
3019 (extendhisi2): Use mcu_enhanced.
3020 (zero_extendhisi2): Likewise.
3021 (call_insn): Use mcu_enhanced and mcu_mega.
3022 (call_value_insn): Likewise.
3023 (*sbrx_branch): Use mcu_mega.
3024 (*sbrx_and_branchsi): Likewise.
3025 (*sbrx_and_branchhi): Likewise.
3026 (*tablejump_lib): Likewise.
3027
3028 Sun Sep 17 10:46:17 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3029
3030 * alias.c (true_dependence): Allow non-unchanging read to conflict
3031 with unchanging write.
3032
3033 * expr.c (store_constructor_field): Accept ALIAS_SET arg.
3034 (store_constructor): Pass alias_set to it.
3035
3036 * c-decl.c (grokdeclarator): Reorder tests to avoid looking at
3037 TYPE_MAIN_VARIANT of ERROR_MARK.
3038 * c-lex.c (readescape): Avoid using printf syntax we don't recognize.
3039
3040 * simplify-rtx.c (simplify_unary_operation): Add cases
3041 FLOAT_EXTEND and FLOAT_TRUNCATE to ones that return 0.
3042
3043 2000-09-17 Bernd Schmidt <bernds@redhat.co.uk>
3044
3045 * expr.h (emit_library_call, emit_library_call_value): Delete
3046 declarations.
3047 * rtl.h (enum libcall_type): New.
3048 (emit_library_call, emit_library_call_value): Change fn_type arg to
3049 be of type enum libcall_type.
3050 * calls.c: Likewise for the function definitions. Several callers
3051 throughout changed to use the new enumeration appropriately.
3052 (emit_library_call_value_1): Likewise. Put back code to make libcall
3053 blocks of equal form, but only use it for the two new higher
3054 enumeration values.
3055
3056 2000-09-16 Mark Mitchell <mark@codesourcery.com>
3057
3058 Convert the C front-end to use function-at-a-time mode.
3059 * c-common.h: Include splay-tree.h.
3060 (C_DECLARED_LABEL_FLAG): New macro.
3061 (struct language_function): Add x_scope_stmt_stack and
3062 x_function_name_declared_p.
3063 (RECHAIN_STMTS): Move definition.
3064 (lang_statment_code_p): Likewise.
3065 (lang_expand_stmt): Likewise.
3066 (lang_expand_decl_stmt): New variable.
3067 (lang_expand_function_end): Likewise.
3068 (current_scope_stmt_stack): New function.
3069 (add_decl_stmt): Likewise.
3070 (add_scope_stmt): Likewise.
3071 (mark_stmt_tree): Likewise.
3072 (struct c_lang_decl): New structure.
3073 (DECL_SAVED_TREE): Define.
3074 (c_mark_lang_decl): New function.
3075 (c_expand_start_cond): Change prototype.
3076 (c_finish_then): New function.
3077 (c_finish_else): Likewise.
3078 (current_function_name_declared): Remove.
3079 (set_current_function_name_declared): Likewise.
3080 (mark_c_language_function): Declare.
3081 (case_compare): Likewise.
3082 (c_add_case_label): Likewise.
3083 (c_expand_expr): Likewise.
3084 (c_safe_from_p): Likewise.
3085 * c-common.c (lang_expand_function_end): New variable.
3086 (struct if_elt): Add if_stmt.
3087 (c_expand_start_cond): Add the if-statement to the statement-tree,
3088 rather than generating RTL.
3089 (c_finish_then): New function.
3090 (c_expand_start_else): Don't generate RTL.
3091 (c_finish_else): New function.
3092 (c_expand_expr_stmt): Don't generate RTL.
3093 (statement_code_p): Add SCOPE_STMT.
3094 (case_compare): New function.
3095 (c_add_case_label): Likewise.
3096 (mark_stmt_tree): Likewise.
3097 (c_mark_lang_decl): Likewise.
3098 (mark_c_language_function): Likewise.
3099 (c_expand_expr): Likewise.
3100 (c_safe_from_p): Likewise.
3101 * c-decl.c (c_stmt_tree): New variable
3102 (c_scope_stmt_stack): Likewise.
3103 (c_function_name_declared_p): Likewise.
3104 (lang_expand_expr_stmt): Remove.
3105 (poplevel): Don't call output_inline_function for nested
3106 functions.
3107 (pushdecl): Don't set DECL_CONTEXT for a local declaration of an
3108 `extern' function.
3109 (redeclaration_error_message): Change means of computing whether
3110 or not a function is nested.
3111 (lookup_label): Don't call label_rtx.
3112 (init_decl_processing): Add more GC roots.
3113 (start_decl): Add DECL_STMTs to the statement-tree, rather than
3114 calling rest_of_decl_compilation.
3115 (finish_decl): Don't call expand_decl.
3116 (store_parm_decls): Begin the statement-tree, but don't generate
3117 RTL.
3118 (finish_function): Tie off the statement-tree. Call c_expand_body
3119 if appropriate.
3120 (c_expand_body): New function.
3121 (push_c_function_context): Save more information.
3122 (pop_c_function_contxt): Likewise.
3123 (copy_lang_decl): Now that we use DECL_LANG_SPECIFIC, copy it.
3124 (lang_mark_tree): Mark it.
3125 (current_stmt_tree): Adjust.
3126 (current_scope_stmt_stack): New function.
3127 (do_case): Remove.
3128 (set_current_name_declared): Likewise.
3129 (c_begin_compound_stmt): Define.
3130 (c_expand_decl_stmt): Likewise.
3131 * c-lang.c: Include rtl.h and expr.h.
3132 (lang_init): Set more language-specific hooks.
3133 * c-lex.c: Include expr.h.
3134 * c-parse.in: Changes throughout to add statements to the
3135 statement-tree, rather than generating RTL after every statement.
3136 * c-semantics.c (lang_expand_decl_stmt): Define.
3137 (add_decl_stmt): New function.
3138 (add_scope_stmt): Likewise.
3139 (finish_stmt_tree): Tweak.
3140 (genrtl_expr_stmt): Likewise.
3141 (genrtl_decl_stmt): Handle local labels, and call
3142 lang_expand_decl_stmt if required.
3143 (genrtl_for_stmt): Fix line-number handling.
3144 (genrtl_case_label): Handle cleanups.
3145 (genrtl_asm_stmt): Don't call combine_strings.
3146 (genrtl_compound_stmt): Simplify.
3147 (expand_stmt): Handle SCOPE_STMTs.
3148 * c-tree.h (struct lang_decl): New structure.
3149 (C_DECLARED_LABEL_FLAG): Remove.
3150 (c_begin_compound_stmt): Declare.
3151 (c_expand_decl_stmt): Likewise.
3152 (c_expand_start_case): Rename to c_start_case.
3153 (c_finish_case): New function.
3154 * c-typeck.c (start_init): Tweak setting of
3155 constructor_incremental.
3156 (c_expand_asm_operands): Tweak error-handling. Add to the
3157 statement-tree.
3158 (c_expand_return): Add to the statement-tree.
3159 (c_expand_start_case): Rename to ...
3160 (c_start_case): ... this.
3161 (struct c_switch): New type.
3162 (switch_stack): New variable.
3163 (do_case): Simplify.
3164 (c_finish_case): New function.
3165 * dependence.c: Include expr.h.
3166 (enum dependence_type): Change spelling of enumerals.
3167 (check_node_dependence): Adjust.
3168 * expr.h (lang_safe_from_p): Declare.
3169 (safe_from_p): Likewise.
3170 * expr.c (lang_safe_from_p): New variable.
3171 (safe_from_p): Give it external linkage. Use lang_safe_from_p.
3172 * stmt.c (expand_expr_stmt): Avoid clobberring of last_expr_type.
3173 * toplev.c (rest_of_decl_compilation): Robustify.
3174 * tree.c (contains_placeholder_p): Likewise.
3175 * Makefile.in: Update dependencies.
3176 * objc/objc-act.h: Adjust calculation of value for dummy_tree_code.
3177 * objc/objc-act.c: Include rtl.h, expr.h, and c-common.h.
3178 (objc_expand_function_end): New function.
3179 (finish_method_def): Use it.
3180 (init_objc): Initialize more language-specific hooks.
3181 * objc/Make-lang.in: Update dependencies.
3182
3183 2000-09-16 Geoffrey Keating <geoffk@cygnus.com>
3184
3185 * configure.in: Define macros that affect features before
3186 testing for features. Don't define _XOPEN_SOURCE.
3187 * configure: Regenerated.
3188 * config.in: Regenerated.
3189
3190 Sat Sep 16 19:42:50 EDT 2000 John Wehle (john@feith.com)
3191
3192 * rtlanal.c (rtx_varies_p): Volatile asms vary.
3193 (rtx_unstable_p): Restructure code. Volatile asms
3194 are unstable.
3195
3196 Sat Sep 16 14:35:55 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3197
3198 * function.h (no_debugging_symbols): New field.
3199 * integrate.c (save_for_inline): Renamed from save_for_inline_nocopy.
3200 Initialize no_debugging_symbols.
3201 (output_inline_function): Save and restore write_symbols and set from
3202 no_debugging_symbols.
3203 * toplev.c (rest_of_compilation): Call save_for_inline.
3204 * tree.h: Update comment.
3205
3206 * stor-layout.c (place_field): Don't do anything if field or
3207 its type are ERROR_MARK.
3208
3209 Sat Sep 16 19:14:00 2000 Laurynas Biveinis <lauras@softhome.net>
3210
3211 * cppfiles.c (purge_cache): Use munmap only if MMAP_THRESHOLD defined.
3212 (read_include_file): Ensure inc->mmaped is initialized.
3213
3214 2000-09-16 Richard Henderson <rth@cygnus.com>
3215
3216 * cppiles.c (purge_cache): Use PTR not caddr_t.
3217
3218 2000-09-16 Hans-Peter Nilsson <hp@axis.com>
3219
3220 * gcc.c: In description for %{<S}, say the option removed is -S.
3221 * invoke.texi (Spec Files): Ditto.
3222
3223 2000-09-16 Andreas Jaeger <aj@suse.de>
3224
3225 * configure.in: Always define _GNU_SOURCE to make interfaces
3226 visible that were hidden by only defining _GNU_SOURCE.
3227 * configure: Regenerated.
3228
3229 Sat 16-Sep-2000 08:13:45 BST Neil Booth <NeilB@earthling.net>
3230
3231 * cpplex.c (push_macro_context): Set an argument's level after
3232 calling parse_args. We could loop infinitely otherwise.
3233
3234 2000-09-15 Tom Tromey <tromey@cygnus.com>
3235
3236 * configure, config.in: Rebuilt.
3237 * configure.in: Check for iconv.h. Define _XOPEN_SOURCE.
3238
3239 2000-09-15 Greg McGary <greg@mcgary.org>
3240
3241 * cppmacro.c (check_trad_stringification): Check token
3242 text pointers against limit before dereferencing.
3243
3244 2000-09-15 Joseph S. Myers <jsm28@cam.ac.uk>
3245
3246 * c-common.c (format_wanted_type): New structure.
3247 (check_format_types): New function.
3248 (check_format_info): Pass all checking of types of format
3249 arguments, including width and precision arguments, to this new
3250 function.
3251
3252 2000-09-15 Gerald Pfeifer <pfeifer@dbai.tuwien.ac.at>
3253
3254 * BUGS: Remove file.
3255
3256 2000-09-15 Jakub Jelinek <jakub@redhat.com>
3257
3258 * config/alpha/alpha.c (override_options): ev6 cache latencies
3259 from Richard Henderson. Don't allow -mmemory-latency=L0.
3260
3261 * config/alpha/alpha.h (TARGET_CPU_EV5, TARGET_CPU_EV6): Define.
3262 (TARGET_OPTIONS): Add tune=.
3263 (alpha_tune_string): Declare.
3264 * config/alpha/alpha.c (override_options): Add cpu_table.
3265 Use alpha_cpu_string first to set both alpha_cpu and target_flags
3266 and then alpha_tune_string to set alpha_cpu only.
3267 Replace tests for PROCESSOR_EV* with TARGET_CPU_EV* tests.
3268 * config/alpha/elf.h (ASM_FILE_START): Likewise.
3269 * config/alpha/osf.h (ASM_FILE_START): Likewise.
3270 * config/alpha/openbsd.h (ASM_FILE_START): Likewise.
3271
3272 Fri Sep 15 19:45:55 MET DST 2000 Jan Hubicka <jh@suse.cz>
3273
3274 * i386-protos.h (no_comparison_operator, uno_comparison_operator):
3275 Remove.
3276 (ix86_comparison_operator, ix86_cc_mode): Declare
3277 * i386.h (CCGC, CCGCO): New modes.
3278 (SELECT_CC_MODE): Move offline to ....
3279 * i386.c (ix86_cc_mode): .... here; use new modes.
3280 (ix86_comparison_operator): New.
3281 (fcmov_comparison_operator): Ensure proper mode.
3282 (put_condition_mode): More sanity checking.
3283 (ix86_match_ccmode): Handle new modes.
3284 (ix86_expand_fp_compare): GEU requires CCmode.
3285 (ix86_expand_strlensi_unroll_1): Use emit_cmp_and_jump_insn instead of
3286 doing it by hand.
3287 * i386.md (cmp?i_ccz_1): Remove
3288 (cmp?i_ccno_1): Use ix86_match_ccmode.
3289 (cmp?i_minus_1): New.
3290 (cmpsi_1): New expander.
3291 (cmpqi_ext_1): Use match_ccmode
3292 (cmpqi_ext_3): New expander.
3293 (cmpqi_ext_3_insn): Rename from cmpqi_ext_3.
3294 (cmpqi_ext_4): Use match_ccmode.
3295 (add?i_?): Use match_ccmode.
3296 (add?i_6): New.
3297 (test?i_ccz_1): Remove
3298 (test?i_1): New.
3299 (testsi_ccno_1, testqi_ccz_1, testqi_ext_ccno_0): New expander.
3300 (testqi_ext_0): Use ix86_match_ccmode.
3301 (*xorqi_cc_ext_1): Use ix86_match_ccmode.
3302 (xorqi_cc_ext_1): New expander.
3303 (shift patterns): Use CCGOCmode for all shifts except for sar.
3304 (setcc_?, jcc_?, miv?icc_nic): Use ix86_comparison_operator.
3305 (setcc_3, jcc_3, miv?icc_c): Remove.
3306
3307 2000-09-15 Will Cohen <wcohen@redhat.com>
3308
3309 * dwarf2out.c (add_const_value_attribute): Changed array into a
3310 xmalloced object, so it exists after function exit.
3311 (free_AT): Added case for dw_val_class_float to free allocated
3312 memory.
3313
3314 2000-09-15 Kazu Hirata <kazu@hxi.com>
3315
3316 * config/i386/i386.md: Fix a comment typo.
3317 * gcc.c: Fix formatting.
3318
3319 2000-09-15 Bernd Schmidt <bernds@redhat.co.uk>
3320
3321 * optabs.c (emit_libcall_block): If target is a user variable,
3322 copy to a temporary first.
3323 * expr.c (convert_move): When generating a libcall, make a libcall
3324 block.
3325 * calls.c (emit_library_call_value_1): Don't create a libcall
3326 sequence here; our caller will in most cases do it.
3327
3328 * sh.h (SECONDARY_INPUT_RELOAD_CLASS): Handle moving T, MACL or
3329 MACH into FPUL.
3330 (SECONDARY_OUTPUT_RELOAD_CLASS): Similar case.
3331 * sh.md (reload_outsf): Generate recognizable patterns for
3332 TARGET_SH3E.
3333 (floatsisf2, floatsisf2_ie, floatsisf2_i4, fix_truncsfsi2,
3334 fix_truncsfsi2_i4, fixsfsi, floatsidf2, floatsidf2_i, fix_truncdfsi2,
3335 fix_truncdfsi2_i, extendsfdf2, extendsfdf2_i4, truncdfsf2,
3336 truncdfsf2_i4): Change not to use explicit references to fpul.
3337 (floatsisf2_ie): Remove USE of fpscr.
3338 (floatsisf2): Change default expansion to match this.
3339 (fix_truncsfsi2_i4_2, fix_truncdfsi2_i4 & splitters): Comment out
3340 unused patterns.
3341
3342 2000-09-15 Richard Henderson <rth@cygnus.com>
3343
3344 * expmed.c (store_bit_field): Consider naturally aligned
3345 memory for direct reference.
3346
3347 2000-09-15 Richard Henderson <rth@cygnus.com>
3348
3349 * config/alpha/alpha.c (alpha_expand_unaligned_load): Force all
3350 AND addresses into alias set 0.
3351 (alpha_expand_unaligned_store): Likewise.
3352 (alpha_expand_unaligned_load_words): Likewise.
3353 (alpha_expand_unaligned_store_words): Likewise.
3354
3355 2000-09-15 Bernd Schmidt <bernds@redhat.co.uk>
3356
3357 * config/sh/sh.h (CPP_SPEC): For -m4-nofpu, define __SH4_NOFPU__.
3358 * config/sh/lib1funcs.asm (movstr_i4): Also compile if __SH4_NOFPU__
3359 is defined.
3360 * config/mips/mips.c (mips_va_arg): Args passed by reference have a
3361 rsize of UNITS_PER_WORD.
3362
3363 Fri 15-Sep-2000 06:49:07 BST Neil Booth <NeilB@earthling.net>
3364
3365 * cpplex.c (ON_REST_ARG): Correct the test.
3366 (maybe_paste_with_next): Duplicate a token that fail pasting,
3367 and clear its PASTE_LEFT flag, so that nested pasting attempts
3368 do not occur.
3369
3370 2000-09-14 Richard Henderson <rth@cygnus.com>
3371
3372 * calls.c (precompute_register_parameters): Use COSTS_N_INSNS, not 2.
3373 * cse.c (rtx_cost): Likewise.
3374 * optabls.c (expand_binop): Likewise.
3375 (expand_twoval_binop, prepare_cmp_insn): Likewise.
3376 * regclass.c (copy_cost): Likewise.
3377 * reload1.c (reload_cse_move2add): Likewise.
3378
3379 2000-09-14 Joseph S. Myers <jsm28@cam.ac.uk>
3380
3381 * c-parse.in (reswords): Add _Complex.
3382
3383 2000-09-14 J. David Anglin <dave@hiauly1.hia.nrc.ca>
3384
3385 * gcc.1: Delete documentation for -undef preprocessor option.
3386
3387 2000-09-14 Alexandre Oliva <aoliva@redhat.com>
3388
3389 * config/sh/sh.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
3390 STARTFILE_SPEC, ENDFILE_SPEC): Remove define.
3391 * config/sh/elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP):
3392 Remove undefine before config/elfos.h.
3393 * config/sh/t-sh (EXTRA_MULTILIB_PARTS): Comment out.
3394
3395 2000-09-14 Kazu Hirata <kazu@hxi.com>
3396
3397 * invoke.texi (H8/300 Options): Add -ms2600.
3398 * config/h8300.c (h8300_init_once): Output an error when -ms2600
3399 is used without -ms.
3400 * config/h8300.h (TARGET_MAC): New.
3401 (TARGET_SWITCHES): Add -ms2600 and -mno-s2600.
3402 (CONDITIONA_REGISTER_USAGE): Disable the mac register on any
3403 machine other than H8/S2600.
3404 * config/h8300.md: Accept mac instructions on the H8/S2600 instead
3405 of the H8/S2000.
3406
3407 2000-09-14 Alexandre Oliva <aoliva@redhat.com>, Bernd Schmidt <bernds@redhat.co.uk>
3408
3409 * reload.c (find_reloads_address_1): Generate reloads for auto_inc
3410 pseudos that refer to the original pseudos, not only to their
3411 equivalent memory locations.
3412
3413 Thu Sep 14 12:10:16 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
3414
3415 * expr.c (expand_expr, case COMPONENT_EXPR): Copy memory attributes
3416 when making new MEM.
3417
3418 * Makefile.in (LN): Remove duplicate definition.
3419
3420 2000-09-12 Bernd Schmidt <bernds@redhat.co.uk>
3421
3422 From Joern Rennecke:
3423 * local-alloc.c (update_equiv_regs): If there is no REG_EQUAL note
3424 on an insn and function_invariant_p returns nonzero for the source,
3425 add a REG_EQUAL note.
3426
3427 Thu Sep 14 00:51:57 EDT 2000 John Wehle (john@feith.com)
3428
3429 * alias.c (memrefs_conflict_p): An ADDRESSOF doesn't
3430 conflict with frame_pointer_rtx.
3431
3432 2000-09-13 Kazu Hirata <kazu@hxi.com>
3433
3434 * loop.c: Fix formatting.
3435 * loop.h: Likewise.
3436
3437 2000-09-13 Richard Henderson <rth@cygnus.com>
3438
3439 * config/ia64/ia64.md (divsf3): New.
3440 (divsf3_internal_lat, divsf3_internal_thr): New.
3441 (divdf3, divdf3_internal_lat, divdf3_internal_thr): New.
3442 (divtf3, divtf3_internal_lat, divtf3_internal_thr): New.
3443 (adddf3_trunc, subdf3_trunc, muldf3_trunc): New.
3444 (madddf4_trunc, msubdf4_trunc, nmuldf3_trunc): New.
3445 (nmadddf4_alts, nmadddf4_trunc): New.
3446 (addtf3_truncsf, addtf3_truncdf, subtf3_truncsf): New.
3447 (subtf3_truncdf, multf3_truncsf, multf3_truncdf): New.
3448 (multf3_truncsf_alts, multf3_truncdf_alts): New.
3449 (maddtf4_truncsf, maddtf4_truncdf, maddtf4_alts_truncdf): New.
3450 (msubtf4_truncsf, msubtf4_truncdf, nmultf3_truncsf): New.
3451 (nmultf3_truncdf, nmaddtf4_truncsf, nmaddtf4_truncdf): New.
3452 (nmaddtf4_truncdf_alts): New.
3453 (recip_approx): Don't predicate.
3454
3455 2000-09-13 Richard Henderson <rth@cygnus.com>
3456
3457 * config/ia64/lib1funcs.asm (__divsf3): Protect fnorm.s with p6.
3458
3459 2000-09-13 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3460
3461 * flags.h (flag_dump_rtl_in_asm): Declare.
3462 * toplev.c (flag_dump_rtl_in_asm): Define.
3463 (decode_d_option): Set flag_dump_rtl_in_asm and flag_print_asm_name
3464 if -dP is specified.
3465 * rtl.h (print_rtx_head): Declare.
3466 * print-rtl.c (print_rtx_head): Define.
3467 (print_rtx): Print the string pointed to by print_rtx_head
3468 at beginning of each dump line.
3469 (print_rtl): Likewise.
3470 (print_rtl_single): Likewise.
3471 * final.c (final_scan_insn): Dump the insn in the assembly
3472 file for debugging.
3473 * gcc.1: Document -dP option.
3474 * invoke.texi (Debugging Options): Likewise.
3475
3476 2000-09-13 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3477
3478 * md.texi (Machine Constraints): Document the 68HC11 constraints.
3479 * install.texi (Configurations): Document the 68HC11&68HC12 port.
3480 * invoke.texi (Option Summary, M68hc1x Options): Document the options.
3481
3482 Tue Sep 12 13:51:13 2000 Denis Chertykov <denisc@overta.ru>
3483
3484 * config/avr/avr.h (ASSEMBLER_DIALECT): New macro declared.
3485 * config/avr/avr.md (*movstrqi_insn): Cleanup output template.
3486 (*clrstrqi): Likewise.
3487 (xorhi3,xorsi3,absqi2): Likewise.
3488 (one_cmplhi2,one_cmplsi2): Likewise.
3489 (addsi3): Two stupid constraint alternatives removed.
3490 (extendhisi2): Use `movw' for enhanced avr cores.
3491 (zero_extendhisi2): Likewise.
3492
3493 Wed Sep 13 02:31:23 EDT 2000 John Wehle (john@feith.com)
3494
3495 * alias.c (find_base_term): Use frame_pointer_rtx
3496 when handling an ADDRESSOF.
3497
3498 * cse.c (canon_hash): Handle USE of BLKmode memory.
3499 (cse_insn): Outgoing arguments for a libcall don't
3500 affect any recorded expressions.
3501
3502 2000-09-12 Tom Tromey <tromey@cygnus.com>
3503
3504 * configure, config.in: Rebuilt.
3505 * configure.in: Check for iconv, nl_langinfo, langinfo.h.
3506
3507 2000-09-12 Jakub Jelinek <jakub@redhat.com>
3508
3509 * c-lex.c (lex_string): Use charwidth to compute bytemask.
3510 * expr.c (expand_expr): Don't optimize constant array references
3511 initialized with wide string constants.
3512
3513 2000-09-13 Michael Hayes <mhayes@cygnus.com>
3514
3515 * loop.c (note_set_pseudo_multiple_uses): Correct.
3516
3517 2000-09-12 Jim Wilson <wilson@cygnus.com>
3518
3519 * ifcvt.c (noce_process_if_block): If A and B are the same, and no
3520 else block, and X has side-effects, then fail.
3521
3522 2000-09-12 Greg McGary <greg@mcgary.org>
3523
3524 * config/mips/mips-protos.h
3525 (trap_cmp_op, mips_gen_conditional_trap): New func decls.
3526 * config/mips/mips.h (ISA_HAS_COND_TRAP): New macro.
3527 (PREDICATE_CODES): Add "trap_cmp_op".
3528 * config/mips/mips.c
3529 (trap_cmp_op, mips_gen_conditional_trap): New functions.
3530 * config/mips/mips.md (trap, conditional_trap): New patterns.
3531
3532 2000-09-12 Bernd Schmidt <bernds@redhat.co.uk>
3533
3534 * flow.c (try_pre_increment_1): Don't do anything to sets of the stack
3535 pointer.
3536
3537 2000-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3538
3539 * builtins.c (built_in_decls): New array.
3540 (expand_builtin_fputs): New function.
3541 (expand_builtin): Handle BUILT_IN_FPUTC and BUILT_IN_FPUTS.
3542
3543 * builtins.def (BUILT_IN_FPUTC, BUILT_IN_FPUTS): New members.
3544
3545 * c-common.c (c_common_nodes_and_builtins): Handle fputc/fputs.
3546
3547 * tree.h (built_in_decls): New array.
3548
3549 Tue Sep 12 08:53:57 2000 Jeffrey A Law (law@cygnus.com)
3550
3551 * convex.md: Use "+" instead of "=" for outputs wrapped in a
3552 STRICT_LOW_PART.
3553 * i370.md, i386.md, ns32k.md, sh.md, vax.md: Likewise.
3554
3555 2000-09-12 Kazu Hirata <kazu@hxi.com>
3556
3557 * haifa-sched.c: Fix formatting.
3558
3559 * genattrtab.c: Fix formatting.
3560
3561 * unroll.c: Fix formatting.
3562
3563 2000-09-12 Bruce Korb <bkorb@gnu.org>
3564
3565 * fixinc/fixfixes.c: make a type for the fix procedure & use it,
3566 remove obsolete code
3567 * fixinc/fixincl.c: Use PARAMS, not _P_. Add no-op default to switch.
3568 * fixinc/fixincl.tpl: make non-exported arrays static scope
3569 * fixinc/fixincl.x: regenerate
3570 * fixinc/fixlib.h: Use PARAMS, not _P_
3571 * fixinc/fixtests.c: make a type for the test proc & use it
3572 * fixinc/server.h: Use PARAMS, not _P_
3573
3574 2000-09-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3575
3576 * c-typeck.c (process_init_element): Avoid union init warnings on
3577 floating point zero. Don't crash on unions containing structs.
3578
3579 2000-09-12 Alexandre Oliva <aoliva@redhat.com>
3580
3581 * config/sh/sh.h (PREDICATE_CODES): Add CONST_DOUBLE to
3582 general_movsrc_operand, and remove CONST_INT from
3583 general_movdst_operand.
3584
3585 2000-09-12 Bernd Schmidt <bernds@redhat.co.uk>
3586
3587 * cse.c (approx_reg_cost): If SMALL_REGISTER_CLASSES, return INT_MAX
3588 if a reference to non-fixed hardreg is seen. Otherwise, count hard
3589 regs with a higher cost.
3590 (preferrable): Deal with cases where either cost or regcost is
3591 MAX_COST.
3592 (cse_insn): Use MAX_COST rather than 10000. Always initialize
3593 regcost values.
3594 (COSTS_N_INSNS): Move definition...
3595 * rtl.h: ...here.
3596 (MAX_COST): New macro.
3597 * loop.c (init_loop): Use COSTS_N_INSNS macro instead of hardcoded
3598 constant.
3599
3600 2000-09-11 Mark Mitchell <mark@codesourcery.com>
3601
3602 * c-common.h (genrtl_clear_out_block): Remove.
3603 * c-semantics.c (genrtl_clear_out_block): Remove.
3604 (genrtl_while_stmt): Don't call it.
3605 (genrtl_for_stmt): Likewise.
3606
3607 2000-09-11 Zack Weinberg <zack@wolery.cumb.org>
3608
3609 * cppfiles.c: Move all default-#defines to top of file.
3610 (open_include_file): Replace by lookup_include_file.
3611 (read_with_read, read_file): Merged into read_include_file.
3612 (stack_include_file, purge_cache): New functions.
3613 (close_cached_fd): Delete.
3614 (lookup_include_file, read_include_file, _cpp_pop_file_buffer):
3615 Cache the in-memory buffer, not the file descriptor.
3616
3617 * cpphash.h (struct include_file): Add buffer, st, refcnt,
3618 mapped fields.
3619 (xcnew): New utility macro.
3620 (DO_NOT_REREAD, NEVER_REREAD): Move up by struct include_file.
3621 * cpplib.h (struct cpp_buffer): Remove mapped field.
3622
3623 2000-09-11 Zack Weinberg <zack@wolery.cumb.org>
3624
3625 * cpplex.c (parse_string): Accept backslash space newline as a
3626 line continuation.
3627 (lex_line): Likewise.
3628 (_cpp_get_token): Remove hard limit on macro nesting.
3629
3630 2000-09-12 Philipp Thomas <pthomas@suse.de>
3631
3632 * aclocal.m4 (AM_WITH_NLS): Don't force use of included gettext.
3633 * configure: Rebuilt.
3634
3635 2000-09-13 Michael Hayes <mhayes@cygnus.com>
3636
3637 * flow.c (split_block): Fix update of registers live at
3638 end of split block.
3639
3640 Tue Sep 12 01:51:38 MET DST 2000 Jan Hubicka <jh@suse.cz>
3641
3642 * i386.md (add?i_3, add?i_5): New.
3643 (add?i_4): Rename from add?i_3; Fix compare pattern.
3644 (sub?i_3, xor?i_3, ior?i_3): New.
3645
3646 * genrecog.c (write_tree): Output code to clear insn_extract cache.
3647 * genattrtab.c (write_attr_case): Gen call to extract_insn_cache
3648 instead of extract_insn and extract_constrain_insn_cache instead of
3649 extract_insn and constrain_operands.
3650 * recog.c (extract_insn_cached, extract_constrain_insn_cached):
3651 New functions.
3652 (extract_insn): Clear which_alternative.
3653 (constrain_operands): Set which_alternative to -1 when failed.
3654 * recog.h (extract_constrain_insn_cached, extract_insn_cached):
3655 Declare.
3656
3657 2000-09-11 Matthew Hiller <hiller@redhat.com>
3658
3659 * config/h8300/h8300.md (movstrictqi): Changed constraint modifier
3660 on operand 0 to '+'.
3661 (movstricthi): Likewise.
3662
3663 2000-09-12 Michael Hayes <mhayes@cygnus.com>
3664
3665 * loop.h (LOOP_IVS): New macro.
3666 (REG_IV_TYPE, REG_IV_INFO): Add ivs argument.
3667 (struct loop_ivs): New.
3668 (struct loop_info): Add ivs field.
3669 (reg_iv_type, reg_iv_info): Delete prototype.
3670 (reg_biv_class, loop_iv_list): Likewise.
3671 * loop.c (record_biv, find_life_end): Pass loop argument.
3672 (reg_iv_type): Remove global array and use
3673 field in loop_regs structure within loop_ivs structure.
3674 (reg_iv_info, reg_biv_class, loop_iv_list): Likewise.
3675 (first_increment_giv, last_increment_giv): Use entry in
3676 loop_ivs structure.
3677 (record_initial): Pass ivs pointer.
3678 * unroll.c (copy_loop_body, remap_split_bivs): Add loop argument.
3679
3680 2000-09-12 Michael Hayes <mhayes@cygnus.com>
3681
3682 * loop.h (LOOP_REGS): New macro.
3683 (struct loop_regs): New.
3684 (struct loop_info): Add regs field.
3685 * loop.c (set_in_loop): Remove global array and store
3686 in loop_regs structure as part of loop_info structure.
3687 (n_times_set, may_not_optimize): Likewise.
3688 (reg_single_usage, moved_once): Likewise.
3689 (count_one_set): Add regs argument.
3690 (combine_movables, rtx_equal_for_loop_p, combine_givs): Likewise.
3691 (set_pseudo_multiple_uses): Pass regs pointer.
3692
3693 2000-09-12 Michael Hayes <mhayes@cygnus.com>
3694
3695 * unroll.c (iteration_info): Subsume into loop_iterations.
3696 * loop.h (loop_info): New field iv.
3697
3698 2000-09-12 Michael Hayes <mhayes@cygnus.com>
3699
3700 * basic-block.h (LOOP_TREE, LOOP_PRE_HEADER, LOOP_EDGES): New.
3701 (LOOP_EXITS_DOMS, LOOP_ALL): Likewise.
3702 (flow_loops_update): New prototype.
3703 (flow_loops_find): Add flags to prototype.
3704 (struct loop): Add `pre_header_root' and `pre_header_trace' fields.
3705 * flow.c (flow_loop_pre_header_scan): New.
3706 (flow_loop_dump): Dump pre-header root and trace and exit dominators.
3707 (flow_loop_free): Free pre-header root and trace and exit dominators.
3708 (flow_loops_find): New argument flags.
3709 (flow_loops_update): New function.
3710 * toplev.c (rest_of_compilation): Add flag argument to flow_loops_find.
3711
3712 2000-09-12 Michael Hayes <mhayes@cygnus.com>
3713
3714 * basic-block.h (split_block, update_bb_for_insn): New prototypes.
3715 * flow.c (split_block, update_bb_for_insn): New functions.
3716
3717 2000-09-11 Richard Henderson <rth@cygnus.com>
3718
3719 * cse.c (fold_rtx): Honor NO_FUNCTION_CSE.
3720
3721 2000-09-11 Richard Henderson <rth@cygnus.com>
3722
3723 * config/ia64/ia64-protos.h (fr_nonimmediate_operand): Declare.
3724 * config/ia64/ia64.c (fr_nonimmediate_operand): New.
3725 (ia64_override_options): Prevent optimizing division for both
3726 latency and throughput.
3727 (rtx_needs_barrier): Handle frcpa.
3728 * config/ia64/ia64.h (MASK_INLINE_DIV_LAT): New.
3729 (MASK_INLINE_DIV_THR, TARGET_INLINE_DIV_LAT): New.
3730 (TARGET_INLINE_DIV_THR, TARGET_INLINE_DIV): New.
3731 (TARGET_SWITCHES): Add -minline-divide-min-latency and
3732 -minline-divide-max-throughput.
3733 (PREDICATE_CODES): Update.
3734 * config/ia64/ia64.md (extendsidi2): Remove * from f case.
3735 (zero_extendsidi2): Likewise. Fix typo in f case insn.
3736 (extendsfdf2): Add cases for gr<->fr and fr<->mem.
3737 (extendsftf2): Likewise.
3738 (extenddftf2): Likewise.
3739 (fix_trunctfdi2_alts): New.
3740 (fixuns_trunctfdi2_alts): New.
3741 (madd*4): Rename from madd*3.
3742 (divsi3, modsi3, udivsi3, umodsi3): New.
3743 (divsi3_internal): New.
3744 (divdi3, moddi3, udivdi3, umoddi3): New.
3745 (divdi3_internal_lat, divdi3_internal_thr): New.
3746 (multf3_alts, maddtf4_alts, nmaddtf4_alts): New.
3747 (recip_approx): New.
3748
3749 2000-09-11 Alexandre Oliva <aoliva@redhat.com>
3750
3751 * print-rtl.c (debug_call_placeholder_verbose): New variable.
3752 (print_rtx) [CALL_PLACEHOLDER]: Dump all call sequences if it is
3753 set.
3754 * integrate.c (copy_rtx_and_substitute): Don't share
3755 LEAF_REG_REMAPpable registers with the inlined function. Don't
3756 share the function value with calling sequences.
3757
3758 2000-09-11 Jakub Jelinek <jakub@redhat.com>
3759
3760 * c-decl.c (do_case): Fix a typo.
3761
3762 * combine.c (simplify_if_then_else): Don't convert a == b ? b : a
3763 to a if the comparison is floating mode and not -ffast-math.
3764 * simplify-rtx.c (simplify_ternary_operation): Likewise.
3765
3766 Mon Sep 11 20:07:48 2000 J"orn Rennecke <amylaar@redhat.co.uk>
3767
3768 * sh.h (INITIALIZE_TRAMPOLINE): Remove stray call to
3769 gen_ic_invalidate_line.
3770
3771 2000-09-11 Philip Blundell <pb@futuretv.com>
3772
3773 * config/arm/elf.h (SUBTARGET_CPP_SPEC): Don't define `arm_elf'.
3774
3775 Mon Sep 11 10:48:41 2000 Ulrich Drepper <drepper@redhat.com>
3776
3777 * install.texi (LANGUAGES): Update to include new languages.
3778 * INSTALL: Rebuilt.
3779
3780 2000-09-11 DJ Delorie <dj@redhat.com>
3781
3782 * gcc.c (main): Don't warn about unused -B prefixes
3783 (unused_prefix_warnings): remove
3784
3785 2000-09-11 Kazu Hirata <kazu@hxi.com>
3786
3787 * final.c: Fix formatting.
3788
3789 * integrate.c: Fix formatting.
3790
3791 2000-09-11 Geoff Keating <geoffk@cygnus.com>
3792
3793 * alias.c (memrefs_conflict_p): An ADDRESSOF does conflict, sorry.
3794
3795 2000-09-11 Bernd Schmidt <bernds@redhat.co.uk>
3796
3797 * reload.c (regno_clobbered_p): Fix thinko in previous change.
3798
3799 2000-09-10 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3800
3801 * gcc.1: Document 68hc11 specific options.
3802
3803 2000-09-10 Geoff Keating <geoffk@cygnus.com>
3804
3805 * config/rs6000/sysv4.h (MASK_LONG_DOUBLE_128): Define.
3806 (TARGET_LONG_DOUBLE_128): Define.
3807 (SUBTARGET_SWITCHES): Add -mlong-double-64 and -mlong-double-128.
3808 (LONG_DOUBLE_TYPE_SIZE): Redefine.
3809 (MAX_LONG_DOUBLE_TYPE_SIZE): Define.
3810 (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Define depending on definition
3811 of __LONG_DOUBLE_128__.
3812 (CPP_SYSV_SPEC): Define __LONG_DOUBLE_128__ if -mlong-double-128
3813 passed.
3814 (CPP_LONGDOUBLE_DEFAULT_SPEC): Define.
3815 (CPP_SYSV_DEFAULT_SPEC): Define.
3816 (SUBTARGET_EXTRA_SPECS): Add cpp_longdouble_default.
3817 (INIT_TARGET_OPTABS): Define.
3818
3819 * config/rs6000/aix.h (RS6000_ITRUNC): Moved from rs6000.h.
3820 (RS6000_UITRUNC): Likewise.
3821 (INIT_TARGET_OPTABS): New macro.
3822 * config/rs6000/rs6000.c (rs6000_trunc_used): Delete.
3823 (trunc_defined): Delete.
3824 (output_prolog): Don't output .extern definitions for fp->int
3825 conversion routines, ASM_OUTPUT_EXTERNAL_LIBCALL will do it.
3826 * config/rs6000/rs6000.h (rs6000_trunc_used): Delete.
3827 (trunc_defined): Delete.
3828 (RS6000_ITRUNC): Moved to aix.h.
3829 (RS6000_UITRUNC): Likewise.
3830 * config/rs6000/rs6000.md (fix_truncdfsi2): Fail if it would
3831 only emit a libcall.
3832 (fixuns_truncdfsi2): Delete.
3833 (trunc_call): Delete.
3834 (trunc_call_rtl): Delete.
3835
3836 2000-09-10 Zack Weinberg <zack@wolery.cumb.org>
3837
3838 * varasm.c (make_decl_rtl): Restore leading star on
3839 DECL_ASSEMBLER_NAME set for decls with an asmspec.
3840
3841 2000-09-10 Zack Weinberg <zack@wolery.cumb.org>
3842
3843 * c-pragma.c (handle_pragma_pack): Correct parsing logic so it
3844 won't give a spurious error for '#pragma pack()'. Simplify
3845 control flow for readability. 'reset' action is not necessary.
3846
3847 2000-09-10 Zack Weinberg <zack@wolery.cumb.org>
3848
3849 * defaults.h: Provide default definitions for: CHAR_TYPE_SIZE,
3850 SHORT_TYPE_SIZE, INT_TYPE_SIZE, LONG_TYPE_SIZE,
3851 LONG_LONG_TYPE_SIZE, WCHAR_TYPE_SIZE, FLOAT_TYPE_SIZE,
3852 DOUBLE_TYPE_SIZE, LONG_DOUBLE_TYPE_SIZE, and WCHAR_UNSIGNED.
3853
3854 * cppexp.c, dwarfout.c, dwarf2out.c, emit-rtl.c, final.c, optabs.c,
3855 profile.c, sdbout.c, tradcif.y, tree.c:
3856 Include defaults.h if not already included.
3857 Don't define the above macros.
3858
3859 * Makefile.in: Update dependencies.
3860
3861 2000-09-10 Mark Mitchell <mark@codesourcery.com>
3862
3863 * c-common.h (add_stmt): Change prototype.
3864 (RECHAIN_STMTS): New macro.
3865 (CASE_LABEL_DECL): Likewise.
3866 (genrtl_case_label): Change prototype.
3867 (c_expand_start_case): Remove prototype.
3868 (build_case_label): Change prototype.
3869 (decl_constant_value): Declare.
3870 * c-common.c (check_case_value): Handle C++'s extensions to C
3871 semantics.
3872 * c-commnon.def (CASE_LABEL): Add room for the CASE_LABEL_DECL
3873 field.
3874 * c-parse.in (stmt): Adjust handling of return statements and case
3875 laels.
3876 * c-semantics.c (add_stmt): Return the new statement.
3877 (genrtl_return_stmt): Take the RETURN_STMT as input, not the
3878 returned expression. Directly generate RTL, rather than calling
3879 c_expand_return.
3880 (genrtl_switch_stmt): Don't call c_expand_start_case.
3881 (build_case_label): Take the LABEL_DECL as input, too.
3882 (genrtl_case_label): Just call add_case_node.
3883 (expand_stmt): Adjust calls to genrtl_return_stmt and
3884 genrtl_case_label.
3885 * c-tree.h (c_expand_start_case): Declare.
3886 * c-typeck.c (decl_constant_value): Give it external linkage.
3887 (c_expand_return): Don't call expand_return or expand_null_return;
3888 use genrtl_return_stmt instead.
3889 * stmt.c (struct nesting): Remove num_ranges field.
3890 (add_case_node): Give it external linkage.
3891 (expand_start_case): Don't set num_ranges.
3892 (expand_start_case_dummy): Don't clear it.
3893 (pushcase): Rely on add_case_node to handle `default' labels.
3894 (add_case_node): Handle `default' labels.
3895 * tree.c (tree_int_cst_compare): New function.
3896 * tree.h (tree_int_cst_compare): Declare.
3897 (add_case_node): Likewise.
3898
3899 2000-09-10 Richard Henderson <rth@cygnus.com>
3900
3901 * c-parse.in: Revert last change.
3902 (init_reswords): Do not enter disabled keywords into the ridpointers
3903 table, modulo objc weirdness.
3904 (_yylex): Return the canonical spelling for a keyword.
3905
3906 2000-09-10 Philip Blundell <philb@gnu.org>
3907
3908 * config/arm/arm.h (CPP_ISA_SPEC): Don't define `arm' or `thumb'.
3909 * config/arm/linux-elf.h (CPP_PREDEFINES): Don't define `__arm__'.
3910
3911 Sun Sep 10 14:30:28 EDT 2000 John Wehle (john@feith.com)
3912
3913 * alias.c (find_base_term): Handle ADDRESSOF.
3914 (memrefs_conflict_p): An ADDRESSOF doesn't conflict.
3915
3916 2000-09-10 Denis Chertykov <denisc@overta.ru>
3917
3918 * genoutput.c (output_insn_data): Translate <NEWLINE> to \n\ while
3919 outputting templates with many lines.
3920
3921 2000-09-10 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3922
3923 * libgcc2.h: Use LONG_LONG_TYPE_SIZE instead of MIN_UNITS_PER_WORD
3924 to decide whether 64-bit support must be generated.
3925
3926 2000-09-10 Richard Henderson <rth@cygnus.com>
3927
3928 * c-parse.in (asm patterns): Fix volatile check.
3929
3930 2000-09-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
3931
3932 * cppmacro.c (check_trad_stringification): New function.
3933 (save_expansion): If -Wtraditional, warn about stringification of
3934 macro arguments.
3935
3936 2000-09-11 Michael Hayes <mhayes@cygnus.com>
3937
3938 * loop.h (struct loop_mem_info): Move from loop.c
3939 (struct loop_info): Add fields store_mems, mems, mems_idx,
3940 mems_allocated, unknown_address_altered,
3941 unknown_constant_address_altered, num_mem_sets, and
3942 first_loop_store_insn.
3943
3944 * loop.c (loop_store_mems): Replace with field in loop_info struct.
3945 (loop_mems, loop_mems_idx, loop_mems_allocated): Likewise.
3946 (unknown_address_altered, unknown_constant_address_altered): Likewise.
3947 (num_mem_sets): Likewise.
3948 (replace_loop_mems, replace_loop_regs): New.
3949 (struct loop_replace_args): New.
3950 (load_mems): Use replace_loop_mems.
3951 (try_copy_prop): Use replace_loop_regs.
3952 (replace_loop_reg, replace_loop_mem): Use loop_replace_args structure.
3953
3954 2000-09-09 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3955
3956 * configure.in: Recognize m6811-elf and m6812-elf.
3957 * configure: Regenerate.
3958
3959 2000-09-09 Geoff Keating <geoffk@cygnus.com>
3960
3961 * recog.c (validate_replace_rtx_1): Correct MODE parameter in call
3962 to operand_subword.
3963
3964 2000-09-10 Michael Hayes <mhayes@cygnus.com>
3965
3966 * loop.c (struct movables): New.
3967 (num_movables): Move into struct movables.
3968 (the_movables): Change type to struct movables.
3969 (ignore_some_movables): Change struct movable arg to struct movables.
3970 (force_movables, combine_movables, regs_match_p): Likewise.
3971 (rtx_equal_for_loop_p, move_movables): Likewise.
3972 (scan_loop): Change movables to be of type struct movables.
3973 Replace last_movable with field in movables structure.
3974
3975 2000-09-08 Zack Weinberg <zack@wolery.cumb.org>
3976
3977 * c-pragma.c: Don't elide entire file if !HANDLE_GENERIC_PRAGMAS.
3978 (init_pragma): Avoid warning if pfile happens to be unused.
3979 * c-pragma.h: Never define HANDLE_GENERIC_PRAGMAS. Never
3980 define init_pragma to nothing. Always prototype
3981 init_pragma. Prototype dispatch_pragma if !USE_CPPLIB.
3982
3983 * c-lex.c (process_directive): Always call dispatch_pragma.
3984 Initialize entering_c_header to 0.
3985
3986 2000-09-08 Stephane Carrez <Stephane.Carrez@worldnet.fr>
3987
3988 * config/m68hc11/m68hc11.md: New file, machine description for
3989 68HC11 & 68HC12.
3990 * config/m68hc11/m68hc11.h: New file, definitions for 68HC11 & 68HC12.
3991 * config/m68hc11/m68hc11.c: New file, functions for 68HC11 & 68HC12.
3992 * config/m68hc11/m68hc12.h: New file, definitions for 68HC12.
3993 * config/m68hc11/m68hc11-protos.h: New file.
3994 * config/m68hc11/m68hc11-crt0.S: New file, startup code.
3995 * config/m68hc11/t-m68hc11-gas: New file, makefile fragment.
3996 * config/m68hc11/xm-m68hc11.h: New file, target defs.
3997 * config/m68hc11/larith.asm: New file, libgcc routines.
3998
3999 2000-09-08 Stephane Carrez <Stephane.Carrez@worldnet.fr>
4000
4001 * Makefile.in (DPBIT_FUNCS): Add _usi_to_df.
4002 (FPBIT_FUNCS): Add _usi_to_sf.
4003 * config/fp-bit.c (usi_to_float): New function.
4004 * config/fp-bit.h (L_usi_to_sf, L_usi_to_df): Define.
4005 (usi_to_float): Add appropriate #define.
4006
4007 2000-09-08 Bernd Schmidt <bernds@redhat.co.uk>
4008
4009 * i386-protos.h (sse_comparison_operator, mmx_reg_operand): Declare
4010 new functions.
4011 * i386.c (sse_comparison_operator, mmx_reg_operand): New functions.
4012 * i386.md (attr "type"): Add sse and mmx types.
4013 (attr "memory"): Handle them without a crash.
4014 (movsi_1, movdi_2): Allow MMX regs.
4015 (movdi splits): Don't split moves involving MMX regs.
4016 (setcc_4): Remove '*' from pattern name so we get a gen_setcc4.
4017 (movv4sf_internal, movv4si_internal, movv8qi_internal,
4018 movv4hi_internal, movv2si_internal, movv8qi, movv4hi, movv2si,
4019 movv4sf, movv4si, pushv4sf, pushv4si, pushv8qi, pushv4hi, pushv2si,
4020 sse_movaps, sse_movups, sse_movmskps, mmx_pmovmskb, mmx_maskmovq,
4021 sse_movntv4sf, sse_movntdi, sse_movhlps, sse_movlhps, sse_movhps,
4022 sse_movlps, sse_loadss, sse_movss, sse_storess, sse_shufps,
4023 addv4sf3, vmaddv4sf3, subv4sf3, vmsubv4sf3, mulv4sf3, vmmulv4sf3,
4024 divv4sf3, vmdivv4sf3, rcpv4sf2, vmrcpv4sf2, rsqrtv4sf2, vmrsqrtv4sf2,
4025 sqrtv4sf2, vmsqrtv4sf2, sse_andti3, sse_nandti3, sse_iorti3,
4026 sse_xorti3, maskcmpv4sf3, maskncmpv4sf3, vmmaskcmpv4sf3,
4027 vmmaskncmpv4sf3, sse_comi, sse_ucomi, sse_unpckhps, sse_unpcklps,
4028 smaxv4sf3, vmsmaxv4sf3, sminv4sf3, vmsminv4sf3, cvtpi2ps, cvtps2pi,
4029 cvttps2pi, cvtsi2ss, cvtss2si, cvttss2si, addv8qi3, addv4hi3,
4030 addv2si3, ssaddv8qi3, ssaddv4hi3, usaddv8qi3, usaddv4hi3, subv8qi3,
4031 subv4hi3, subv2si3, sssubv8qi3, sssubv4hi3, ussubv8qi3, ussubv4hi3,
4032 mulv4hi3, smulv4hi3_highpart, umulv4hi3_highpart, mmx_pmaddwd,
4033 mmx_iordi3, mmx_xordi3, mmx_anddi3, mmx_nanddi3, mmx_uavgv8qi3,
4034 mmx_uavgv4hi3, mmx_psadbw, mmx_pinsrw, mmx_pextrw, mmx_pshufw,
4035 eqv8qi3, eqv4hi3, eqv2si3, gtv8qi3, gtv4hi3, gtv2si3, umaxv8qi3,
4036 smaxv4hi3, uminv8qi3, sminv4hi3, ashrv4hi3, ashrv2si3, lshrv4hi3,
4037 lshrv2si3, mmx_lshrdi3, ashlv4hi3, ashlv2si3, mmx_ashldi3,
4038 mmx_packsswb, mmx_packssdw, mmx_packuswb, mmx_punpckhbw,
4039 mmx_punpckhwd, mmx_punpckhdq, mmx_punpcklbw, mmx_punpcklwd,
4040 mmx_punpckldq, emms, sfence, ldmxcsr, prefetch, stmxcsr, sse_clrti,
4041 mmx_clrdi): New patterns.
4042
4043 2000-09-08 Richard Earnshaw <rearnsha@arm.com>
4044
4045 * arm.c: Don't include tm.h directly.
4046
4047 Fri Sep 8 14:34:56 MET DST 2000 Jan Hubicka <jh@suse.cz>
4048
4049 * recog.c (validate_replace_rtx_1): Fix confusion about equality
4050 testing; simplify subregs of constants and nested subregs.
4051
4052 2000-09-08 Alexandre Oliva <aoliva@redhat.com>
4053
4054 * config/sh/sh.md (symPLT_label2reg): Use operand3 for PIC reg.
4055
4056 2000-09-08 Bernd Schmidt <bernds@redhat.co.uk>
4057
4058 * combine.c (combine_simplify_rtx): Try to simplify VEC_SELECT of a
4059 VEC_CONCAT.
4060 * rtl.texi (description of USE): Add note about possible pitfalls
4061 with this rtx.
4062 From Richard Henderson:
4063 * reload1.c (choose_reload_regs): Compute need_mode properly.
4064
4065 2000-09-07 Richard Henderson <rth@cygnus.com>
4066
4067 * config/ia64/lib1funcs.asm (__divsi3): Use .s1 for frcpa.
4068 (__modsi3, __umodsi3): Likewise.
4069 (__udivsi3): Likewise. Normalize the TFmode values.
4070
4071 2000-09-07 Geoff Keating <geoffk@cygnus.com>
4072
4073 * config/rs6000/sol-c0.c (_start): Declare `termfunc' parameter
4074 with a prototype.
4075 * config/rs6000/rs6000.h (RS6000_ARG_SIZE): Use cast to suppress
4076 warning.
4077
4078 Fri Sep 8 03:26:38 2000 J"orn Rennecke <amylaar@redhat.co.uk>
4079
4080 * sh.md (cmpeqsi_ior_t, cmpeqsi_and_t): Remove.
4081 (cmpeqdi_t): Add output pattern.
4082 (cmpeqdi_t+1): Don't split when not optimizing.
4083 Restore proper splitting operation.
4084
4085 2000-09-07 Richard Henderson <rth@cygnus.com>
4086
4087 * c-lex.c (process_directive): If not HANDLE_GENERIC_PRAGMAS,
4088 do not call dispatch_pragma.
4089
4090 2000-09-07 Jim Wilson <wilson@cygnus.com>
4091
4092 * reload.c (push_reload): Use CLASS_CANNOT_CHANGE_MODE_P in addition
4093 to CLASS_CANNOT_CHANGE_MODE.
4094 * config/ia64/ia64.h (CLASS_CANNOT_CHANGE_MODE_P): True only if the
4095 mode classes are different.
4096
4097 2000-09-07 Zack Weinberg <zack@wolery.cumb.org>
4098
4099 * cpplib.h (struct cpp_options): Add user_label_prefix member,
4100 left out of commit which removed cppulp.c.
4101
4102 2000-09-07 Richard Henderson <rth@cygnus.com>
4103
4104 * bb-reorder.c (fixup_reorder_chain): Add jump in new block
4105 after switch for CASE_DROPS_THROUGH.
4106
4107 2000-09-07 Richard Henderson <rth@cygnus.com>
4108
4109 * loop.c (strength_reduce): Call check_ext_dependant_givs.
4110 Properly extend the biv initial value for the giv.
4111 (record_biv): Zero ext_dependant.
4112 (record_giv): New argument ext_val. Update all callers.
4113 (general_induction_var): Likewise.
4114 (consec_sets_giv): Likewise.
4115 (simplify_giv_expr): Likewise. Fill in ext_val if we find
4116 a sign-extend, zero-extend, or truncate.
4117 (combine_givs_p): Make sure modes are compatible.
4118 (check_ext_dependant_givs): New.
4119 (extend_value_for_giv): New.
4120 * loop.h (struct induction): Add ext_dependant.
4121 * unroll.c (iteration_info): Extend the biv initial value for the giv.
4122 (find_splittable_givs): Likewise.
4123 (final_giv_value): Likewise.
4124
4125 2000-09-07 Zack Weinberg <zack@wolery.cumb.org>
4126
4127 * c-pragma.h: Define HANDLE_GENERIC_PRAGMAS if
4128 REGISTER_TARGET_PRAGMAS is defined. Duplicate some
4129 definitions from cpplib.h.
4130 * cpplib.h: Don't typedef struct cpp_reader if c-pragma.h has
4131 already done it.
4132 * tm.texi: Document HANDLE_PRAGMA as no longer supported. Add
4133 documentation for REGISTER_TARGET_PRAGMAS.
4134
4135 * c-lex.c: Include cpplib.h before c-pragma.h. Define a
4136 default-pragma callback to implement -Wunknown-pragmas if
4137 USE_CPPLIB.
4138 * c-parse.in: Move all includes to top of file.
4139 * c-pragma.c: Include cpplib.h before c-pragma.h. Include
4140 tm_p.h.
4141 (dispatch_pragma): Put the namespace in the -Wunknown-pragmas
4142 warning.
4143 (init_pragma): If REGISTER_TARGET_PRAGMAS is defined, call it.
4144
4145 * arm.h, arm-protos.h, arm.c,
4146 c4x.h, c4x-protos.h, c4x.c,
4147 h8300.h, h8300-protos.h, h8300.c,
4148 i370.h, i370-protos.h, i370.c,
4149 i960.h, i960-protos.h, i960.c,
4150 sh.h, sh-protos.h, sh.c,
4151 v850.h, v850-protos.h, v850.c: Convert HANDLE_PRAGMA-based
4152 pragmata scheme to use REGISTER_TARGET_PRAGMAS instead.
4153
4154 * d30v.h: Don't mention HANDLE_PRAGMA in comment. Add
4155 multiple include guard.
4156 * i370.md (untyped_call): Use GEN_CALL.
4157 (umodsi3): Remove unused variable.
4158 * sh/elf.h: Don't undef HANDLE_SYSV_PRAGMA.
4159 * v850.c (output_move_single, output_move_double): Constify
4160 return value.
4161 (print_operand): Constify a char *.
4162 * v850.h (struct small_memory_info): Constify name member.
4163
4164 2000-09-07 Kazu Hirata <kazu@hxi.com>
4165
4166 * config/h8300.h: Fix comment typos.
4167 * config/h8300/h8300.md: Likewise.
4168 * config/h8300/lib1funcs.asm: Likewise.
4169
4170 Thu 07-Sep-2000 21:29:00 BST Neil Booth <NeilB@earthling.net>
4171
4172 * Makefile.in: Remove references to cppulp.{c,o}.
4173 * cppinit.c (initialize_builtins, cpp_start_read,
4174 cpp_handle_option): Update to use cpp_options structure.
4175 * cppulp.c: Remove.
4176
4177 2000-09-07 Joseph S. Myers <jsm28@cam.ac.uk>
4178
4179 * c-common.c (time_char_table): Allow %#b and %#h.
4180
4181 2000-09-07 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
4182
4183 * reorg.c (find_end_label): If the basic block reorder pass moves the
4184 return insn to some other place try to locate it again and put our
4185 end_of_function_label there.
4186 * reorg.c (relax_delay_slots): Check if find_end_label created a
4187 new label that invalidates the current optimazation.
4188
4189 2000-09-07 Catherine Moore <clm@redhat.com>
4190
4191 * unroll.c (unroll_loop): Check for unconditional jumps
4192 to loop continuation. Delete if n_iterations is 1.
4193 (ujump_to_loop_cont): New routine.
4194
4195 2000-09-07 Bernd Schmidt <bernds@redhat.co.uk>
4196
4197 * rtl.c (class_narrowest_mode): Add entries for MODE_VECTOR_INT and
4198 MODE_VECTOR_FLOAT.
4199 * reload.c (regno_clobbered_p): Accept new arg, MODE, and use it
4200 to handle multiword modes correctly. All callers and the declaration
4201 changed.
4202
4203 2000-09-06 Mark Mitchell <mark@codesourcery.com>
4204
4205 * c-common.h (prep_stmt): Declare.
4206 (lang_expand_stmt): Likewise.
4207 * c-decl.c (lang_expand_stmt): Remove.
4208 * c-semantics.c (lang_expand_stmt): Define.
4209 (prep_stmt): New function.
4210 (expand_stmt): Handle common statement types here.
4211
4212 2000-09-07 Niibe Yutaka <gniibe@m17n.org>, Kaz Kojima <kkojima@rr.iij4u.or.jp>, Alexandre Oliva <aoliva@redhat.com>
4213
4214 * configure.in (sh-*-linux*): Added.
4215 * configure: Rebuilt.
4216 * config/sh/t-linux: New file.
4217 * config/sh/sh.h (USERMODE_BIT): Define.
4218 (TARGET_USERMODE): Likewise.
4219 (TARGET_SWITCHES): New switches for the bits above.
4220 (INITIALIZE_TRAMPOLINE): Call __ic_invalidate in USERMODE.
4221 * config/sh/linux.h: New file.
4222 * config/sh/lib1funcs.asm (GLOBAL): Don't prefix symbols with
4223 underscore on linux.
4224 (L_sdivsi3, L_udivsi3): Define for linux.
4225 (L_ic_invalidate): Define.
4226 * invoke.texi (SH Options): Document -musermode.
4227
4228 2000-09-07 Alexandre Oliva <aoliva@redhat.com>
4229
4230 * config/sh/sh.h (OVERRIDE_OPTIONS): Don't disable function
4231 CSE unless generating PIC.
4232
4233 * config/sh/sh.md (symPLT_label2reg): Force the initialization of
4234 the PIC register.
4235
4236 2000-09-06 H.J. Lu (hjl@gnu.org)
4237
4238 * Makefile.in (clean_s1): Depend on stage_b.
4239 (clean_s2): Depend on stage_d. Don't remove $(VOL_FILES) in
4240 stage2. They are used for "make compare".
4241
4242 2000-09-06 Mark Mitchell <mark@codesourcery.com>
4243
4244 Move statement-tree facilities from C++ to C front-end.
4245 * c-common.h (c_tree_index): Add CTI_VOID_ZERO.
4246 (void_zero_node): New macro.
4247 (struct stmt_tree_s): New type.
4248 (stmt_tree): New typedef.
4249 (struct language_function): New type.
4250 (last_tree): New macro.
4251 (last_expr_type): Likewise.
4252 (walk_tree_fn): New typedef.
4253 (current_stmt_tree): New function.
4254 (begin_stmt_tree): Likewise.
4255 (add_stmt): Likewise.
4256 (finish_stmt_tree): Likewise.
4257 (statement_code_p): Likewise.
4258 (lang_statement_code_p): New variable.
4259 (walk_stmt_tree): New function.
4260 (STMT_IS_FULL_EXPR_P): New macro.
4261 * c-common.c (lang_statement_code_p): New variable.
4262 (c_common_nodes_and_builtins): Initialize void_zero_node.
4263 (statement_code_p): New function.
4264 (walk_stmt_tree): Likewise.
4265 * c-decl.c (language_function): Rename to ...
4266 (c_language_function): ... this. Include language_function.
4267 (push_c_function_context): Adjust accordingly.
4268 (pop_c_function_context): Likewise.
4269 (mark_c_function_context): Likewise.
4270 (current_stmt_tree): Define.
4271 * c-semantics.c (begin_stmt_tree): New function.
4272 (add_stmt): Likewise.
4273 (prune_unused_decls): Likewise.
4274 (finish_stmt_tree): Likewise.
4275
4276 2000-09-06 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
4277
4278 * flow.c (insn_dead_p): Detect dead memory stores with auto increments.
4279
4280 2000-09-06 Kazu Hirata <kazu@hxi.com>
4281
4282 * calls.c: Fix formatting.
4283
4284 2000-09-06 Graham Stott <grahams@cygnus.co.uk>
4285
4286 * config/i386/i386.h (ADDRESS_COST): Fix typo.
4287
4288 2000-09-06 Zack Weinberg <zack@wolery.cumb.org>
4289
4290 Integrated preprocessor.
4291
4292 * Makefile.in: Remove all references to c-parse.gperf,
4293 c-gperf.h, and c-parse.h. Remove -d from yacc command line
4294 generating c-parse.c. Update dependencies.
4295 * c-parse.gperf, c-gperf.h: Delete.
4296
4297 * c-common.c: Don't define parse_options, cpp_token, yy_cur,
4298 yy_lim, or yy_get_token. Don't define get_directive_line if
4299 USE_CPPLIB.
4300 * c-common.h: Add multiple include guard. Define RID values
4301 for every keyword in C, C++, and Objective C. Put all the
4302 modifiers first.
4303 (struct c_fileinfo, get_fileinfo, dump_time_statistics): New.
4304 * c-decl.c (c_decode_option): Handle -lang-objc here.
4305 (print_lang_identifier): Handle C_IS_RESERVED_WORD case.
4306 (grokdeclarator): Adjust for new RID scheme.
4307 (extract_interface_info): New stub.
4308 * c-lang.c: Don't declare yy_cur or parse_options.
4309 (lang_init_options): Call cpp_init. Don't call
4310 cpp_options_init.
4311 (lang_init): Don't call check_newline if USE_CPPLIB.
4312
4313 * c-lex.c: Don't include c-parse.h. Do include timevar.h.
4314 Elide lots of unnecessary code if USE_CPPLIB. Delete code
4315 rendered unnecessary by new architecture. Move routines not
4316 shared with C++ to c-parse.in. Maintain a local idea of the
4317 line number. Handle C++ as well as C.
4318 [USE_CPPLIB]: Declare and register callbacks for #ident and
4319 for entering/leaving files.
4320 (init_c_lex, c_lex): Are now the entry points to this file.
4321 (check_newline): Break out directive handling to
4322 process_directive.
4323 (read_ucs, is_extended_char, utf8_extend_token): Moved here
4324 from C++ front end.
4325 (readescape, parse_float): Overhaul.
4326 (lex_number, lex_string, lex_charconst): Break out of c_lex
4327 (n'ee yylex).
4328 (get_fileinfo, update_header_times, dump_one_header,
4329 dump_time_statistics): New and/or moved here from C++.
4330 Support per-file data needed by C++ and per-header timing
4331 statistics (C++ only, at the moment).
4332 * c-lex.h: Update prototypes. Add multiple include guard.
4333 * c-tree.h (struct lang_identifier): Add rid_code field.
4334 (C_IS_RESERVED_WORD, C_RID_CODE): New.
4335
4336 * c-parse.in: Include c-pragma.h. Remove unnecesary calls to
4337 reinit_parse_for_function and/or position_after_white_space.
4338 (save_filename, save_lineno): Look ahead before saving.
4339 (label -> identifier ':'): Save file and line before shifting ':'.
4340 (reservedwords): No need to call get_identifier.
4341 (init_parse, finish_parse, yyerror, yylex, yyprint,
4342 make_pointer_declarator): Are now here for C/ObjC.
4343 (rid_to_yy): Conversion table from RID constants to Yacc codes.
4344
4345 * c-pragma.c: Rewrite parsing logic to fit with cpplib's
4346 #pragma registry. Provide dummy implementation of that
4347 interface if !USE_CPPLIB.
4348 * c-pragma.h: Update to match.
4349
4350 * flags.h: Add multiple include guard.
4351 (flag_detailed_statistics): Moved here from C++.
4352 * toplev.c: Define flag_detailed_statistics.
4353
4354 * gcc.c (C specs): Use %(trad_capable_cpp) for -E|-M|-MM case
4355 #if USE_CPPLIB.
4356 * timevar.def (TV_CPP, TV_LEX): New.
4357 * timevar.h: Add multiple include guard.
4358
4359 * objc/lang-specs.h: Use %(trad_capable_cpp) for -E|-M|-MM case
4360 #if USE_CPPLIB.
4361 * objc/objc-act.c: Don't mention yy_cur or parse_options.
4362 Initialize cpplib properly. Force lineno to 0 after first
4363 call to check_newline. Don't handle -lang-objc here.
4364 Move forget_protocol_qualifiers and remember_protocol_qualifiers here.
4365
4366 2000-09-06 David Edelsohn <edelsohn@gnu.org>
4367
4368 * rs6000.md: Correct function unit definitions for cr_logical and
4369 mtjmpr.
4370 (sCOND): Additionally fail for sgt, slt, sge, sle if !TARGET_POWER
4371 and use portable method for >=0 and floating point >=. Remove
4372 associated matchers.
4373
4374 2000-09-06 Mark Mitchell <mark@codesourcery.com>
4375
4376 * extend.texi: Mark named return value extension as deprecated.
4377
4378 2000-09-06 Geoff Keating <geoffk@cygnus.com>
4379
4380 * config/rs6000/rs6000.c (rs6000_reverse_condition): Return
4381 the result.
4382
4383 2000-09-06 Gabriel Dos Reis <gdr@codesourcery.com>
4384
4385 * toplev.c (display_help): Fix thinko in documentation.
4386
4387 * diagnostic.h (output_buffer::indent_skip): New fields.
4388 (output_indentation): New macro.
4389
4390 * diagnostic.c (output_indent): New function.
4391 (output_set_prefix, clear_diagnostic_info): Use.
4392 (output_emit_prefix): Predict future indentation.
4393
4394 2000-09-06 DJ Delorie <dj@redhat.com>
4395
4396 * Makefile.in (stage_*): add more dependencies to ensure parallel
4397 builds build correctly
4398
4399 2000-09-06 Manfred Hollstein <manfredh@redhat.com>
4400
4401 * Makefile.in (bootstrap-lean): Depend on bootstrap-lean_g,
4402 not bootstrap-lean_f.
4403
4404 2000-09-06 Andreas Schwab <schwab@suse.de>
4405
4406 * mklibgcc.in: Emit rule for libgcc-stage-start.
4407 * Makefile.in (stage1-start, stage2-start, stage3-start,
4408 stage4-start): Don't handle libgcc here, use libgcc.mk instead.
4409
4410 2000-09-06 Bernd Schmidt <bernds@redhat.co.uk>
4411
4412 * local-alloc.c (local_alloc): Ignore CLASS_LIKELY_SPILLED.
4413 (update_equiv_regs): Likewise, except for the mn10200 kludge.
4414 (combine_regs): Likewise.
4415
4416 * Makefile.in (cse.o): Depend on $(BASIC_BLOCK_H).
4417 * cse.c: Include "basic-block.h".
4418 (struct table_elt): New field REGCOST.
4419 (CHEAP_REG): Delete macro.
4420 (COST): Return 0 for REGs.
4421 (approx_reg_cost_1, approx_reg_cost, preferrable): New functions.
4422 (notreg_cost): Return 0 for appropriate SUBREGs.
4423 (COSTS_N_INSNS): Return N * 2.
4424 (rtx_cost): Return 0 for REGs, and use cost of nested rtx for cheap
4425 SUBREGs.
4426 (CHEAPER): Use new function preferrable.
4427 (insert): Initialize REGCOST member.
4428 (find_best_addr): Use approx_reg_cost for estimation of register
4429 usage.
4430 (cse_insn): Likewise.
4431 * loop.c (iv_add_mult_cost): New function.
4432 (add_cost, shift_cost, mult_cost): Delete variables.
4433 (init_loop): Don't initialize add_cost; reduce copy_cost by half.
4434 (strength_reduce): Use iv_add_mult_cost instead of fixed add_cost.
4435 Make code that detects autoinc opportunities slightly less optimistic.
4436 (simplify_giv_expr): If expression contains other reg that is also a
4437 giv, only increment benefit if this is the only use of that reg.
4438 (consec_sets_giv): Take that change into account.
4439 (combine_givs): Slightly more verbose output.
4440
4441 * i386.h (RTX_COSTS): For MULT, return true cost of multiplication,
4442 not the cost of an equivalent shift.
4443 * sh-protos.h (addsubcosts): Declare.
4444 * sh.c (addsubcosts): New function.
4445 * sh.h (CONST_COSTS): If CONST_OK_FOR_I, then return 0.
4446 (RTX_COSTS): Tweak. Use addsubcosts.
4447 (ADDRESS_COST): Return higher cost for reg+reg addressing.
4448
4449 2000-09-06 Geoff Keating <geoffk@cygnus.com>
4450
4451 * config/rs6000/rs6000.c (validate_condition_mode): New function.
4452 (branch_comparison_operator): Call validate_condition_mode to
4453 abort rather than returning 0.
4454 (branch_positive_comparison_operator): New function.
4455 (scc_comparison_operator): Call validate_condition_mode to abort
4456 rather than returning 0.
4457 (ccr_bit): Call validate_condition_mode. Update for
4458 new branch scheme.
4459 (print_operand): Delete %C modifier. Update %E case
4460 to use EQ bit not SO bit.
4461 (rs6000_reverse_condition): New function.
4462 (rs6000_generate_compare): New function.
4463 (rs6000_emit_sCOND): New function.
4464 (rs6000_emit_cbranch): New function.
4465 (output_cbranch): The length of a long branch insn is
4466 now only 8 bytes. Add validate_condition_mode. Use
4467 rs6000_reverse_condition. Remove cror generation.
4468
4469 * config/rs6000/rs6000.h: Update comments.
4470 (PREDICATE_CODES): Add new predicate. Update codes used
4471 by branch_comparison_operator and scc_comparison_operator.
4472 * config/rs6000/rs6000-protos.h: Add prototypes for
4473 new external functions.
4474 * config/rs6000/rs6000.md: Add new scheduling parameters
4475 for cr_logical instructions. Change length of branch
4476 instructions.
4477 (bCOND patterns): Call rs6000_emit_cbranch.
4478 (sCOND patterns): Call rs6000_emit_sCOND.
4479 (branch patterns): Change lengths to 4.
4480 (cr logical patterns): New.
4481
4482 2000-09-06 Richard Henderson <rth@cygnus.com>
4483
4484 * config/i386/i386.md (call_pop): Fix test for setting
4485 current_function_uses_pic_offset_table.
4486 (call, call_value_pop, call_value): Likewise.
4487
4488 2000-09-06 Zack Weinberg <zack@wolery.cumb.org>
4489
4490 * timevar.c (timevar_add): Delete.
4491 (timevar_get): Also count time since the selected timer was
4492 last updated. Do not examine the timevar stack if the
4493 selected timer is standalone.
4494
4495 2000-09-05 J. David Anglin <dave@hiauly1.hia.nrc.ca>
4496
4497 * gthr-dce.h (__gthread_objc_mutex_deallocate): Free mutex->backend.
4498
4499 2000-09-05 Jason Merrill <jason@redhat.com>
4500
4501 * c-decl.c (finish_incomplete_decl): Don't call complete_array_type
4502 for 'extern' arrays.
4503
4504 2000-09-05 Richard Henderson <rth@cygnus.com>
4505
4506 * config/ia64/lib1func.asm (__divtf3): Rebundle for Itanium.
4507 Eliminate final copy from non-trapping case.
4508 (__divdf3, __divsf3): Likewise.
4509
4510 2000-09-05 Richard Henderson <rth@cygnus.com>
4511
4512 * config/ia64/ia64.md (mulhi3): Fix typo last change.
4513 * config/ia64/lib1func.asm (__divdi3, __udivdi3, __umodsi3): Likewise.
4514
4515 2000-09-03 Donn Terry <donn@interix.com>, Laurynas Biveinis <lauras@softhome.net>
4516
4517 * Makefile.in: Restructure bootstrap stages to allow clean
4518 restart after failure.
4519
4520 2000-09-05 Richard Henderson <rth@cygnus.com>
4521
4522 * config/ia64.md (movsi and movdi patterns): Allow moves from
4523 8-bit constants to AR registers.
4524
4525 2000-09-05 Richard Henderson <rth@cygnus.com>
4526
4527 * config/ia64/ia64.md (mulhi3): New.
4528
4529 2000-09-05 Richard Henderson <rth@cygnus.com>
4530
4531 * config/ia64/ia64.h (INIT_TARGET_OPTABS): Remove.
4532 * config/ia64/lib1funcs.asm (__divdi3): Update from Intel IA-64
4533 Optimization Guide, minimum latency alternative.
4534 (__moddi3, __udivdi3, __umoddi3): Likewise.
4535 (__divsi3, __modsi3, __udivsi3, __umodsi3): Likewise.
4536
4537 2000-09-05 Bruce Korb <bkorb@gnu.org>
4538
4539 * fixinc/fixincl.c (load_file): always read header files
4540 with sizes that are a multiple of the page size.
4541 & use libiberty's getpagesize for determining that.
4542
4543 2000-09-05 Alexandre Oliva <aoliva@redhat.com>
4544
4545 * gcse.c (hash_string_1): Add prototype.
4546 * cse.c (canon_hash_string): Likewise.
4547
4548 2000-09-04 Craig Newell <CraigN@ieee.org>
4549
4550 * gcc.c: Undefine "__WCHAR_TYPE__" before redefining it.
4551
4552 2000-09-04 Andreas Schwab <schwab@suse.de>
4553
4554 * Makefile.in (STAGESTUFF): Remove libgcc.
4555 (stage1-start, stage2-start, stage3-start): Copy the contents of
4556 the libgcc directory explicitly.
4557 (mostlyclean): Clean libgcc.
4558
4559 2000-09-04 Andrew Haley <aph@redhat.com>
4560
4561 * dwarf2out.c: (stack_adjust_offset): New prototype.
4562
4563 Wed Jan 1 00:23:59 MET 1997 Jan Hubicka <jh@suse.cz>
4564
4565 * combine.c (make_extraction): Fix rtx_cost comparison to
4566 match the comment.
4567
4568 Wed Jan 1 00:17:32 MET 1997 Jan Hubicka <jh@suse.cz>
4569
4570 * i386.md (pushsi2, pushhi2, pophi2, swapsf, swapdf,
4571 umulsi3_highpart, smulsi3_highpart, testqi_ccno_1, xorqi_ext_1):
4572 Add '*' to insn pattern name.
4573
4574 2000-09-04 Jakub Jelinek <jakub@redhat.com>
4575
4576 * cpplex.c (ON_REST_ARG): Check VAR_ARGS flag of current context,
4577 use posn - 1 to index into tokens array.
4578 (maybe_paste_with_next): Adjust caller.
4579
4580 2000-09-03 Geoff Keating <geoffk@cygnus.com>
4581
4582 * invoke.texi: Document the -mvxworks option for rs6000 ELF.
4583
4584 * config/rs6000/rs6000.h: Update various comments about XER_REGNO.
4585 (REGNO_REG_CLASS): Use symbolic register
4586 names.
4587
4588 2000-09-03 Richard Earnshaw <rearnsha@arm.com>
4589
4590 * arm.c (final_prescan_insn): If the form of a jump insn isn't
4591 recognized, don't try to conditionally execute it.
4592
4593 Sun Sep 3 13:10:56 2000 Denis Chertykov <denisc@overta.ru>
4594
4595 * config/avr/avr.md ("*tablejump_lib"): New pattern.
4596 (call_value_insn): Right length claculation.
4597 (call_insn): Likewise.
4598
4599 2000-09-02 Marek Michalkiewicz <marekm@linux.org.pl>
4600
4601 * config/avr/avr-protos.h, config/avr/avr.c (unique_section,
4602 gas_output_limited_string, gas_output_ascii, output_movqi,
4603 output_movhi, out_movqi_r_mr, out_movqi_mr_r, out_movhi_r_mr,
4604 out_movhi_mr_r, out_movsi_r_mr, out_movsi_mr_r, output_movsisf,
4605 out_tstsi, out_tsthi, ret_cond_branch, ashlqi3_out, ashlhi3_out,
4606 ashlsi3_out, ashrqi3_out, ashrhi3_out, ashrsi3_out, lshrqi3_out,
4607 lshrhi3_out, lshrsi3_out, output_reload_inhi, output_reload_insisf,
4608 out_shift_with_cnt, ptrreg_to_str, cond_string, encode_section_info):
4609 Add "const" as needed to remove warnings.
4610
4611 * config/avr/avr.c (avr_override_options, avr_init_once,
4612 function_prologue, function_epilogue, frame_pointer_required_p,
4613 class_likely_spilled_p, order_regs_for_local_alloc,
4614 avr_address_cost, avr_ret_register): Use K&R style arguments.
4615 (initial_elimination_offset, gas_output_limited_string):
4616 Remove ATTRIBUTE_UNUSED from the used arguments.
4617 (output_mov*, out_mov*_r_mr, out_mov*_mr_r, output_reload_insisf):
4618 Use local variables src, dest, base to access operands[].
4619 Rename reg_dest to reg_src if that's what it is.
4620 (output_movhi, output_movsisf): Optimize loading 8-bit immediate
4621 constants to LD_REGS if reg_was_0.
4622 (output_reload_insisf): Change arg 3 to insn length and set it.
4623 (out_movhi_r_mr, out_movhi_mr_r): Use in/out for more efficient
4624 access to 16-bit I/O register pairs.
4625 (avr_address_cost): Lower cost for the above case.
4626 (out_tsthi): Use "or" (faster) instead of "sbiw" if the operand
4627 may be clobbered, also for LD_REGS.
4628 (adjust_insn_length): Correct insn length for iorhi3 and iorsi3
4629 with a CONST_INT.
4630
4631 * config/avr/avr.h (PTRDIFF_TYPE): Make signed.
4632
4633 * config/avr/avr.md: Change all uses of the TEST_HARD_REG_CLASS
4634 macro to test_hard_reg_class function.
4635 (*movsi, *movsf): Change "cc" attribute from "clobber" to "none"
4636 for loading immediate constants to LD_REGS.
4637 (andsi3, cmphi, cmpsi): Add return statements to avoid warnings.
4638
4639
4640 Sat Sep 2 13:58:23 2000 Marek Michalkiewicz <marekm@linux.org.pl>
4641
4642 * config/avr/avr.md ("*negsi2"): substitute %@ to __zero_reg__
4643 * config/avr/libgcc.S: Lost part of the previous patch.
4644
4645 2000-08-31 J. David Anglin <dave@hiauly1.hia.nrc.ca>
4646
4647 * gthr-dce.h (__gthread_objc_mutex_allocate): Create a pthread_mutex_t
4648 object before calling pthread_mutex_init.
4649
4650 2000-09-02 Alexandre Oliva <aoliva@redhat.com>
4651
4652 * config/sh/t-elf, config/sh/crt1.asm, config/sh/crti.asm,
4653 config/sh/crtn.asm: New files.
4654 * config/sh/t-sh (EXTRA_MULTILIB_PARTS): Set.
4655 (crt1.o, crti.o, crtn.o): New targets.
4656 * configure.in [sh-*-elf*, sh-*-rtemself*] (tmake_file): Added
4657 sh/t-elf.
4658 * configure: Rebuilt.
4659 * config/sh/sh.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP,
4660 STARTFILE_SPEC, ENDFILE_SPEC, CRT_CALL_STATIC_FUNCTION): Define.
4661 * config/sh/elf.h (INIT_SECTION_ASM_OP, FINI_SECTION_ASM_OP):
4662 Undefine for config/elfos.h to redefine.
4663 (STARTFILE_SPEC, ENDFILE_SPEC): Redefine after config/elfos.h.
4664
4665 2000-09-02 Alexandre Oliva <aoliva@redhat.com>, Niibe Yutaka <gniibe@m17n.org>, Kaz Kojima <kkojima@rr.iij4u.or.jp>
4666
4667 * config/sh/sh-protos.h (nonpic_symbol_mentioned_p,
4668 legitimize_pic_address, output_pic_addr_const): Declare.
4669 * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE): Fix PIC register.
4670 (PREFERGOT_BIT, TARGET_PREFERGOT): Likewise.
4671 (TARGET_SWITCHES): New switch -mprefergot.
4672 (OVERRIDE_OPTIONS): Set flag_no_function_cse unless -mprefergot.
4673 (PIC_OFFSET_TABLE_REGNUM): Define.
4674 (GOT_SYMBOL_TABLE): Likewise.
4675 (LEGITIMIZE_ADDRESS): Use legitimize_pic_address.
4676 (ENCODE_SECTION_INFO): Define.
4677 (FINALIZE_PIC): New macros.
4678 (LEGITIMATE_PIC_OPERAND_P, SYMBOLIC_CONST_P): New macro.
4679 (ASM_OUTPUT_INT, ASM_OUTPUT_SHORT): Use output_pic_addr_const.
4680 * config/sh/sh.c (print_operand_address): Use output_pic_addr_const.
4681 (prepare_move_operands): Call emit_pic_move or
4682 emit_pic_const_move if appropriate.
4683 (output_far_jump): For PIC, use braf and output long offset.
4684 (machine_dependent_reorg):
4685 (sh_expand_prologue): Save and initialize the PIC register.
4686 (sh_expand_epilogue): Restore it.
4687 (initial_elimination_offset): Account for it.
4688 (nonpic_symbol_mentioned_p): New function.
4689 (legitimize_pic_address): Likewise.
4690 (output_pic_addr_const): Likewise.
4691 * config/sh/sh.md (calli_pcrel, call_valuei_pcrel): New insns.
4692 (call, call_value): Use them.
4693 (GOTaddr2picreg, sym_label2reg, symGOT2reg, symGOTOFF2reg,
4694 symPLT_label2reg): New expands.
4695 * invoke.texi (SH Options): Document -mprefergot.
4696
4697 2000-09-01 Alexandre Oliva <aoliva@redhat.com>
4698
4699 * rtl.h (ASM_OPERANDS_INPUT_CONSTRAINT_EXP): New macro.
4700 * gcse.c (hash_string_1): New function.
4701 (hash_expr_1) <ASM_OPERANDS>: Disregard filename and line number.
4702 (expr_equiv_p) <ASM_OPERANDS>: Likewise.
4703 * cse.c (rtx_cost): Don't increase the cost of ASM_OPERANDS.
4704 (canon_hash_string): New function.
4705 (canon_hash) <ASM_OPERANDS>: Disregard filename and line number.
4706 (exp_equiv_p) <ASM_OPERANDS>: Likewise.
4707 (fold_rtx): Use ASM_OPERANDS accessor macros.
4708 * emit-rtl.c (copy_insn_1): Likewise.
4709 * integrate.c (copy_rtx_and_substitute): Likewise.
4710 * stmt.c (expand_asm_operands): Likewise. Give an
4711 ASM_OPERANDS rtx the mode of the output reg being set from it.
4712
4713 2000-09-01 Fred Fish <fnf@be.com>
4714
4715 * fix-header.c (write_rbrac): Add putc and getc to list of
4716 functions to protect against prior definition as a macro.
4717
4718 2000-09-01 Joseph S. Myers <jsm28@cam.ac.uk>
4719
4720 * c-common.h (enum c_tree_index): Add CTI_C_SIZE_TYPE.
4721 (c_size_type_node): Define.
4722 * c-decl.c (init_decl_processing): Initialize c_size_type_node.
4723 * c-common.c (enum format_lengths, enum format_std_version,
4724 format_length_info, format_type_detail, BADLEN, NOLENGTHS,
4725 format_kind_info, printf_length_specs, scanf_length_specs, T89_I,
4726 T99_I, T89_L, T99_LL, TEX_LL, T89_S, T89_UI, T99_UI, T89_UL,
4727 T99_ULL, TEX_ULL, T89_US, T89_F, T99_F, T89_D, T99_D, T89_LD,
4728 T99_LD, T89_C, T99_SC, T99_UC, T89_V, T94_W, TEX_W, T94_WI,
4729 TEX_WI, T99_ST, T99_SST, T99_PD, T99_UPD, T99_IM, T99_UIM,
4730 format_types): Define.
4731 (format_char_info, print_char_table, scan_char_table,
4732 time_char_table): Rearrange for new organization of information
4733 about format length modifiers and standard versions.
4734 (T_ST): Redefine to use c_size_type_node.
4735 (check_format_info): Obtain information about length modifiers and
4736 standard versions from tables. Adjust warning message wordings.
4737 Use the name from the user's program for `ll' and `hh' length
4738 modifiers in warning messages. Use more informative names for
4739 wanted types where available (for wchar_t, wint_t, size_t, signed
4740 size_t, ptrdiff_t, unsigned ptrdiff_t, intmax_t and uintmax_t).
4741
4742 2000-09-01 Jim Wilson <wilson@cygnus.com>
4743
4744 * calls.c (emit_call_1): Add REG_NORETURN note to call if ECF_NORETURN.
4745 * combine.c (distribute_notes): Handle REG_NORETURN.
4746 * rtl.c (reg_note_name): Add REG_NORETURN.
4747 * rtl.h (enum reg_note): Likewise.
4748
4749 * config/ia64/ia64-protos.h (emit_safe_across_calls): Renamed from
4750 ia64_file_start.
4751 * config/ia64/ia64.c (emit_safe_across_calls): Likewise.
4752 (rtx_needs_barrier): Handle unspec_volatile 8 and 9.
4753 (emit_predicate_relation_info): Handle conditional calls with
4754 REG_NORETURN.
4755 * config/ia64/ia64.h (ASM_FILE_START): Call emit_safe_across_calls
4756 instead of ia64_file_start.
4757 * config/ia64/sysv4.h (ASM_FILE_START): Likewise.
4758 * config/ia64/ia64.md (safe_across_calls_all,
4759 save_across_calls_normal): New patterns.
4760
4761 * loop.c (check_final_value): Check for biv use before checking for
4762 giv use. Check for both biv and giv uses. Always set last_giv_use
4763 if there is a giv use.
4764
4765 2000-09-01 Richard Henderson <rth@cygnus.com>
4766
4767 * config/ia64/ia64.md (mulsi3): Use grfr_register_operand.
4768 (madddi3): Likewise.
4769 (maddsi3): New.
4770
4771 Fri Sep 1 10:59:47 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4772
4773 * expr.c (clear_storage): Don't use emit_move_insn unless
4774 either BLKmode or proper size.
4775 (store_constructor): Don't call clear_storage if REG of wrong size.
4776
4777 * flow.c (init_propagate_block_info): Don't mark frame dead at end
4778 of function if returns wiht stack pointer depressed.
4779
4780 2000-09-01 Andrew Haley <aph@redhat.com>
4781
4782 * dwarf2out.c (stack_adjust_offset): New function.
4783 (dwarf2out_stack_adjust): Break out stack adjust logic into
4784 new stack_adjust_offset function. Look inside parallels and
4785 sequences for stack adjustments.
4786
4787 2000-08-31 Jeff Law <law@cygnus.com>
4788
4789 * arm.md: Use no_new_pseudos to determine when it is safe
4790 to create new pseudo registers.
4791
4792 * arm.c (legitimize_pic_address): Use no_new_pseudos to determine
4793 when we can safely allocate new registers.
4794
4795 2000-08-31 Geoffrey Keating <geoffk@cygnus.com>
4796
4797 * stmt.c (expand_asm_operands): Twiddle generating_concat_p
4798 so that CONCATs are not generated for ASMs.
4799 * emit-rtl.c (gen_reg_rtx): Don't generate CONCATs when
4800 not generating_concat_p.
4801 * function.c (pop_function_context_from): Reset
4802 generating_concat_p.
4803 (prepare_function_start): Likewise.
4804 * rtl.c (generating_concat_p): Define.
4805 * rtl.h (generating_concat_p): Declare.
4806 * toplev.c (rest_of_compilation): No CONCATs after RTL generation.
4807
4808 2000-08-22 Philipp Thomas <pthomas@suse.de>
4809 Masanobu Yuhara <yuhara@flab.fujitsu.co.jp>
4810
4811 * gmicro.h (TARGET_SWITCHES): Add descriptions and mark them
4812 for translation.
4813
4814 2000-08-30 Greg McGary <greg@mcgary.org>
4815
4816 * Makefile.in (fixinc.sh): Pass CC, CFLAGS and LDFLAGS to mkfixinc.sh
4817 * fixinc/Makefile.in (fixincl): Pass $(LDFLAGS) to $(CC).
4818 * fixinc/mkfixinc.sh: Pass $CC, $CFLAGS and $LDFLAGS to $MAKE.
4819
4820 2000-08-30 Greg McGary <greg@mcgary.org>
4821
4822 * tree.h (struct tree_int_cst): Wrap low and high in a sub-struct.
4823 (TREE_INT_CST_LOW, TREE_INT_CST_HIGH): Access through sub-struct.
4824 (TREE_INT_CST): New macro.
4825 * varasm.c (const_hash, compare_constant_1, record_constant_1):
4826 Use new macro TREE_INT_CST.
4827
4828 Wed 30-Aug-2000 23:18:59 BST Neil Booth <NeilB@earthling.net>
4829
4830 * contrib.texi: Add self.
4831
4832 2000-08-30 Alexandre Oliva <aoliva@redhat.com>
4833
4834 * config/sh/sh.md (cmpeqsi_ior_t, cmpeqsi_and_t): New insns.
4835 (cmpeqdi_t splitter): Use cmpeqsi_and_t instead of emitting jumps
4836 and labels.
4837
4838 2000-08-30 J. David Anglin <dave@hiauly1.hia.nrc.ca>
4839
4840 * fixinc/gnu-regex.c: Don't define `const'.
4841
4842 Tue Aug 29 22:09:59 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
4843
4844 * expr.c (store_constructor): Allow variable bounds of array type.
4845 (expand_expr): Don't blow up if type is ERROR_MARK.
4846 * varasm.c (output_constructor): Don't access lower bound of array
4847 type unless need it if index is supplied (so it can be a variable
4848 if no index is supplied).
4849 Use tree_low_cst; use HOST_WIDE_INT for sizes; change BITPOS to POS.
4850 Other minor cleanups.
4851
4852 2000-08-29 J. David Anglin <dave@hiauly1.hia.nrc.ca>
4853
4854 * Makefile.in: Revamp handling of cflags to allow different WARN_CFLAGS
4855 for compilations in stage 1 and subsequent stages, respectively.
4856 * configure.in (vax): Add compiler-dependent CFLAGS for stage 1.
4857 * configure: Rebuilt.
4858 * x-vax, x-vax-gcc: Deleted.
4859
4860 2000-08-29 Zack Weinberg <zack@wolery.cumb.org>
4861
4862 * c-common.c (declare_function_name): Use func_id_node,
4863 function_id_node, and pretty_function_id_node. Do not make
4864 __func__ visible at file scope.
4865 * c-common.h (c_tree_index): Add CTI_FUNCTION_ID,
4866 CTI_PRETTY_FUNCTION_ID, and CTI_FUNC_ID.
4867 (function_id_node, pretty_function_id_node, func_id_node): New
4868 macros.
4869 * c-decl.c (init_decl_processing): Initialize function_id_node,
4870 pretty_function_id_node, and func_id_node.
4871 (c_make_fname_decl): Correct comment.
4872
4873 * tree.h (struct tree_identifier): Constify pointer member.
4874
4875 * c-decl.c (pushdecl, implicit_decl_warning): Constify a char *.
4876 * c-pragma.h (struct weak_syms): Constify name and value members.
4877 (add_weak): Constify arguments.
4878
4879 * calls.c (special_function_p): Constify a char *.
4880 (expand_call): Remove variable which is initialized and then
4881 never used.
4882 * dependence.c (struct def_use, struct induction, struct subscript):
4883 Constify 'variable' member.
4884 (get_low_bound, have_induction_variable): Constify char * argument.
4885 (find_induction_variable): Add braces to avoid dangling else.
4886 (classify_dependence): Constify char * arrays.
4887 * profile.c (output_func_start_profiler): Constify a char *.
4888 * stor-layout.c (finalize_record_size): Constify a char *.
4889 * tree.c (is_attribute_p): Constify a char *.
4890 * varasm.c (add_weak, remove_from_pending_weak_list): Constify argument.
4891
4892 * varasm.c (make_function_rtl, make_decl_rtl): Rearrange code
4893 for comprehensibility. Do not call get_identifier if we did
4894 not change the DECL_ASSEMBLER_NAME of the decl. Use alloca to
4895 create temporary string constants, not ggc_alloc_string. No
4896 need to copy result of ASM_FORMAT_PRIVATE_NAME. Use const
4897 char * to hold IDENTIFIER_POINTERs.
4898
4899 2000-08-29 Richard Henderson <rth@cygnus.com>
4900
4901 * config/ia64/ia64.md (muldi3): Use grfr_register_operand
4902 for the inputs.
4903
4904 2000-08-29 Richard Henderson <rth@cygnus.com>
4905
4906 * reload.c (push_secondary_reload): Allow class == reload_class
4907 if we're using a reload_in/out pattern.
4908
4909 * config/ia64/ia64.md (reload_inti): Use a TImode scratch. Use
4910 the half that does not conflict with the reload register.
4911 (reload_outti): Likewise.
4912
4913 2000-08-29 Kazu Hirata <kazu@hxi.com>
4914
4915 * reload.c: Fix formatting.
4916
4917 * stmt.c: Fix formatting.
4918
4919 * gcc.c: Fix formatting.
4920
4921 2000-08-29 Zack Weinberg <zack@wolery.cumb.org>
4922
4923 * flags.h (time_report, mem_report): New global flags.
4924 * toplev.c: Define time_report and mem_report.
4925 (f_options): Add -ftime-report and -fmem-report.
4926 (compile_file): Turn on time_report if quiet_flag is off.
4927 Call ggc_print_statistics at very end if mem_report is on.
4928 * timevar.c (TIMEVAR_ENABLE): Examine time_report, not quiet_flag.
4929
4930 * ggc-common.c (ggc_print_statistics): Rename to
4931 ggc_print_common_statistics; all callers changed. Scale
4932 quantities above 10K to kilobytes and above 10M to megabytes.
4933 * ggc-page.c (ggc_page_print_statistics): Rename to
4934 ggc_print_statistics. Report memory consumed by internal data
4935 structures for each allocation bucket. Scale quantities above
4936 10K to kilobytes and above 10M to megabytes.
4937 * ggc-simple.c: Prototype debug_ggc_tree to avoid warning.
4938 Cast PTR_KEY(p) to unsigned long in fprintf call to avoid warning.
4939 Define tally_leaves always.
4940 (ggc_print_statistics): New function.
4941 * ggc.h: Adjust for renamed functions.
4942
4943 Wed Aug 30 00:11:42 2000 Denis Chertykov <denisc@overta.ru>
4944
4945 * config/avr/avr.md ("*movsf","*movsi"): Pass NULL to
4946 output_movsisf instead of which_alternative.
4947
4948 * config/avr/avr.c (output_reload_inhi): Check for NULL ponter.
4949
4950 Tue Aug 29 22:29:58 2000 Denis Chertykov <denisc@overta.ru> & Marek Michalkiewicz <marekm@linux.org.pl>
4951
4952 * config/avr/avr-protos.h: (avr_output_ascii) Removed.
4953 (avr_progmem_p): New prototype.
4954 (output_movsisf): Prototype declaration changed.
4955 (output_movqi): New prototype.
4956 (output_movhi): New prototype.
4957 (call_insn_operand): Likewise.
4958 (final_prescan_insn): Likewise.
4959 (avr_simplify_comparision_p): Likewise.
4960 (avr_normalize_condition): Likewise.
4961 (compare_eq_p): Likewise.
4962 (out_shift_with_cnt): Likewise.
4963 (const_int_pow2_p): Likewise.
4964 (output_reload_inhi): Prototype declaration changed.
4965
4966 * config/avr/avr.c: (debug_hard_reg_set): Prototype declared.
4967 (ldi_reg_rtx): New. rtx for r31.
4968 (avr_init_stack): Initialize as "__stack".
4969 (function_prologue): Use it.
4970 Replace all TARGET_ENHANCED with AVR_ENHANCED.
4971 (avr_mcu_name): Initialize as "avr2".
4972 (avr_enhanced_p, avr_mega_p): New variables.
4973 (mcu_types, avr_override_options): Handle all known MCU types.
4974 Also handle avr1 (only preprocess, assemble and link).
4975 (print_operand): Using of `%K' in output template removed.
4976 (out_movqi_r_mr): Optimized.
4977 (out_movhi_r_mr): Likewise.
4978 (output_movqi): New function.
4979 (output_movhi): Likewise.
4980 (out_movsi_r_mr): Optimized.
4981 (output_movsisf): Compute insn length for `adjust_insn_length'
4982 (out_movqi_mr_r): Optimized.
4983 (out_movhi_mr_r): Optimized.
4984 (adjust_insn_length): Use output_movsisf, output_movqi,
4985 output_movhi for insn length adjusting.
4986 (reg_unused_after): Use dead_or_set_p.
4987 (preferred_reload_class): Now havn't any restriction.
4988 (reg_was_0): New function.
4989 (io_address_p): Likewise.
4990 (const_int_pow2_p): Likewise.
4991 (output_reload_inhi): Likewise.
4992 (output_reload_insisf): Likewise.
4993
4994 * config/avr/avr.h (MULTILIB_DEFAULTS): Define.
4995 (LIB_SPEC): Use -lc for all supported devices.
4996 (LIBGCC_SPEC): Use -lgcc for all supported devices.
4997 (AVR_MEGA): Define as avr_mega_p.
4998 (AVR_ENHANCED): New, define as avr_enhanced_p.
4999 (TARGET_SWITCHES): Remove -menhanced, now handled by -mmcu=...
5000 (CPP_SPEC, LINK_SPEC): Handle all known MCU types.
5001 (CRT_BINUTILS_SPECS): Handle all known MCU types.
5002 Rename gcrt1-*.o to make file names unique on 8.3 filesystems.
5003 (EXTRA_SPECS): Add CPP_AVR[1-5]_SPEC.
5004 (ASM_SPEC): Pass -mmcu=... to the assembler.
5005 Change all -DAVR_* to -D__AVR_*__.
5006 (INIT_TARGET_OPTABS), config/avr/libgcc.S:
5007 Rename library functions to start with two underscores.
5008 (ASM_OUTPUT_COMMON): Outputs `.comm VAR,VAR-SIZE,1' to avoid
5009 alignment.
5010 (ASM_WEAKEN_LABEL): Declared for __attribute__((weak)).
5011 (SUPPORTS_WEAK): Likewise.
5012 (LDI_REG_REGNO): New. Register r31 will be used as temporary
5013 register for loading constants to r0-r14.
5014
5015 * config/avr/avr.md: Replace all TARGET_ENHANCED with
5016 AVR_ENHANCED.
5017 (*mov_r_sp): Removed. Handled by output_movhi.
5018 (*mov_sp_r): Likewise.
5019 (*mov_sp_r_no_interrupts): Likewise
5020 (*mov_sp_r_tiny): Likewise.
5021 (*movqi): Use output_movqi.
5022 (*reload_inqi): New.
5023 (*movhi): Use output_movhi.
5024 (*reload_inhi): New.
5025 (*negsi2): Optimized.
5026 (*negsf2): Likewise.
5027 Added peepholes (define_peephole2) for loading constants to r0-r14
5028 and for using `cpse' command.
5029
5030 * config/avr/libgcc.S: Rename library functions to start with two
5031 underscores.
5032 Add support for enhanced core.
5033 (_moqhi3): Fix typo, now _modqi3.
5034 (__divsi_raw): Use __zero_reg__ as loop counter, smaller by 1 word.
5035 (__prologue_saves__): Remove test for stack adjust by 0.
5036 (__tablejump__): New.
5037
5038 * config/avr/t-avr: Build libgcc2 with -mcall-prologues.
5039 Add multilib support.
5040
5041 Tue Aug 29 15:17:54 EDT 2000 John Wehle (john@feith.com)
5042
5043 * loop.c (prescan_loop): Don't check unknown_address_altered
5044 when deciding if insert_loop_mem is safe. Add BLKmode MEMs
5045 to loop_store_mems as necessary.
5046 (loop_invariant_p): Don't check unknown_address_altered
5047 or unknown_constant_address_altered.
5048
5049 2000-08-29 J. David Anglin <dave@hiauly1.hia.nrc.ca>
5050
5051 * vax.md (sltu, sgeu): Delete sltu and sgeu insn patterns.
5052
5053 2000-08-29 Zack Weinberg <zack@wolery.cumb.org>
5054
5055 * cpperror.c (print_file_and_line): If line is (unsigned int)-1,
5056 print just the filename.
5057 * cpplex.c (_cpp_run_directive): Add additional argument, the
5058 name to give the synthetic buffer. This defaults to
5059 translated "<command line>".
5060 * cpplib.c (cpp_define, cpp_undef, cpp_assert, cpp_unassert):
5061 Adjust to match.
5062 (_cpp_define_builtin): New function.
5063 * cppinit.c (initialize_builtins): Use _cpp_define_builtin.
5064 * cpphash.h: Update prototypes.
5065
5066 * tradcpp.c (main): Process -D and -U simultaneously, in the
5067 order they appeared on the command line.
5068
5069 2000-08-29 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5070
5071 * c-decl.c (define_label): Call warning_with_file_and_line and
5072 error_with_file_and_line instead of plain warning or error.
5073
5074 * c-parse.in (label): Use save_filename/save_lineno to ensure
5075 correct values for calls to define_label.
5076
5077 2000-08-29 Mark Mitchell <mark@codesourcery.com>
5078
5079 * calls.c (expand_call): Don't create a VAR_DECL just to throw it
5080 away.
5081 * expr.c (expand_expr, case TARGET_EXPR): Don't call
5082 mark_addressable.
5083 * tree.h (get_file_function_name): Remove two duplicate
5084 declarations.
5085
5086 2000-08-28 Kazu Hirata <kazu@hxi.com>
5087
5088 * tree.c: Fix formatting.
5089
5090 * xcoffout.c: Fix formatting.
5091
5092 2000-08-28 Jason Merrill <jason@redhat.com>
5093
5094 * dwarf2out.c (attr_checksum): Also ignore DW_AT_producer.
5095
5096 2000-08-28 Daniel Berlin <dberlin@redhat.com>
5097
5098 * dwarf2out.c (dwarf2out_finish): Don't bother calling
5099 break_out_includes if it won't do anything.
5100
5101 2000-08-28 Richard Henderson <rth@cygnus.com>
5102
5103 * reload.c (push_secondary_reload): Revert 2000-08-16 change.
5104 (find_reloads): Likewise.
5105 * config/alpha/alpha.md (reload_inqi): Revert 2000-08-11 change.
5106 (reload_inhi): Likewise.
5107
5108 2000-08-28 Richard Henderson <rth@cygnus.com>
5109
5110 * config/i386/i386.c: Don't error on EXTRA_CONSTRAINT defined.
5111 (call_insn_operand): Don't expect a surrounding mem.
5112 (constant_call_address_operand): Likewise.
5113 * config/i386/i386.h (PREDICATE_CODES): Update.
5114 * config/i386/i386.md (call patterns): Move the match_operand
5115 for the call destination inside the mem.
5116
5117 2000-08-28 Richard Henderson <rth@cygnus.com>
5118
5119 * local-alloc.c (requires_inout): Don't use reserved range for
5120 EXTRA_CONSTRAINTS; use anything not matched by REG_CLASS_FROM_LETTER.
5121 * recog.c (asm_operand_ok): Likewise.
5122 (preprocess_constraints, constrain_operands): Likewise.
5123 * regclass.c (record_reg_classes): Likewise.
5124 * reload.c (find_reloads): Likewise.
5125 * reload1.c (maybe_fix_stack_asms): Likewise.
5126 (reload_cse_simplify_operands): Likewise.
5127 * stmt.c (expand_asm_operands): Likewise.
5128
5129 * md.texi: Update constraints documentation.
5130 * tm.texi (EXTRA_CONSTRAINT): Update.
5131
5132 2000-08-28 Daniel Berlin <dberlin@redhat.com>
5133
5134 * dwarf2out.c (DIE_LABEL_PREFIX): Remove leading "__".
5135 (print_die): If we don't know the offset of the
5136 target die, try the symbol. Add a trailing newline.
5137 (reverse_all_dies): New fn.
5138 (dwarf2out_finish): Call it.
5139 (break_out_includes): Reorganize for clarity.
5140 (add_sibling_attributes): Don't call reverse_die_lists.
5141 (output_comp_unit): Rename from output_comdat_comp_unit. Use for
5142 primary CU, too.
5143 * flags.h: Add flag_eliminate_dwarf2_dups.
5144 * toplev.c (f_options): Support -feliminate-dwarf2-dups.
5145
5146 2000-08-28 Jason Merrill <jason@redhat.com>
5147
5148 * dwarf2.h (DW_TAG_GNU_BINCL, DW_TAG_GNU_EINCL): New tags.
5149 * dwarf2out.c: #include "md5.h".
5150 (DIE_LABEL_PREFIX): New macro.
5151 (dw_val_struct): Add 'external' flag to val_die_ref.
5152 (add_AT_die_ref, AT_ref): Adjust.
5153 (AT_ref_external, set_AT_ref_external): New fns.
5154 (build_abbrev_table): Call set_AT_ref_external.
5155 (value_format): Call AT_ref_external.
5156 (die_struct): Add die_symbol field.
5157 (new_die): Clear it.
5158 (dwarf_tag_name): Handle BINCL/EINCL.
5159 (dwarf2out_start_source_file): Add BINCL DIE.
5160 (dwarf2out_end_source_file): Add EINCL DIE.
5161 (push_new_compile_unit, pop_compile_unit, clear_die_sizes): New fns.
5162 (loc_checksum, attr_checksum, die_checksum): New fns.
5163 (is_type_die, is_comdat_die, is_symbol_die): New fns.
5164 (compute_section_prefix, assign_symbol_names): New fns.
5165 (gen_internal_sym, output_die_symbol, output_symbolic_ref): New fns.
5166 (output_die): Call output_die_symbol and AT_ref_external.
5167 (output_comdat_comp_unit): New fn, split out from...
5168 (dwarf2out_finish): ...here. Also call add_sibling_attributes for
5169 secondary CUs.
5170 (output_pubnames, output_aranges): Abort if we see entries from
5171 secondary CUs.
5172 * toplev.h: Declare file_name_nondirectory.
5173 * toplev.c (file_name_nondirectory): New fn, moved from C++ frontend.
5174 (rest_of_type_compilation): Call dwarf2out_decl if at toplevel.
5175 (debug_start_source_file): Call dwarf2out_start_source_file
5176 regardless of debug verbosity.
5177 (debug_end_source_file): Similarly.
5178 * tree.h: Declare clean_symbol_name.
5179 * tree.c (clean_symbol_name): Split out from...
5180 (get_file_function_name_long): ...here.
5181
5182 * dwarf2out.c (new_loc_descr): Use calloc.
5183 (splice_child_die): Remove the die from the right parent.
5184 (gen_struct_or_union_die): Don't add AT_name to a specification DIE.
5185
5186 Mon Aug 28 19:02:13 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5187
5188 * toplev.c (decode_g_option): Don't give warning for unknown -g
5189 option; return 0 instead.
5190 (main): If -g option is not recognized by front end or
5191 language-independent code, give warning.
5192
5193 2000-08-28 Greg McGary <greg@mcgary.org>
5194
5195 * config/i386/i386-protos.h (ix86_expand_compare): Add extern decl.
5196 * config/i386/i386.c (ix86_expand_compare): Remove `static'.
5197 * config/i386/i386.md (trap, conditional_trap): New insn & expand.
5198
5199 2000-08-27 Greg McGary <greg@mcgary.org>
5200
5201 * cpplex.c (parse_string): Don't look for backslash
5202 before first char in `namebuf'.
5203 * loop.c (strength_reduce): Skip NOTEs.
5204
5205 2000-08-27 Jason Merrill <jason@redhat.com>
5206
5207 * c-decl.c (duplicate_decls): Don't set TREE_STATIC or clear
5208 DECL_EXTERNAL on a local extern. Don't set DECL_IGNORED_P or
5209 TREE_ASM_WRITTEN, either.
5210 (finish_decl): Adjust.
5211
5212 2000-08-28 Philipp Thomas <pthomas@suse.de>
5213
5214 * ABOUT-GCC-NLS: Remove gettext patches from Paul Eggert as
5215 they have been incorporated into the gettext CVS. Change the text to
5216 reflect the current status of NLS. Add instructions for accessing
5217 the gettext CVS and add the patch from Martin v. Loewis.
5218
5219 2000-08-27 Geoff Keating <geoffk@cygnus.com>
5220
5221 * config/rs6000/rs6000.md (movdi_internal64+5): Make SUBREG-safe
5222 by using gen_lowpart_common.
5223 (movdi_internal64+6): Likewise.
5224
5225 2000-08-26 Alexandre Oliva <aoliva@redhat.com>
5226
5227 * tm.texi (FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION):
5228 Document.
5229
5230 * config/mn10300/mn10300.h (DBX_REGISTER_NUMBER): Remap register
5231 numbers to the ranges used by GDB.
5232
5233 2000-08-25 Richard Henderson <rth@cygnus.com>
5234
5235 * config/ia64/ia64.h (struct machine_function): Add n_varargs.
5236 * config/ia64/ia64.c (ia64_compute_frame_size): Use it.
5237 (ia64_expand_prologue): Likewise.
5238 (ia64_setup_incoming_varargs): Set it. Properly skip the current
5239 argument for stdargs.
5240
5241 2000-08-25 Jason Merrill <jason@redhat.com>
5242
5243 * integrate.c (expand_inline_function): Pull out the original decl.
5244
5245 2000-08-25 Jim Wilson <wilson@cygnus.com>
5246
5247 * cse.c (cse_insn): Don't pass label subtraction to force_const_mem.
5248
5249 * function.c (gen_mem_addressof): Clear MEM_ALIAS_SET if no decl.
5250
5251 2000-08-25 Greg McGary <greg@mcgary.org>
5252
5253 * flow.c (dump_edge_info): Use ARRAY_SIZE.
5254 * config/alpha/alpha.c (alpha_expand_block_move): Likewise.
5255
5256 2000-08-25 Richard Earnshaw <rearnsha@arm.com>
5257
5258 * arm.h (STRUCT_VALUE): Define to 0, not NULL.
5259
5260 Fri Aug 25 12:52:49 EDT 2000 John Wehle (john@feith.com)
5261
5262 * i386.c (ix86_find_base_term): New.
5263 * i386-protos.h (ix86_find_base_term): Prototype.
5264 * i386.h (FIND_BASE_TERM): Define.
5265 * alias.c (find_base_term): Use it.
5266 * tm.texi (FIND_BASE_TERM): Document it.
5267
5268 * alias.c (true_dependence, write_dependence_p): Unchanging
5269 memory can't conflict with non-unchanging memory.
5270
5271 * alias.c (memrefs_conflict_p): A BLKmode reference
5272 to a symbol (or CONST_INT address) always conflicts
5273 with a reference to another symbol.
5274
5275 2000-08-25 Joseph S. Myers <jsm28@cam.ac.uk>
5276
5277 * c-common.c (time_char_table): Don't allow width and flags with
5278 "z" format.
5279
5280 2000-08-25 Jakub Jelinek <jakub@redhat.com>
5281
5282 * config/i386/i386.c (ix86_expand_branch): Treat GE and GEU the same
5283 way as LT and LTU when the second operand has 0 in low word.
5284
5285 2000-08-26 Michael Hayes <mhayes@cygnus.com>
5286
5287 * basic-block.h (struct loop): Rename `exits' field to
5288 `exit_edges'. Add `entry_edges' and `num_entries' fields.
5289
5290 * flow.c (flow_loop_exit_edges_find): Rename from flow_loop_exits_find.
5291 (flow_loop_entry_edges_find): Add.
5292 (flow_edge_list_print): Rename from flow_exits_print.
5293 (flow_loops_find): Call flow_loop_entry_edges_find.
5294 (flow_loop_dump): Dump entry_edges list.
5295 (flow_loops_free): Free entry_edges.
5296
5297 2000-08-26 Michael Hayes <mhayes@cygnus.com>
5298
5299 * loop.c (loop_dump_aux, debug_loop): New functions.
5300 (LOOP_BLOCK_NUM_1, LOOP_BLOCK_NUM, LOOP_INSN_UID): New macros.
5301
5302 * flow.c (flow_loops_dump): Add callback parameter.
5303 (flow_loop_dump): Add callback parameter and call it. Move
5304 loop note debugging code to loop_dump_aux.
5305
5306 * basic-block.h (flow_loop_dump): Add callback parameter
5307 (flow_loops_dump): Likewise.
5308
5309 * toplev.c (rest_of_compilation): Add NULL callback function pointer
5310 to call to flow_loops_dump.
5311
5312 2000-08-26 Michael Hayes <mhayes@cygnus.com>
5313
5314 * loop.c (count_loop_regs_set): Replace start and end arguments
5315 with loop argument. All callers udated.
5316
5317 2000-08-26 Michael Hayes <mhayes@cygnus.com>
5318
5319 * loop.c (constant_high_bytes): Delete.
5320
5321 2000-08-26 Michael Hayes <mhayes@cygnus.com>
5322
5323 * loop.c (prescan_loop): Move checks for NOTE_INSN_LOOP_CONT
5324 and NOTE_INSN_LOOP_VTOP to...
5325 (find_and_verify_loops) ...here.
5326
5327 Fri Aug 25 04:21:13 2000 Alexandre Oliva <aoliva@redhat.com>
5328
5329 * crtstuff.c (CRT_CALL_STATIC_FUNCTION): Define default.
5330 (fini_dummy, init_dummy): Use it.
5331
5332 Fri 25-Aug-2000 08:03:27 BST Neil Booth <NeilB@earthling.net>
5333
5334 * cpplex.c (is_macro_disabled): Caller has already checked
5335 that we're not a preprocessed file.
5336
5337 2000-08-24 Mark Mitchell <mark@codesourcery.com>
5338
5339 * Makefile.in (C_AND_OBJC_OBJS): Remove c-iterate.o.
5340 (c-iterate.o): Remove target.
5341 * gcc/c-common.h (enum rid): Remove RID_ITERATOR.
5342 * gcc/c-decl.c (init_decl_processing): Remove call to init_iterators.
5343 (finish_decl): Don't handle iterators.
5344 (grokdeclarator): Likewise.
5345 * gcc/c-parse.gperf: Remove __iterator and __iterator__ keywords.
5346 * gcc/c-gperf.h: Regenerated.
5347 * gcc/c-iterate.c: Removed.
5348 * gcc/c-lex.c (init_lex): Don't handle iterators.
5349 * gcc/c-parse.in (primary): Remove pop_iterator_stack call.
5350 (compstmt_primary_start): Remove push_iterator_stack call.
5351 (stmt): Don't allow iterator statements. Replace iterator_expand
5352 with expand_expr_stmt.
5353 (all_iter_stmt): Remove.
5354 (all_iter_stmt_simple): Likewise.
5355 (all_iter_stmt_with_decl): Likewise.
5356 * gcc/c-tree.h (ITERATOR_P): Remove.
5357 (ITERATOR_BOUND_P): Likewise.
5358 (init_iterators): Remove declaration.
5359 (iterator_expand): Likewise.
5360 (iterator_for_loop_start): Likewise.
5361 (iterator_for_loop_end): Likewise.
5362 (iterator_for_loop_record): Likewise.
5363 (push_iterator_stack): Likewise.
5364 (pop_iterator_stack): Likewise.
5365 * gcc/c-typeck.c (decl_constant_value): Don't check ITERATOR_P.
5366 (readonly_warning): Likewise.
5367 * gcc/tree.h (ITERATOR_BOUND_P): Don't mention it.
5368
5369 2000-08-24 Jim Wilson <wilson@cygnus.com>
5370
5371 * c-common.c (decl_attributes, case A_ALIGN): Revert last change.
5372 Copy type in a TYPE_DECL, just like pushdecl does.
5373
5374 2000-08-24 Richard Henderson <rth@cygnus.com>
5375
5376 * toplev.c (main): Enable flag_reorder_blocks at -O2.
5377
5378 2000-08-24 Zack Weinberg <zack@wolery.cumb.org>
5379
5380 * ggc-page.c (alloc_page): If HAVE_MMAP_ANYWHERE and we're
5381 asked for one page, allocate GGC_QUIRE_SIZE of them and put
5382 the extras on the free list.
5383 (release_pages): Clean up.
5384 (ggc_set_mark): Don't adjust G.allocated here...
5385 (sweep_pages): ... do it here.
5386
5387 2000-08-24 Zack Weinberg <zack@wolery.cumb.org>
5388
5389 * cppfiles.c (read_include_file): Rearrange initializations.
5390
5391 2000-08-24 Richard Henderson <rth@cygnus.com>
5392
5393 * stmt.c (expand_asm_operands): Treat EXTRA_CONSTRAINT like g or X.
5394
5395 * config/ia64/ia64-protos.h: Update.
5396 * config/ia64/ia64.c (gr_register_operand): New.
5397 (fr_register_operand, grfr_register_operand): New.
5398 (gr_nonimmediate_operand, grfr_nonimmediate_operand): New.
5399 (grfr_reg_or_8bit_operand): New.
5400 (gr_reg_or_0_operand): Rename from reg_or_0_operand and
5401 use gr_register_operand.
5402 (gr_reg_or_5bit_operand, gr_reg_or_6bit_operand): Likewise.
5403 (gr_reg_or_8bit_operand, gr_reg_or_8bit_adjusted_operand): Likewise.
5404 (gr_reg_or_8bit_and_adjusted_operand): Likewise.
5405 (gr_reg_or_14bit_operand, gr_reg_or_22bit_operand): Likewise.
5406 (fr_reg_or_fp01_operand): Likewise.
5407 (not_postinc_memory_operand): New.
5408 (ia64_split_timode): Remove unused variables.
5409 (rtx_needs_barrier): Check arguments to cmpxchg.
5410 (builtin_description): Remove.
5411 (bdesc_2argsi, bdesc_2argdi): Remove.
5412 (ia64_init_builtins): Declare all builtins directly.
5413 (ia64_expand_fetch_and_op): Rewrite to be called from
5414 ia64_expand_builtin directly. Use expand_binop and co.
5415 (ia64_expand_op_and_fetch): Likewise.
5416 (ia64_expand_compare_and_swap): Likewise.
5417 (ia64_expand_binop_builtin): Remove.
5418 (ia64_expand_lock_test_and_set): New.
5419 (ia64_expand_lock_release): New.
5420 (ia64_expand_builtin): Use them.
5421 * config/ia64/ia64.h (CONSTRAINT_OK_FOR_S): New.
5422 (EXTRA_CONSTRAINT): Use it.
5423 (PREDICATE_CODES): Update.
5424 * config/ia64/ia64.md (*): Use gr_register_operand and co.
5425 (mf): Indicate that we set memory as well as use it.
5426 (fetchadd_acq_si): Show memory being modified as well.
5427 (fetchadd_acq_di, cmpxchg_acq_si, cmpxchg_acq_di): Likewise.
5428 (val_compare_and_swap_si, val_compare_and_swap_di): Remove.
5429 (lock_test_and_set_si, lock_test_and_set_di): Remove.
5430 (fetch_and_add_si, fetch_and_sub_si, fetch_and_or_si): Remove.
5431 (fetch_and_and_si, fetch_and_xor_si, fetch_and_nand_si): Remove.
5432 (fetch_and_add_di, fetch_and_sub_di, fetch_and_or_di): Remove.
5433 (fetch_and_and_di, fetch_and_xor_di, fetch_and_nand_di): Remove.
5434 (add_and_fetch_di, sub_and_fetch_di, or_and_fetch_di): Remove.
5435 (and_and_fetch_di, xor_and_fetch_di, nand_and_fetch_di): Remove.
5436 (add_and_fetch_si, sub_and_fetch_si, or_and_fetch_si): Remove.
5437 (and_and_fetch_si, xor_and_fetch_si, nand_and_fetch_si): Remove.
5438 * config/ia64/ia64intrin.h (*): Cast result to the appropriate
5439 return type. Pretty print definitions.
5440
5441 2000-08-24 Jim Wilson <wilson@cygnus.com>
5442
5443 * config/ia64/ia64.md (movdi): Don't call gen_movdi_symbolic if
5444 we have a SYMBOL_REF with SYMBOL_REF_FLAG set.
5445
5446 2000-08-24 Jason Merrill <jason@redhat.com>
5447
5448 * dwarf2out.c (AT_flag, AT_int, AT_unsigned, AT_string, AT_ref,
5449 AT_loc, AT_addr, AT_lbl): Abort on unsuitable input.
5450 (get_AT_low_pc, get_AT_hi_pc, get_AT_string, get_AT_flag,
5451 get_AT_unsigned, get_AT_ref): Don't call them if get_AT fails.
5452
5453 2000-08-24 Greg McGary <greg@mcgary.org>
5454
5455 * optabs.c (init_optabs): Initialize fixtab, fixtrunctab, floattab,
5456 and extendtab within their proper array boundaries.
5457 * emit-rtl.c (init_emit_once): Pass `const_tiny_rtx' with bounds
5458 for the entire array.
5459
5460 * config/arm/arm.c (arm_override_options): Use ARRAY_SIZE.
5461 * config/alpha/alpha.c (alpha_lookup_xfloating_lib_func): Likewise.
5462 * config/avr/avr.c (order_regs_for_local_alloc): Likewise.
5463 * config/fr30/fr30.c (fr30_print_operand): Likewise.
5464 * config/i386/dgux.c (output_options): Likewise.
5465 * config/i386/dgux.h (ASM_FILE_START): Likewise.
5466 * config/m88k/m88k.c (output_options): Likewise.
5467 * config/m88k/m88k.h (ASM_FILE_START): Likewise.
5468 * config/mcore/mcore.c (mcore_output_inline_const_forced,
5469 layout_mcore_frame, handle_structs_in_regs): Likewise.
5470 * config/mips/mips.c (output_block_move): Likewise.
5471 * config/rs6000/rs6000.c (rs6000_override_options,
5472 rs6000_file_start): Likewise.
5473 * config/sparc/sparc.c (sparc_add_gc_roots): Likewise.
5474 * fixinc/fixfixes.c (FIX_TABLE_CT): Likewise.
5475 * fixinc/fixtests.c (TEST_TABLE_CT): Likewise.
5476 * builtins.c (expand_builtin_setjmp): Likewise.
5477 * expr.c (safe_from_p): Likewise.
5478 * flow.c (life_analysis): Likewise.
5479 * fold-const.c (size_int_type_wide): Likewise.
5480 * gcc.c (translate_options, init_spec, set_spec, main): Likewise.
5481 * genattrtab.c (make_length_attrs): Likewise.
5482 * genopinit.c (gen_insn): Likewise.
5483 * genrecog.c (NUM_KNOWN_PREDS, NUM_SPECIAL_MODE_PREDS): Likewise.
5484 * global.c (global_alloc): Likewise.
5485 * local-alloc.c (find_free_reg): Likewise.
5486 * mips-tdump.c (print_symbol): Likewise.
5487 * mips-tfile.c (parse_def, parse_input): Likewise.
5488 * reload1.c (NUM_ELIMINABLE_REGS): Likewise.
5489 * stmt.c (expand_nl_goto_receiver): Likewise.
5490 * stor-layout.c (set_sizetype): Likewise.
5491 * varasm.c (decode_reg_name): Likewise.
5492 * toplev.c (decode_f_option, decode_W_option,
5493 set_target_switch, print_switch_values): Likewise.
5494 (NUM_ELEM): Remove macro.
5495 (display_help, main): s/NUM_ELEM/ARRAY_SIZE/
5496
5497 2000-08-24 Greg McGary <greg@mcgary.org>
5498
5499 * tree.h (enum tree_index): New member `TI_MAIN_IDENTIFIER'.
5500 (MAIN_NAME_P, main_identifier_node): New macros.
5501 * c-common.c (c_common_nodes_and_builtins): Init main_identifier_node.
5502 * c-decl.c (start_decl, grokdeclarator, start_function,
5503 store_parm_decls, finish_function): Use MAIN_NAME_P.
5504 * config/avr/avr.c (function_prologue, function_epilogue): Likewise.
5505 * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Likewise.
5506 * config/i386/win32.h (SUBTARGET_PROLOGUE): Likewise.
5507 * config/pdp11/pdp11.c (output_function_prologue): Likewise.
5508
5509 2000-08-24 Greg McGary <greg@mcgary.org>
5510
5511 * cppfiles.c (actual_directory): Don't write beyond `dir'
5512 when it contains "".
5513 * real.c (asctoeg): Stay within bounds of etens[][].
5514
5515 2000-08-24 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5516
5517 * dependence.c (dependence_string, direction_string,
5518 dump_one_node, dump_node_dependence): Hide unused identifiers.
5519 (get_low_bound, normalize_coefficients): Match definition to
5520 static prototype.
5521 (get_one_coefficient): Initialize variables `value0_is_idx' and
5522 `value1_is_idx'.
5523 (ziv_test, gcd_test): Mark parameters with ATTRIBUTE_UNUSED.
5524 (ziv_test): Delete variable `idx', use parameter `sub' instead.
5525 (direction_merge): Avoid automatic aggregate initialization.
5526 (have_dependence_p): Use `src' not `dest' to set `src_idx'.
5527 Initialize variables `dest_idx' and `src_idx'.
5528 (end_dependence_analysis): Avoid C89 style function definition.
5529
5530 2000-08-24 Joseph S. Myers <jsm28@cam.ac.uk>
5531
5532 * c-common.c (time_char_table): Don't allow width with %F.
5533 (check_format_info): Don't allow "Z" length with scanf.
5534
5535 2000-08-24 Gabriel Dos Reis <gdr@codesourcery.com>
5536
5537 * diagnostic.c (finish_diagnostic): Define.
5538 (output_do_printf): Use wrap_text instead of output_add_string.
5539 (default_print_error_function): Avoid embedded '\n'.
5540
5541 * diagnostic.h (flush_diagnostic_buffer): Declare.
5542
5543 2000-08-23 Alexandre Oliva <aoliva@redhat.com>
5544
5545 * dependence.c: Replace `[][]' with `[][MAX_SUBSCRIPTS]'.
5546
5547 2000-08-23 Hans-Peter Nilsson <hp@axis.com>
5548
5549 * Makefile.in (GCC_PASSES): Add specs.
5550
5551 2000-08-23 Jim Wilson <wilson@cygnus.com>
5552
5553 * frame.h (IA64_UNW_EHANDLER, IA64_UNW_UHANDLER): New.
5554 * config/ia64/frame-ia64.c (__get_personality): Return zero if neither
5555 EHANDLER nor UHANDLER bit is set.
5556 (__get_except_table): Likewise.
5557
5558 2000-08-23 Nick Clifton <nickc@redhat.com>
5559
5560 * config/arm/lib1funcs.asm: Replace upper case condition codes
5561 with lower case versions.
5562
5563 * config/arm/arm.h (STRUCT_VALUE): Define.
5564 (STRUCT_VALUE_REGNUM): Delete.
5565
5566 2000-08-23 Zack Weinberg <zack@wolery.cumb.org>
5567
5568 * cpphash.h (IN_I): New flag for directive table.
5569 * cpplib.c (DIRECTIVE_TABLE): Mark #define, #undef, #ident, and
5570 #pragma with IN_I.
5571 (_cpp_check_directive): If -fpreprocessed, execute directives
5572 marked with IN_I. Issue no warnings in this case.
5573 * cpplex.c (_cpp_get_token): Expand no macros if -fpreprocessed.
5574
5575 2000-08-23 Joseph S. Myers <jsm28@cam.ac.uk>
5576
5577 * c-common.c (print_char_table): Allow 'I' flag with %d, %i and
5578 %u.
5579 (check_format_info): Support printf 'I' flag; warn about it with
5580 -pedantic.
5581
5582 2000-08-23 Richard Earnshaw (rearnsha@arm.com)
5583
5584 * arm.c (arm_expand_prologue): Ensure that the stack-adjustment
5585 barrier can't be ignored by the alias analysis code.
5586
5587 2000-08-12 Eli Zaretskii <eliz@is.elta.co.il>
5588
5589 * fixinc/inclhack.def (sysv68_string): Fix the Sed script so it
5590 works inside fixincl.
5591
5592 Wed Aug 23 04:55:48 2000 Alexandre Oliva <aoliva@redhat.com>
5593
5594 * simplify-rtx.c (simplify_rtx): Don't pass VOIDmode to
5595 simplify_relational_operation() unless both operands are of
5596 VOIDmode.
5597 * cse.c (fold_rtx): Likewise.
5598
5599 Tue Aug 22 23:53:27 EDT 2000 John Wehle (john@feith.com)
5600
5601 * rtlanal.c (rtx_unstable_p): The pic register is stable
5602 (within one function) and the actual rtx should be used
5603 when checking the registers.
5604 (rtx_addr_can_trap_p): Pic memory addresses can't trap.
5605
5606 * alias.c (true_dependence, write_dependence_p): Fix
5607 bug in previous patch.
5608
5609 * i386.c (ix86_GOT_alias_set): New.
5610 (legitimize_pic_address): Use it.
5611
5612 * rtlanal.c (rtx_unstable_p): An unchanging MEM is
5613 only stable if its address is stable.
5614 (rtx_varies_p): An unchanging MEM can't vary if
5615 its address doesn't vary.
5616
5617 2000-08-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5618
5619 * c-parse.in (unop +): Restrict -Wtraditional warnings to user code.
5620
5621 2000-08-22 J. David Anglin <dave@hiauly1.hia.nrc.ca>
5622
5623 * vax.h (ASM_SPEC): Pass `-J' to assembler.
5624 * x-vax-gcc: New file for bootstrapping with gcc.
5625 * x-vax: Use X_CFLAGS rather than X_CPPFLAGS to pass `-J'.
5626 * configure.in: Use x-vax-gcc with gcc.
5627 * configure: Rebuilt.
5628
5629 Tue Aug 22 21:21:05 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
5630
5631 * toplev.c (rest_of_compilation): Rebuild label notes after
5632 post-reload splitting pass if new labels have been created.
5633
5634 2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
5635
5636 * diagnostic.h (output_buffer_state): New macro.
5637 * diagnostic.c (diagnostic_for_decl, sorry,
5638 default_print_error_function, output_do_verbatim,
5639 report_diagnostic, report_problematic_module): Use it.
5640 (wrap_text): Tweak.
5641 (output_format): Use wrap_text instead of maybe_wrap_text.
5642
5643 2000-08-22 Nick Clifton <nickc@redhat.com>
5644
5645 * config/arm/lib1funcs.asm (ARM_DIV_MOD_BODY): New macro.
5646 Common code for ARM divide and modulus functions.
5647 (THUMB_DIV_MOD_BODY): New macro. Thumb equivalent of
5648 ARM_DIV_MOD_BODY.
5649 (FUNC_END): New macro: Common code at the end of the division and
5650 modulo functions.
5651 (THUMB_FUNCTION_START): New macro: Common code at the start of
5652 Thumb functions.
5653 (__divsi3, __udivsi3, __modsi3, __umodsi3): Use new macros.
5654
5655 Tue Aug 22 20:34:52 2000 Kaz Kojima <kkojima@rr.iij4u.or.jp>
5656
5657 * config/sh/sh.md (cmpeqdi_t splitter): Fix a reverse testing.
5658
5659 * config/sh/sh.c (prepare_scc_operands): Apply force_reg to
5660 sh_compare_op1 when the mode is DImode and sh_compare_op1 isn't
5661 const0_rtx.
5662
5663 2000-08-22 Nick Clifton <nickc@redhat.com>
5664
5665 * config/arm/lib1funcs.asm (__umodsi3): Before performing any
5666 restorative additions, test for bottom bits of IP being set,
5667 rather than relying upon the RORs not matching.
5668 (__modsi3): Ditto.
5669
5670 2000-08-22 David Edelsohn <edelsohn@gnu.org>
5671
5672 * aix.h (ASM_DECLARE_FUNCTION_NAME): Call named_section() or
5673 text_section() as appropriate instead of emitting text csect
5674 pseudo-op directly.
5675 (TEXT_SECTION_ASM_OP): Only require default 32-bit alignment.
5676 (UNIQUE_SECTION): Define macro.
5677 (ASM_OUTPUT_SECTION_NAME): Define macro.
5678 * rs6000.c (rs6000_override_options): Disable -ffunction-sections
5679 on AIX if debugging and -fdata-sections always.
5680
5681 2000-08-22 Steven King <sxking@uswest.net>
5682
5683 * config/float-i386.h (LDBL_EPSILON): Remove __convert_long_double
5684 machinery.
5685 (LDBL_MAX): Same here.
5686
5687 2000-08-22 Richard Henderson <rth@cygnus.com>
5688
5689 * flow.c (tidy_fallthru_edge): Update b->end properly.
5690
5691 2000-08-22 Stan Cox <scox@redhat.com>
5692
5693 * Makefile.in (OBJS): Add dependence.o.
5694 * dependence.c: New file.
5695
5696 2000-08-22 Alexandre Oliva <aoliva@redhat.com>, John David Anglin <dave.anglin@nrc.ca>
5697
5698 * calls.c (check_sibcall_argument_overlap_1): Adjust for
5699 ARGS_GROW_DOWNWARD.
5700 (check_sibcall_argument_overlap): Likewise.
5701
5702 2000-08-22 Alexandre Oliva <aoliva@redhat.com>
5703
5704 * invoke.texi (SH Options): Document -m4-nofpu,
5705 -m4-single-only, -m4-single, -m4, -mbigtable, -mfmovd,
5706 -mhitachi, -mnomacsave, -misize, -mpadstruct, -mspace.
5707
5708 2000-08-22 Joseph S. Myers <jsm28@cam.ac.uk>
5709
5710 * c-common.c (check_format_info): Give the 'some locales' warning
5711 for strftime %Ey rather than the unconditional 'only last 2 digits
5712 of year' one.
5713
5714 2000-08-22 Richard Henderson <rth@cygnus.com>
5715
5716 * alias.c (init_alias_analysis): Do not register
5717 struct_value_incoming_rtx or static_chain_rtx as pointing
5718 to stack memory.
5719
5720 Tue Aug 22 01:44:43 2000 Jeffrey A Law (law@cygnus.com)
5721
5722 * protoize.c (munge_compile_params): Fix typo and formatting buglets.
5723
5724 2000-08-22 Gabriel Dos Reis <gdr@codesourcery.com>
5725
5726 * diagnostic.h (report_problematic_module): Declare.
5727 * diagnostic.c (report_problematic_module): New function.
5728 (report_error_function): Tweak.
5729
5730 Tue Aug 22 02:31:26 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
5731
5732 * stmt.c (expand_goto_internal, fixup_gotos): Only check
5733 TYPE_RETURNS_STACK_DEPRESSED for FUNCTION_TYPE.
5734
5735 2000-08-21 Richard Henderson <rth@cygnus.com>
5736
5737 * flow.c (calculate_global_regs_live): Mark frame pointer live
5738 everywhere before reload.
5739
5740 2000-08-21 Jim Wilson <wilson@cygnus.com>
5741
5742 * real.c (ereal_from_int, ereal_from_uint, significand_size): Handle
5743 INTEL_EXTENDED_IEEE_FORMAT.
5744 (toe64): Delete INTEL_EXTENDED_IEEE_FORMAT support. Unconditionally
5745 clear last two bytes of output FP value.
5746
5747 2000-08-21 Graham Stott <grahams@cygnus.co.uk>
5748
5749 * config/ia64/ia64.h (REDO_SECTION_INFO_P): Change decl to DECL.
5750
5751 2000-08-21 Jakub Jelinek <jakub@redhat.com>
5752
5753 * unroll.c (loop_find_equiv_value): If ret is modified between
5754 insn and loop_start, ret might not be equivalent to reg.
5755
5756 2000-08-21 Joseph S. Myers <jsm28@cam.ac.uk>
5757
5758 * c-common.c (init_dollar_format_checking,
5759 maybe_read_dollar_number, finish_dollar_format_checking): New
5760 functions.
5761 (dollar_arguments_used, dollar_arguments_count,
5762 dollar_first_arg_num, dollar_max_arg_used, dollar_format_warned):
5763 New variables.
5764 (check_format_info): Support $ formats for scanf and printf width
5765 and precision. Always increment format_chars to advance past the
5766 '*' of precision, not just when the format parameters are
5767 available to check.
5768
5769 2000-08-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5770
5771 * mips.c (block_move_loop, expand_block_move,
5772 function_arg_partial_nregs, save_restore_insns, function_prologue,
5773 mips_expand_prologue, RA_MASK): Avoid using the `U' integer
5774 constant suffix.
5775 (function_arg_advance, function_arg): Match argument to format
5776 specifier `%p'.
5777
5778 2000-08-21 Nix <nix@esperi.demon.co.uk>
5779
5780 * gcc.c (do_spec_1): Implement %j spec flag.
5781 Remove dead comment.
5782
5783 * gcc.texi (The Configuration File): Document HOST_BIT_BUCKET.
5784 * system.h (HOST_BIT_BUCKET): Default to "/dev/null".
5785 * config/i386/xm-dos.h (HOST_BIT_BUCKET): Define as "NUL".
5786 * config/i386/xm-os2.h, config/winnt/winnt.h: Likewise.
5787
5788 * protoize.c (munge_compile_params): Use HOST_BIT_BUCKET (if
5789 writable) instead of hardcoded value.
5790
5791 * toplev.c (compile_file): Output to a file even if -fsyntax-only.
5792
5793 * gcc.c, config/i386/xm-dos.h, config/i386/xm-os2.h: Kill
5794 MKTEMP_EACH_FILE.
5795
5796 * gcc.c (cc1_options): Do not process -o or run the assembler if
5797 -fsyntax-only.
5798 * objc/lang-spec.h: Likewise.
5799
5800 2000-08-21 Eli Zaretskii <eliz@is.elta.co.il>
5801
5802 * fixinc/fixincl.c (fix_with_system): Pipe the output of
5803 "external" fixes through `cat', to avoid truncating the input
5804 file by redirection.
5805
5806 2000-08-21 Jakub Jelinek <jakub@redhat.com>
5807
5808 * config/i386/i386.md (lea_general_1): Copy insn condition to split
5809 condition.
5810 (lea_general_2, lea_general_3): Likewise.
5811
5812 2000-08-21 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
5813
5814 * c-decl.c (duplicate_decls, define_label): Restrict -Wtraditional
5815 warnings to user code.
5816
5817 * c-lex.c (readescape, yylex): Likewise.
5818
5819 * c-typeck.c (store_init_value, process_init_element): Likewise
5820 (c_expand_start_case): Format.
5821
5822 2000-08-18 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
5823
5824 * mips/linux.h (LINK_SPEC): Use %(endian_spec).
5825
5826 * mips/mips.h: Change LINKER_ENDIAN_SPEC to ENDIAN_SPEC
5827 and linker_endian_spec to endian_spec.
5828 (ENDIAN_SPEC): Add %{EB} and %{EL}.
5829 (LINK_SPEC): Remove %{EB} and %{EL}.
5830 (ASM_SPEC): Likewise. Use %(endian_spec).
5831
5832 2000-08-21 Joseph S. Myers <jsm28@cam.ac.uk>
5833
5834 * c-tree.h (flag_hosted): Move declaration from here...
5835 * c-common.h (flag_hosted): ... to here.
5836 (flag_noniso_default_format_attributes): New declaration.
5837 * c-decl.c (flag_noniso_default_format_attributes): New variable.
5838 (c_decode_option): Set it appropriately for options choosing
5839 language standard variant.
5840 * c-common.c (init_function_format_info): Only provide default
5841 format attributes if flag_hosted. Only provide the gettext
5842 formats if flag_noniso_default_format_attributes. Update
5843 comments.
5844 (check_format_info): Disable treatment of %a as a scanf flag in
5845 C99 mode.
5846
5847 2000-08-21 Joseph S. Myers <jsm28@cam.ac.uk>
5848
5849 * c-common.c (scan_char_table): Add 'w' to flags for all formats
5850 except 'n'.
5851 (check_format_info): Set 'wide' for scanf format widths. Warn for
5852 a zero scanf width. Make the check for writing into a constant
5853 object at the first level of indirection; at later levels, warn if
5854 any type qualifiers are encountered.
5855
5856 Mon Aug 21 07:41:12 2000 Jeffrey A Law (law@cygnus.com)
5857
5858 * reload.c (reload_inner_reg_of_subreg): New function broken out of
5859 push_reload.
5860 (push_reload): Use reload_inner_reg_of_subreg.
5861 (combine_reloads): Do not combine reloads if the input reload
5862 is a SUBREG in which the inner part will need reloading.
5863
5864 * global.c (global_alloc): Avoid passing dumpfile argument to
5865 reload routines.
5866 * toplev.c (rest_of_compilation): Likewise.
5867 * reload.h (reload): Remove dumpfile argument. Callers changed.
5868 (debug_reload, debug_reload_to_stream): Move prototypes here.
5869 * rtl.h (reload): Remove dumpfile argument.
5870 * reload.c (debug_reload): Remove prototype.
5871 (debug_reload_to_stream): Likewise.
5872 * reload1.c: Avoid passing dumpfile around, rely on rtl_dump_file
5873 instead.
5874
5875 2000-08-21 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
5876
5877 * diagnostic.c (context_as_prefix): Export.
5878 (need_error_newline): Remove.
5879 (lang_diagnostic_starter, lang_diagnostic_finalizer): New objects.
5880 (error_module_changed, record_last_error_module,
5881 error_function_changed, record_last_error_function): New functions.
5882 (initialize_diagnostics): Default intialize
5883 lang_diagnostic_starter, lang_diagnostic_finalizer.
5884 (init_output_buffer): Tweak.
5885 (file_name_as_prefix): New function.
5886 (announce_function, default_print_error_function,
5887 report_error_function, set_diagnostic_context): Tweak.
5888
5889 2000-08-21 Richard Earnshaw <rearnsha@arm.com>
5890
5891 * flow.c (init_propagate_block_info): Handle SUBREG in a jump
5892 condition expression.
5893
5894 2000-08-20 Richard Henderson <rth@cygnus.com>
5895
5896 * flow.c (merge_blocks_nomove): Don't seek back past the bb note.
5897
5898 2000-08-20 Zack Weinberg <zack@wolery.cumb.org>
5899
5900 * cppinit.c (cpp_init): Set global flag when called.
5901 (cpp_reader_init): Bomb out if cpp_init hasn't been called.
5902
5903 Sun Aug 20 01:41:35 2000 Dennis Chernoivanov <cdi@sparc.spb.su>
5904
5905 * cpplex.c (cpp_scan_buffer): Move `output_line_command' just
5906 before `process_directive' so that newlines won't be missed
5907 for directives.
5908 (cpp_printf): Increment `print->lineno' when newline is emitted.
5909
5910 * cppmain.c (cb_ident): Likewise.
5911 (cb_define): Likewise.
5912 (cb_undef): Likewise.
5913 (cb_include): Likewise.
5914 (cb_def_pragma): Likewise.
5915 (dump_macros_helper): Likewise.
5916
5917 2000-08-20 Richard Henderson <rth@cygnus.com>
5918
5919 * config/ia64/ia64.c (emit_insn_group_barriers): Stop if ar.lc
5920 assigned before a loop.
5921
5922 * config/ia64/ia64.md (ashlsi3): Zero extend the shift count.
5923 (ashrsi3, lshrsi3): Likewise.
5924
5925 2000-08-20 Gabriel Dos Reis <gdr@codesourcery.com>
5926
5927 * c-lang.c: #include diagnostic.h
5928 (c_tree_printer): New function.
5929 (lang_init): Initialize lang_printer.
5930
5931 * Makefile.in (c-lang.o): Depends on diagnostic.h
5932
5933 2000-08-20 Gabriel Dos Reis <gdr@codesourcery.com>
5934
5935 * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic.
5936
5937 * diagnostic.c (default_diagnostic_starter,
5938 default_diagnostic_finalizer): New functions.
5939 (diagnostic_for_asm, diagnostic_for_decl): Tweak.
5940 (pedwarn, pedwarn_with_file_and_line, error,
5941 error_with_file_and_line, fatal, warning,
5942 warning_with_file_and_line): Adjust call to report_diagnostic.
5943 (report_diagnostic): Rework.
5944 (set_diagnostic_context): New function.
5945
5946 * diagnostic.h (struct diagnostic_context): New data structure.
5947 (diagnostic_message, diagnostic_argument_list,
5948 diagnostic_file_location, diagnostic_line_location,
5949 diagnostic_is_warning, diagnostic_starter, diagnostic_finalizer,
5950 diagnostic_finalizer, diagnostic_auxiliary_data): New macros.
5951 (set_diagnostic_context): Declare.
5952 (report_diagnostic): Change prototype.
5953
5954 Sun 20-Aug-2000 09:25:45 BST Neil Booth <NeilB@earthling.net>
5955
5956 * fix-header.c (main): Initialize cpplib.
5957
5958 2000-08-19 Michael Meissner <meissner@redhat.com>
5959
5960 * ifcvt.c (find_if_block): Do not assume that a THEN block has any
5961 instructions in it before checking for indirect jumps.
5962
5963 * ifcvt.c (find_if_block): Do not consider a THEN block that ends
5964 in a indirect jump as a potential for conditional execution.
5965
5966 * d30v.h (d30v_init_expanders): Don't declare here.
5967 * d30v-protos.h (d30v_init_expanders): Declare here with a valid
5968 prototype.
5969
5970 Sat 19-Aug-2000 21:11:45 BST Neil Booth <NeilB@earthling.net>
5971
5972 * cpp.texi: Add @section for assertions.
5973
5974 Sat Aug 19 12:37:08 EDT 2000 John Wehle (john@feith.com)
5975
5976 * loop.c (scan_loop): Use CONST_CALL_P instead of
5977 checking for REG_LIBCALL / REG_RETVAL.
5978
5979 Sat Aug 19 09:18:47 2000 Jeffrey A Law (law@cygnus.com)
5980
5981 * reload1.c (reload_as_needed): Accept dumpfile argument,
5982 pass it to emit_reload_insns.
5983 (emit_reload_insns): Add new dumpfile argument. If non-null
5984 then dump the reloads for each insn into the dumpfile.
5985 (reload): Pass dumpfile to reload_as_needed.
5986
5987 * invoke.texi: Clean up linux-gnu vs linux comments.
5988
5989 2000-08-19 Richard Henderson <rth@cygnus.com>
5990
5991 * config/ia64/ia64.c (reg_or_5bit_operand): New.
5992 (ia64_depz_field_mask): New.
5993 * config/ia64/ia64.h (CONSTRAINT_OK_FOR_R): New.
5994 (PREDICATE_CODES): Update.
5995 * config/ia64/ia64.md: Update commentary.
5996 (depz_internal): New.
5997 (ashlsi3): Implement directly.
5998 (ashrsi3, lshrsi3): Simplify; rely on extv and extzv for constants.
5999 (ashldi3): Use shladd.
6000 * config/ia64/ia64-protos.h: Update.
6001
6002 2000-08-18 Zack Weinberg <zack@wolery.cumb.org>
6003
6004 * toplev.c (independent_decode_option): Always process -g.
6005 Remove third argument, now unused. Adjust caller to match.
6006
6007 2000-08-18 Richard Henderson <rth@cygnus.com>
6008
6009 * combine.c (make_compound_operation): Break after creating
6010 the extraction.
6011
6012 2000-08-18 Zack Weinberg <zack@wolery.cumb.org>
6013
6014 * cpplib.c (cpp_register_pragma_space): Just return if the
6015 namespace is already registered.
6016
6017 2000-08-18 Ray Essick <essick@ddna.labs.mot.com> & Nick Clifton <nickc@redhat.com>
6018
6019 * config/mcore/mcore.md (rotlsi3): Allow allow rotations by a
6020 constant amount. Do not generate ROTL instruction.
6021
6022 Fri Aug 18 16:22:20 2000 Alexandre Oliva <aoliva@redhat.com>
6023
6024 * config/sh/elf.h: Do not include sh/sh.h.
6025 * config/sh/rtems.h: Likewise.
6026 * config/sh/rtemself.h: Do not include sh/elf.h.
6027 * configure.in: Get them included with `tm_file's.
6028 * configure: Rebuilt.
6029
6030 * config/sh/sh.md (fpu_switch0, fpu_switch1): Simplify.
6031 * config/sh/sh.c (fpscr_set_from_mem): Use them.
6032
6033 Fri Aug 18 14:23:18 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6034
6035 * stor-layout.c (compute_record_type): Don't use mode of single
6036 field as mode of record if not integer mode of same type.
6037
6038 * regmove.c (perhaps_ends_bb_p): New function.
6039 (optimize_reg_copy_1, optimize_reg_copy_2): Call it.
6040 (optimize_reg_copy_3, fixup_match_2, regmove_optimize): Likewise.
6041 (fixup_match_1): Likewise.
6042 (fixup_match_1, combine_stack_adjustments_for_block): Add casts to
6043 avoid signed/unsigned warnings.
6044
6045 * function.c (fixup_var_refs_1, case MEM): Update CODE after
6046 updating X.
6047
6048 Fri 18-Aug-2000 18:33:45 BST Neil Booth <NeilB@earthling.net>
6049
6050 * cpphash.h: Use HAVE_DESIGNATED_INITIALIZERS.
6051 (_cpp_trigraph_map): Declaration moved from cpplex.c
6052
6053 * cppinit.c: Define _cpp_trigraph_map. Use UCHAR_MAX + 1
6054 instead of 256. Use consistent test for designated initializers.
6055 (cpp_init): Initialize trigraph_map.
6056 (initialize_standard_includes, parse_option): Use memcmp
6057 instead of strncmp.
6058
6059 * cpplex.c (init_trigraph_map): Remove.
6060 (trigraph_ok, trigraph_replace, lex_line): Refer to
6061 _cpp_trigraph_map.
6062
6063 * cpplib.c (str_match, WARNING, ERROR, ICE): Delete.
6064 (do_unassert): Remove unused "next" local.
6065
6066 * system.h (HAVE_DESIGNATED_INITIALIZERS): New prototype.
6067
6068 2000-08-18 Emmanuel Marty <emarty@suntech.fr>
6069
6070 * arm/lib1funcs.asm (_umodsi3 THUMB VARIANT): Restore deleted return
6071 insn.
6072
6073 2000-08-17 Richard Henderson <rth@cygnus.com>
6074
6075 * config/ia64/ia64.c (spill_restore_mem): Handle emitting
6076 the first insn in a sequence.
6077
6078 Thu Aug 17 22:40:05 EDT 2000 John Wehle (john@feith.com)
6079
6080 * alias.c (true_dependence, write_dependence_p): A read
6081 involving a label_ref or the constant pool doesn't create
6082 a dependency.
6083
6084 * rtl.h (unchanging): Improve documentation.
6085
6086 2000-08-17 Rodney Brown <RodneyBrown@mynd.com>
6087
6088 * cse.c (insert_regs): Remove unused `regno'.
6089
6090 2000-08-17 Neil Booth <NeilB@earthling.net>
6091
6092 * (cppinit.c) merge_include_chains: Use remove_dup_dir,
6093 remove_dup_dirs. If qtail == brack, remove brack not
6094 qtail.
6095 (remove_dup_dir, remove_dup_dirs): New functions.
6096
6097 2000-08-17 Neil Booth <NeilB@earthling.net>
6098
6099 * cppinit.c (cpp_cleanup): Free include dir chains.
6100 * cpplib.c (do_undef): Let _cpp_free_definition make the node void.
6101 (do_unassert): Free the assert with _cpp_free_definition.
6102 * cppmacro.c (_cpp_free_definition): Free memory allocated for
6103 assertions. Make the node a T_VOID node.
6104
6105 2000-08-17 Neil Booth <NeilB@earthling.net>
6106
6107 * cppinit.c (path_include, append_include_chain):
6108 Remove 2nd parameter (struct cpp_pending *).
6109 (path_include, initialize_standard_includes, cpp_handle_option):
6110 Update callers appropriately.
6111 (cpp_handle_option): Use pend.
6112
6113 2000-08-17 Neil Booth <NeilB@earthling.net>
6114
6115 * cppinit.c (sort_options): Remove, put functionality in
6116 cpp_init.
6117 (cpp_init): New.
6118 (initialize_builtins): Free memory.
6119 (cpp_start_read): Move init_IStable to cpp_init.
6120
6121 * cpplib.h (cpp_init): New prototype.
6122 * cppmain.c (main): Call cpp_init.
6123
6124 Thu Aug 17 13:20:32 EDT 2000 John Wehle (john@feith.com)
6125
6126 * rtlanal.c (rtx_unstable_p): Use CONSTANT_P.
6127 (rtx_unstable_p, rtx_varies_p): Process vectors.
6128
6129 2000-08-16 Niibe Yutaka <gniibe@m17n.org>, Kaz Kojima <kkojima@rr.iij4u.or.jp>
6130
6131 * config/sh/lib1funcs.asm (GLOBAL): Define. Use for all
6132 references to GLOBAL symbols. Use LOCAL where appropriate.
6133
6134 2000-08-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6135
6136 * configure.in (*-ibm-aix4.[12]*): Delete test for gnu ld. Always
6137 use t-aix41 when host == target.
6138
6139 2000-08-16 Richard Henderson <rth@cygnus.com>
6140
6141 * reload.c (push_secondary_reload): Revert last change.
6142 If we use a reload_in/out pattern, make the when the same
6143 as the primary reload.
6144 (find_reloads): Likewise.
6145
6146 2000-08-16 Manfred Hollstein <manfredh@redhat.com>
6147
6148 * configure.in (libstdcxx-v3): Fix test.
6149 * configure: Regenerate.
6150
6151 Wed Aug 16 08:10:32 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6152
6153 * calls.c (calls_function_1, expand_call): Only test
6154 TYPE_RETURNS_STACK_DEPRESSED for FUNCTION_TYPE.
6155 * function.c (thread_prologue_and_epilogue_insns): Likewise.
6156
6157 2000-08-16 Richard Henderson <rth@cygnus.com>
6158
6159 * combine.c (simplify_shift_const): Revert previous two
6160 changes. If SHIFT_COUNT_TRUNCATED, crop the shift count
6161 before the main loop.
6162
6163 2000-08-15 Richard Henderson <rth@cygnus.com>
6164
6165 * combine.c (simplify_shift_const): Bound shift count when
6166 combining shifts.
6167
6168 Tue Aug 15 17:33:05 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
6169
6170 * calls.c (ECF_SP_DEPRESSED): New macro.
6171 (calls_function_1): Treat calling sp-depressed function as alloca.
6172 (emit_call_1): Don't adjust SP if calling sp-depressed function.
6173 (expand_call): Set ECF_SP_DEPRESSED if TYPE_RETURNS_STACK_DEPRESSED.
6174 If sp-depressed, ensure block saves and restores SP.
6175 * fold-const.c (extract_muldiv): Only check TYPE_IS_SIZETYPE
6176 for INTEGER_TYPE.
6177 * function.c (keep_stack_depressed): New function.
6178 (thread_prologue_and_epilogue_insns): Call it.
6179 * print-tree.c (print_node): Use HOST_WIDE_INT_PRINT_UNSIGNED
6180 to print DECL_OFFSET_ALIGN.
6181 Print no-force-blk and transparent-union flags properly.
6182 * stmt.c (expand_goto_internal): Don't restore stack if last block
6183 and function returns with sp depressed.
6184 (fixup_gotos): Likewise.
6185 (save_stack_pointer): New function, from code in expand_decl.
6186 (expand_decl): Call new function.
6187 * tree.h (TYPE_IS_SIZETYPE): Call INTEGER_TYPE_CHECK.
6188 (TYPE_RETURNS_STACK_DEPRESSED): New macro.
6189 (save_stack_pointer): New declaration.
6190
6191 * diagnostic.c (fatal_function): New variable.
6192 (set_fatal_function): New function.
6193 (fatal): Call it.
6194 * diagnostic.h (set_fatal_function): New declaration.
6195
6196 2000-08-15 William Cohen <wcohen@redhat.com>
6197
6198 * config/sh/elf.h (DWARF2_DEBUGGING_INFO): Defined.
6199 (PREFERRED_DEBUGGING_TYPE): Set to dwarf2 info.
6200 (DWARF2_ASM_LINE_DEBUG_INFO): Defined.
6201
6202 2000-08-15 Richard Henderson <rth@cygnus.com>
6203
6204 * flow.c (mark_used_reg): Set reg_cond_reg appropriately.
6205
6206 2000-08-15 Richard Earnshaw <rearnsha@arm.com>
6207
6208 * arm.c (arm_function_ok_for_sibcall): New function.
6209 * arm.h (FUNCTION_OK_FOR_SIBCALL): Define.
6210 * arm.md (call expanders): Don't check here for calls that can't
6211 be sibling calls.
6212
6213 2000-08-15 Richard Earnshaw <rearnsha@arm.com>
6214
6215 * arm.md (splits generating cond_exec): Disable.
6216
6217 2000-08-15 Richard Earnshaw <rearnsha@arm.com>
6218
6219 * arm/linux-elf.h (text_section): Delete declaration.
6220
6221 2000-08-15 Richard Earnshaw <rearnsha@arm.com>
6222
6223 ARM support for unordered FP operations.
6224 * arm-protos.h (arm_comparison_operator): Declare.
6225 * arm.c (arm_comparison_operator): New function.
6226 (arm_select_cc_mode): Add unordered comparison codes.
6227 (get_arm_condition_code): Likewise.
6228 (arm_final_prescan_insn): Can't handle unordered jumps that can't
6229 be done in one insn.
6230 * arm.h (PREDICATE_CODES): Add arm_comparison_operator.
6231 * arm.md (all uses of comparison_operator): Replace with
6232 arm_comparison_operator.
6233 (bunordered, bordered, bugt, bunlt, bunge, bunle, buneq, bltgt): New
6234 expands.
6235 (arm_buneq, arm_bltgt, arm_buneq_reversed, arm_bltgt_reveresed): New
6236 patterns.
6237
6238 Tue Aug 15 00:36:36 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6239
6240 * gthr-posix.h: Conditionally include <sched.h>; include
6241 <config.h> from libobjc/.
6242
6243 2000-08-14 Richard Henderson <rth@cygnus.com>
6244
6245 * config/i386/i386.c (legitimize_pic_address): Use Pmode
6246 for all CONSTs.
6247
6248 2000-08-14 Richard Henderson <rth@cygnus.com>
6249
6250 * configure.in (ia64-*): Set float_format for i386 long double.
6251
6252 * real.c (GET_REAL): Treat 128-bit INTEL_EXTENDED_IEEE_FORMAT
6253 as we would for i386 XFmode.
6254 (PUT_REAL): Likewise.
6255 (endian, ereal_atof, real_value_truncate): Likewise.
6256 (ereal_isneg, toe64, etens, make_nan): Likewise.
6257 * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Likewise.
6258
6259 * config/ia64/ia64-protos.h: Update.
6260 * config/ia64/ia64.c (general_tfmode_operand): New.
6261 (destination_tfmode_operand): New.
6262 (tfreg_or_fp01_operand): New.
6263 (ia64_split_timode): New.
6264 (spill_tfmode_operand): New.
6265 (ia64_expand_prologue): Use TFmode not XFmode.
6266 (ia64_expand_epilogue): Likewise.
6267 (ia64_function_arg): Likewise.
6268 (ia64_function_arg_advance): Likewise.
6269 (ia64_return_in_memory): Likewise.
6270 (ia64_function_value): Likewise.
6271 (ia64_print_operand): Likewise.
6272 (ia64_register_move_cost): Set GR<->FR to 5.
6273 (ia64_secondary_reload_class): Get GR for TImode memory op.
6274 * config/ia64/ia64.h (ROUND_TYPE_SIZE): Remove.
6275 (ROUND_TYPE_ALIGN): Remove.
6276 (LONG_DOUBLE_TYPE_SIZE): Set to 128.
6277 (INTEL_EXTENDED_IEEE_FORMAT): Define.
6278 (HARD_REGNO_NREGS): Use TFmode, not XFmode.
6279 (HARD_REGNO_MODE_OK): Likewise. Disallow TImode in FRs.
6280 (MODES_TIEABLE_P): Use TFmode, not XFmode.
6281 (CLASS_MAX_NREGS): Likewise.
6282 (ASM_OUTPUT_LONG_DOUBLE): Output by 4 byte hunks.
6283 (PREDICATE_CODES): Update.
6284 * config/ia64/ia64.md (movti): New.
6285 (movti_internal): Use a clobber for memory alternatives.
6286 (reload_inti, reload_outti): New.
6287 (movsfcc_astep): Predicate properly.
6288 (movdfcc_astep): Likewise.
6289 (movxf): Remove.
6290 (movtf): New.
6291 (extendsftf2, extenddftf2): New.
6292 (trunctfsf2, trunctfdf2): New.
6293 (floatditf2, fix_trunctfdi2): New.
6294 (floatunsditf2, fixuns_trunctfdi2): New.
6295 (addtf3, subtf3, multf3, abstf2): New.
6296 (negtf2, nabstf2, mintf3, maxtf3): New.
6297 (maddtf3, msubtf3, nmultf3, nmaddtf3): New.
6298 (cmptf): New.
6299 (fr_spill): Use TFmode, not XFmode.
6300 (fr_restore): Likewise.
6301 * config/ia64/lib1funcs.asm (__divtf3): New.
6302 * config/ia64/t-ia64 (LIB1ASMFUNCS): Add it.
6303
6304 2000-08-14 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6305
6306 * cse.c (fold_rtx): Avoid empty body in an if-statement.
6307
6308 * doloop.c (doloop_iterations_max, doloop_modify): Avoid using the
6309 `U' integer constant suffix.
6310
6311 * dwarf2out.c (add_subscript_info): Avoid empty body in an
6312 else-statement.
6313
6314 * sparc/sol2.h (__enable_execute_stack): Prototype.
6315
6316 2000-08-14 David Edelsohn <edelsohn@gnu.org>
6317
6318 * collect2.c: Remove use of AIX import file.
6319
6320 * longlong.h: Test ARCH_PWR not ARCH_POWER.
6321
6322 * rs6000.c (print_operand, case 'E'): Add else.
6323
6324 2000-08-14 Richard Henderson <rth@cygnus.com>
6325
6326 * config/ia64/ia64.md (movdi): Delay calling ia64_expand_load_address.
6327 (movdi_symbolic): New.
6328
6329 2000-08-14 Jim Wilson <wilson@cygnus.com>
6330
6331 * config/ia64/ia64.h (ASM_SPEC): Pass -mconstant-gp and -mauto-pic
6332 to GNU as. For Intel as, pass -M const_gp and -M no_plabel.
6333 * config/ia64/linux.h (ASM_SPEC): Pass -mconstant-gp and -mauto-pic
6334 to GNU as.
6335
6336 2000-08-14 Richard Henderson <rth@cygnus.com>
6337
6338 * expr.c (emit_group_load): Don't force constants into registers.
6339 Special case source already in the correct mode.
6340
6341 2000-08-14 Zack Weinberg <zack@wolery.cumb.org>
6342
6343 * configure.in: Accept *-*-linux* not just *-*-linux-gnu*.
6344 * fixinc/inclhack.def: Likewise.
6345 * fixinc/mkfixinc.sh: Likewise.
6346 * configure: Regenerate.
6347 * fixinc/fixincl.x: Regenerate.
6348 * install.texi: Document equivalence of linux and linux-gnu.
6349
6350 Mon Aug 14 18:51:44 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6351
6352 * cse.c (insert_regs): Also in REG case: When finding an invalid
6353 value, and we make a new quantity, make sure that it won't be
6354 mistaken by for a valid one by mention_regs.
6355
6356 2000-08-13 Ralf Gütlein <ralf.guetlein@aranea.de>
6357
6358 * h8300.md: Remove obsolete peepholes.
6359
6360 2000-08-13 Kazu Hirata <kazu@hxi.com>
6361
6362 * invoke.texi (H8/300 Options): Fix typos.
6363 * config/h8300.c: Fix formatting.
6364 * config/h8300.h: Fix comment typos.
6365 (OVERRIDE_OPTIONS): Fix formatting.
6366
6367 * function.c: Fix formatting.
6368
6369 * cse.c: Fix formatting.
6370
6371 2000-08-13 Geoff Keating <geoffk@cygnus.com>
6372
6373 * flow.c (attempt_auto_inc): Remove unused variable `bb'.
6374 (attempt_auto_inc): Suppress parentheses warning.
6375 * function.c (put_reg_into_stack): Remove unused variable `unsigned_p'.
6376 * loop.c (load_mems): Remove `u' suffix in two places.
6377 * config/rs6000/rs6000.c: Remove unnecessary `u' suffixes from
6378 hex constants.
6379 * config/rs6000/rs6000.h: Likewise.
6380 * config/rs6000/sol-c0.c: Prototype some functions. Remove the
6381 __eabi dummy routine.
6382 * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Remove unused
6383 variable `buf_ptr'.
6384
6385 * config/rs6000/rs6000.c (rs6000_select_section): Rewrite to
6386 not put stuff in .sdata unnecessarily.
6387 (rs6000_unique_section): New function.
6388 * config/rs6000/rs6000-protos.h: Add rs6000_unique_section.
6389 * config/rs6000/sysv4.h (UNIQUE_SECTION): Define.
6390
6391 * c-typeck.c (build_array_ref): Don't complain about non-lvalue
6392 arrays in C99. Don't try to look at DECL_REGISTER of a
6393 COMPONENT_REF. Don't complain twice about the same error.
6394
6395 * fixinc/inclhack.def (aix_pthread): New fix.
6396 (aix_sysmachine): New fix.
6397 * fixinc/fixincl.x: Regenerate.
6398
6399 * expr.c (expand_expr): Call convert_modes when turning a large
6400 multiply into a small one.
6401
6402 2000-08-12 Geoff Keating <geoffk@cygnus.com>
6403
6404 * tree.h (DECL_OFFSET_ALIGN): Make the off_align field of
6405 the tree structure an exponent rather than an explicit alignment
6406 so it doesn't overflow.
6407 (SET_DECL_OFFSET_ALIGN): New macro.
6408 * stor-layout.c (place_union_field): Use SET_DECL_OFFSET_ALIGN
6409 rather than DECL_OFFSET_ALIGN.
6410 (place_field): Likewise.
6411 * expmed.c (store_bit_field): Abort on align==0 to avoid
6412 antisocial machine behaviour.
6413
6414 2000-08-12 Richard Henderson <rth@cygnus.com>
6415
6416 * sibcall.c (uses_addressof): Accept both addressof and
6417 current_function_internal_arg_pointer inside a mem.
6418 (optimize_sibling_and_tail_recursive_call): Fail tail recursion
6419 if current_function_uses_addressof.
6420 * stmt.c (expand_return): Kill tail recursion and HAVE_return
6421 optimizations.
6422
6423 2000-08-11 Richard Henderson <rth@cygnus.com>
6424
6425 * config/ia64/ia64.md (addsi3): Remove expander.
6426 (subsi3, mulsi3, negsi2, one_cmplsi2): Likewise.
6427 (*addsi3_shladd): New.
6428
6429 2000-08-11 Richard Henderson <rth@cygnus.com>
6430
6431 * config/ia64/ia64.c (do_spill): Pass cfa offset to move expander.
6432 (do_restore): Likewise.
6433 (gen_movdi_x, gen_fr_spill_x, gen_fr_restore_x): New.
6434 (ia64_expand_prologue, ia64_expand_epilogue): Use them.
6435 (rtx_needs_barrier): Track actual bit manipulation for
6436 ar.unat moves, gr_spill, and gr_restore.
6437 (emit_insn_group_barriers): Special case gr_spill/gr_restore.
6438 (process_set): Don't handle varargs spills.
6439 * config/ia64/ia64.md (gr_spill): Accept cfa offset. Emit
6440 .mem.offset here instead of in process_set.
6441 (gr_restore): Likewise.
6442
6443 2000-08-11 Richard Henderson <rth@cygnus.com>
6444
6445 * config/ia64/ia64.h (PROMOTE_MODE): Only extend to SImode.
6446
6447 2000-08-11 Mark Elbrecht <snowball3@bigfoot.com>
6448
6449 * gcc.texi (The Configuration File): Document
6450 COLLECT2_HOST_INITIALIZATION, GCC_DRIVER_HOST_INITIALIZATION, and
6451 UPDATE_PATH_HOST_CANONICALIZATION.
6452
6453 2000-08-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6454
6455 * c-parse.in (cast_expr): Avoid -Wstrict-prototype warnings for
6456 unprototyped function pointer casts on integer constants.
6457
6458 2000-08-11 Laurynas Biveinis <lauras@softhome.net>
6459
6460 * fixproto: Recognize DOS paths with drive letters as absolute paths.
6461
6462 2000-08-11 Nathan Sidwell <nathan@codesourcery.com>
6463
6464 * extend.texi (Volatiles): Fix typos.
6465
6466 2000-08-11 Kazu Hirata <kazu@hxi.com>
6467
6468 * flow.c: Fix formatting.
6469
6470 2000-08-11 Richard Henderson <rth@cygnus.com>
6471
6472 * reload.c (push_secondary_reload): When invoking a reload_{in,out}
6473 pattern, always allocate a tertiary scratch register.
6474
6475 * config/alpha/alpha.md (reload_inqi): Use a DImode scratch.
6476 (reload_inhi): Likewise.
6477
6478 2000-08-11 Richard Henderson <rth@cygnus.com>
6479
6480 * function.c (put_reg_into_stack): Allow type to be NULL.
6481 (schedule_fixup_var_refs): Likewise.
6482 (gen_mem_addressof): Allow decl to be NULL.
6483 (put_addressof_into_stack): Likewise.
6484
6485 * flow.c (merge_blocks_nomove): Be more careful about
6486 locating the beginning of block A.
6487
6488 * combine.c (simplify_shift_const): Obey SHIFT_COUNT_TRUNCATED.
6489
6490 Thu Aug 10 22:47:09 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6491
6492 * configure.in:
6493 * configure:
6494 * gthr-posix.h:
6495 * config.in: Reverted the check for <sched.h>.
6496
6497 2000-08-10 Chris Demetriou <cgd@sibyte.com>
6498
6499 * mips/elf.h (CTOR_SECTION_NAME, DTOR_SECTION_NAME): New
6500 macros define the name of CTOR and DTOR sections.
6501 (CTOR_LIST_BEGIN, CTOR_LIST_END, DTOR_LIST_BEGIN,
6502 DTOR_LIST_END): Change to use attributes to specify
6503 sections.
6504 * mips/elf64.h (CTOR_SECTION_NAME, DTOR_SECTION_NAME,
6505 (CTOR_LIST_BEGIN, CTOR_LIST_END, DTOR_LIST_BEGIN,
6506 DTOR_LIST_END): Same as in mips/elf.h.
6507
6508 2000-08-10 Drew Moseley <dmoseley@redhat.com>
6509
6510 * config/mn10300/mn10300.h: Added no-crt0 option for explicitly
6511 disabling just crt0.o.
6512
6513 2000-08-10 Richard Earnshaw <rearnshaw@arm.com> & Nick Clifton <nickc@cygnus.com>
6514
6515 * arm.h (CPP_SPEC): Use sub-spec cpp_interwork.
6516 (CPP_INTERWORK_SPEC, CPP_INTERWORK_DEFAULT_SPEC): New sub-specs.
6517 (EXTRA_SPECS): Add them.
6518 * arm/lib1funcs.asm: Support builds for interworking.
6519 Use macros to eliminate duplicated pieces of code.
6520
6521 2000-08-10 Kazu Hirata <kazu@hxi.com>
6522
6523 * h8300.c (expand_a_rotate): New.
6524 (emit_a_rotate): Likewise.
6525 (h8300_adjust_insn_length): Add support for the rotate insns.
6526 * h8300.md (rotlqi3): New.
6527 (*rotlqi3_1): Likewise.
6528 (rotlhi3): Likewise.
6529 (*rotlhi3_1): Likewise.
6530 (rotlhi3): Likewise.
6531 (*rotlhi3_1): Likewise.
6532 * h8300-proto.h: Add prototypes for expand_a_rotate and
6533 emit_a_rotate.
6534
6535 * h8300.c: Fix comment typos.
6536 (dosize): Declare the variable amount as unsigned.
6537 (get_shift_alg): Fix a comparison between signed and unsigned.
6538 (emit_a_shift): Likewise.
6539 (h8300_adjust_insn_length): Simplify the code.
6540
6541 * c-decl.c: Fix formatting.
6542
6543 2000-08-10 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6544
6545 * c-lex.c (parse_float, yylex): For -Wtraditional, issue a
6546 warning about non-traditional numeric constant suffixes.
6547
6548 * cppexp.c (parse_number): Likewise.
6549
6550 * invoke.texi: (-Wtraditional): Document new behavior.
6551
6552 Thu Aug 10 00:11:04 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6553
6554 * gthr-posix.h: Include auto-host.h. Conditionally include
6555 <sched.h>.
6556 * configure.in: Check for the <sched.h> header file.
6557 * config.in: Added define for HAVE_SCHED_H.
6558
6559 2000-08-09 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6560
6561 * c-typeck.c (process_init_element): For -Wtraditional, warn about
6562 initialization of unions.
6563
6564 * invoke.texi (-Wtraditional): Document new behavior.
6565
6566 2000-08-09 Zack Weinberg <zack@wolery.cumb.org>
6567
6568 * configure.in (--enable-c-cpplib): Uncomment. Use AC_DEFINE
6569 instead of extra_c_flags.
6570 (--enable-c-mbchar): Use AC_DEFINE instead of extra_c_flags.
6571 * configure: Regenerate.
6572 * config.in: Regenerate.
6573
6574 * cpperror.c (cpp_type2name): New function.
6575 * cpplex.c (lex_line): If we issued an error for an invalid
6576 preprocessing directive, discard that logical line.
6577 * cpplib.c (do_line): Call a hook function if the current file
6578 is renamed by #line.
6579 (do_ident): Pass the contents of the string, not the entire
6580 token, to the callback function.
6581 * cpplib.h (CPP_LAST_PUNCTUATOR): New #define.
6582 (cb.rename_file): New hook function.
6583 (cb.ident): Adjust prototype.
6584 (cpp_type2name): Prototype.
6585 * cppmacro.c (dump_macro_args): Correct precedence lossage.
6586
6587 * cppmain.c (cb_ident): Update for changed interface.
6588 (cb_rename_file): New function.
6589 (main): Set rename callback.
6590
6591 2000-08-09 Alexandre Oliva <aoliva@redhat.com>
6592
6593 * caller-save.c (mark_referenced_regs): Mark partially-overwritten
6594 multi-word registers.
6595
6596 2000-08-08 Joseph S. Myers <jsm28@cam.ac.uk>
6597
6598 * c-common.c (combine_strings, check_format_info): Refer to ISO C
6599 or ISO C89 instead of ANSI C.
6600 * c-decl.c (grokdeclarator, xref_tag, finish_struct,
6601 build_enumerator, do_case): Likewise.
6602 * c-lex.c (parse_float, yylex): Likewise.
6603 * c-parse.in: Likewise.
6604 * c-typeck.c (common_type, build_array_ref, build_binary_op,
6605 build_unary_op, pedantic_lvalue_warning, build_conditional_expr,
6606 build_c_cast, convert_for_assignment, set_init_index,
6607 set_init_label, c_expand_start_case): Likewise.
6608 * toplev.c (documented_lang_options, display_help): Likewise.
6609
6610 2000-08-08 Kazu Hirata <kazu@hxi.com>
6611
6612 * h8300.c: Fix formatting.
6613 * h8300.h: Likewise.
6614 * h8300.md: Likewise.
6615 (movsi_h8300hs): Fix formatting of the resulting assembly code.
6616
6617 * reload1.c: Fix formatting.
6618
6619 2000-08-08 Rodney Brown <RodneyBrown@mynd.com>
6620
6621 * alpha/alpha.c (alpha_emit_xfloating_libcall):
6622 Use GEN_CALL_VALUE define.
6623 * alpha/alpha.md (untyped_call): Use GEN_CALL define.
6624 * clipper/clipper.md (untyped_call): Likewise.
6625 * dsp16xx/dsp16xx.md (untyped_call): Likewise.
6626 * fx80/fx80.md (untyped_call): Likewise.
6627 * mips/mips.md (untyped_call): Likewise.
6628 * ns32k/ns32k.md (untyped_call): Likewise.
6629 * pa/pa.md (untyped_call): Likewise.
6630 * romp/romp.md (untyped_call): Likewise.
6631 * sparc/sparc.md (untyped_call): Likewise.
6632
6633 2000-08-08 Jason Eckhardt <jle@cygnus.com>
6634
6635 * config/i860/i860.c (singlemove_string): Do not generate assembler
6636 pseudo instructions that must be expanded (that is, with signed
6637 constants larger than 16 bits).
6638
6639 2000-08-08 Richard Henderson <rth@cygnus.com>
6640
6641 * flow.c (life_analysis): Only turn off PROP_LOG_LINKS and
6642 PROP_AUTOINC at -O0. Don't collect alias info at -O0.
6643 (init_propagate_block_info): Don't kill memory stores at -O0.
6644 (mark_set_1, mark_used_regs): Likewise.
6645
6646 2000-08-08 David Edelsohn <edelsohn@gnu.org>
6647
6648 * rs6000.c (optimization_options): Decorate 'level' as
6649 ATTRIBUTE_UNUSED.
6650 (mask64_operand): Remove sign-extend thinko.
6651 (rldic_operand): New function.
6652 (load_multiple_operation): regno's are unsigned ints.
6653 (store_multiple_operation): Likewise.
6654 (lmw_operation): Likewise.
6655 (stmw_operation): Likewise.
6656 (includes_lshift_p): shift_mask is unsigned int.
6657 (includes_lshift64_p): New function.
6658 (addrs_ok_for_quad_peep): unsigned int reg1.
6659 (print_operand): Consistently add "else" after
6660 output_operand_lossage().
6661 (print_operand, case 'b'): Fold in case 'W'.
6662 (print_operand, case 'W'): Print rldic MB value.
6663 (output_epilogue): Update Objective-C language string.
6664 (output_toc): unsigned HOST_WIDE_INT low, compare unsigned.
6665 * rs6000.h (PREDICATE_CODES): Add rldic_operand.
6666 * rs6000.md (ashldi3): Add rldic instruction.
6667 (iordi3, xordi3): Remove redundant "else if CONST_DOUBLE".
6668 (cmpsi_internal2, cmpdi_interal2): Use 'b' output template
6669 modifier.
6670
6671 2000-08-08 Richard Henderson <rth@cygnus.com>
6672
6673 * config/ia64/ia64-protos.h: Remove duplicates. Update
6674 for massive code rearrangements.
6675 * config/ia64/ia64.c (ia64_arpfs_regno): Remove.
6676 (ia64_rp_regno, ia64_fp_regno, ia64_input_regs): Remove.
6677 (ia64_local_regs, ia64_need_regstk): Remove.
6678 (ar_ccv_reg_operand): New.
6679 (ia64_gp_save_reg): New.
6680 (struct ia64_frame_info): Combine most of the size elements;
6681 add new gr save elements.
6682 (find_gr_spill): New.
6683 (next_scratch_gr_reg): New.
6684 (mark_reg_gr_used_mask): New.
6685 (ia64_compute_frame_size): Rewrite. Allocate special AR regs
6686 to GR backing store regs when possible.
6687 (ia64_initial_elimination_offset): New.
6688 (ia64_rap_fp_offset): Remove.
6689 (save_restore_insns): Remove.
6690 (setup_spill_pointers): New.
6691 (finish_spill_pointers): New.
6692 (spill_restore_mem): New.
6693 (do_spill, do_restore): New.
6694 (ia64_expand_prologue): Rewrite to use them.
6695 (ia64_expand_epilogue): Likewise.
6696 (ia64_direct_return): Update for current_frame_info changes.
6697 (ia64_function_prologue): Simplify .prologue emission. Emit
6698 .spill when needed.
6699 (ia64_setup_incoming_varargs): Don't ever emit rtl.
6700 (ia64_dbx_register_number): New.
6701 (ia64_initialize_trampoline): New.
6702 (ia64_secondary_reload_class): Request GR_REGS for integer
6703 arithmetic destined for FR_REGS.
6704 (ia64_init_machine_status): Don't reset return_address_pointer_rtx.
6705 (ia64_mark_machine_status): Mark ia64_gp_save.
6706 (rws_access_regno): Rename from rws_access_reg; don't treat
6707 predicates specially.
6708 (rws_access_reg): New. Update all callers.
6709 (rtx_needs_barrier): Remove dead unspecs.
6710 (ia64_epilogue_uses): Mark ar.pfs and ar.unat live on exit.
6711 (ia64_encode_section_info): Silence signed/unsigned warnings.
6712 (spill_offset, sp_offset, spill_offset_emitted): Remove.
6713 (tmp_reg, tmp_saved): Remove.
6714 (process_set): Rewrite to expect complicated bits via
6715 REG_FRAME_RELATED_EXPR.
6716 (ia64_expand_fetch_and_op): Use emit_move_insn; be explicit
6717 in the use of ar.ccv; never set RTX_UNCHANGING_P.
6718 (ia64_expand_op_and_fetch): Likewise.
6719 (ia64_expand_compare_and_swap): Likewise.
6720 (ia64_expand_builtin): Likewise.
6721 * config/ia64/ia64.h (AR_UNAT_REGNUM): New.
6722 (FIRST_PSEUDO_REGISTER): Update.
6723 (AR_M_REGNO_P): Update.
6724 (FIXED_REGS): Don't mark three local registers as used.
6725 (EXTRA_CC_MODES): New.
6726 (SELECT_CC_MODE): New.
6727 (HARD_REGNO_NREGS): Allow DImode in p0; handle CCImode.
6728 (HARD_REGNO_MODE_OK): Disallow CCImode from non-predicates.
6729 (FRAME_GROWS_DOWNWARD): Unset.
6730 (STARTING_FRAME_OFFSET): Zero.
6731 (ELIMINABLE_REGS): Eliminate from the soft to hard frame pointer.
6732 (INITIAL_ELIMINATION_OFFSET): Defer to out of line function.
6733 (HARD_FRAME_POINTER_REGNUM): New.
6734 (CAN_DEBUG_WITHOUT_FP): Define.
6735 (TRAMPOLINE_TEMPLATE): Remove.
6736 (TRAMPOLINE_SIZE): Lower to 32.
6737 (TRAMPOLINE_ALIGNMENT): Lower to 64.
6738 (INITIALIZE_TRAMPOLINE): Defer to out of line function.
6739 (PREDICATE_CODES): Update.
6740 (struct machine_function): Add ia64_gp_save.
6741 * config/ia64/ia64.md: Purge unused unspecs.
6742 (movsi patterns): Allow moves to/from AR_M_REGS.
6743 (movdi patterns): Allow moves to/from p0.
6744 (call patterns): Move most setjmp hackery to ia64_gp_save_reg.
6745 (gr_spill, gr_restore): Indicate ar.unat read/written.
6746 (nonlocal_goto): Don't pass old frame_pointer.
6747 (nonlocal_goto_receiver): Remove.
6748 (exception_receiver): New.
6749 (builtin_setjmp_setup): New.
6750 (builtin_setjmp_receiver): New.
6751 * config/ia64/lib1funcs.asm (__ia64_save_stack_nonlocal): Bundle.
6752 (__ia64_nonlocal_goto): Bundle. Don't kill r7.
6753 (__ia64_restore_stack_nonlocal): Likewise.
6754 (__ia64_trampoline): New.
6755 * config/ia64/sysv4.h (DBX_REGISTER_NUMBER): Defer to out of line
6756 function.
6757 * config/ia64/t-ia64 (LIB1ASMFUNCS): Add __trampoline.
6758
6759 2000-08-08 Richard Henderson <rth@cygnus.com>
6760
6761 * frame.h (ia64_frame_state): Add my_psp.
6762 * libgcc2.c (ia64_throw_helper): Add throw_sp argument.
6763 (__throw): Pass it in. Don't clobber r7.
6764 * config/ia64/frame-ia64.c (init_ia64_reg_loc): Mark inline.
6765 (execute_one_ia64_descriptor) [mem_stack_v]: Sets psp.when
6766 and nothing to do with sp.
6767 (normalize_reg_loc): Use frame->my_psp.
6768 (frame_translate): Handle frame-pointer-less functions. Set
6769 spill_base correctly, in absence of being told.
6770 (__build_ia64_frame_state): New sp argument. Fill in frame->my_sp.
6771 (__ia64_backtrace_helper): New sp argument. Use
6772 builtin_return_address instead of label addresses.
6773 (print_record) [mem_stack_v]: No size member.
6774
6775 2000-08-08 Richard Henderson <rth@cygnus.com>
6776
6777 * regclass.c (choose_hard_reg_mode): Iterate over all CC modes.
6778
6779 2000-08-08 Richard Henderson <rth@cygnus.com>
6780
6781 * tm.texi (LOCAL_REGNO): Document.
6782 * flow.c (LOCAL_REGNO, EPILOGUE_USES): Provide default.
6783 (mark_regs_live_at_end): Don't mark LOCAL_REGNO registers.
6784 * reload1.c (reload): Likewise when considering nonlocal labels.
6785
6786 * config/ia64/ia64.h (LOCAL_REGNO): New.
6787 * config/sparc/sparc.h (LOCAL_REGNO): New.
6788
6789 2000-08-08 Joseph S. Myers <jsm28@cam.ac.uk>
6790
6791 * c-lex.c (yylex): Don't allow integer suffixes 'LUL', 'Ll', 'lL'.
6792
6793 2000-08-07 Nick Clifton <nickc@redhat.com>
6794
6795 * config/mips/mips.c: Fix compile time warning messages.
6796 * config/mips/mips-protos.h: Add prototype for equality_op.
6797
6798 * mn10300.h (TARGET_SWITCHES): Document `-mam33'.
6799
6800 2000-08-07 Graham Stott <grahams@cygnus.co.uk>
6801
6802 * mn10300.md: Use nonimmediate_operand instead of general_operand
6803 on output operands.
6804
6805 * mn10300.h (PREFERRED_RELOAD_CLASS): Limit memory reloads.
6806
6807 2000-08-07 Alexandre Oliva <aoliva@redhat.com>
6808
6809 * sh.h (EXTRA_CONSTRAINT_Q): Adjust to GNU Coding Standards.
6810 * sh.c (expand_block_move): Break long lines.
6811 (expand_ashiftrt, fpscr_set_from_mem): Likewise.
6812 * sh.md (mulsi3): Likewise.
6813 (movdi): Adjust spacing.
6814
6815 2000-08-07 Richard Henderson <rth@cygnus.com>
6816
6817 * expmed.c (store_bit_field): Don't require MEM_IN_STRUCT_P.
6818 * expr.c (emit_group_store): Don't set it.
6819
6820 2000-08-07 Kazu Hirata <kazu@hxi.com>
6821
6822 * invoke.texi (Options for Debugging Your Program or GCC): Remove
6823 duplicate entries for 'w' and 'z'.
6824
6825 * flow.c: Fix a comment typo.
6826
6827 Sun Aug 6 23:47:35 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6828
6829 * c-parse.in: Changed the language string for Objective-C to "GNU
6830 Objective-C".
6831
6832 Sun Aug 6 11:54:03 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6833
6834 * gthr-posix.h: Integrated Chris Ball's <cball@fmco.com> changes
6835 to improve the Posix thread support for Objective-C.
6836
6837 2000-08-06 Joseph S. Myers <jsm28@cam.ac.uk>
6838
6839 * c-common.h (enum c_tree_index): Add CTI_SIGNED_SIZE_TYPE and
6840 CTI_UNSIGNED_PTRDIFF_TYPE.
6841 (signed_size_type_node): Define.
6842 (unsigned_ptrdiff_type_node): Define.
6843 * c-decl.c (init_decl_processing): Create the
6844 signed_size_type_node and unsigned_ptrdiff_type_node types.
6845 * c-common.c (T_SC): Define.
6846 (T_SST): Define.
6847 (T_UPD): Define.
6848 (print_char_table): Use T_SST for %zd, %zi, %zn. Use T_UPD for
6849 %to, %tu, %tx, %tX. Allow %hhn (T_SC). Add "c" to the flags for
6850 %s and %p.
6851 (scan_char_table): Use T_SC for %hhd, %hhi, %hhn. Use T_SST for
6852 %zd, %zi, %zn. Use T_UPD for %to, %tu, %tx, %tX. Add "c" to the
6853 flags for %c, %s and %[.
6854 (check_format_info): Only allow leniency for signedness of targets
6855 of character pointers (when pedantic) for formats flagged with
6856 "c", so for strings but not for %hh formats. When pedantic, don't
6857 allow character pointers to substitute for void pointers if a
6858 second level of indirection is present.
6859
6860 2000-08-06 Kazu Hirata <kazu@hxi.com>
6861
6862 * invoke.texi (Options for Debugging Your Program or GCC): Update
6863 the names of dump files.
6864
6865 * h8300.c (dosize): Rearrange code for conciseness.
6866 (split_adds_subs): Likewise.
6867
6868 * loop.c: Fix formatting.
6869
6870 * dwarf2out.c: Fix formatting.
6871
6872 * tm.texi (FUNCTION_ARG_PARTIAL_NREGS): Fix a typo.
6873
6874 * expr.c: Fix formatting.
6875
6876 2000-08-06 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
6877
6878 * rs6000.c (rs6000_maybe_dead): Prototype.
6879
6880 2000-08-06 Richard Henderson <rth@cygnus.com>
6881
6882 * stmt.c (expand_goto): Do virtual_stack_vars_rtx replacement for
6883 HAVE_nonlocal_goto as well.
6884 * config/i960/i960.md (nonlocal_goto): Don't do it here.
6885 * config/pj/pj.md (nonlocal_goto): Likewise.
6886
6887 2000-08-07 Michael Hayes <mhayes@cygnus.com>
6888
6889 * loop.c (try_swap_copy_prop): New function.
6890 (load_mems): Rename copies to load_copies and add new regset
6891 store_copies. Check for sets of shadow registers and mark
6892 in store_copies. Call try_swap_copy_prop for registers
6893 marked in store_copies.
6894
6895 Sun Aug 6 00:54:42 2000 Ovidiu Predescu <ovidiu@cup.hp.com>
6896
6897 * objc/objc-act.c: New command line option -fconstant-string-class
6898 to allow specifying a user defined constant string class,
6899 different from NXConstantString.
6900
6901 * toplev.c: Moved the Objective-C specific options to
6902 objc/lang-options.h.
6903
6904 * objc/lang-options.h: Moved the Objective-C specific options from
6905 toplev.c. Added -fconstant-string-class.
6906
6907 2000-08-05 Chris Demetriou <cgd@sibyte.com>
6908
6909 * mips/elf.h (CTOR_LIST_BEGIN, CTOR_LIST_END,
6910 DTOR_LIST_BEGIN, DTOR_LIST_END): change type of
6911 __CTOR_LIST__ from func_ptr array to just func_ptr, to
6912 avoid extra alignment imposed on arrays.
6913 * mips/elf64.h (CTOR_LIST_BEGIN, CTOR_LIST_END,
6914 DTOR_LIST_BEGIN, DTOR_LIST_END): Likewise.
6915
6916 * mips.h: Clean up comments and spacing near MASKs.
6917 (TARGET_UNIX_ASM): Delete.
6918 (MASK_MIPS16, MASK_NO_CHECK_ZERO_DIV, MASK_CHECK_RANGE_DIV,
6919 MASK_UNINIT_CONST_IN_RODATA): Change values to make mask
6920 values contiguous.
6921
6922 2000-08-05 Joseph S. Myers <jsm28@cam.ac.uk>
6923
6924 * c-common.c (print_char_table): Add entries for the X/Open '
6925 format flag (print decimals with locale's thousands grouping
6926 character). Make %C expect wint_t.
6927 (check_format_info): If pedantic, warn when the %n$ operand
6928 number form is used. Allow for the ' flag; warn about it if
6929 pedantic.
6930
6931 2000-08-05 Zack Weinberg <zack@wolery.cumb.org>
6932
6933 * i386.h (FUNCTION_OK_FOR_SIBCALL): Not OK if DECL's return
6934 type is a float mode, cfun->decl's return type is not, and
6935 TARGET_FLOAT_RETURNS_IN_80387.
6936
6937 2000-08-04 Andreas Schwab <schwab@suse.de>
6938
6939 * cppmain.c (cb_def_pragma): Skip the first two tokens from the
6940 token list, which are always `#' and `pragma'.
6941
6942 2000-08-04 Zack Weinberg <zack@wolery.cumb.org>
6943
6944 * tree.c (tree_expr_nonnegative_p): Move to...
6945 * fold-const.c: ... here. Also handle BIND_EXPR and RTL_EXPR.
6946 (rtl_expr_nonnegative_p): New.
6947 * tree.h: Add prototype for rtl_expr_nonnegative_p.
6948
6949 * real.h (CONST_DOUBLE_LOW, CONST_DOUBLE_HIGH, CONST_DOUBLE_MEM,
6950 CONST_DOUBLE_CHAIN: Move to...
6951 * rtl.h: ...here. Use XCINT/XCEXP.
6952
6953 * Makefile.in: Remove toplev.o from OBJS. Add rule to make
6954 libbackend.a; add libbackend.a to STAGESTUFF. Add BACKEND
6955 variable. Use BACKEND when linking cc1, not OBJS. Add BACKEND
6956 to VOL_FILES.
6957
6958 * objc/Make-lang.in (cc1obj): Link with $(BACKEND).
6959
6960 2000-08-05 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
6961
6962 * config/c4x/c4x.md (return_indirect_internal): New.
6963 * config/c4x/c4x.c (c4x_expand_epilogue): Use it.
6964
6965 2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk>
6966
6967 * c-common.c (time_char_table): Mark up formats added in C99 and
6968 make other corrections. %D and %g were added in C99. %Og is an
6969 extension. %EX is permitted. %R, %T, %n, %r, %t were added in
6970 C99. %e was added in C99. %Oj is an extension. %G and %z are in
6971 C99 rather than GNU extensions, but %OG and %Oz are extensions.
6972 %h was added in C99. %C was added in C99. %OY and %OC are
6973 extensions. Add the C99 format %F.
6974 (check_format_info): If pedantic and not in C99 mode, warn for C99
6975 formats, %E and %O.
6976
6977 Fri Aug 4 23:01:58 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
6978
6979 * function.c (schedule_fixup_var_refs): New function, broken out
6980 of put_reg_into_stack.
6981 (put_reg_into_stack): Use it.
6982 (put_var_into_stack): In CONCAT case, fixup up references for
6983 components only after fixing up references to the whole concat.
6984
6985 2000-08-04 Rodney Brown <RodneyBrown@pmsc.com>
6986
6987 * alias.c (mark_constant_function): Use INSN_P.
6988 (init_alias_analysis): Likewise.
6989 * combine.c (combine_instructions): Use INSN_P.
6990 (can_combine_p): Likewise.
6991 (try_combine): Likewise.
6992 (distribute_notes): Likewise.
6993 (distribute_links): Likewise.
6994 * cse.c (cse_around_loop): Use INSN_P.
6995 (invalidate_skipped_block): Likewise.
6996 (cse_set_around_loop): Likewise.
6997 (cse_end_of_basic_block): Likewise.
6998 (delete_trivially_dead_insns): Likewise.
6999 * emit-rtl.c (unshare_all_rtl_again): Use INSN_P.
7000 (unshare_all_rtl_1): Likewise.
7001 (next_cc0_user): Likewise.
7002 (try_split make_insn_raw): Likewise.
7003 (remove_unnecessary_notes): Likewise.
7004 * final.c (shorten_branches): Use INSN_P.
7005 (leaf_renumber_regs): Likewise.
7006 (leaf_renumber_regs_insn): Likewise.
7007 * flow.c (find_label_refs): Use INSN_P.
7008 (verify_wide_reg): Likewise.
7009 (notice_stack_pointer_modification): Likewise.
7010 (count_or_remove_death_notes): Likewise.
7011 (verify_flow_info): Likewise.
7012 (clear_log_links): Likewise.
7013 * function.c (fixup_var_refs_insns): Use INSN_P.
7014 (compute_insns_for_mem): Likewise.
7015 * gcse.c (alloc_gcse_mem): Use INSN_P.
7016 (compute_sets): Likewise.
7017 (compute_hash_table): Likewise.
7018 (classic_gcse): Likewise.
7019 (cprop): Likewise.
7020 (insert_insn_end_bb): Likewise.
7021 (delete_null_pointer_checks_1): Likewise.
7022 * global.c (expand_preferences): Use INSN_P.
7023 (build_insn_chain): Likewise.
7024 * graph.c (node_data): Use INSN_P.
7025 * haifa-sched.c (priority): Use INSN_P.
7026 (rm_line_notes): Likewise.
7027 (rm_other_notes): Likewise.
7028 (find_insn_reg_weight): Likewise.
7029 (init_target_units): Likewise.
7030 (schedule_block): Likewise.
7031 (compute_block_forward_dependences): Likewise.
7032 (debug_dependencies): Likewise.
7033 (set_priorities): Likewise.
7034 * integrate.c (function_cannot_inline_p): Use INSN_P.
7035 (save_parm_insns): Likewise.
7036 (copy_insn_list): Likewise.
7037 * jump.c (mark_all_labels): Use INSN_P.
7038 (never_reached_warning): Likewise.
7039 * lcm.c (optimize_mode_switching): Use INSN_P.
7040 * local-alloc.c (validate_equiv_mem): Use INSN_P.
7041 (memref_used_between_p): Likewise.
7042 (update_equiv_regs): Likewise.
7043 (block_alloc): Likewise.
7044 (no_conflict_p): Likewise.
7045 * loop.c (scan_loop): Use INSN_P.
7046 (find_and_verify_loops): Likewise.
7047 (count_loop_regs_set): Likewise.
7048 (loop_reg_used_before_p): Likewise.
7049 (strength_reduce): Likewise.
7050 (recombine_givs): Likewise.
7051 (check_dbra_loop): Likewise.
7052 (load_mems): Likewise.
7053 (try_copy_prop): Likewise.
7054 * print-rtl.c (print_rtx): Use INSN_P.
7055 * recog.c (find_single_use): Use INSN_P.
7056 * reg-stack.c (stack_regs_mentioned): Use INSN_P.
7057 (next_flags_user): Likewise.
7058 (swap_rtx_condition): Likewise.
7059 * regmove.c (mark_flags_life_zones): Use INSN_P.
7060 (optimize_reg_copy_1): Likewise.
7061 (optimize_reg_copy_2): Likewise.
7062 (optimize_reg_copy_3): Likewise.
7063 (reg_is_remote_constant_p): Likewise.
7064 (fixup_match_2): Likewise.
7065 (regmove_optimize): Likewise.
7066 (fixup_match_1): Likewise.
7067 * regrename.c (build_def_use): Use INSN_P.
7068 (replace_reg_in_block): Likewise.
7069 (consider_use): Likewise.
7070 * reload.c (find_equiv_reg): Use INSN_P.
7071 * reload1.c (reload): Use INSN_P.
7072 (maybe_fix_stack_asms): Likewise.
7073 (calculate_needs_all_insns): Likewise.
7074 (reload_as_needed): Likewise.
7075 (emit_output_reload_insns): Likewise.
7076 (delete_address_reloads_1): Likewise.
7077 (reload_cse_regs_1): Likewise.
7078 (reload_combine): Likewise.
7079 (reload_cse_move2add): Likewise.
7080 * reorg.c (redundant_insn): Use INSN_P.
7081 (dbr_schedule): Likewise.
7082 * resource.c (find_dead_or_set_registers): Use INSN_P.
7083 (mark_target_live_regs): Likewise.
7084 * rtlanal.c (reg_used_between_p): Use INSN_P.
7085 (reg_referenced_between_p): Likewise.
7086 (reg_set_between_p): Likewise.
7087 (reg_set_p): Likewise.
7088 (single_set): Likewise.
7089 (multiple_sets): Likewise.
7090 (find_last_value): Likewise.
7091 (reg_set_last): Likewise.
7092 (find_reg_note): Likewise.
7093 (find_regno_note): Likewise.
7094 * sibcall.c (sequence_uses_addressof): Use INSN_P.
7095 * simplify-rtx.c (cselib_process_insn): Use INSN_P.
7096 * ssa.c (find_evaluations): Use INSN_P.
7097 (rename_block): Likewise.
7098 (rename_equivalent_regs): Likewise.
7099 * unroll.c (loop_find_equiv_value): Use INSN_P.
7100 (set_dominates_use): Likewise.
7101 * varasm.c (mark_constant_pool): Use INSN_P.
7102 (mark_constants): Likewise.
7103 * config/alpha/alpha.c (alpha_does_function_need_gp): Use INSN_P.
7104 (alphaev4_next_group): Likewise.
7105 (alphaev5_next_group): Likewise.
7106 * config/c4x/c4x.c (c4x_process_after_reload): Use INSN_P.
7107 (c4x_rptb_rpts_p): Likewise.
7108 * config/mips/mips.c (mips16_optimize_gp): Use INSN_P.
7109 * config/rs6000/rs6000.c (uses_TOC): Use INSN_P.
7110 (rs6000_adjust_priority): Likewise.
7111 * config/sh/sh.c (sh_loop_align): Use INSN_P.
7112 (machine_dependent_reorg): Likewise.
7113 (split_branches): Likewise.
7114 * config/tahoe/tahoe.c (tahoe_cmp_check): Use INSN_P.
7115
7116 Fri Aug 4 11:43:49 2000 John Wehle (john@feith.com)
7117
7118 * combine.c (recog_for_combine): Remove the old notes
7119 prior to attempting to recognize the new pattern.
7120 (distribute_notes): Ignore REG_NONNEG notes.
7121
7122 2000-08-04 Chandrakala Chavva <cchavva@redhat.com>
7123
7124 * varasm.c (output_constructor): Add .align 0 for packed vars.
7125
7126 2000-08-04 J. David Anglin <dave@hiauly1.hia.nrc.ca>
7127
7128 * configure.in: Use default thread_file even when enable_threads is
7129 yes or dce because hpux10.20 pa port uses MULTILIB implementation.
7130 * configure: Rebuilt.
7131
7132 * gthr-dce.h (__gthread_objc_condition_allocate): Fix typo.
7133
7134 2000-08-04 Donn Terry (donnte@microsoft.com)
7135
7136 * prefix.c (translate_name): Don't strip trailing DIR_SEPARATOR.
7137
7138 2000-08-04 Mark Elbrecht <snowball3@bigfoot.com>
7139
7140 * i386/x-djgpp: Delete code that conditionally modifies target_alias.
7141 Delete code that conditionally modifies 'version'.
7142 Delete X_CPPFLAGS. Add comment for SYSTEM_HEADER_DIR.
7143 * i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): New macro.
7144 * gcc.c (main): Use it.
7145 * config/i386/xm-djgpp.h (UPDATE_PATH_HOST_CANONICALIZE): New macro.
7146 * prefix.c (update_path): Use it.
7147 * i386/djgpp.h (STANDARD_INCLUDE_DIR): Define.
7148 (MD_EXEC_PREFIX): Set to '/dev/env/DJDIR/bin/'.
7149 (ASM_OUTPUT_SECTION_NAME): Add code attribute to sections containing
7150 code.
7151 (SUPPORTS_WEAK, SUPPORTS_ONE_ONLY): Default to true.
7152 (SUBTARGET_SWITCHES): Adjust.
7153 (WCHAR_UNSIGNED, WCHAR_TYPE_SIZE, WCHAR_TYPE): Undefine before
7154 defining.
7155 (WINT_TYPE, SIZE_TYPE, PTRDIFF_TYPE): Define.
7156
7157 2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk>
7158
7159 * c-common.h (flag_isoc94): Declare.
7160 * c-decl.c (flag_isoc94): Define.
7161 (c_decode_option): Set flag_isoc94 as appropriate.
7162 * c-common.c (T_PD, T_IM, T_UIM): Define.
7163 (format_char_info): Add tlen and jlen.
7164 (print_char_table): Add entries for %t and %j. Allow %zn. Allow
7165 %F. Allow %lf.
7166 (scan_char_table): Add entries for %t and %j. Allow %F. Allow
7167 %l[.
7168 (time_char_table): Add NULL entries for %t and %j.
7169 (check_format_info): Allow for %t and %j. Warn for %F if pedantic
7170 and not C99. Warn for %lc, %ls and %l[ if pedantic and not C94.
7171 Warn for printf %lf if pedantic and not C99. Don't warn for empty
7172 precision. Allow precision argument to be unsigned int. If
7173 pedantic, warn for %p passed an argument not a pointer to possibly
7174 qualified void or a possibly qualified character type, and for
7175 pointer targets of the wrong sign, except for character pointers.
7176
7177 2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk>
7178
7179 * ginclude/stddef.h: Don't declare wint_t unless __need_wint_t.
7180 * c-common.h (enum c_tree_index): Add CTI_WINT_TYPE.
7181 (wint_type_node): Define.
7182 * c-decl.c (WINT_TYPE): Define.
7183 (init_decl_processing): Create the wint_type_node type.
7184 * c-common.c (T_WI): Define.
7185 (print_char_table): Use T_WI for %lc format.
7186
7187 2000-08-04 Bruce Korb <bkorb@gnu.org>
7188
7189 * fixinc/: Verified that the MSDOS patch does not break
7190 the UNIX functionality and applied the next three patches
7191 from July:
7192
7193 2000-07-28 Eli Zaretskii <eliz@is.elta.co.il>
7194
7195 * fixinc/fixfixes.c (main) [__MSDOS__]: Avoid overwriting the
7196 output file with the temporary one by appending ".X" to generate
7197 the temporary fuile's name. If the output file already has an
7198 extension, replace it with ".X".
7199
7200 * fixinc/fixincl.c (fix_with_system) [__MSDOS__]: Use $ORIGDIR,
7201 not $DESTDIR, to find applyfix. Use sprintf instead of snprintf;
7202 reallocate the command buffer while copying the command-line
7203 argument. Redirect the output directly to the temporary file,
7204 instead of going through another temporary file.
7205 (process): Close the temporary file before unlinking it.
7206 (machine_matches) [__MSDOS__]: If the machine doesn't match, set
7207 the FD_SKIP_TEST flag. Pay attention to the FD_MACH_IFNOT flag.
7208 (run_compiles): Pass p_fixd argument to machine_matches, as it
7209 expects.
7210
7211 * fixinc/fixincl.sh: Export ORIGDIR. If $DJDIR is set in the
7212 environment, assume there are no symlinks in the include
7213 directory. When cleaning up the DONE files, look for them
7214 case-insensitively. Don't try to remove symlinks if they aren't
7215 there.
7216
7217 * fixinc/fixlib.c (make_raw_shell_str): Accept new argument smax;
7218 all callers changed. Declare pz "const char *", to avoid compiler
7219 warnings.
7220
7221 * fixinc/fixlib.h (ENV_TABLE): Get ORIGDIR from the environment.
7222 Change prototype of make_raw_shell_str.
7223
7224 2000-07-27 Eli Zaretskii <eliz@is.elta.co.il>
7225
7226 * fixinc/fixincl.c [__MSDOS__]: Don't include "server.h".
7227 (initialize) [__MSDOS__]: Use tempnam.
7228 (initialize): Don't use SIGPIPE if it is not defined.
7229
7230 * fixinc/fixfixes.c (main) [__MSDOS__]: freopen for stdout should
7231 return stdout.
7232
7233 2000-07-25 Bruce Korb <bkorb@gnu.org>
7234
7235 * fixinc/fix*.[ch]: substantially reworked to make it possible
7236 to run this program without using fork(2) or pipe(2) (i.e. in
7237 a DOS environment).
7238
7239 2000-08-04 Joseph S. Myers <jsm28@cam.ac.uk>
7240
7241 * cppdefault.h (WINT_TYPE): Define.
7242 * cppinit.c (builtin_array): Define __WINT_TYPE__.
7243 * tradcpp.c (initialize_builtins): Define __WINT_TYPE__.
7244 * tm.texi (NO_BUILTIN_WINT_TYPE, WINT_TYPE): Document.
7245
7246 Fri Aug 4 06:53:46 2000 Clinton Popetz <cpopetz@cygnus.com>
7247
7248 * (mips_legitimate_address_p): Don't allow register+offset
7249 if the offset is large and negative, and we are compiling
7250 for 64 bit registers.
7251
7252 2000-08-04 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
7253
7254 * gencodes.c (main): Define CODE_FOR_nothing as the last possible
7255 insn_code_number + 1.
7256
7257 2000-08-04 Kazu Hirata <kazu@hxi.com>
7258
7259 * h8300.c (function_prologue): Rearrange code for conciseness.
7260 (function_epilogue): Likewise.
7261 * h8300.h (OK_FOR_U): Fix formatting.
7262
7263 * cse.c: Fix a comment typo. Fix formatting.
7264
7265 2000-08-03 Richard Henderson <rth@cygnus.com>
7266
7267 * config/i386/i386.md (return_indirect_internal): New.
7268 * config/i386/i386.c (ix86_expand_epilogue): Use it.
7269
7270 2000-08-03 Zack Weinberg <zack@wolery.cumb.org>
7271
7272 * cpplex.c (parse_name): Might have to glue a CPP_OTHER token
7273 before the name.
7274 (lex_line): Glue @ onto the beginning of identifiers and
7275 string constants, in Objective-C mode.
7276 (output_token, spell_token): Handle CPP_OSTRING.
7277 (can_paste, maybe_paste_with_next): Handle pasting @ onto the
7278 beginning of a NAME or a STRING, in objc mode.
7279
7280 * cpplib.c (get_define_node): Do not permit identifiers that
7281 begin with @ to be #defined.
7282 * cppmacro.c (CAN_PASTE_AFTER): Add CPP_OTHER.
7283 * cpplib.h (TTYPE_TABLE): Add CPP_OSTRING.
7284
7285 * c-lang.c, objc/objc-act.c (build_objc_string): Delete.
7286 * c-tree.h (build_objc_string): Delete prototype.
7287 * objc/objc-tree.def: Delete OBJC_STRING_CST.
7288 * c-lex.c (yylex): Use build_string for all three kinds of strings.
7289
7290 * c-parse.in, objc/objc-act.c: Update commentary.
7291
7292 2000-08-03 Mark Mitchell <mark@codesourcery.com>
7293
7294 * extend.texi: Fix typo in last change.
7295
7296 * extend.texi: Add commentary on statement-expressions and their
7297 interactions with C++.
7298
7299 2000-08-03 Nick Clifton <nickc@cygnus.com>
7300
7301 * dwarf2.h (DW_LANG_Java): Change value to 0x000b.
7302 * dwarf.h (LANG_JAVA): Change value to 0x000b.
7303
7304 2000-08-03 Anthony Green <green@cygnus.com>
7305
7306 * dwarf2out.c (gen_compile_unit_die): Add java language support.
7307 (add_bound_info): Check for java language.
7308 (is_java): New function.
7309 * dwarfout.c (output_compile_unit_die): Ditto.
7310 * dwarf.h (dwarf_source_language): Add java source language type.
7311 * dwarf2.h (dwarf_source_language): Ditto.
7312
7313 Thu Aug 3 20:32:25 MET DST 2000 Jan Hubicka <jh@suse.cz>
7314
7315 * reg-stack.c (subst_stack_regs_pat): Use replace_reg to swap
7316 operands.
7317
7318 * i386.c (ix86_expand_branch): Mode of comparison in
7319 IF_THEN_ELSE is VOIDmode.
7320
7321 Thu Aug 3 10:05:53 2000 Akiko Matsushita <matusita@sra.co.jp>
7322
7323 * gengenrtl.c, rtl.c: Avoid #elif.
7324
7325 2000-08-03 Michael Poole <poole@troilus.org>
7326
7327 * tm.texi (Register Classes): Clarify order of sub-initializers
7328 in REG_CLASS_CONTENTS.
7329
7330 Thu Aug 3 15:53:03 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
7331
7332 From SAITOH Masanobu:
7333 * sh.h (ASM_OUTPUT_REG_PUSH): Fix syntax.
7334
7335 2000-08-03 David Billinghurst <David.Billinghurst@riotinto.com.au>
7336
7337 * config/i386/cygwin.h: Remove -remap from CPP_SPEC since this option
7338 is not supported by tradcpp and isn't actually needed for cygwin.
7339
7340 2000-08-03 Kazu Hirata <kazu@hxi.com>
7341
7342 * h8300.c: Fix a comment typo.
7343 * h8300.h (OK_FOR_U): Accept a 32-bit constant address on H8/S.
7344
7345 * jump.c: Fix formatting.
7346
7347 * toplev.c: Fix formatting.
7348
7349 Thu Aug 3 01:05:32 2000 Jeffrey A Law (law@cygnus.com)
7350
7351 * flow.c (find_auto_inc): Verify that we've got a REG before
7352 peeking at its regno. Fail, don't abort if we can't find
7353 the increment of the desired register.
7354
7355 * pa.md (shadd height reduction patterns/splitters): Remove.
7356
7357 2000-08-02 Jim Wilson <wilson@cygnus.com>
7358
7359 * config/ia64/ia64-protos.h (flag_ssa): Declare.
7360 * config/ia64/ia64.md (movti_internal, movti_internal+1): New.
7361
7362 2000-08-02 Mark Mitchell <mark@codesourcery.com>
7363
7364 * dce.c: Remove all uses of assert.
7365 * dwarf2out.c: Likewise.
7366 * dwarfout.c: Likewise.
7367 * ssa.c: Likewise.
7368
7369 2000-08-02 Zack Weinberg <zack@wolery.cumb.org>
7370
7371 * gcc.h (lang_specific_driver): Constify second argument.
7372 * gcc.c (translate_options, process_command, main): Likewise.
7373 Constify variables to match. Cast second argument to
7374 pexecute.
7375
7376 * cppspec.c, gccspec.c: Adjust type of second argument to
7377 lang_specific_driver, and update code as necessary.
7378
7379 2000-08-02 Jakub Jelinek <jakub@redhat.com>
7380
7381 * loop.c (scan_loop): Ensure update_end label does not
7382 go away until reg_scan_update is run.
7383
7384 2000-08-02 Zack Weinberg <zack@wolery.cumb.org>
7385
7386 * c-common.h: Prototype min_precision and c_build_qualified_type here...
7387 * c-tree.h: ... not here.
7388 * errors.h: Prototype fancy_abort.
7389
7390 * emit-rtl.c (gen_lowpart_common): Move variable 'c' into
7391 HOST_BITS_PER_WIDE_INT == 64 ifdef block.
7392 * regrename.c (regrename_optimize): Make control flow explicit.
7393 (replace_reg_in_block): Initialize reg_use to 0.
7394
7395 * i386.c (legitimate_address_p): Rename error label to
7396 report_error to avoid namespace clash.
7397
7398 2000-08-02 Kazu Hirata <kazu@hxi.com>
7399
7400 * fold-const.c: Fix formatting.
7401
7402 Wed Aug 2 16:26:15 MET DST 2000 Jan Hubicka <jh@suse.cz>
7403
7404 * i386.c (legitimate_address_p): Accept other bases than
7405 pic_offset_table_rtx for GOTOFF constructs.
7406
7407 Wed Aug 2 15:59:34 MET DST 2000 Jan Hubicka <jh@suse.cz>
7408
7409 * i386.md (shift to lea splitter): Use const_int_operand.
7410
7411 2000-08-02 Zack Weinberg <zack@wolery.cumb.org>
7412
7413 * cppexp.c, cppinit.c, cpplex.c, cpplib.c, cppmacro.c,
7414 cppspec.c: Do not use 'legal' or 'illegal' in error messages
7415 and comments.
7416
7417 * cppmain.c (cb_define, cb_undef): Don't generate any output
7418 if not done_initializing.
7419 * cpplex.c (maybe_paste_with_next): When the token after a ##
7420 is an omitted rest argument, only delete the token before it
7421 if that token is a comma. Do not warn about bogus token
7422 pastes for , ## rest_arg.
7423
7424 * cpp.texi: Update.
7425 * cpp.1: Regenerate.
7426
7427 2000-08-02 Fred Fish <fnf@be.com>
7428
7429 * config/i386/beos-elf.h (STARTFILE_SPEC): Add i386-mcount.o
7430 when user gives -p option. Add init_term_dyn.o for BeOS 5.0
7431 and later.
7432
7433 * config/i386/beos-elf.h (INCLUDE_DEFAULTS): Add additional
7434 Be directories to search path.
7435
7436 Remove support for __declspec(dllimport) and __declspec(dllexport).
7437 This is leftover cruft from the earlier BeOS gcc port when BeOS
7438 used Microsoft's PE object file format.
7439 * configure.in (i*86-*-beoself): Remove extra_objs=winnt.o.
7440 * config/i386/t-beos (winnt.o): Remove Makefile frag.
7441 * config/i386/beos-elf.h (TARGET_NOP_FUN_DLLIMPORT): Remove.
7442 (VALID_MACHINE_DECL_ATTRIBUTE): Remove.
7443 (VALID_MACHINE_TYPE_ATTRIBUTE): Remove.
7444 (MERGE_MACHINE_DECL_ATTRIBUTES): Remove.
7445 (REDO_SECTION_INFO_P): Remove.
7446 (ASM_EXPORT_DECL): Remove.
7447 (ASM_DECLARE_FUNCTION_NAME): Remove.
7448 (ASM_DECLARE_OBJECT_NAME): Remove.
7449 (ASM_OUTPUT_ALIGNED_COMMON): Remove.
7450 (ASM_OUTPUT_ALIGNED_DECL_COMMON): Remove.
7451 (ASM_OUTPUT_ALIGNED_LOCAL): Remove.
7452 (STRIP_NAME_ENCODING): Remove.
7453
7454 Remove support for obsolete version of BeOS that is no longer
7455 supported by Be.
7456 * configure.in (i*86-*-beospe*): Remove.
7457 * config/i386/beos-pe.h: Remove.
7458
7459 2000-08-01 Jeffrey Oldham <oldham@codesourcery.com>
7460 Mark Mitchell <mark@codesourcery.com>
7461
7462 * Makefile.in (OBJS): Added dce.o.
7463 (ssa.o): Updated target to include ssa.h.
7464 (flow.o): Likewise.
7465 (toplev.o): Likewise.
7466 (dce.o): Created target.
7467 * basic-block.h: Added comments.
7468 (INVALID_BLOCK): Added definition.
7469 (connect_infinite_loops_to_exit): Added declaration.
7470 Moved SSA declarations to ssa.h.
7471 * flow.c: Added inclusion of ssa.h.
7472 (struct depth_first_search_dsS, depth_first_search_ds):
7473 Added definitions.
7474 (compute_immediate_postdominators): Added definition.
7475 (connect_infinite_loops_to_exit): Likewise.
7476 (flow_dfs_compute_reverse_init): Likewise.
7477 (flow_dfs_compute_reverse_add_bb): Likewise.
7478 (flow_dfs_compute_reverse_execute): Likewise.
7479 (flow_dfs_compute_reverse_finish): Likewise.
7480 * rtl.h (rtx/in_struct): Added use to determine insn necessity.
7481 (LABEL_P): Added definition.
7482 (JUMP_P): Likewise.
7483 (NOTE_P): Likewise.
7484 (BARRIER_P): Likewise.
7485 (JUMP_TABLE_DATA_P): Likewise.
7486 (INSN_DEAD_CODE_P): Likewise.
7487 * ssa.c: Replaced inclusions with ssa.h inclusion.
7488 (CONVERT_HARD_REGISTER_TO_SSA_P): Moved to ssa.h.
7489 (rename_registers): Removed unnecessary variables.
7490 * ssa.h: Created by moving declarations from ssa.c and
7491 basic-block.h.
7492 * timevar.def: Defined TV_DEAD_CODE_ELIM.
7493 * toplev.c: Added ssa.h inclusion.
7494 (dump_file_index): Added DFI_dce.
7495 (dump_file): Added "dce" entry.
7496 Defined flag_ssa.
7497 (f_options): Added dce entry.
7498 * invoke.texi: Document -fdce. Emphasize experimental status of
7499 -fssa.
7500 * dce.c: New file.
7501
7502 2000-08-01 Zack Weinberg <zack@wolery.cumb.org>
7503
7504 * cpperror.c (v_message): Split into _cpp_begin_message and
7505 v_message macro. All callers updated.
7506 (_cpp_begin_message): Do inhibit_errors/inhibit_warnings
7507 checks here.
7508
7509 * cppfiles.c (cpp_syshdr_flags): New function.
7510 (read_include_file): Don't call cpp_output_tokens. Call
7511 enter_file hook.
7512 * cppinit.c (dump_macros_helper): Moved to cppmain.c.
7513 (cpp_reader_init): Don't initialize token_buffer. Call
7514 _cpp_init_internal_pragmas.
7515 (cpp_cleanup): Don't clear token_buffer.
7516 (cpp_start_read): Don't worry about output from -D processing.
7517 Don't call cpp_output_tokens.
7518 (cpp_finish): Don't dump macros here. Don't call
7519 cpp_output_tokens.
7520 * cppmacro.c (_cpp_dump_definition): Rename
7521 cpp_dump_definition. Write directly to a FILE *.
7522 (dump_funlike_macro): Delete.
7523 (dump_macro_args): New.
7524
7525 * cpplex.c (TOKEN_LEN): Convert to inline function.
7526 (_cpp_grow_token_buffer, safe_fwrite, cpp_output_tokens,
7527 cpp_scan_line, _cpp_dump_list): Delete.
7528 (cpp_printf, cpp_output_list): New.
7529 (output_line_command): Don't worry about entering or leaving files.
7530 (cpp_scan_buffer): Just output each token as we hit it.
7531 (process_directive): Don't call cpp_output_tokens.
7532 (_cpp_glue_header_name): Don't use token_buffer.
7533 (output_token, dump_param_spelling): Write directly to a FILE *.
7534
7535 * cpplib.c (pass_thru_directive, dump_macro_name,
7536 pragma_dispatch, do_pragma_gcc): Delete.
7537 (do_define, do_undef, parse_include, do_line, do_ident, do_pragma,
7538 do_pragma_poison, cpp_pop_buffer): Call the appropriate hook
7539 functions.
7540 (do_error, do_warning, pragma_dependency): Call
7541 _cpp_begin_message, then cpp_output_list.
7542 (cpp_register_pragma, cpp_register_pragma_space,
7543 _cpp_init_internal_pragmas): New.
7544 (do_pragma): Walk the pragmas table here.
7545 (do_pragma_once, do_pragma_poison, do_pragma_system_header,
7546 do_pragma_dependency): Return void.
7547 (do_pragma_implementation): Moved to cppmain.c.
7548
7549 * cpplib.h: Update prototypes.
7550 (struct cpp_reader): Remove printer, token_buffer,
7551 token_buffer_size, and limit. Add struct cb, and pragmas.
7552 (struct cpp_printer): Remove last_id and written.
7553 (CPP_WRITTEN, CPP_PWRITTEN, CPP_SET_WRITTEN,
7554 CPP_ADJUST_WRITTEN): Delete.
7555 * cpphash.h: Update prototypes.
7556 (ufputs): New wrapper.
7557
7558 * cppmain.c (cb_define, cb_undef, cb_include, cb_ident,
7559 cb_enter_file, cb_leave_file, cb_def_pragma): New functions.
7560 (main): Set up callbacks. Register #pragma implementation.
7561 Dump macros from here.
7562
7563 2000-08-01 Geoff Keating <geoffk@cygnus.com>
7564
7565 * rtl.h (enum reg_note): Add REG_MAYBE_DEAD.
7566 * rtl.c (reg_note_name): Add REG_MAYBE_DEAD.
7567 * flow.c (propagate_one_insn): Allow deletion of prologue/epilogue
7568 insns if they have a REG_MAYBE_DEAD note attached.
7569 * config/rs6000/rs6000.c (rs6000_maybe_dead): New function.
7570 (rs6000_emit_load_toc_table): TOC loads may go dead.
7571
7572 2000-08-01 Jim Wilson <wilson@cygnus.com>
7573
7574 * config/ia64/ia64.c (ia64_function_arg): Fix last change. Verify
7575 type exists before using it. Use number of words as alignment
7576 otherwise.
7577 (ia64_function_arg_partial_nregs, ia64_function_arg_advance,
7578 ia64_va_arg): Propagate ia64_function_args changes here.
7579
7580 2000-08-01 Richard Henderson <rth@cygnus.com>
7581
7582 * config/elfos.h (ASM_DECLARE_OBJECT_NAME): Care for null DECL.
7583 * config/ia64/sysv4.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
7584
7585 2000-08-01 Bernd Schmidt <bernds@cygnus.co.uk>
7586
7587 From Joern Rennecke:
7588 * sh.h (CPP_SPEC, TARGET_SWITCHES): Add m4-nofpu.
7589 * sh.md (udivsi3, divsi3): Don't use libcalls that use the FPU
7590 unless TARGET_SH3E is set.
7591 * t-sh (MULTILIB_MATCHES): Add m2=m4-nofpu.
7592
7593 * sh.md (ashlsi3_d, ashlsi3_k): Remove, replace with
7594 (ashlsi3_std): New pattern.
7595 (ashlsi3 expander): Use it for TARGET_SH3.
7596 * sh.c (gen_ashift): Use it instead of ashlsi3_k.
7597
7598 Tue Aug 1 12:34:21 MET DST 2000 Jan Hubicka <jh@suse.cz>
7599
7600 * loop.c (canonicalize_condition): Use destination, not source to
7601 determine SET's mode.
7602
7603 2000-07-31 Mark Mitchell <mark@codesourcery.com>
7604
7605 * flow.c (clear_log_links): Fix typo.
7606
7607 Mon Jul 31 22:19:24 2000 Jeffrey A Law (law@cygnus.com)
7608
7609 * loop.c (check_dbra_loop): Make change from July 17, 2000 work
7610 on targets which need more than one insn for a compare/cbranch
7611 operation.
7612
7613 2000-07-31 Jim Wilson <wilson@cygnus.com>
7614
7615 * config/ia64/ia64.c (ia64_function_arg): Use alignment not size
7616 when computing offset.
7617
7618 Mon Jul 31 20:35:50 2000 Denis Chertykov <denisc@overta.ru>
7619
7620 * genpeep.c (main): Handle DEFINE_PEEPHOLE2.
7621
7622 2000-07-31 Geoff Keating <geoffk@cygnus.com>
7623
7624 * flow.c (clear_log_links): Nuke global_live_at_start and
7625 global_live_at_end data, since if the log_links stuff is invalid
7626 so is global_live_at_*.
7627
7628 2000-07-31 Richard Henderson <rth@cygnus.com>
7629
7630 * tm.texi (Addressing Modes): Clarify PRE/POST_MODIFY descriptions.
7631
7632 2000-07-31 Jakub Jelinek <jakub@redhat.com>
7633
7634 * cpplex.c (_cpp_get_line): If index is 0, return line 0 col 0.
7635 (_cpp_get_token): Don't macro expand a just pasted token if it
7636 was pasted at no_expand_level.
7637
7638 2000-07-31 Zack Weinberg <zack@wolery.cumb.org>
7639
7640 * cppmacro.c (find_param, count_params, save_expansion):
7641 Permit 'defined' as a macro parameter name.
7642
7643 2000-07-31 Zack Weinberg <zack@wolery.cumb.org>
7644
7645 * Makefile.in: Rename cpp to cpp0, tradcpp to tradcpp0, and
7646 xcpp to cpp throughout.
7647 (native): Remove unnecessary dependency on cpp.
7648
7649 * gcc.c (trad_capable_cpp, C specs): Rename cpp to cpp,
7650 tradcpp to tradcpp0.
7651 (.i spec): Add missing output-file spec to cc1 command line.
7652 * objc/lang-specs.h: Rename cpp to cpp0 and/or tradcpp to tradcpp0.
7653
7654 2000-07-31 Zack Weinberg <zack@wolery.cumb.org>
7655
7656 * c-decl.c (mesg_implicit_function_declaration): Init to -1.
7657 (implicit_decl_warning): New function.
7658 (implicitly_declare): Use it.
7659 * c-typeck.c (build_external_ref): Use implicit_decl_warning
7660 to complain about implicit decls of builtins.
7661
7662 * c-lang.c (lang_init): Set mesg_implicit_function_declaration
7663 based on pedantic && flag_isoc99, if not already set.
7664 * c-tree.h: Declare mesg_implicit_function_declaration.
7665 Prototype implicit_decl_warning.
7666
7667 2000-07-30 Jeffrey D. Oldham <oldham@codesourcery.com>
7668
7669 * Makefile.in (ssa.o): Updated header files in dependences.
7670 * basic-block.h: Added compute_immediate_postdominators declaration.
7671 * config/i386/i386.h (CONVERT_HARD_REGISTER_TO_SSA_P): Added
7672 definition.
7673 * flow.c (compute_immediate_dominators): Updated comment.
7674 (compute_immediate_postdominators): Added definition.
7675 * rtl.h (HARD_REGISTER_P): Added definition.
7676 * ssa.c: Include additional header files.
7677 (assert): Added definition.
7678 (ssa_rename_to_lookup): Added to reimplement ssa_rename_to to
7679 include select hard registers.
7680 (ssa_rename_to_insert): Likewise.
7681 (ssa_rename_from_initialize): Likewise.
7682 (ssa_rename_from_lookup): Likewise.
7683 (original_register): Likewise.
7684 (ssa_rename_from_insert): Added to reimplement ssa_rename_from to
7685 include select hard reigsters.
7686 (ssa_rename_from_traverse): Likewise.
7687 (ssa_rename_from_free): Likewise.
7688 (ssa_rename_from_print): Likewise.
7689 (ssa_rename_from_print_1): Likewise.
7690 (ssa_rename_from_hash_function): Likewise.
7691 (ssa_rename_from_equal): Likewise.
7692 (ssa_rename_from_delete): Likewise.
7693 (simplify_to_immediate_dominators): Removed in favor of
7694 flow.c:compute_immediate_dominators.
7695 (find_evaluations_1): Modified to work with hard registers.
7696 (insert_phi_node): Likewise.
7697 (insert_phi_nodes): Likewise.
7698 (struct rename_set_data): Updated prev_reg comment.
7699 (create_delayed_rename): Modified to work with hard registers.
7700 (RENAME_NO_RTX): Updated comment.
7701 (apply_delayed_renames): Modified to work with hard registers.
7702 (rename_insn_1): Likewise and added handling of CLOBBER rtls.
7703 (rename_block): Updated to use revised ssa_rename_to interface.
7704 (rename_registers): Updated to use revised ssa_rename_to and
7705 ssa_rename_from interface.
7706 (convert_to_ssa): Revised to use compute_immediate_dominators and
7707 deal with hard registers.
7708 (make_regs_equivalent_over_bad_edges): Modified to work with hard
7709 registers. Added check for illegal unification of hard register.
7710 (make_equivalent_phi_alternatives_equivalent): Modified to work
7711 with hard registers.
7712 (compute_conservative_reg_partition): Likewise.
7713 (coalesce_if_unconflicting): Modified to work with hard registers
7714 and check for conflicting hard registers.
7715 (mark_phi_and_copy_regs): Revised loop to work only on pseudo
7716 registers.
7717 (rename_equivalent_regs_in_insn): Modified to work with hard
7718 registers.
7719 (record_canonical_element_1): Added definition.
7720 (check_hard_regs_in_partition): Added definition.
7721 (convert_from_ssa): Added data structure deallocation and check
7722 for illegal hard register unification.
7723 (conflict_hard_regs_p): Added definition.
7724 * toplev.c (rest_of_compilation): Added comment.
7725
7726 2000-07-31 Anthony Green <green@redhat.com>
7727
7728 * config/ia64/crtbegin.asm (__EH_FRAME_BEGIN__): Align correctly.
7729
7730 2000-07-31 Jason McMullan <jmcmullan@linuxcare.com>
7731
7732 * builtins.c (expand_builtin_apply): Don't defer pop during
7733 argument setup.
7734
7735 2000-07-31 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
7736
7737 * calls.c (combine_pending_stack_adjustment_and_call): Only use
7738 preferred_unit_stack_boundary when it is > 1.
7739
7740 2000-07-31 Joseph S. Myers <jsm28@cam.ac.uk>
7741
7742 * c-common.c (init_function_format_info): Add C99 format functions
7743 in C99 mode.
7744
7745 * c-decl.c (get_parm_info): Don't treat 'const void', 'volatile
7746 void' or 'register void' as being the special case of 'void' alone
7747 in a parameter list.
7748
7749 * c-typeck.c (build_c_cast): Change -Wcast-qual pedwarn for
7750 discarding qualifiers into a plain warning.
7751
7752 2000-07-31 Kazu Hirata <kazu@hxi.com>
7753
7754 * combine.c: Fix formatting.
7755
7756 * h8300.md: Fix formatting.
7757
7758 * local-alloc.c: Fix formatting.
7759
7760 * h8300.c (get_shift_alg): Remove the variable alg.
7761 (emit_a_shift): Rearrange code to improve readability.
7762
7763 * h8300.md (movsi_h8300hs): Rearrange code to improve readability.
7764
7765 * h8300.h (MODES_TIEABLE_P): Accept a combination of QImode and
7766 HImode on all architectures and a combination of HImode and SImode
7767 on H8/300H and H8/S.
7768
7769 * h8300.c (split_adds_subs): Rearrange code for conciseness.
7770
7771 Mon Jul 31 12:27:55 MET DST 2000 Jan Hubicka <jh@suse.cz>
7772
7773 * i386.md (addsi to lea splitter, ashlqi3_1_lea): Fix bugs
7774 in my last checkin.
7775
7776 Mon Jul 31 10:41:01 MET DST 2000 Jan Hubicka <jh@suse.cz>
7777
7778 * recog.c (extract_insn): Set operand_mode according to
7779 operand if match_operand is VOIDmode.
7780
7781 Mon Jul 31 10:36:38 MET DST 2000 Jan Hubicka <jh@suse.cz>
7782
7783 * recog.c (validate_replace_rtx_1): Do not abort for (nil) expression.
7784
7785 2000-07-31 Geoff Keating <geoffk@cygnus.com>
7786
7787 * c-parse.in (extdefs): Call ggc_collect between external
7788 definitions.
7789
7790 2000-07-30 Michael Hayes <mhayes@cygnus.com>
7791 Richard Henderson <rth@cygnus.com>
7792
7793 * Makefile.in (OBJS): Add doloop.o.
7794 * doloop.c: New file.
7795
7796 * final.c (insn_current_reference_address): Return 0 before final.
7797 * flags.h (flag_branch_on_count_reg): Fix typos in commentary.
7798 * jump.c (any_uncondjump_p): Likewise.
7799 * loop.c (indirect_jump_in_function): Make static.
7800 (strength_reduce): Call doloop_optimize.
7801 (insert_bct, instrument_loop_bct): Remove.
7802 * loop.h (doloop_optimize): Prototype.
7803 * recog.c (split_all_insns): Split all INSN_P.
7804 * toplev.c (flag_branch_on_count_reg): Default on.
7805
7806 * config/c4x/c4x.c (c4x_optimization_options): Don't set
7807 flag_branch_on_count_reg.
7808 * config/i386/i386.c (override_options): Likewise.
7809 * config/rs6000/rs6000.c (optimization_options): Likewise.
7810
7811 * config/i386/i386.md (decrement_and_branch_on_count): Remove.
7812 (doloop_end): New.
7813 (dbra_ge): Remove, as well as all it's splitters.
7814
7815 * config/rs6000/rs6000.md (decrement_and_branch_on_count): Remove.
7816 (doloop_end): New.
7817
7818 * config/ia64/ia64-protos.h (ar_lc_reg_operand): Declare.
7819 (ia64_register_move_cost): Declare.
7820 * config/ia64/ia64.c (ar_lc_reg_operand): New.
7821 (struct ia64_frame_info): Add ar_size.
7822 (ia64_compute_frame_size): Set it.
7823 (save_restore_insns): Save and restore ar.lc.
7824 (ia64_register_move_cost): New, moved from header file. Handle
7825 application registers.
7826 (REG_AR_PFS, REG_AR_EC): Remove. Replace with AR_*_REGNUM numbers.
7827 (emit_insn_group_barriers): Special case doloop_end_internal.
7828 (ia64_epilogue_uses): Mark ar.lc live at end.
7829 * config/ia64/ia64.h (AR_CCV_REGNUM, AR_LC_REGNUM): New registers.
7830 (AR_EC_REGNUM, AR_PFS_REGNUM): New registers.
7831 (FIRST_PSEUDO_REGISTER): Make room.
7832 (AR_M_REGNO_P, AR_I_REGNO_P, AR_REGNO_P): New.
7833 (FIXED_REGISTERS, CALL_USED_REGISTERS): Update.
7834 (REG_ALLOC_ORDER): Update.
7835 (HARD_REGNO_MODE_OK): Update.
7836 (REGISTER_NAMES): Update.
7837 (enum reg_class): Add AR_M_REGS and AR_I_REGS.
7838 (REG_CLASS_NAMES, REG_CLASS_CONTENTS): Update.
7839 (REGNO_REG_CLASS): Update.
7840 (LEGITIMATE_ADDRESS_DISP): Displacement range is 9 bits, not 10.
7841 (REGISTER_MOVE_COST): Move out of line.
7842 (PREDICATE_CODES): Update.
7843 * config/ia64/ia64.md (movdi patterns): Handle ar register classes.
7844 (addsi3_plus1_alt, adddi3_plus1_alt): New.
7845 (shladd_elim splitter): Allow constants in the predicate.
7846 (doloop_end, doloop_end_internal): New.
7847
7848 2000-07-30 Richard Henderson <rth@cygnus.com>
7849
7850 * genattrtab.c (struct insn_def): Add lineno member.
7851 (struct insn_ent): Likewise.
7852 (struct attr_desc): Likewise.
7853 (struct delay_desc): Likewise.
7854 (struct function_unit_op): Likewise.
7855 (struct function_unit): Likewise.
7856 (check_attr_value): Use message_with_line.
7857 (check_defs): Likewise.
7858 (expand_units): Likewise.
7859 (check_attr_test): Take a lineno argument.
7860 (gen_attr): Likewise.
7861 (gen_insn): Likewise.
7862 (gen_delay): Likewise.
7863 (gen_unit): Likewise.
7864 (main): Give it to them.
7865 (convert_set_attr_alternative): Take an insn_def argument
7866 instead of num_alt and insn_index.
7867 (convert_set_attr): Likewise.
7868 (write_test_expr): Protect INSN_ADDRESSES load
7869 with INSN_ADDRESSES_SET_P.
7870
7871 2000-07-30 Richard Henderson <rth@cygnus.com>
7872
7873 * flow.c (init_propagate_block_info): Use pc_set.
7874
7875 Sun Jul 30 20:58:34 MET DST 2000 Jan Hubicka <jh@suse.cz>
7876
7877 * i386.md (*lea_general_[123]) New insns and splits.
7878 (addsi3 to lea splitter): Handle other modes too.
7879 (shlsi3 to lea splitter): Likewise.
7880 (addhi_1_lea, shlhi_1_lea): New patterns.
7881 (addhi_1, shlhi_1): Conditionize by PARTIAL_REG_STALL.
7882
7883 Sun Jul 30 20:51:25 MET DST 2000 Jan Hubicka <jh@suse.cz>
7884
7885 * recog.c (general_operand, nonimmediate_operand): Accept
7886 any mode for VOIDmode CONSTANT_P operands.
7887
7888 Sun Jul 30 20:42:21 MET DST 2000 Jan Hubicka <jh@suse.cz>
7889
7890 * gcse.c (try_replace_reg): Use validate_replace_rtx_subexp
7891 instead of replace_rtx.
7892 * recog.c (validate_replace_rtx_subexp): New function.
7893 * recog.h (validate_replace_rtx_subexp): Declare.
7894
7895 Sun Jul 30 20:38:26 MET DST 2000 Jan Hubicka <jh@suse.cz>
7896
7897 * combine.c (simplify_set, make_extraction, make_compound_operation
7898 make_field_assignment): Use full mask instead of GET_MODE_MASK (mode)
7899 as force_to_mode argument.
7900
7901 Sun Jul 30 20:30:41 MET DST 2000 Jan Hubicka <jh@suse.cz>
7902
7903 * combine.c (if_then_else_cond): Be sure that mode fits in
7904 HOST_WIDE_INT.
7905
7906 Sun Jul 30 20:27:36 MET DST 2000 Jan Hubicka <jh@suse.cz>
7907
7908 * combine.c (record_promoted_value): Allow bitsize of mode
7909 to be equivalent to HOST_BITS_PER_WISE_INT.
7910
7911 Sun Jul 30 20:25:21 MET DST 2000 Jan Hubicka <jh@suse.cz>
7912
7913 * function.c (assign_stack_local_1, assign_stack_temp_for_type):
7914 Do not call gen_mode_alignment when mode is BLKmode.
7915
7916 Sun Jul 30 20:21:54 MET DST 2000 Jan Hubicka <jh@suse.cz>
7917
7918 * loop.c (express_from_1): Fix call of simplify_gen_binary.
7919
7920 Sun Jul 30 20:08:37 MET DST 2000 Jan Hubicka <jh@suse.cz>
7921
7922 * simplify-rtx.c (simplify_relational_operation): Verify that mode ==
7923 VOIDmode implies both operands to be VOIDmode.
7924 (simplify_ternary_operation): Compute properly the mode of comparison.
7925 * combine.c (combine_simplify_rtx): Likewise.
7926
7927 2000-07-25 Michael Hayes <mph@paradise.net.nz>
7928
7929 * basic-block.h (struct loops): New field rc_order.
7930 * flow.c (flow_loops_cfg_dump): Dump rc_order if computed.
7931 (flow_loops_free): Free rc_order.
7932 (flow_depth_first_order_compute): New parameter rc_order.
7933 (flow_loops_find): Allocate rc_order and swap usage with
7934 dfs_order.
7935
7936 2000-07-30 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
7937 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7938
7939 * config/c4x/c4x.md (set_ldp_prologue): Add for RTL prologue/epilogue.
7940 (push_st, push_dp, pop_st, pop_dp, popqi_unspec): Likewise.
7941 (nodb_call, return_from_epilogue): Likewise.
7942 (return_from_interrupt_epilogue, prologue, epilogue): Likewise.
7943 * config/c4x/c4x.c (c4x_expand_prologue, c4x_expand_eplilogue): Add.
7944 * config/c4x/c4x-protos.h (c4x_interrupt_function_p): Add.
7945 (c4x_expand_prologue, c4x_expand_epilogue): Likewise.
7946 (c4x_valid_type_attribute_p): Likewise.
7947 * config/c4x/c4x.h (FUNCTION_PROLOGUE, FUNCTION_EPILOGUE): Delete.
7948 (FUNCTION_BLOCK_PROFILER_EXIT): Convert to emit RTL.
7949
7950 2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7951
7952 * config/c4x/c4x.c (c4x_emit_move_sequence): Use loadqi_big_constant
7953 and loadhi_big_constant if applicable.
7954 * config/c4x/c4x.md (loadqi_big_constant, loadhi_big_constant): Tweak
7955 and add new splitter.s
7956
7957 2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7958
7959 * config/c4x/c4x.c (c4x_rptb_insert): Make more robust.
7960
7961 2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7962
7963 * config/c4x/c4x.h (ASM_FORMAT_PRIVATE_NAME): Output $ in label.
7964
7965 2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7966
7967 * config/c4x/c4x.h (IS_XXX_REGNO): Rewrite to avoid unsigned warnings.
7968
7969 2000-07-30 Michael Hayes <m.hayes@elec.canterbury.ac.nz>
7970
7971 * config/c4x/libgcc.S (divqf3): Improve accuracy.
7972
7973 2000-07-27 Mark Mitchell <mark@codesourcery.com>
7974
7975 Put phi nodes after NOTE_INSN_BASIC_BLOCK.
7976 * rtl.h (NOTE_INSN_BASIC_BLOCK_P): New macro.
7977 * bb-reorder.c (get_next_bb_note): Use NOTE_INSN_BASIC_BLOCK_P.
7978 (get_prev_bb_note): Likewise.
7979 (remove_scope_notes): Likewise.
7980 * flow.c (commit_one_edge_insertion): Likewise.
7981 (merge_blocks_nomove): Likewise.
7982 (verify_flow_info): Likewise.
7983 * gcse.c (insert_insn_end_bb): Likewise.
7984 * reg-stack.c (emit_swap_insn): Likewise.
7985 * ssa.c (first_insn_after_basic_block_note): New function.
7986 (insert_phi_node): Use it.
7987 (rename_block): Likewise.
7988 (eliminate_phi): Likewise.
7989 (make_regs_equivalent_over_bad_edges): Likewise.
7990 (make_equivalent_phi_alternatives_equivalent): Likewise.
7991 (for_each_successor_phi): Likewise.
7992 (convert_from_ssa): Modify phi-node deletion algorithm.
7993
7994 2000-07-29 Andreas Jaeger <aj@suse.de>
7995
7996 * configure.in (mips*-*-linux*): Use mips*el to check for little
7997 endian MIPS, add tmake_file.
7998
7999 * config/mips/linux.h (TARGET_VERSION): Use GNU/Linux.
8000 (SUBTARGET_CPP_SPEC): Default MIPS_ISA is 1.
8001 Patches by Maciej W. Rozycki <macro@ds2.pg.gda.pl>.
8002
8003 2000-07-28 Richard Henderson <rth@cygnus.com>
8004
8005 * config/ia64/ia64.c (ia64_print_operand): Fix typos.
8006 Sign extend mode size before negating.
8007
8008 2000-07-28 Richard Henderson <rth@cygnus.com>
8009
8010 * emit-rtl.c (gen_lowpart_common): Add missing 'c' variable.
8011
8012 2000-07-28 Bernd Schmidt <bernds@cygnus.co.uk>
8013
8014 * cse.c (canon_hash): Handle PRE_MODIFY/POST_MODIFY.
8015 (cse_insn): Likewise.
8016 (addr_affects_sp_p): Likewise.
8017 * expr.c (move_by_pieces): Likewise.
8018 (clear_by_pieces): Likewise.
8019 * gcse.c (oprs_unchanged_p): Likewise.
8020 * haifa-sched.c (sched_analyze_2): Likewise.
8021 * recog.c (offsettable_address_p): Likewise.
8022 * regclass.c (record_address_regs): Likewise.
8023 * reload.c (find_reusable_reload): Likewise.
8024 (push_reload): Likewise.
8025 (operands_match_p): Likewise.
8026 (decompose): Likewise.
8027 (find_reloads_address_1): Likewise.
8028 (find_inc_amount): Likewise.
8029 * reload1.c (elimination_effects): Likewise.
8030 * resource.c (mark_set_resources): Likewise.
8031 * flow.c (attempt_auto_inc): New function; mostly broken out
8032 of find_auto_inc.
8033 (find_auto_inc): Split into two functions and enhanced to
8034 generate POST_MODIFY.
8035 * rtl.def (PRE_MODIFY, POST_MODIFY): Adjust comment.
8036 * rtl.h (count_all_occurrences): Declare.
8037 (HAVE_{PRE,POST}_MODIFY_{DISP,REG}): Provide default of 0 if not
8038 defined.
8039 * rtlanal.c (count_all_occurrences): New function.
8040 * tm.texi (HAVE_POST_MODIFY_DISP, HAVE_PRE_MODIFY_DISP,
8041 HAVE_POST_MODIFY_REG, HAVE_PRE_MODIFY_REG): Document.
8042
8043 * config/ia64/ia64-protos.h (destination_operand): Declare.
8044 * config/ia64/ia64.c (destination_operand): New function.
8045 (ia64_print_operand): Handle POST_MODIFY.
8046 (rtx_needs_barrier): Likewise.
8047 * config/ia64/ia64.h (HAVE_POST_MODIFY_DISP): Define to 1.
8048 (HAVE_POST_MODIFY_REG): Define to 1.
8049 (MAX_REGS_PER_ADDRESS): Change to 2.
8050 (GO_IF_LEGITIMATE_ADDRESS): Accept POST_MODIFY too.
8051 (LEGITIMATE_ADDRESS_REG): New helper macro.
8052 (LEGITIMATE_ADDRESS_DISP): Likewise.
8053 (PREDICATE_CODES): Add entry for destination_operand.
8054 * config/ia64/ia64.md (all mov patterns): Use destination_operand
8055 predicate for operand 0.
8056
8057 2000-07-28 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8058
8059 * dwarf2out.c: Indent #error directive.
8060
8061 * gbl-ctors.h: Fix typo in comment.
8062 (__do_global_ctors): Prototype.
8063
8064 * gcse.c (record_one_set, pre_delete): Remove unused variables.
8065
8066 * rs6000.c (rs6000_maybe_dead): Delete unused prototype.
8067 (print_operand): Initialize variable `t'.
8068
8069 2000-07-27 Aldy Hernandez <aldyh@redhat.com>
8070
8071 * config/arm/arm.md ("call_value"): removed constraints.
8072 Constraints are ignored in expanders.
8073 (*call_value_reg): split =rf into various constraints.
8074 (*call_value_mem): same
8075 (*call_value_symbol): same
8076 (*sibcall_value_insn): same
8077
8078 2000-07-28 Philipp Thomas <pthomas@suse.de>
8079
8080 * install.texi (--enable-nls): Change the description of the NLS
8081 related configure options to match the current state.
8082 (--with-included-gettext): Likewise.
8083 (--enable-maintainer-mode): New description added.
8084 * extend.texi (-fstrict-prototype): Add missing '.'.
8085
8086 2000-07-27 Jim Wilson <wilson@cygnus.com>
8087
8088 * dwarf2out.c (gen_decl_die): Don't call gen_abstract_function if
8089 DECL_INITIAL (decl) == NULL_TREE.
8090
8091 2000-07-27 Alexandre Oliva <aoliva@redhat.com>
8092
8093 * Makefile.in (INSN_ATTR_H): New macro. Replace all dependencies
8094 on insn-attr.h with it.
8095 * genattr.c: Generate `#include "insn-addr.h"' if HAVE_ATTR_length.
8096 * insn-addr.h: New header.
8097 (insn_addresses_): Renamed from insn_addresses.
8098 (INSN_ADDRESSES_DEFN, INSN_ADDRESSES, INSN_ADDRESSES_ALLOC,
8099 INSN_ADDRESSES_FREE, INSN_ADDRESSES_SET_P, INSN_ADDRESSES_SIZE,
8100 INSN_ADDRESSES_NEW): New macros.
8101 * genattrtab.c (write_test_expr): Use new macros.
8102 * final.c (insn_addresses, init_insn_lengths): Likewise.
8103 (align_fuzz, shorten_branches): Likewise.
8104 (final): Likewise. Do not reject new insns if their addresses
8105 have been added to INSN_ADDRESSES.
8106 * config/arm/arm.c, config/avr/avr.c: Use new macros.
8107 * config/h8300/h8300.c, config/i370/i370.c: Likewise.
8108 * config/m88k/m88k.c, config/pa/pa.c, config/pa/pa.md: Likewise.
8109 * config/sparc/sparc.c, config/sparc/sparc.md: Likewise.
8110 * config/sh/sh.c: Likewise.
8111 (output_branchy_insn): Use INSN_ADDRESSES_NEW.
8112
8113 * Makefile.in (bootstrap): Move -BstageN/ back to the beginning.
8114
8115 2000-07-27 Andrew Cagney <cagney@b1.cygnus.com>
8116
8117 * gcc.c (struct prefix_list): Add member priority.
8118 (enum path_prefix_priority): Declare.
8119 (add_prefix): Replace ``first'' with ``priority''. Append new
8120 entry but keep list in priority order.
8121 (process_command): Update. Pass PREFIX_PRIORITY_B_OPT or
8122 PREFIX_PRIORITY_LAST to add_prefix.
8123 (process_command): Move include kludge - foo/stageN - to before
8124 foo/include.
8125
8126 2000-07-27 Jason Merrill <jason@redhat.com>
8127
8128 * dwarf2out.c (gen_typedef_die): Abort if we get identical
8129 TREE_TYPE and DECL_ORIGINAL_TYPE on a typedef.
8130
8131 2000-07-27 RodneyBrown <RodneyBrown@pmsc.com>
8132
8133 * expr.h (get_alias_set, lang_get_alias_set): Delete prototypes.
8134 * tree.h (get_alias_set, lang_get_alias_set): Prototype.
8135
8136 2000-07-27 Joseph S. Myers <jsm28@cam.ac.uk>
8137
8138 * c-decl.c (finish_function): Don't treat 'main' specially unless
8139 flag_hosted. In C99 mode, return 0 from 'main' unless
8140 DEFAULT_MAIN_RETURN is otherwise defined.
8141
8142 * c-decl.c (store_parm_decls): In C99 mode, pedwarn for function
8143 parameters defaulting to int in an old-style function definition.
8144
8145 2000-07-27 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8146
8147 * c-parse.in (string): For -Wtraditional, warn about string
8148 concatenation only once per line.
8149
8150 Thu Jul 27 09:25:17 2000 Akiko Matsushita <matusita@sra.co.jp>
8151
8152 * pa/x-pa-hpux: Add -D_HIUX_SOURCE to FIXPROTO_DEFINES
8153 for HI-UX/WE2 systems.
8154
8155 2000-07-24 Bruce Korb <bkorb@gnu.org>
8156
8157 * fixincl/fixfixes.c(emit_gnu_type): rewrote to *rely* on GCC
8158 defining the __xxx_TYPE__ macros.
8159 * fixincl/fixincl.tpl(gnu_type_map): now obsolete
8160 * fixincl/fixlib.h: don't need to include "tm.h" anymore
8161 * fixincl/inclhack.def(type_map): now obsolete
8162
8163 Thu Jul 27 11:54:17 2000 Andrew Cagney <cagney@b1.cygnus.com>
8164
8165 * cpp.texi: Append a trailing full-stop to xrefs where needed.
8166
8167 2000-07-26 Dave Pitts <dpitts@cozx.com>
8168
8169 * i370.c: Remove LONGEXTERNAL ifdef from alias_number. Added hash
8170 routine constants.
8171 (mvs_hash_alias): New function.
8172 (mvs_add_alias): Change argument spacing.
8173 (mvs_need_alias): Change aliasing criteria. Added documentation.
8174 (mvs_get_alias): Change to use hashed name. The hashed name prevents
8175 CSECT name collisions.
8176 (mvs_check_alias): Likewise.
8177 (handle_pragma): Change documentation.
8178 * i370.md (mulsi3, divsi3, udivsi3, modsi3, umodsi3): Changed gen_rtx
8179 mode from SImode to DImode.
8180 (iorhi3): Changed LTORG size for insn.
8181
8182 Wed Jul 26 19:44:05 2000 Hans-Peter Nilsson <hp@axis.com>
8183
8184 * reload.c (find_reloads_toplev): Reload a paradoxical subreg of a
8185 mem if the address is a mode_dependent_address_p.
8186
8187 2000-07-26 Kazu Hirata <kazu@hxi.com>
8188
8189 * h8300.c (print_operand): Print ":8" when the 'R' operand is
8190 suitable for 8-bit absolute.
8191 * h8300.h (EIGHTBIT_CONSTANT_ADDRESS_P): New.
8192 (OK_FOR_U): Add a case for the 8-bit constant address on the
8193 H8/300H.
8194
8195 Wed Jul 26 19:26:21 2000 Hans-Peter Nilsson <hp@axis.com>
8196
8197 * varasm.c (assemble_variable) [! defined(ASM_OUTPUT_ALIGNED_COMMON)
8198 && ! defined (ASM_OUTPUT_ALIGNED_BSS]): Also test
8199 ! defined(ASM_OUTPUT_ALIGNED_DECL_COMMON) before complaining about
8200 lack of implemented alignment.
8201
8202 2000-07-26 Geoffrey Keating <geoffk@cygnus.com>
8203
8204 * emit-rtl.c (gen_lowpart_common) [REAL_ARITHMETIC]: Handle
8205 cross-compiling between 64-bit and 32-bit machines.
8206
8207 2000-07-27 Richard Henderson <rth@cygnus.com>
8208
8209 * config/ia64/ia64.md (movqicc_astep, movqi_internal_astep): New.
8210 (movhicc_astep, movhi_internal_astep): New.
8211 (movsicc_astep, movsi_internal_astep): New.
8212 (movdicc_astep, movdi_internal_astep): New.
8213 (movsfcc_astep, movsf_internal_astep): New.
8214 (movdfcc_astep, movdf_internal_astep): New.
8215 (movxfcc_astep, movxf_internal_astep): New.
8216 (cmovdi_internal_astep, cmovsi_internal_astep): New.
8217 Unify the cmov[ds]i splitters.
8218
8219 2000-07-27 Rodney Brown <RodneyBrown@pmsc.com>
8220
8221 * real.c (asctoeg): Rename `error' label to unexpected_char_error
8222
8223 2000-07-26 Nick Clifton <nickc@cygnus.com>
8224
8225 * config/arm/vxarm.h (CPP_PREDEFINES): Remove definition of
8226 __arm__. Allow it to be defined by CPP_ISA_SPEC in arm.h
8227
8228 * dwarf2out.c (dwarf2out_frame_debug_expr): Accept SEQUENCE as
8229 well as PARALLEL blocks in FRAME_RELATED_EXPR notes.
8230
8231 2000-07-26 Alexandre Oliva <aoliva@redhat.com>
8232
8233 * c-decl.c (finish_enum): Convert enumerations that fit in an
8234 `int' to `int'.
8235 (build_enumerator): In pedantic mode, cast to `int' those that
8236 don't.
8237
8238 2000-07-25 Rodney Brown <RodneyBrown@pmsc.com>
8239
8240 * config/alpha/osf.h (SIZE_TYPE, PTRDIFF_TYPE): New.
8241
8242 Tue Jul 25 23:08:33 2000 J"orn Rennecke <amylaar@cygnus.co.uk>
8243
8244 * sh.md (cmpgtdi_t): Must be split.
8245 (cmpgtdi_t+1): New splitter.
8246
8247 2000-07-25 Zack Weinberg <zack@wolery.cumb.org>
8248
8249 * cpplib.c (_cpp_check_directive): Issue -Wtraditional
8250 warnings for indented directives even if we are skipping.
8251
8252 2000-07-25 Nathan Sidwell <nathan@codesourcery.com>
8253
8254 * invoke.texi (strict-prototypes): Remove.
8255 * extend.texi (Deprecated Features): Add strict-prototypes.
8256 (Backwards Compatibility): New node.
8257
8258 2000-07-25 Jakub Jelinek <jakub@redhat.com>
8259
8260 * config/i386/i386.md (andsi_1+1): Allow HImode.
8261 (andsi_1+2): Require q_regs_operand.
8262
8263 2000-07-25 Jakub Jelinek <jakub@redhat.com>
8264
8265 * config/i386/i386.md (call_pop): Check operands[0],
8266 not operands[1]. Only check SYMBOL_REF_FLAG for a SYMBOL_REF.
8267 (call): Likewise.
8268 (call_value_pop): Only check SYMBOL_REF_FLAG for a SYMBOL_REF.
8269 (call_value): Likewise.
8270
8271 2000-07-25 Zack Weinberg <zack@wolery.cumb.org>
8272
8273 * toplev.c (pipe_closed): Delete.
8274 (crash_signal): New. Generate ICE for a fatal signal.
8275 (float_signal): Call crash_signal outside a float-handler
8276 block, not abort.
8277 (main): Install crash_signal as handler for core-dumping signals.
8278
8279 2000-07-25 David Edelsohn <edelsohn@gnu.org>
8280
8281 * rs6000.c (print_operand, case 'T'): New case.
8282
8283 * rs6000.md (call_indirect_aix32): Convert to expander of
8284 scheduled instructions.
8285 (call_indirect_aix64): Likewise.
8286 (call_value_indirect_aix{32,64}): Likewise.
8287 (call, call_value): Invoke expanders for AIX. Fall through to
8288 matchers for SysV.
8289 (call_indirect_nonlocal_aix{32,64}): New patterns (ctr and lr).
8290 (call_value_indirect_nonlocal_aix{32,64}): New patterns.
8291 (call_nonlocal_aix32): Remove CALL_LONG alternative. Operand 1
8292 only "g" constraint.
8293 (call_nonlocal_aix64): Likewise.
8294 (call_value_nonlocal_aix{32,64}): Likewise.
8295 (call_nonlocal_sysv): New pattern for ctr, lr, and symbolic
8296 operands.
8297 (call_value_nonlocal_sysv): New pattern.
8298 (indirect_jump{si,di}): Use new 'T' modifier.
8299 (tablejump{si,di} matchers): Likewise.
8300 (return_internal_{si,di}): Likewise.
8301 (return_eh_{si,di}): Likewise.
8302
8303 2000-07-24 Richard Henderson <rth@cygnus.com>
8304
8305 * config/ia64/ia64.c (ia64_print_operand): Handle "%,".
8306 * config/ia64/ia64.h (PRINT_OPERAND_PUNCT_VALID_P): Likewise.
8307 * config/ia64/ia64.md (movdi_internal): Use it.
8308
8309 2000-07-24 Zack Weinberg <zack@wolery.cumb.org>
8310
8311 * cppexp.c: Warn about unary + if -Wtraditional.
8312 * cpplex.c (lex_line): Always set BOL on the first token of a line.
8313
8314 2000-07-24 Michael Meissner <meissner@redhat.com>
8315
8316 * d30v.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Delete references to
8317 unsupported macro.
8318
8319 2000-07-24 Nick Clifton <nickc@cygnus.com>
8320
8321 * config/arm/arm.c (emit_multi_reg_push): Generate a
8322 REG_FRAME_RELEATED_NOTE that is compatable with the code in
8323 dwarf2out_debug_frame_expr.
8324
8325 2000-07-24 Jason Merrill <jason@redhat.com>
8326
8327 * dwarf2out.c: Complain if DWARF2_DEBUGGING_INFO is defined without
8328 UNALIGNED_INT_ASM_OP.
8329 (def_cfa_1): Don't emit def_cfa_register or def_cfa_offset to adjust
8330 a location expression.
8331 (dwarf2out_frame_debug_expr): Lose cfa_old_reg stuff. Don't
8332 assume indirect access if we're saving the CFA address exactly.
8333
8334 * Makefile.in (bootstrap): Move -BstageN/ to the end.
8335
8336 2000-07-24 Jakub Jelinek <jakub@redhat.com>
8337
8338 * tradcpp.c (main): Update max_include_len for cpp_include_defaults
8339 as well.
8340
8341 2000-07-24 Michael Meissner <meissner@redhat.com>
8342
8343 * invoke.texi (D30V Options): Add d30v options.
8344
8345 Mon Jul 24 02:04:52 2000 Jeffrey A Law (law@cygnus.com)
8346
8347 * gcse.c (alloc_pre_mem): Do not alloc TRANSPOUT, it is not
8348 needed by our gcse pass anymore.
8349 (free_pre_mem): Corresponding changes.
8350 (compute_pre_data): Do not call compute_transpout anymore.
8351
8352 * gcse.c (alloc_avail_expr_mem): Kill unused 'u_bitmap'.
8353 (free_avail_expr_mem, alloc_pre_mem, free_pre_mem): Corresponding
8354 changes.
8355
8356 * gcse.c (free_pre_mem): Do not free ANTLOC and AE_KILL here.
8357 (compute_pre_data): Do it here instead.
8358
8359 * gcse.c (alloc_pre_mem, free_pre_mem): Delete unused bitmap
8360 'temp_bitmap'.
8361 (pre_delete): Corresponding changes.
8362
8363 2000-07-23 Mark Mitchell <mark@codesourcery.com>
8364
8365 * c-semantics.c (make_rtl_for_local_static): Use TREE_ASM_WRITTEN
8366 to figure out whether or not a variable has already been emitted.
8367
8368 Sun Jul 23 14:49:12 2000 Jason Eckhardt <jle@cygnus.com>
8369
8370 * config/i860/i860.md (untyped_call expander): Use GEN_CALL
8371 instead of gen_call.
8372
8373 Sun Jul 23 11:52:03 2000 George Helffrich (george@gly.bris.ac.uk)
8374
8375 * dbxout.c (dbxout_type, case COMPLEX_TYPE): Fix length field in stab.
8376
8377 2000-07-23 Kazu Hirata <kazu@hxi.com>
8378
8379 * h8300.c: Fix formatting.
8380
8381 2000-07-23 Joseph S. Myers <jsm28@cam.ac.uk>
8382
8383 * c-typeck.c (c_expand_start_case): Change -Wtraditional pedwarn
8384 for `long' switch expression into a plain warning.
8385
8386 * c-lex.c (init_lex): Keep the "inline" keyword in C99 mode.
8387 (yylex): Don't pedwarn for "inline" in C99 mode.
8388
8389 * bitmap.c (debug_bitmap_file): Cast pointers to PTR for printing
8390 with %p.
8391 * ggc-page.c (debug_print_page_list, alloc_page, free_page,
8392 ggc_alloc): Likewise.
8393 * bb-reorder.c (dump_scope_forest_1): Likewise.
8394
8395 2000-07-22 Aldy Hernandez <aldyh@redhat.com>
8396
8397 * reload.c (find_reloads_toplev): Add new parameter
8398 "address_reloaded".
8399 (find_reloads): Add new parameter to find_reloads_toplev calls.
8400
8401 2000-07-22 Jeffrey Oldham <oldham@codesourcery.com>
8402
8403 * collect2.c (main): Typo fixed.
8404 * diagnostic.c: Typo fixed.
8405 * dwarf2out.c (dwarf2out_frame_debug_expr): Typo fixed.
8406 * eh-common.h: Typo fixed.
8407 * emit-rtl.c (start_sequence): Typo fixed.
8408 * flow.c (find_label_refs): Typo fixed.
8409 (calculate_global_regs_live): Typo fixed.
8410 (mark_regno_cond_dead): Typo fixed.
8411 (create_edge_list): Typos fixed.
8412 (verify_edge_list): Typo fixed.
8413 * ggc-common.c (ggc_mark_rtx_children): Typo fixed.
8414 * loop.c (strength_reduce): Typo in function name fixed.
8415 * rtl.h: Added comments. Typo in function name fixed.
8416 * rtlanal.c: Typo in function name fixed.
8417 (insn_dependant_p): Rename to ...
8418 (insn_dependent_p): ... this.
8419 (computed_jumo_p): Typo fixed.
8420
8421 2000-07-22 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8422
8423 * system.h (__FUNCTION__): Wrap definition in #ifndef.
8424
8425 2000-07-21 David Edelsohn <edelsohn@gnu.org>
8426
8427 * rs6000.h (SIZE_TYPE): Define.
8428
8429 2000-07-21 Mark Mitchell <mark@codesourcery.com>
8430
8431 * ssa.c (rename_insn_1): Don't rename registers that are
8432 CLOBBERed.
8433
8434 2000-07-21 Zack Weinberg <zack@wolery.cumb.org>
8435
8436 * diagnostic.c (trim_filename, fancy_abort): Moved here from
8437 rtl.c.
8438 (fatal_function, set_fatal_function): Removed.
8439 (fatal): Don't prepare for or call the fatal_function.
8440 (diagnostic_lock, error_recursion): New.
8441 (diagnostic_for_decl, report_diagnostic): Guard against
8442 re-entering the error reporting routines.
8443 (fancy_abort): Assume function is not NULL.
8444
8445 * errors.c (fancy_abort): New. Assume function is not NULL.
8446 * tradcpp.c (fancy_abort): Assume function is not NULL.
8447
8448 * system.h: Provide default definition of __FUNCTION__.
8449 * rtl.h: Use __FUNCTION__ not __PRETTY_FUNCTION__ throughout.
8450 Always use __FUNCTION__ in definition of abort.
8451 * tree.h: Likewise.
8452 * varray.h: Likewise.
8453 * toplev.h: Likewise. Don't prototype set_fatal_function.
8454
8455 2000-07-20 Geoff Keating <geoffk@cygnus.com>
8456
8457 * config/rs6000/aix43.h (CPP_SPEC): Define __LONG_MAX__ correctly
8458 in 64-bit mode.
8459 * glimits.h: Don't do #if defined for ARCH_PPC.
8460
8461 * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): All
8462 constants of size no larger than a pointer should go in the TOC.
8463 Add 'MODE' parameter.
8464 (LEGITIMIZE_RELOAD_ADDRESS): Add MODE parameter to
8465 ASM_OUTPUT_SPECIAL_POOL_ENTRY_P.
8466 (ASM_OUTPUT_SPECIAL_POOL_ENTRY): Likewise.
8467 * config/rs6000/aix.h (SELECT_RTX_SECTION): Likewise.
8468 * config/rs6000/netware.h (SELECT_RTX_SECTION): Likewise.
8469 * config/rs6000/rs6000.c (constant_pool_expr_1): Likewise.
8470 (rs6000_legitimize_address): Likewise.
8471 (rs6000_emit_move): Likewise.
8472 (rs6000_select_rtx_section): Likewise.
8473 (output_toc): Deal properly with outputting small constants like
8474 HImode, and SFmode in 32-bit mode, and DFmode in 64-bit mode.
8475 * config/rs6000/sysv4.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY_P): Add
8476 MODE parameter. Put small constants in the TOC.
8477
8478 * config/rs6000/rs6000.c (easy_fp_constant_p): All constants are
8479 easy in SImode.
8480 (rs6000_emit_move): When reload calls us with an illegitimate
8481 address, exit early. Move the change_address calls to one place
8482 at the end of the routine. Merge the SImode and DImode expanders.
8483 When called by reload to put an integer into a FP register, force
8484 it to memory.
8485
8486 * config/rs6000/rs6000.c (struct toc_hash_struct): Add 'key_mode'
8487 field.
8488 (rs6000_hash_constant): Hash mode too.
8489 (toc_hash_function): Allow for key_mode.
8490 (toc_hash_eq): Structures are different if key_mode differs.
8491 (output_toc): Add 'mode' parameter. Save key_mode.
8492 * config/rs6000/rs6000.h (ASM_OUTPUT_SPECIAL_POOL_ENTRY):
8493 Pass 'mode' parameter.
8494 * config/rs6000/rs6000-protos.h (output_toc): Add 'mode' param.
8495
8496 * config/rs6000/rs6000.c (output_toc): Use RS6000_OUTPUT_BASENAME
8497 for vtable references.
8498
8499 * config/rs6000/rs6000.h (PREFERRED_RELOAD_CLASS): If we have a
8500 choice, don't put integer values in FP regs.
8501
8502 Thu Jul 20 18:13:52 2000 Jeffrey A Law (law@cygnus.com)
8503
8504 * flow.c (verify_flow_info): Revamp code to verify that the
8505 head and end of each basic block are in the insn chain.
8506
8507 Thu Jul 20 18:02:35 2000 Michael Matz <matzmich@cs.tu-berlin.de>
8508
8509 * gcse.c (record_one_set): Prepend instead of append onto
8510 reg_set_table, making it O(n) instead O(n^2).
8511 * lcm.c (compute_antinout_edge,compute_laterin,compute_available):
8512 Use a queue instead of a stack as worklist.
8513
8514 2000-07-20 Kazu Hirata <kazu@hxi.com>
8515
8516 * h8300.c (two_insn_adds_subs_operand): Fix a typo.
8517 * h8300.h (OK_FOR_T): New.
8518 (EXTRA_CONSTRAINT): Support OK_FOR_T.
8519 * h8300.md: Use inc/dec.[wl] for increment/decrement
8520 by 1 and 2 in HI and SI modes.
8521
8522 2000-07-20 Jim Wilson <wilson@cygnus.com>
8523
8524 * config/ia64/ia64.h (ASM_OUTPUT_MI_THUNK): Handle DELTA values
8525 larger than 14 bits.
8526
8527 2000-07-20 Zack Weinberg <zack@wolery.cumb.org>
8528
8529 * cppmacro.c (CAN_PASTE_AFTER): New macro.
8530 (count_params): Don't set GNU_REST_ARGS on anything.
8531 (save_expansion): Set PASTE_LEFT only on tokens for which
8532 CAN_PASTE_AFTER is true, or which are named operators.
8533
8534 * cpplex.c (parse_args): Distinguish between a rest argument
8535 given one empty argument, and a rest argument given zero arguments.
8536 (maybe_paste_with_next): Look for VOID_REST tag, and trigger
8537 deletion of previous token based on that.
8538 (get_raw_token): Flatten some control structure.
8539
8540 * cpplib.h (CPP_LAST_EQ): Correct.
8541 (VOID_REST): New token flag.
8542 (GNU_REST_ARGS): Delete.
8543
8544 * tradcpp.c (main): Don't munge -D options.
8545 (make_definition): Bring -D handling in line with cpplib.
8546 (do_define): Strip all leading whitespace from macro definitions.
8547
8548 2000-07-20 David Billinghurst <David.Billinghurst@riotinto.com.au>
8549
8550 * Makefile.in (tradcpp): Depend on intl.o and version.o.
8551
8552 2000-07-20 Bruce Korb <bkorb@gnu.org>
8553
8554 * fixincl/check.tpl: strip the platform specific types before testing
8555 * fixincl/fixfixes.c(gnu_type_fix): use platform specific types
8556 * fixincl/fixincl.tpl: use platform specific types
8557 * fixincl/fixlib.h: include the platform specific types
8558 * fixincl/inclhack.def(gnu_types): don't supply the types
8559 * fixincl/fixincl.x: regen
8560
8561 2000-07-19 Jim Wilson <wilson@cygnus.com>
8562
8563 * config/ia64/ia64.h (HARD_REGNO_MODE_OK): Don't allow XFmode in
8564 GR_REGS.
8565
8566 2000-07-19 Zack Weinberg <zack@wolery.cumb.org>
8567
8568 * tradcpp.c (rescan): Do not recognize directives when the #
8569 is indented.
8570
8571 2000-07-19 Zack Weinberg <zack@wolery.cumb.org>
8572
8573 Implement C++ named operators.
8574
8575 * cpplib.h (TTYPE_TABLE): Move CPP_MIN and CPP_MAX into block
8576 of operators allowed in #if and having an _EQ variant. Add
8577 CPP_MIN_EQ, CPP_MAX_EQ, and CPP_DEFINED.
8578 (cpp_token flags): Add NAMED_OP.
8579 (enum node_type): Add T_OPERATOR.
8580 (struct cpp_hashnode): Add code slot to value union.
8581 * cpphash.h (spec_nodes): Remove n_defined.
8582
8583 * cpplex.c (lex_line): Convert T_OPERATOR nodes to their proper types.
8584 (spell_token, can_paste, maybe_paste_with_next): Handle named operators.
8585 (is_macro_disabled): Tweak error messages.
8586
8587 * cpplib.c (get_define_node): Disallow all named operators as
8588 macro names. Tweak error messages.
8589 (_cpp_init_stacks): Don't set up spec_nodes->n_defined.
8590
8591 * cppinit.c (builtin_array): Add entries for the named operators.
8592 * cppexp.c (lex): Check for CPP_DEFINED token.
8593 (priority table): Add entries for CPP_MIN and CPP_MAX.
8594 (_cpp_parse_expr): Handle CPP_MIN and CPP_MAX.
8595
8596 2000-07-19 Bernd Schmidt <bernds@cygnus.co.uk>
8597
8598 * gcse.c (INSN_CUID): If ENABLE_CHECKING, abort if the uid is
8599 larger than the array of cuids.
8600 (alloc_gcse_mem): Use uid_cuid rather than INSN_CUID when computing
8601 cuids.
8602
8603 2000-07-19 Bruce Korb <bkorb@gnu.org>
8604
8605 * fixinc/fixincl.c: Convert to using a table of environment variables
8606 and activate the auto-edit marker on the fixed output files.
8607 * fixinc/fixlib.h: Define the environment table
8608 * fixinc/fixincl.sh: export the ${INPUT} dir
8609 * fixinc/check.tpl: likewise
8610
8611 2000-07-18 Zack Weinberg <zack@wolery.cumb.org>
8612
8613 * gcc.c (.h spec): Fix typo.
8614
8615 Wed Jul 19 01:22:15 CEST 2000 Marc Espie <espie@cvs.openbsd.org>
8616
8617 * Makefile.in: Fix tradcif.c path.
8618
8619 2000-07-18 Zack Weinberg <zack@wolery.cumb.org>
8620
8621 * cpplib.h (TTYPE_TABLE): Rearrange to use only two per-entry
8622 macros, not five.
8623
8624 * cpphash.h (TOKEN_NAME): New macro.
8625 (_cpp_spell_operator): Deleted.
8626 (token_spellings): Now _cpp_token_spellings.
8627
8628 * cppexp.c: Use TOKEN_NAME or TYPE_NAME, not _cpp_spell_operator.
8629 * cpplex.c: Use OP and TK macros when expanding the
8630 TTYPE_TABLE. Eliminate token_names. For non-OPERATOR tokens,
8631 store the stringification of the enumeration name (CPP_CHAR,
8632 etc.) in the name slot of token_spellings.
8633 Use TOKEN_NAME and/or TOKEN_SPELL, do not reference
8634 token_spellings directly.
8635 * cpplib.c: Use TOKEN_SPELL.
8636
8637 * cpplex.c (_cpp_push_token): If the token being pushed back
8638 is the previous token in this context, just subtract one from
8639 context->posn.
8640 * cppmacro.c (save_expansion): Clear aux field when storing a
8641 placemarker.
8642
8643 2000-07-18 Jakub Jelinek <jakub@redhat.com>
8644
8645 * cpplex.c (cpp_scan_buffer): Output line command even at the stop
8646 buffer, provided it is not NULL.
8647
8648 2000-07-18 Alexandre Oliva <aoliva@redhat.com>
8649
8650 * c-decl.c (duplicate_decls): Do not call make_var_volatile() in
8651 case of invalid volatile re-declaration.
8652
8653 2000-07-18 Jakub Jelinek <jakub@redhat.com>
8654
8655 * calls.c (store_arg): Return non-zero if sibcall_failure is desired.
8656 (expand_call): Adjust caller.
8657
8658 2000-07-17 Gabriel Dos Reis <gdr@codesourcery.com>
8659
8660 * diagnostic.h (report_diagnostic): Change prototype.
8661
8662 * diagnostic.c (output_do_verbatim, diagnostic_for_asm,
8663 diagnostic_for_decl): Change prototype.
8664 (error_with_decl, warning_with_decl, pedwarn_with_decl, warning,
8665 error, warning, error_with_file_and_line,
8666 warning_with_file_and_line, pedwarn_with_file_and_line, fatal):
8667 Adjust call to report_diagnostic, diagnostic_for_decl.
8668 (error_for_asm, warning_for_asm): Adjust call to diagnostic_for_asm.
8669 (output_verbatim, verbatim): Adjust call to output_do_verbatim.
8670
8671 * c-errors.c (pedwarn_c99): Adjust call to report_diagnostic. End
8672 varaible argument list.
8673
8674 2000-07-17 Zack Weinberg <zack@wolery.cumb.org>
8675
8676 * cpphash.c: Don't include hashtab.h. Most macro-handling code
8677 moved to cppmacro.c.
8678 (hash_HASHNODE, eq_HASHNODE, _cpp_dump_macro_hash,
8679 dump_hash_helper): Delete.
8680 (expand_hash, higher_prime_number, _cpp_lookup_with_hash,
8681 cpp_forall_identifiers): New. Implement specialized version of
8682 Vlad's expandable hash table.
8683 (cpp_lookup): Use new functions.
8684 (_cpp_init_macros, _cpp_cleanup_macros): Adjust for new
8685 implementation.
8686 * cppmacro.c: New file.
8687 * cppinit.c (dump_macros_helper): New.
8688 (cpp_finish): Iterate over the identifier table directly.
8689 * cpplex.c (parse_name): Calculate the hash of the identifier
8690 while we scan it. Use _cpp_lookup_with_hash when we can.
8691
8692 * cpphash.h: Update prototypes.
8693 (xcnewvec, HASHSTEP): New helper macros.
8694 * cpplib.h: Update prototypes.
8695 * Makefile.in (LIBCPP_OBJS): Add cppmacro.o.
8696 (cppmacro.o): New rule.
8697 (cpphash.o): Update deps.
8698
8699 * cppmain.c: Do not set pfile->printer if no_output is on.
8700
8701 2000-07-15 Neil Booth <neilb@earthling.net>
8702
8703 * cpplib.c: Change all directive-handler functions to return
8704 void, not int.
8705 * cpphash.h: Update typedefs.
8706
8707 2000-07-17 Geoffrey Keating <geoffk@cygnus.com>
8708
8709 * configure: Regenerate.
8710
8711 * extend.texi (Extended Asm): Mention that a memory clobber
8712 does not count as a side-effect.
8713
8714 * unroll.c (copy_loop_body): Fix one instance of using host
8715 arithmetic on the target; fixes loop-4 on a 32-bit -> 64-bit
8716 cross-compile.
8717
8718 * tlink.c (scan_linker_output): Tweak for output of AIX ld.
8719
8720 2000-07-17 Richard Henderson <rth@cygnus.com>
8721
8722 * config/ia64/ia64.md (movdi): Split out load address code.
8723 New post-reload splitter for symbolic operands.
8724 (movdi_internal): Abort if we didn't split symbolic operands
8725 when we should have.
8726 * config/ia64/ia64.c (ia64_expand_load_address): New, from movdi bits.
8727 (ia64_reorg): Split insns when not optimizing.
8728 * config/ia64/ia64-protos.h (ia64_expand_load_address): Declare.
8729
8730 Mon Jul 17 23:43:26 MET DST 2000 Jan Hubicka <jh@suse.cz>
8731
8732 * real.h (REAL_VALUE_TO_TARGET_LONG_DOUBLE): Use LONG_DOUBLE_TYPE_SIZE
8733 instead of MAX_LONG_DOUBLE_TYPE_SIZE to decide output format.
8734
8735 2000-07-17 Chandrakala Chavva <cchavva@cygnus.com>
8736
8737 * loop.c (check_dbra_loop) : Changed loop_continue to loop->cont.
8738
8739 2000-07-17 Jason Merrill <jason@redhat.com>
8740
8741 * Makefile.in (clean): Remove libgcc directory.
8742
8743 * configure.in (-Wno-long-long check): Use higher-level macros.
8744
8745 2000-07-17 Zack Weinberg <zack@wolery.cumb.org>
8746
8747 * simplify-rtx.c (simplify_binary_operation): Recognize
8748 (compare (gt[u] (cc) 0) (lt[u] (cc) 0)).
8749 (simplify_ternary_operation): Do not examine MODE_BITSIZE of
8750 a CONST_INT, it will always be zero.
8751
8752 2000-07-17 Chandrakala Chavva <cchavva@cygnus.com>
8753
8754 * loop.c (check_dbra_loop) : Return if more than one condition is
8755 present to control the loop.
8756
8757 Mon Jul 17 08:26:35 2000 Clinton Popetz <cpopetz@cygnus.com>
8758
8759 * mips.c (mips_expand_prologue): Don't calculate the last argument
8760 register unless we need it. When we are calculating this, make
8761 sure FUNCTION_ARG is giving us a REG.
8762
8763 2000-07-17 Stephane Carrez <Stephane.Carrez@worldnet.fr>
8764
8765 * flow.c (libcall_dead_p): Use single_set to verify the insn
8766 has only one set and get for analysis.
8767 (propagate_one_insn): Don't pass the PATTERN of the insn.
8768
8769 2000-07-17 Mark Klein <mklein@dis.com>
8770
8771 * pa.c (emit_hpdiv_const): Update to match new pattern for udivsi3.
8772
8773 2000-07-17 J. David Anglin <dave@hiauly1.hia.nrc.ca>
8774
8775 * Makefile.in (TARGET_GETGROUPS_T): New configuration variable.
8776 * configure.in (TARGET_GETGROUPS_T): Evaluate.
8777 * sys-protos.h (getgroups): Use TARGET_GETGROUPS_T for array type
8778 of second argument of getgroups.
8779 * configure, config.in: Rebuilt.
8780
8781 2000-07-17 Geoffrey Keating <geoffk@cygnus.com>
8782
8783 * simplify-rtx.c (simplify_relational_operation): Two signed
8784 values with equal high words are less/greater than each other if
8785 their low words are less/greater when considered as unsigned.
8786
8787 Mon Jul 17 02:37:06 2000 Marc Espie <espie@openbsd.org>
8788
8789 * configure.in (vax-*-openbsd): Change to new style configuration,
8790 add collect2/float_format information.
8791 * configure: Rebuilt.
8792 * config/vax/openbsd1.h: New.
8793 * config/vax/openbsd.h: New.
8794 * config/vax/t-openbsd: New.
8795
8796 2000-07-17 Chip Salzenberg <chip@valinux.com>
8797
8798 * c-common.c (shorten_compare): Quiet warnings about unsigned
8799 comparisons with zero when they occur in a system header.
8800
8801 2000-07-17 Joseph S. Myers <jsm28@cam.ac.uk>
8802
8803 * invoke.texi (-pedantic): Refer to ISO C instead of ANSI C, and
8804 update to describe current practice.
8805
8806 * glimits.h (LLONG_MIN, LLONG_MAX, ULLONG_MAX): Define for C99.
8807
8808 * contrib.texi, cpp.texi, extend.texi, invoke.texi: Update
8809 references to C9X. Change references to -fstd and -flang-isoc9x
8810 to refer to -std.
8811
8812 * c-common.c (scan_char_table): Allow "z" length modifiers on
8813 diouxXn formats.
8814 (check_format_info): Use TYPE_DOMAIN on the type matched against
8815 for "z" formats, to retrieve the language size_t rather than the
8816 internal one.
8817
8818 * c-common.c (check_format_info): Do not make a pedantic objection
8819 to the 'L' length modifier if used with a floating point type
8820 character.
8821
8822 * c-lex.c (yylex): Don't pedwarn for hexadecimal floating point
8823 constants in C99 mode.
8824
8825 2000-07-17 Kazu Hirata <kazu@hxi.com>
8826
8827 * h8300.md: Fix the format of mac.
8828 (movsi_h8300hs): Output a tab after stmac instead of a space.
8829
8830 * h8300.c (two_insn_adds_subs_operand): Improve code for detecting
8831 profitable adds/subs sequences.
8832
8833 * fold-const.c: Fix comment typos.
8834
8835 2000-07-16 Laurynas Biveinis <lauras@softhome.net>
8836
8837 * cppfiles.c (read_name_map): Set map_list_ptr->map_list_map to NULL.
8838
8839 2000-07-16 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8840
8841 * fixinc/fixfixes.c (emit_gnu_type): Avoid string concatenation.
8842
8843 2000-07-16 Neil Booth <NeilB@earthling.net>
8844
8845 * cpplex.c: Update comments.
8846 * README.Portability: Small update.
8847
8848 2000-07-16 Neil Booth <NeilB@earthling.net>
8849
8850 * README.Portability: Small update.
8851
8852 2000-07-15 Richard Henderson <rth@cygnus.com>
8853
8854 * config/ia64/ia64-protos.h (ia64_move_ok): Prototype.
8855 * config/ia64/ia64.c (ia64_move_ok): New function.
8856 * config/ia64/ia64.md (movqi, movqi_internal): Use it.
8857 (movhi, movsi, movdi, movsf, movdf, movxf): Likewise.
8858
8859 2000-07-15 Zack Weinberg <zack@wolery.cumb.org>
8860
8861 * cpphash.c (save_expansion): Clear PREV_WHITE on tokens
8862 immediately following a paste operator.
8863 * cppinit.c (sort_options): New function (only for HOST_EBCDIC).
8864 (cpp_reader_init): Call it, if HOST_EBCDIC.
8865 (cpp_handle_options): Do not sort option list here.
8866 (handle_option): Rename to cpp_handle_option and export.
8867 * cpplex.c (cpp_scan_buffer_nooutput, cpp_scan_buffer): Use
8868 _cpp_get_token directly.
8869 (cpp_scan_line): Return 0 at EOF, 1 otherwise.
8870 * cpplib.c (cpp_push_buffer): Don't set new->lineno to 1.
8871 * cpplib.h: Prototype cpp_handle_option. Update prototype of
8872 cpp_scan_line.
8873
8874 2000-07-15 Richard Henderson <rth@cygnus.com>
8875
8876 * fold-const.c (extract_muldiv): Don't optimize past an unsigned
8877 cast around an expression. Tidy other unsigned tests.
8878
8879 2000-07-15 Gabriel Dos Reis <gdr@codesourcery.com>
8880
8881 * diagnostic.c (doing_line_wrapping, line_wrapper_printf, notice,
8882 v_error_with_decl, v_warning_with_decl, v_pedwarn_with_decl): Remove.
8883 (v_message_with_decl): Rename to ...
8884 (format_with_decl): ... this. Tweak
8885 (diagnostic_for_decl): New function.
8886 (fatal_io_error): Use verbatim in lieu of notice.
8887 (announce_function): Use verbatim.
8888 (default_print_error_function): Likewise.
8889 (error_with_decl, warning_with_decl, pedwarn_with_decl): Use new
8890 infratructure.
8891
8892 2000-07-15 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8893
8894 * mips.c (function_arg_pass_by_reference): Don't do automatic
8895 aggregate initialization.
8896 (machine_dependent_reorg): Initialize variable `mode'.
8897
8898 * mips.md (absdi2): Change variable `regno1' to unsigned int.
8899 (reload_indi): Rename loword/hiword to lo_word/hi_word to avoid
8900 conflicts with sys/param.h macro of the same name.
8901 (reload_outdi): Likewise.
8902
8903 2000-07-15 Michael Meissner <meissner@redhat.com>
8904
8905 * fold-const.c (fold): When optimizing FOO++ == CONST into ++FOO
8906 == CONST + INCREMENT, don't overwrite the tree node for FOO++,
8907 create a new node instead.
8908
8909 2000-07-15 Neil Booth <NeilB@earthling.net>
8910
8911 * README.Portability: Correct example about calling a function
8912 through a pointer to function. Format wide paragraphs.
8913
8914 2000-07-15 Michael Meissner <meissner@redhat.com>
8915
8916 * README.Portability: Update integer suffixes and function
8917 prototype sections.
8918
8919 2000-07-15 Neil Booth <NeilB@earthling.net>
8920
8921 * README.Portability: Small update.
8922
8923 2000-07-15 Neil Booth <NeilB@earthling.net>
8924
8925 * README.Portability: New file.
8926
8927 Fri Jul 14 18:13:53 2000 Mark P Mitchell <mark@codesourcery.com>
8928
8929 * INSTALL: Give special instructions for building GCC on Irix 6.
8930 * config/mips/x-iris6 (CC): Don't set it.
8931 (OLDCC): Likewise.
8932
8933 2000-07-14 Jason Merrill <jason@redhat.com>
8934
8935 * dwarf2out.c (dwarf2out_frame_debug_expr): If we store the CFA
8936 register in the stack and later in another register, use the new
8937 register.
8938
8939 Fri Jul 14 10:25:53 2000 Clinton Popetz <cpopetz@cygnus.com>
8940
8941 * config/mips/mips.md: (absdi2): Handle sign_extend for
8942 second operand.
8943
8944 2000-07-14 Nathan Sidwell <nathan@codesourcery.com>
8945
8946 * cpplib.c (do_pragma_dependency): Tidy warning messages.
8947
8948 2000-07-14 Zack Weinberg <zack@wolery.cumb.org>
8949
8950 * .cvsignore: Correct typo.
8951
8952 2000-07-13 Mark Mitchell <mark@codesourcery.com>
8953
8954 * .cvsignore: Add generated YACC files.
8955 * objc/.cvsignore: New file.
8956
8957 2000-07-14 Neil Booth <NeilB@earthling.net>
8958
8959 * cpplex.c (adjust_column): New funcion.
8960 (skip_whitespace): Use it.
8961 (skip_block_comment): Use it, and warn about /*/* with
8962 -Wcomments.
8963
8964 2000-07-14 Neil Booth <NeilB@earthling.net>
8965
8966 * cpphash.c (struct macro_info): Add new members.
8967 (_cpp_free_definition): Delete the macro directly.
8968 (count_params): Return void, with first token of
8969 expansion in struct macro_info on success.
8970 (parse_define): Return int. Hoist syntax checking from
8971 save_macro_expansion. Leave call to save_expansion to
8972 _cpp_create_definition.
8973 (alloc_macro): Needs just 2 arguments.
8974 (free_macro): Delete.
8975 (save_expansion): Don't perform syntax check.
8976 (_cpp_create_definition): Call save_expansion.
8977
8978 2000-07-13 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
8979
8980 * genrecog.c (write_header): Split long string.
8981
8982 * cpphash.c (macro_info): Don't use the `signed' keyword.
8983
8984 * system.h (alloca): Prototype if __GNUC__ && __SIZE_TYPE__.
8985
8986 2000-07-13 Jakub Jelinek <jakub@redhat.com>
8987
8988 * calls.c (stored_args_map): New variable.
8989 (check_sibcall_argument_overlap_1): New.
8990 (check_sibcall_argument_overlap): New.
8991 (expand_call): Initialize stored_args_map.
8992 Call check_sibcall_argument_overlap.
8993
8994 2000-07-13 Bruce Korb <bkorb@gnu.org>
8995
8996 * fixinc/fixfixes.c: move EXIT_BROKEN to header, add sub-expr max count
8997 (emit_gnu_type): utility procedure for gnu_type_fix
8998 (gnu_type_fix): implement various pre-processor guards around
8999 standard types so these types can be defined over and over
9000 * fixinc/fixincl.tpl: add a "gnu_type_map" that forces the standard
9001 types alluded to above will have GNU-compliant base types
9002 * fixinc/fixlib.h: add EXIT_BROKEN define and the gnu_type_map struct
9003 * fixinc/inclhack.def: add test_text entries and utilize the new
9004 "gnu_types" fix for the ptrdiff_t, size_t and wchar_t types.
9005 * fixinc/fixincl.x: regenerate
9006
9007 2000-07-12 Gabriel Dos Reis <gdr@merlin.codesourcery.com>
9008
9009 * diagnostic.c (vline_wrapper_message_with_location,
9010 v_message_with_file_and_line, v_error_with_file_and_file,
9011 v_error_for_asm, v_warning_for_asm, vfatal,
9012 v_warning_with_file_and_line, v_pedwarn_with_file_and_line,
9013 vsorry, verror, vwarning, vpedwarn): Remove.
9014 (diagnostic_for_asm): New function.
9015 (pedwarn, error, warning, pedwarn_with_file_and_line,
9016 error_with_file_and_line, warning_with_file_and_line, sorry,
9017 error_for_asm, warning_for_asm, fatal): Reimplement.
9018 (finish_diagnostic): Clear diagnostic info as well.
9019
9020 2000-07-13 Neil Booth <NeilB@earthling.net>
9021
9022 * c-common.h (flag_digraphs): New.
9023 * c-decl.c (c_decode_option): Set flag_digraphs as appropriate.
9024 * c-lex.c (yylex): Use flag_digraphs to decide whether to
9025 honour digraphs.
9026
9027 2000-07-13 Zack Weinberg <zack@wolery.cumb.org>
9028
9029 * gcc.c (do_spec_1): Add new %B operator.
9030 (set_input): Prepare for %B.
9031
9032 (link_command_spec): Move up with the other tm.h-
9033 overrideable specs. Factor out the portion conditional on
9034 LINK_LIBGCC_SPECIAL into a new spec, %(link_libgcc).
9035 (struct compiler): Just have a single spec string. All users
9036 updated.
9037 (default_compilers): Remove unnecessary braces.
9038 (static_specs): Update.
9039
9040 (trad_capable_cpp, cpp_options, cc1_options, asm_options): New
9041 named specs.
9042 (C and assembly specs): Use the new named specs, as appropriate.
9043
9044 * objc/lang-specs.h: Use the new named specs.
9045 Remove unnecessary braces.
9046
9047 2000-07-12 Zack Weinberg <zack@wolery.cumb.org>
9048
9049 * gcc.c (execute): If a subprocess gets a fatal signal, report
9050 strsignal() of the signal number, and ask for a bug report.
9051 Do not do this for SIGPIPE if there's already been an error.
9052
9053 * tradcpp.c: Don't include signal.h. Don't catch SIGPIPE.
9054 Delete pipe_closed.
9055
9056 * tradcif.c: Remove.
9057
9058 2000-07-12 Zack Weinberg <zack@wolery.cumb.org>
9059
9060 * final.c (profile_function): Do not emit profile counters in
9061 the data section, if NO_PROFILE_COUNTERS is defined.
9062 * tm.texi: Document NO_PROFILE_COUNTERS. Update doc for
9063 FUNCTION_PROFILER.
9064
9065 * config/i386/linux.h (NO_PROFILE_COUNTERS): Define.
9066 (FUNCTION_PROFILER): Just emit a call to mcount.
9067
9068 2000-07-12 Zack Weinberg <zack@wolery.cumb.org>
9069
9070 * tradcpp.c (main): Rename 'perror' label to 'sys_error'.
9071
9072 * cppexp.c, cpphash.c, cpphash.h, cppinit.c, cpplex.c,
9073 cpplib.c, cpplib.h: Eradicate all traces of code dependent on
9074 traditional, lang_chill, or lang_fortran.
9075
9076 * cppfiles.c: #undef strcmp to suppress warning about macros
9077 used without arguments.
9078 (_cpp_execute_include): Use f, not fname, in "No include path"
9079 error.
9080 (_cpp_pop_file_buffer): New function.
9081 * cpplib.c: Don't include <sys/mman.h>.
9082 (cpp_push_buffer): Set line_base and lineno in new buffer.
9083 (cpp_pop_buffer): Use _cpp_pop_file_buffer.
9084
9085 * cpplex.c: Move all prototypes and structure declarations to the
9086 top of the file. Properly parenthesise some macro arguments.
9087 (cpp_scan_line): New function.
9088 (special_symbol [case T_INCLUDE_DEPTH]): Use pfile->include_depth,
9089 don't need to walk up the stack counting.
9090
9091 2000-07-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9092
9093 * c-common.c (combine_strings): Emit a pedantic warning when a
9094 string length is greater than the minimum ANSI C is required
9095 to support.
9096
9097 Wed Jul 12 13:24:30 2000 Jeffrey A Law (law@cygnus.com)
9098
9099 * pa/xm-pa64.h (NO_SYS_SIGLIST): Kill.
9100 * d30v/xm-d30v.h (NO_SYS_SIGLIST): Kill.
9101
9102 2000-07-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9103
9104 * c-decl.c (define_label): Warn about identifier conflicts with
9105 labels in traditional C.
9106
9107 * c-parse.in (unop +): Warn about the unary plus operator for
9108 traditional C.
9109
9110 * c-typeck.c (store_init_value): Warn about automatic aggregate
9111 initialization for traditional C.
9112
9113 * invoke.texi (-Wtraditional): Document new warnings.
9114
9115 2000-07-12 Gabriel Dos Reis <gdr@codesourcery.com>
9116
9117 * Makefile.in (c-errors.o): Fix thinko in dependency.
9118
9119 2000-07-12 Zack Weinberg <zack@wolery.cumb.org>
9120
9121 * gcc.c (C specs [!USE_CPPLIB]): Invoke tradcpp if any of
9122 -traditional, -ftraditional, or -traditional-cpp was given.
9123 Do not pass -traditional to the preprocessor.
9124 (.S spec): Likewise. Don't bother defining __ASSEMBLER__, the
9125 preprocessor does it automatically.
9126 * objc/lang-specs.h: Likewise. Don't bother defining __OBJC__.
9127
9128 * ch/lang-specs.h: Always use tradcpp. Do not pass
9129 -traditional, -trigraphs, or -pedantic to the preprocessor.
9130 * f/lang-specs.h (.F spec): Likewise. Don't bother defining
9131 _LANGUAGE_FORTRAN.
9132
9133 2000-07-12 Zack Weinberg <zack@wolery.cumb.org>
9134
9135 * cppexp.c (LOGICAL): Delete macro.
9136 (_cpp_parse_expr): Do not use UNARY for unary +. Implement ||
9137 and && directly.
9138
9139 * cpphash.c (HASHSIZE): Increase to 4096.
9140 (struct hashdummy): Add hash field.
9141 (eq_HASHNODE): Compare unreduced hashes, then lengths, then
9142 the string values using memcmp.
9143 (cpp_lookup): Set dummy.hash.
9144
9145 Wed Jul 12 13:15:16 2000 Marc Espie <espie@openbsd.org>
9146
9147 * configure.in (m88k-openbsd): Express configuration using new fragment
9148 style.
9149 * configure: Rebuilt.
9150 * m88k/aout-dbx.h: New.
9151 * m88k/openbsd.h: New.
9152 * m88k/xm-openbsd.h: New.
9153
9154 2000-07-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9155
9156 * expr.c (expand_expr): Return const0_rtx, not error_mark_node.
9157
9158 2000-07-12 Richard Henderson <rth@cygnus.com>
9159
9160 * reload.c (push_secondary_reload): Make sure to add the new
9161 reload at the end, after acquiring secondary memory.
9162
9163 2000-07-12 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9164
9165 * cpplex.c (is_macro_disabled): Use CPP_WTRADITIONAL.
9166
9167 * c-decl.c (set_current_function_name_declared, anon_aggr_type_p,
9168 lang_expand_stmt): Mark parameters with ATTRIBUTE_UNUSED.
9169
9170 * c-parse.in (stmt): Delete unused variables.
9171
9172 * convert.c (convert_to_vector): Likewise.
9173
9174 * gensupport.c (process_rtx): Declare attr as `rtvec' not `rtx'.
9175
9176 * tree.c (finish_vector_type): Prototype.
9177
9178 2000-07-12 Bruce Korb <bkorb@gnu.org>
9179
9180 * fixinc/fixfixes.c: use xmalloc
9181 * fixinc/fixincl.c(initialize): set program name for xmalloc
9182 * fixinc/fixlib.c(must_malloc): obsolete
9183 (is_cxx_header): no longer used - disabled
9184 (skip_quote): inserted and disabled for future use
9185 * fixinc/fixlib.h: reflects above
9186 * fixinc/fixtests.c: removed dinkleberries
9187
9188 2000-07-12 Neil Booth <NeilB@earthling.net>
9189
9190 * cpphash.h: (TOKEN_SPELL) Pulled from cpplex.c.
9191 * cpplex.c (TOKEN_SPELL) Move to cpphash.h.
9192
9193 * cpphash.c: (struct macro_info, alloc_macro, free_macro,
9194 struct toklist_dummy): New.
9195 (cpp_free_definition): Free macros with free_macro.
9196 (count_params): Don't save paramter spellings. Save macro
9197 information in a struct macro_info.
9198 (parse_define): Don't allocate a token list.
9199 (save_expansion): Allocate the macro's token list, and
9200 save parameter spellings if necessary. Use TOKEN_SPELL.
9201 (cpp_create_definition): Make list const.
9202
9203 2000-07-12 Gabriel Dos Reis <gdr@codesourcery.com>
9204
9205 * c-typeck.c (pedwarn_c99): Move to
9206 * c-errors.c: ... Here.
9207 * toplev.h (verror, vwarning, vpedwarn): Remove prototypes.
9208 * diagnostic.c (verror, vwarning, vpedwarn): Make static.
9209 * Makefile.in (C_AND_OBJC_OBJS): Include c-errors.o
9210 (c-errors.o): List dependency.
9211
9212 2000-07-12 Mark Mitchell <mark@codesourcery.com>
9213
9214 * c-parse.c: Remove.
9215 * c-parse.h: Likewise.
9216 * c-parse.y: Likewise.
9217 * objc/objc-parse.c: Likewise.
9218 * objc/objc-pasre.y: Likewise.
9219
9220 2000-07-11 Rodney Brown <RodneyBrown@pmsc.com>
9221
9222 * gcc.texi: Fix minor typos
9223 * extend.texi: Fix minor typos
9224
9225 2000-07-11 Marc Espie <espie@openbsd.org>
9226
9227 * collect2.c (main): Recognize .lo as object files.
9228
9229 2000-07-11 J. David Anglin <dave@hiauly1.hia.nrc.ca>
9230
9231 * pa.c (hppa_encode_label): Store labels in gc memory when ggc_p is
9232 true.
9233
9234 * aclocal.m4 (AC_FUNC_MMAP_ANYWHERE): Extend test to detect systems
9235 with MAP_ANONYMOUS and MAP_ANON.
9236 * configure, config.in: Rebuilt.
9237
9238 2000-07-12 Gabriel Dos Reis <gdr@codesourcery.com>
9239
9240 * diagnostic.c (save_output_state): Remove.
9241 (restore_output_state): Likewise.
9242 (clear_text_info): New function.
9243 (clear_diagnostic_info): Likewise.
9244 (output_text_length, is_starting_newline, output_prefix,
9245 line_wrap_cutoff, ideal_line_wrap_cutoff, prefix_was_emitted_for,
9246 prefixing_policy, output_buffer_ptr_to_format_args): New macros
9247 (set_real_maximum_length, output_set_maximum_length,
9248 output_set_prefix, output_get_prefix, output_set_maximum_length,
9249 output_destroy_prefix, init_output_buffer,
9250 reshape_diagnostic_buffer, output_space_left, output_emit_prefix,
9251 output_add_newline, output_add_character, output_add_space,
9252 output_append_r, output_append, wrap_text, output_format,
9253 output_do_printf, output_printf, output_do_verbatim,
9254 output_verbatim, verbatim): Use them.
9255 (output_clear): Split into cleat_text_info and
9256 clear_diagnostic_info.
9257 (struct output_state): Move to...
9258
9259 * diagnostic.h: ...Here
9260 (struct output_buffer): Adjust.
9261
9262 2000-07-11 Zack Weinberg <zack@wolery.cumb.org>
9263
9264 * cpplex.c (parse_name): No longer inline (premature optimization).
9265 (do_pop_context): Fold into pop_context.
9266 (pop_context): Returns int.
9267 (lex_next): Hoist test for end of directive into pop_context.
9268 (push_macro_context): Returns int; takes just reader and token.
9269 Hoist test for excessive nesting to caller.
9270 (push_arg_context): Returns void; takes just reader and token.
9271 Do not call stringify_arg or get_raw_token.
9272 (get_raw_token): Convert tail recursion through push_arg_context
9273 to a loop at this level. Call stringify_arg here if appropriate.
9274 (maybe_paste_with_next): Convert tail recursion to a while loop.
9275 Hoist test of paste_level to caller.
9276
9277 (stringify_arg): Push arg context at beginning.
9278 (cpp_get_token): Split out core into _cpp_get_token. Call
9279 process_directive here. Throw away CPP_PLACEMARKER tokens.
9280 (_cpp_get_token): Convert tail recursion through
9281 push_macro_context to a loop at this level.
9282 (_cpp_glue_header_name, is_macro_disabled, stringify_arg,
9283 _cpp_get_raw_token): Use _cpp_get_token.
9284 (_cpp_skip_rest_of_line): Drop the context stack directly; do
9285 not call pop_context.
9286 (_cpp_run_directive): Call lex_next directly.
9287
9288 * cpphash.h: Prototype _cpp_get_token.
9289 * cppexp.c (lex): Use it.
9290 * cpphash.c (parse_define): Use it.
9291 * cpplib.c (get_define_node, do_undef, parse_include,
9292 read_line_number, do_line, do_ident, do_pragma, do_pragma_gcc,
9293 do_pragma_implementation, do_pragma_poison, do_pragma_dependency,
9294 parse_ifdef, validate_else): Use it.
9295 (cpp_push_buffer): Tweak error message; abort if anyone tries
9296 to push a buffer while macro expansions are stacked.
9297
9298 2000-07-11 Donn Terry <donnte@microsoft.com>
9299
9300 * cpplex.c (free_macro_args, save_token): Cast arg of free
9301 and/or xrealloc to PTR.
9302 (_cpp_init_input_buffer): Clear all fields of the base context.
9303
9304 Tue Jul 11 15:28:21 CDT 2000 Clinton Popetz <cpopetz@cygnus.com>
9305
9306 * gensupport.c (process_rtx): Make rtl checking stop
9307 complaining about the define_insn while it is being
9308 converted from a define_insn_and_split.
9309
9310 Tue Jul 11 16:26:17 2000 Clinton Popetz <cpopetz@cygnus.com>
9311
9312 * config/mips/mips.c (simple_memory_operand): Access the
9313 INTVAL of the address, not it's containing MEM.
9314
9315 2000-07-11 Bruce Korb <bkorb@gnu.org>
9316
9317 * fixinc/fixtests.c(double_slash): obsolete
9318 (else_endif_label): likewise
9319 * fixinc/inclhack.def(irix_multiline_cmnt): obsolete
9320 (libc1_ifdefd_memx): correct initial comment
9321 and omit the #if/#endif pair from the memxxx declarations
9322 * fixinc/fixincl.x: regen
9323
9324 2000-07-11 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9325
9326 * cpplex.c (T, I, S, C, N): Avoid non-constant initializers.
9327
9328 2000-07-11 Neil Booth <NeilB@earthling.net>
9329
9330 * cpp.texi: Update.
9331
9332 2000-07-11 Neil Booth <NeilB@earthling.net>
9333
9334 * cppinit.c: (cpp_reader_init): Allow digraphs by default.
9335 (handle_option): Set digraphs according to standard.
9336 Merge OPT_lang_c89 handler with OPT_std_c89.
9337
9338 * cpplex.c: (lex_line, can_paste): Honour digraphs in
9339 accordance with the digraphs flag.
9340
9341 * cpplib.h: (struct cpp_options): New option digraphs.
9342
9343 2000-07-10 Hans-Peter Nilsson <hp@axis.com>
9344 Bruce Korb <bkorb@gnu.org>
9345
9346 * fixinc/inclhack.def (libc1_ifdefd_memx): New fix.
9347 * fixinc/fixincl.x: Regenerate.
9348 * fixinc/tests/base/testing.h: Add testcase.
9349
9350 2000-07-10 Richard Henderson <rth@cygnus.com>
9351
9352 * config/ia64/ia64.c (got_symbolic_operand): New.
9353 (symbolic_operand, move_operand): Revert 0701 change.
9354 * config/ia64/ia64.h (PREDICATE_CODES): Update.
9355 * config/ia64/ia64-protos.h (got_symbolic_operand): Declare.
9356 * config/ia64/ia64.md (movdi): Revert 0701 wrt symbolic_operand;
9357 split the offset into a 14-bit low part instead of a 13-bit low part.
9358 (load_fptr): Mark the mem as unchanging.
9359 (load_symptr): Use got_symbolic_operand.
9360
9361 2000-07-10 Nick Clifton <nickc@cygnus.com>
9362
9363 * libgcc2.c (next_stack_level): Cast result of computation to
9364 (void **) so that the assignment does not generate a warning.
9365
9366 2000-07-10 Chandrakala Chavva <cchavva@redhat.com>
9367
9368 * flags.h : Add new variable flag_single_precision_constant.
9369 * toplev.c (display_help) : Add -fsingle-precision-constant option.
9370 (flag_single_precision_constant): New.
9371 * c-lex.c (yylex): Convert floating point constant to single
9372 precision constant.
9373 * invoke.texi : Add documentation for this new option.
9374
9375 2000-07-10 Gabriel Dos Reis <gdr@codesourcery.com>
9376
9377 * diagnostic.c (output_octal): Second parameter is unsigned.
9378 (output_long_octal): Likewise.
9379 (output_hexadecimal): Likewise.
9380 (output_long_hexadecimal): Likewise.
9381 (output_format): Adjust arguments extraction. Tweak.
9382 (output_verbatim, verbatim): End variable argument list.
9383 (report_diagnostic): Improve documentation.
9384
9385 2000-07-10 Benjamin Chelf <chelf@codesourcery.com>
9386
9387 * c-common.h (build_stmt): Declare.
9388 (build_continue_stmt): Likewise.
9389 (build_break_stmt): Likewise.
9390 (build_return_stmt): Likewise.
9391
9392 * c-decl.c (do_case): Rewrite to do what previously done in
9393 c-parse.in.
9394
9395 * c-semantics.c (build_stmt): Define.
9396 (build_return_stmt): Likewise.
9397 (build_break_stmt): Likewise.
9398 (build_continue_stmt): Likewise.
9399 (build_case_label): Likewise.
9400
9401 * c-parse.in (BREAK): Change to build tree, then generate RTL.
9402 (CONTINUE): Likewise.
9403 (RETURN): Likewise.
9404 (CASE): Likewise.
9405 (DEFAULT): Likewise.
9406
9407 * c-parse.y: Regenerate.
9408 * c-pasre.c: Likewise.
9409
9410 2000-07-09 Jason Merrill <jason@redhat.com>
9411
9412 * expr.c (expand_expr): Bail earlier if we get an error_mark_node.
9413
9414 * tree.h (STRIP_NOPS): Check for error_mark_node.
9415 (STRIP_SIGN_NOPS, STRIP_TYPE_NOPS): Likewise.
9416 (dwarf2out_*): Remove duplicate declarations.
9417
9418 * c-decl.c (duplicate_decls): Copy DECL_ABSTRACT_ORIGIN from
9419 DECL_ABSTRACT_ORIGIN, not DECL_ORIGIN.
9420
9421 2000-07-10 Gabriel Dos Reis <gdr@codesourcery.com>
9422
9423 * diagnostic.c (wrap_text): New function.
9424 (maybe_wrap_text): Likewise.
9425 (output_add_string): Use it.
9426 (output_format): Likewise.
9427 (count_error): Use verbatim instead of notice.
9428 (report_error_function): Likewise. Don't use plain fprintf.
9429 (finish_diagnostic): New function.
9430 (output_do_verbatim): Tweak. Commonalize functionalities in
9431 output_verbatim and verbatim.
9432 (output_verbatim): Adjust.
9433 (verbatim): Likewise.
9434 (report_diagnostic): Define.
9435
9436 * diagnostic.h (report_diagnostic): Prototype.
9437
9438 2000-07-09 Zack Weinberg <zack@wolery.cumb.org>
9439
9440 * cppexp.c (_cpp_parse_expr): Don't use unary plus.
9441
9442 2000-07-09 Neil Booth <NeilB@earthling.net>
9443
9444 * cpphash.h: ISvspace, is_vspace, is_nvspace: New.
9445 IShspace, ISspace: Update.
9446
9447 * cppinit.c: ISTABLE: Update.
9448 V: New.
9449
9450 * cpplex.c (IS_HSPACE, S_NEWLINE): Remove.
9451 (IS_DIRECTIVE): Rename KNOWN_DIRECTIVE.
9452 (skip_block_comment, skip_line_comment, parse_string,
9453 lex_line): Use is_vspace rather than IS_NEWLINE.
9454 (skip_whitespace, lex_line): Clean up to use is_nvspace.
9455 (lex_line): Use KNOWN_DIRECTIVE. Any kind of directive
9456 gets a BOL flag.
9457 (lex_next): Unconditionally stop if within a directive.
9458 Treat directives within macro invocations as directives
9459 (after parse_args emits error), not as the argument.
9460
9461 2000-07-09 Gabriel Dos Reis <gdr@codesourcery.com>
9462
9463 * diagnostic.c (diagnostic_args): New macro.
9464 (diagnostic_msg): Likewise.
9465 (output_formatted_integer): Likewise.
9466 (output_state): New data type.
9467 (digit_buffer): Make global.
9468 (output_add_integer): Rename to output_decimal. Squeeze
9469 digit_buffer.
9470 (output_long_decimal, output_unsigned_decimal,
9471 output_long_unsigned_decimal, output_octal, output_long_octal,
9472 output_hexadecimal, output_long_hexadecimal): New functions.
9473 (output_append_r): New function.
9474 (output_append): Tweak.
9475 (output_flush_on): Rename to output_to_stream.
9476 (output_format): Change prototype. Improve documentation. Handle
9477 more format specifiers.
9478 (build_location_prefix): Rename to context_as_prefix.
9479 (output_notice): Rename to output_do_printf.
9480 (output_printf): Tweak.
9481 (line_wrapper_printf): Likewise.
9482 (vline_wrapper_message_with_location): Adjust call to renamed
9483 functions.
9484 (v_message_with_decl): Likewise.
9485 (default_print_error_function): Likewise.
9486 (save_output_state): New function.
9487 (restore_output_state): Likewise.
9488 (output_do_verbatim): Likewise.
9489 (output_verbatim): Define.
9490 (verbatim): Likewise.
9491
9492 * diagnostic.h (printer_fn): Change return type from void to int.
9493 Improve documentation.
9494 (output_add_integer): Rename to output_decimal.
9495 (output_flush_on, output_format): Don't export.
9496 (output_verbatim, verbatim): Declare.
9497
9498 2000-07-08 Toon Moene <toon@moene.indiv.nluug.nl>
9499
9500 * fold-const.c (extract_muldiv) case PLUS_EXPR, MINUS_EXPR:
9501 Check whether c divides op1 exactly if operation is not
9502 multiplication.
9503
9504 2000-07-08 Richard Henderson <rth@cygnus.com>
9505
9506 * final.c (final): Do not abort when reg-stack introduces
9507 a new insn.
9508
9509 2000-07-08 Zack Weinberg <zack@wolery.cumb.org>
9510
9511 * cpplib.h (struct cpp_name): Now struct cpp_string.
9512 (CPP_INT, CPP_FLOAT, CPP_NUMBER, CPP_COMMENT,
9513 CPP_HEADER_NAME): Change to type S.
9514 (struct cpp_token): Rename 'name' field to 'str'. Add 'node'
9515 field, a cpp_hashnode *. All references to val.name updated
9516 to use val.str or val.node as appropriate.
9517 (struct cpp_reader): Add spec_nodes field.
9518 (cpp_idcmp): Now cpp_ideq; takes a token * and a char *.
9519
9520 * cpphash.h (struct spec_nodes): New.
9521 (enum spell_type): Reorder. Only SPELL_STRING tokens use
9522 val.str. All references to 'spelling > SPELL_NONE' updated to
9523 match.
9524
9525 (CPP_IN_SYSTEM_HEADER): Check pfile->buffer and
9526 pfile->buffer->inc are not NULL before dereferencing them.
9527
9528 * cpplex.c (parse_name): Take a pointer to the current token,
9529 plus current position and limit as args; return the new
9530 position; don't copy the text of a name into the string
9531 buffer, instead call cpp_lookup and store the node pointer.
9532 If extending a token, copy out the text of the old into a
9533 scratch buffer, append the new, look that up and store the new
9534 node pointer. Inline.
9535 (maybe_paste_with_next): If the result of paste is a NAME,
9536 then look up the pasted text and store its node pointer.
9537 (lex_line): Adjust for new parse_name interface.
9538 Check for L"str", L'str' using spec_nodes->n_L.
9539 (spell_token): SPELL_IDENT tokens have their spelling in
9540 val.node->name. Handle SPELL_STRING tokens that don't have
9541 string delimiters.
9542 (_cpp_expand_name_space,
9543 (can_paste): Check for L ## "str" using spec_nodes->n_L.
9544 (cpp_get_token, special_symbol): No need to call cpp_lookup.
9545 (cpp_idcmp): Now cpp_ideq; take a token * and a const char *;
9546 return 1=equal 0=not, not a tristate.
9547
9548 * cpphash.c (var_args_str): Delete.
9549 (find_param): Compare node fields directly.
9550 (is__va_args__): Use CPP_PEDANTIC. Just compare
9551 token->val.node with spec_nodes->n__VA_ARGS__.
9552 (dump_funlike_macro): Don't use var_args_str.
9553
9554 * cpplib.c (_cpp_check_directive): Just walk through
9555 spec_nodes->dirs comparing pointers.
9556 (get_define_node, do_pragma_poison, detect_if_not_defined,
9557 parse_ifdef): The identifier has already been looked up.
9558 (do_ifdef, do_ifndef): parse_ifdef won't return a poisoned
9559 node.
9560 (do_if): Only call detect_if_not_defined at beginning of file.
9561 (_cpp_parse_assertion): Only copy string pointers for
9562 SPELL_STRING tokens.
9563 (pragma_dispatch): Take a node pointer and examine its name
9564 field.
9565 (_cpp_init_stacks): Also initialize the spec_nodes structure.
9566
9567 * cppinit.c (cpp_reader_init): Call _cpp_init_stacks after
9568 _cpp_init_macros.
9569 (cpp_cleanup): Free pfile->spec_nodes. Call _cpp_cleanup_* in
9570 reverse order from the corresponding _cpp_init_* routines.
9571
9572 * cppexp.c (parse_number, parse_charconst, parse_defined,
9573 lex): Check val.node->type instead of calling cpp_defined.
9574 Use spec_nodes entries where appropriate.
9575
9576 * fix-header.c, scan-decls.c: Update for interface changes.
9577
9578 2000-07-08 Geoffrey Keating <geoffk@cygnus.com>
9579
9580 * config/rs6000/rs6000.c (rs6000_emit_move): Fix conditions for
9581 emitting aux_truncdfsf2.
9582
9583 2000-07-03 Donn Terry (donnte@microsoft.com)
9584
9585 * cppinit.c (print_help): split overlong line into ISO C89
9586 maximum chunks.
9587
9588 2000-07-07 Zack Weinberg <zack@wolery.cumb.org>
9589
9590 * cppexp.c: Update all code for new lexer interface.
9591 (op_t, operator codes, struct token, tokentab2, op_to_str): Remove.
9592 (struct suffix, vsuf_1, vsuf_2, vsuf_3, op_to_prio): New.
9593 * cpplex.c (token_names): Trim leading CPP_ from names; make
9594 the strings unsigned.
9595 (_cpp_spell_operator): New.
9596 (is_macro_disabled): Disable all macros if rescanning
9597 preprocessed text.
9598 (_cpp_get_directive_token): Remove.
9599
9600 * cppinit.c: Don't set no_macro_expand.
9601 * cpplib.c (read_line_number, do_line): Check only for EOF,
9602 not VSPACE.
9603 * cpphash.h: Update prototypes.
9604 * cpplib.h (CPP_VSPACE): Remove.
9605 (struct cpp_reader): Remove no_macro_expand.
9606
9607 2000-07-08 Neil Booth <NeilB@earthling.net>
9608
9609 * cpphash.c (is__va_args__): New function.
9610 (count_params): Fix line reported in error messages. Use
9611 is__va_args__. Don't return ')' on error. Flag GNU style
9612 rest args macro definitions.
9613 (parse_define): Check macro name is not __VA_ARGS__.
9614 (save_expansion): Check identifier in non-varargs-macro is
9615 not __VA_ARGS__. Don't flag GNU_VARARGS.
9616 * cpplex.c (parse_args): Accept no argument iff GNU_REST_ARGS.
9617 (maybe_paste_with_next): Use per-macro GNU_REST_ARGS rather
9618 than per-token GNU_VARARGS.
9619 * cpplib.h (GNU_VARARGS): Remove.
9620 (GNU_REST_ARGS): New.
9621
9622 Sat Jul 8 01:38:25 MET DST 2000 Jan Hubicka <jh@suse.cz>
9623
9624 * i386.md (call_pop, call, call_value_pop): Do not set
9625 current_function_uses_pic_offset_table for calls to static
9626 functions or indirect calls.
9627
9628 2000-07-07 Jim Wilson <wilson@cygnus.com>
9629
9630 * config/ia64/ia64.c (rws_access_reg): New local write_count. If
9631 is_predicate_reg, then take max write_count of register pair.
9632
9633 2000-07-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9634
9635 * tradcpp.c (main): Rename label `include' to `add_include' to
9636 avoid conflicts with variable `include' in traditional C.
9637
9638 2000-07-07 Jakub Jelinek <jakub@redhat.com>
9639
9640 * integrate.c (copy_insn_list): Remove REG_LABEL notes.
9641
9642 2000-07-07 Jakub Jelinek <jakub@redhat.com>
9643
9644 * sibcall.c (uses_addressof): Add INMEM argument, check for
9645 current_function_internal_arg_pointer outside of MEM rtxs in addition
9646 to ADDRESSOFs.
9647 (sequence_uses_addressof): Update caller.
9648
9649 2000-07-07 Zack Weinberg <zack@wolery.cumb.org>
9650
9651 * tradcpp.c (initialize_builtins): Honor NO_BUILTIN_SIZE_TYPE
9652 and friends.
9653
9654 2000-07-07 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9655
9656 * system.h (UNION_INIT_ZERO): New macro for initializing union
9657 members in structs.
9658
9659 * cpplex.c (placemarker_token, eof_token): Use UNION_INIT_ZERO.
9660
9661 2000-07-07 Neil Booth <NeilB@earthling.net>
9662
9663 * cpp.texi: Update.
9664
9665 Fri Jul 7 07:47:35 2000 Jeffrey A Law (law@cygnus.com)
9666
9667 * final.c (final): Detect out of bounds array access to
9668 the insn_lengths array.
9669
9670 2000-07-07 Kazu Hirata <kazu@hxi.com>
9671
9672 * fold-const.c (fold): Fix a comment typo.
9673
9674 2000-07-07 Neil Booth <NeilB@earthling.net>
9675
9676 * cpp.texi: Update to new lexer.
9677
9678 2000-07-06 Zack Weinberg <zack@wolery.cumb.org>
9679
9680 * tradcpp.c: New file.
9681 * tradcif.y: New file.
9682 * tradcif.c: New generated file.
9683
9684 * Makefile.in: Add rules to build tradcpp.o, tradcif.o,
9685 $(srcdir)/tradcif.c. Add tradcpp to STAGESTUFF and
9686 dependencies of C. Install tradcpp from install-common, in
9687 $(libsubdir).
9688
9689 2000-07-06 Zack Weinberg <zack@wolery.cumb.org>
9690
9691 * cppinit.c: Include cppdefault.h. Refer to
9692 cpp_GCC_INCLUDE_DIR and cpp_GCC_INCLUDE_DIR_len, not directly
9693 to GCC_INCLUDE_DIR and its length.
9694 (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE,
9695 USER_LABEL_PREFIX, REGISTER_PREFIX, struct default_include,
9696 STANDARD_INCLUDE_DIR, STANDARD_INCLUDE_COMPONENT): Move to
9697 cppdefault.h.
9698 (include_defaults_array): Move to cppdefault.c.
9699
9700 * cppdefault.h: New file.
9701 * cppdefault.c: New file.
9702
9703 * Makefile.in (LIBCPP_OBJS): Add cppdefault.o.
9704 (cppinit.o): Don't apply $(PREPROCESSOR_DEFINES) to this file.
9705 (cppdefault.o): New rule; apply $(PREPROCESSOR_DEFINES) to
9706 this file.
9707
9708 Thu Jul 6 18:30:36 2000 Richard Kenner <kenner@vlsi1.ultra.nyu.edu>
9709
9710 * reload.c (push_reload): When seeing if can reuse a register,
9711 check extra registers against widest of INMODE and OUTMODE.
9712
9713 2000-07-06 Neil Booth <NeilB@earthling.net>
9714
9715 * cpplib.c: (_cpp_parse_assertion): Perform hash lookups
9716 based on full length of predicate.
9717
9718 2000-07-06 Hans-Peter Nilsson <hp@axis.com>
9719
9720 * timevar.c: [HAVE_SYS_RESOURCE_H]: Include <sys/resource.h>.
9721 [NEED_DECLARATION_GETRUSAGE]: Declare getrusage.
9722
9723 2000-07-05 Kazu Hirata <kazu@hxi.com>
9724
9725 * h8300-proto.h: Fix formatting.
9726 * h8300.c: Likewise.
9727 * h8300.h: Likewise.
9728
9729 2000-07-05 Jim Wilson <wilson@cygnus.com>
9730
9731 * config/ia64/ia64.h (HARD_REGNO_MODE_OK): If FR_REGNO_P, disallow
9732 CCmode.
9733
9734 2000-07-05 Rodney Brown <RodneyBrown@pmsc.com>
9735
9736 * invoke.texi: Fix minor typos
9737 * md.texi: Fix minor typos
9738
9739 2000-07-05 Zack Weinberg <zack@wolery.cumb.org>
9740
9741 * cpplib.c (_cpp_parse_assertion): Fix buffer overrun.
9742
9743 2000-07-04 Zack Weinberg <zack@wolery.cumb.org>
9744
9745 * cpplex.c: Don't include sys/mman.h.
9746 (cpp_push_buffer, cpp_pop_buffer): Moved to cpplib.c.
9747
9748 * cpplib.c: Include sys/mman.h and obstack.h.
9749 (cpp_push_buffer): Moved from cpplex.c; allocate buffers on an
9750 obstack.
9751 (cpp_pop_buffer): Moved from cpplex.c; free buffers from an obstack.
9752 (_cpp_unwind_if_stack): Now static, unwind_if_stack. Don't
9753 bother freeing if stack entries (they will be freed with their buffer).
9754 (do_endif): Free if stack entries from the buffer obstack.
9755 (push_conditional): Allocate if stack entries from the buffer obstack.
9756
9757 (find_answer): Rename to _cpp_find_answer.
9758 (do_assert, do_unassert): Update.
9759
9760 * cpphash.h: Update prototypes.
9761 (xobnew): New convenience macro.
9762 * cpplib.h (struct cpp_reader): Add hash_ob and buffer_ob fields.
9763 Update comments.
9764 (struct cpp_hashnode): Remove disabled field.
9765
9766 * cppinit.c: Don't include hashtab.h or splay-tree.h.
9767 (report_missing_guard): Moved to cppfiles.c.
9768 (cpp_reader_init): Call cpp_init_stacks, cpp_init_macros,
9769 cpp_init_includes.
9770 (cpp_cleanup): Call cpp_cleanup_stacks, cpp_cleanup_macros,
9771 cpp_cleanup_includes. Don't destroy hashtab or
9772 all_include_files here.
9773 (cpp_finish): Use _cpp_report_missing_guards.
9774
9775 * cppfiles.c (report_missing_guard): Moved from cppinit.c.
9776 (_cpp_init_include_table): Rename _cpp_init_includes.
9777 (_cpp_cleanup_includes, _cpp_report_missing_guards): New.
9778
9779 * cppexp.c (parse_assertion): Update for new name of
9780 find_answer.
9781
9782 * Makefile.in (cpplib.o, cpphash.o, cppinit.o): Update deps.
9783
9784 2000-07-04 Zack Weinberg <zack@wolery.cumb.org>
9785
9786 * cpplib.c (do_ident): s/VSPACE/EOF/
9787
9788 2000-07-05 Neil Booth <NeilB@earthling.net>
9789
9790 * cpplex.c: Fix trigraph replacement within strings.
9791
9792 2000-07-04 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9793
9794 * rs6000/aix.h (ASM_GENERATE_INTERNAL_LABEL): Fix format specifier.
9795
9796 * xcoffout.c (assign_type_number): Constify.
9797 (xcoffout_source_file): Add static prototype. Don't needlessly
9798 cast away const-ness.
9799
9800 2000-07-04 Jason Merrill <jason@redhat.com>
9801
9802 * frame.h (frame_state): Move base_offset to end.
9803
9804 Mon Jul 3 21:31:43 2000 Clinton Popetz <cpopetz@cygnus.com>
9805
9806 * calls.c (emit_library_call_value_1): Revert previous change.
9807
9808 2000-07-03 Zack Weinberg <zack@wolery.cumb.org>
9809
9810 * fix-header.c (struct partial_proto): Remove unnecessary fields.
9811 (recognized_extern, recognized_function, read_scan_file):
9812 Update for new scheme.
9813 (check_protection): It's still a multiple include guard even
9814 if it doesn't always trigger.
9815 * scan-decls.c (skip_to_closing_brace, scan_decls): Update for
9816 new scheme.
9817 * scan.h: Declare struct cpp_token. Update prototypes.
9818
9819 2000-07-03 Neil Booth <neilb@earthling.net>
9820 Zack Weinberg <zack@wolery.cumb.org>
9821
9822 Complete overhaul of the lexer and macro expander.
9823
9824 * cpphash.c (object_defn, funct_defn, push_macro_expansion,
9825 arg, arglist, argdata, reflist, collect_objlike_expansion,
9826 collect_funlike_expansion, collect_params,
9827 warn_trad_stringify, trad_stringify, duplicate_arg_p, add_pat,
9828 unsafe_chars, macarg, compare_defs, special_symbol,
9829 scan_arguments, stringify, funlike_macroexpand,
9830 _cpp_quote_string, monthnames): Delete.
9831 (cpp_lookup, _cpp_free_definition, dump_funlike_macro,
9832 _cpp_create_definition, _cpp_dump_definition,
9833 dump_hash_helper): Adjust.
9834 (find_param, count_params, parse_define, var_args_str,
9835 check_macro_redefinition, save_expansion): New.
9836
9837 * cpplex.c (skip_block_comment, skip_line_comment, parse_name,
9838 parse_string, output_line_command, trigraph_replace,
9839 lex_line, cpp_push_buffer, cpp_pop_buffer, cpp_output_tokens,
9840 cpp_scan_buffer_nooutput, cpp_scan_buffer, cpp_free_toklist,
9841 cpp_idcmp, _cpp_get_directive_token, _cpp_init_input_buffer,
9842 _cpp_skip_rest_of_line): Modify.
9843
9844 (maybe_macroexpand, skip_comment, copy_comment, skip_string,
9845 find_position, null_warning, bump_column, expand_name_space,
9846 pedantic_whitespace, _cpp_output_list, _cpp_slice_toklist,
9847 _cpp_squeeze_toklist, _cpp_scan_until, _cpp_skip_hspace,
9848 _cpp_parse_name, _cpp_lex_token, cpp_get_non_space_token,
9849 _cpp_prescan): Delete.
9850
9851 (dump_param_spelling, process_directive, lex_next,
9852 is_macro_disabled, stringify_arg, expand_context_stack,
9853 output_token, make_string_token, alloc_number_token,
9854 special_symbol, duplicate_token, maybe_paste_with_next,
9855 can_paste, prevent_macro_expansion, restore_macro_expansion,
9856 get_temp_token, release_temp_tokens, quote_string,
9857 token_names, token_spellings, _cpp_expand_name_space,
9858 _cpp_glue_header_name, _cpp_reserve_name_space,
9859 digraph_spellings, trigraph_ok, skip_whitespace, save_comment,
9860 placemarker_token, eof_token, cpp_context, macro_args,
9861 get_raw_token, parse_arg, parse_args, save_token,
9862 push_arg_context, push_macro_context, pop_context,
9863 do_pop_context, free_macro_args, _cpp_get_line,
9864 _cpp_run_directive): New.
9865
9866 * cpplib.c (validate_else, parse_include, push_conditional,
9867 pass_thru_directive, read_line_number, parse_ifdef,
9868 detect_if_not_defined, _cpp_check_directive, do_define,
9869 do_undef, do_include, do_import, do_include_next, do_error,
9870 do_warning, do_ident, do_pragma, pragma_dispatch, gcc_pragmas,
9871 top_pragmas, do_pragma_gcc, do_pragma_implementation,
9872 do_pragma_poison, do_pragma_system_header,
9873 do_pragma_dependency, do_sccs, do_ifdef, do_ifndef, do_else,
9874 dl_elif, do_endif, _cpp_unwind_if_stack, do_assert,
9875 do_unassert, cpp_define, cpp_undef, cpp_assert, cpp_unassert,
9876 cpp_defined): Update for new scheme.
9877 (strtoul_for_line, get_define_node, dump_macro_name,
9878 _cpp_check_linemarker, _cpp_parse_assertion): New.
9879 (_cpp_handle_directive, do_pragma_default): Delete.
9880
9881 * cpphash.h (struct predicate): Now struct answer.
9882 (enum spell_type, struct token_spelling, struct directive,
9883 directive_handler): New.
9884 Update prototypes. Remove unused macros.
9885 * cpplib.h: Update prototypes. Remove unused macros,
9886 structure definitions, and fields.
9887
9888 * cpperror.c (print_containing_files, v_message): Adjust.
9889 * cppexp.c (parse_assertion, lex, parse_escape,
9890 _cpp_parse_expr): Adjust.
9891 * cppfiles.c (open_include_file, _cpp_execute_include,
9892 _cpp_compare_file_date, cpp_read_file, read_include_file):
9893 Adjust.
9894 * cppinit.c (dump_special_to_buffer): Delete.
9895 (append_include_chain, merge_include_chains, cpp_reader_init,
9896 cpp_cleanup, initialize_builtins, builtin_array, cpp_start_read,
9897 cpp_finish, handle_option, print_help): Adjust.
9898 * cppmain.c (main): Adjust.
9899
9900 2000-07-03 Zack Weinberg <zack@wolery.cumb.org>
9901
9902 * cppspec.c (lang_specific_driver): Use double quotes in error
9903 message.
9904
9905 Mon Jul 3 16:53:43 2000 Clinton Popetz <cpopetz@cygnus.com>
9906
9907 * calls.c (emit_library_call_value_1): Use valreg instead
9908 of hard_libcall_value.
9909
9910 2000-07-03 Geoff Keating <geoffk@cygnus.com>
9911
9912 * config/rs6000/rs6000.c (rs6000_emit_move): New function.
9913 * config/rs6000/rs6000-proto.h: Prototype rs6000_emit_move.
9914 * config/rs6000/rs6000.md (movsi): Use rs6000_emit_move.
9915 (movhi): Likewise.
9916 (movqi): Likewise.
9917 (movdf): Likewise.
9918 (movsf): Likewise.
9919 (movdi): Likewise.
9920 (movti): Likewise.
9921
9922 * expmed.c (expand_mult_highpart): Use op1 instead of wide_op1 when
9923 mode instead of wider_mode is being used.
9924
9925 2000-07-03 Jakub Jelinek <jakub@redhat.com>
9926
9927 * config/i386/i386.md (movstrictqi_xor): Use 'q' constraint instead
9928 of 'r'. Use q_regs_operand.
9929 (andsi_1+2): Use q_regs_operand.
9930
9931 2000-07-03 Jakub Jelinek <jakub@redhat.com>
9932
9933 * builtins.c (get_memory_rtx): Always put into alias set 0.
9934
9935 2000-07-03 Nick Clifton <nickc@cygnus.com>
9936
9937 * config/arm/arm.md: Fix post increment and pre increment
9938 peepholes so that they do not generate UNPREDICATBLE opcodes.
9939 (ie ones where the increment clobbers the source/destination).
9940
9941 2000-07-01 Marek Michalkiewicz <marekm@linux.org.pl>
9942
9943 * config/avr/avr.c (out_adj_frame_ptr): Make "frame pointer
9944 change too big for -mtiny-stack" a warning, if larger than 63.
9945 (out_set_stack_ptr): Change the logic so -mno-interrupts is
9946 always safe to use on possible future devices.
9947 (function_prologue): Write SPH before SPL, for consistency.
9948 If interrupt_func_p true, we know we have enabled interrupts.
9949 (avr_num_arg_regs): New function. Round up to even number of
9950 bytes if no -mpack-args or if calling a libgcc function.
9951 (function_arg, function_arg_advance): Use it.
9952 (output_movsisf, ashlsi3_out, ashrsi3_out, lshrsi3_out):
9953 Output "movw" if available.
9954 (out_tsthi, out_tstsi, ashlqi3_out, lshrqi3_out): Change uses
9955 of TEST_HARD_REG_CLASS macro to test_hard_reg_class function.
9956 (asm_output_section_name): Add blanks for consistent output.
9957 (encode_section_info): Set TREE_READONLY for progmem data to
9958 avoid gas warnings about changed section attributes.
9959 (avr_hard_regno_mode_ok): Force non-QImode data to start in
9960 even numbered registers on devices with "movw".
9961 * config/avr/avr.h (MASK_*): Define bits for target_flags.
9962 (TARGET_SWITCHES): Mark help strings for translation.
9963 Add new -mpack-args and -menhanced switches.
9964 (TARGET_OPTIONS): Mark help strings for translation.
9965 (progmem_section): Add section attributes.
9966 * config/avr/avr.md (*movhi, call_insn, call_value_insn):
9967 Output "movw" if available.
9968 (mulqi3, mulqihi3, umulqihi3, mulhi3, *tablejump_enh):
9969 New patterns.
9970 * config/avr/libgcc.S (_mulqi3, _divqi3): Update to the new
9971 call convention (arguments aligned on even registers).
9972 (_cleanup, _exit): Make weak symbols libc can override.
9973
9974 2000-07-03 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
9975
9976 * fp-bit.h: New file.
9977
9978 * fp-bit.c: Move common code, prototypes, etc into fp-bit.h.
9979 Comment #endif statements.
9980 (__thenan_sf, __thenan_df): Add missing braces around initializer.
9981
9982 Mon Jul 3 00:32:47 2000 Jeffrey A Law (law@cygnus.com)
9983
9984 * gcse.c (compute_pre_data): Compute ae_kill using other local
9985 properties instead of calling compute_ae_kill.
9986
9987 * alias.c (init_alias_analysis): Do not call
9988 prologue_epilogue_contains until after reload has completed.
9989
9990 2000-07-02 Benjamin Chelf <chelf@codesourcery.com>
9991
9992 * c-common.h (genrtl_begin_compound_stmt): Remove declaration.
9993 (genrtl_finish_compound_stmt): Likewise.
9994 (genrtl_compound_stmt): Change to return void.
9995
9996 * c-semantics.c (genrtl_begin_compound_stmt): Remove function and
9997 move code from here to ...
9998 (genrtl_compound_stmt): ... here.
9999 (genrtl_finish_compound_stmt): Remove.
10000 (expand_stmt): Add comment.
10001
10002 2000-07-02 Zack Weinberg <zack@wolery.cumb.org>
10003
10004 * c-typeck.c (build_indirect_ref): Use COMPLETE_OR_VOID_TYPE_P
10005 and VOID_TYPE_P.
10006
10007 2000-07-02 Jakub Jelinek <jakub@redhat.com>
10008
10009 * cpplib.h (struct cpp_reader): New field include_depth.
10010 (struct cpp_printer): Rename last_bsd to last_id.
10011 * cppfiles.c (read_include_file): Bump include_depth.
10012 * cpplex.c (cpp_pop_buffer): Decrement include_depth.
10013 (output_line_command): Output correct #line if a header
10014 is including itself and is not protected against multiple inclusion.
10015 Use include_depth instead of buffer_stack_depth, last_id instead of
10016 last_bsd.
10017 * cppinit.c (cpp_start_read): Initialize last_id instead of
10018 last_bsd.
10019
10020 2000-07-01 Benjamin Chelf <chelf@codesourcery.com>
10021
10022 * Makefile.in (C_AND_OBJC_OBJS): Added c-semantics.o.
10023 (c-semantics.o): New target.
10024
10025 * c-common.h (TREE_LANG_FLAG_?): Added documentation.
10026 (genrtl_do_pushlevel): Moved from cp/cp-tree.h.
10027 (genrtl_clear_out_block): Likewise.
10028 (genrtl_goto_stmt): Likewise.
10029 (genrtl_expr_stmt): Likewise.
10030 (genrtl_decl_stmt): Likewise.
10031 (genrtl_if_stmt): Likewise.
10032 (genrtl_while_stmt): Likewise.
10033 (genrtl_do_stmt): Likewise.
10034 (genrtl_return_stmt): Likewise.
10035 (genrtl_for_stmt): Likewise.
10036 (genrtl_break_stmt): Likewise.
10037 (genrtl_continue_stmt): Likewise.
10038 (genrtl_scope_stmt): Likewise.
10039 (genrtl_switch_stmt): Likewise.
10040 (genrtl_case_label): Likewise.
10041 (genrtl_begin_compound_stmt): Likewise.
10042 (gerntl_finish_compound_stmt): Likewise.
10043 (genrtl_compound_stmt): Likewise.
10044 (genrtl_asm_stmt): Likewise.
10045 (genrtl_decl_cleanup): Likewise.
10046 (DECL_ANON_UNION_ELEMS): Likewise.
10047 (emit_local_var): Likewise.
10048 (make_rtl_for_local_static): Likewise.
10049 (expand_cond): Likewise.
10050 (expand_stmt): Likewise.
10051 (c_expand_return): Likewise.
10052 (c_expand_start_case): Likewise.
10053 (do_case): Likewise.
10054 (COMPOUND_STMT_NO_SCOPE): Likewise.
10055 (c_expand_asm_operands): Likewise.
10056 (NEW_FOR_SCOPE_P): New macro.
10057 (expand_expr_stmt_fn): New type.
10058
10059 (set_current_function_name_declared): Likewise.
10060 (current_function_name_declared): Likewise.
10061 (lang_expand_stmt): Likewise.
10062 (stmts_are_full_exprs_p): Likewise.
10063 (anon_aggr_type_p): Likewise.
10064 (lang_expand_expr_stmt): Likewise.
10065 (build_case_label): Likewise.
10066
10067 * c-decl.c (lang_expand_expr_stmt): Initialize.
10068 (stmts_are_full_exprs_p): Define.
10069 (current_function_name_declared): Likewise.
10070 (do_case): Likewise.
10071 (lang_expand_stmt): Likewise.
10072 (set_current_function_name_declared): Likewise.
10073 (anon_aggr_type_p): Likewise.
10074
10075 * c-semantics.c: New file.
10076 (expand_cond): Moved from cp/semantics.c.
10077 (genrtl_do_pushlevel): Likewise.
10078 (genrtl_clear_out_block): Likewise.
10079 (genrtl_goto_stmt): Likewise.
10080 (genrtl_expr_stmt): Likewise.
10081 (genrtl_decl_stmt): Likewise.
10082 (genrtl_if_stmt): Likewise.
10083 (genrtl_while_stmt): Likewise.
10084 (genrtl_do_stmt): Likewise.
10085 (genrtl_return_stmt): Likewise.
10086 (genrtl_for_stmt): Likewise.
10087 (genrtl_break_stmt): Likewise.
10088 (genrtl_continue_stmt): Likewise.
10089 (genrtl_scope_stmt): Likewise.
10090 (genrtl_switch_stmt): Likewise.
10091 (genrtl_case_label): Likewise.
10092 (genrtl_begin_compound_stmt): Likewise.
10093 (genrtl_finish_compound_stmt): Likewise.
10094 (genrtl_compound_stmt): Likewise.
10095 (genrtl_asm_stmt): Likewise.
10096 (genrtl_decl_cleanup): Likewise.
10097 (make_rtl_for_local_static): Moved from cp/decl.c.
10098 (emit_local_var): Likewise.
10099 (expand_stmt): Define.
10100
10101 * c-tree.h: (c_expand_asm_operands): Moved to c-common.h.
10102 (c_expand_return): Likewise.
10103 (c_expand_start_case): Likewise.
10104
10105 2000-07-01 Richard Henderson <rth@cygnus.com>
10106
10107 * config/ia64/ia64.c (symbolic_operand): Reject CONST expressions
10108 with the low 13 bits set.
10109 (move_operand): Check for CONST|SYMBOL_REF|LABEL_REF directly.
10110 * config/ia64/ia64.md (movdi): Likewise. Expand a CONST with one
10111 of the low 13 bits into a CONST plus an adddi3.
10112 (load_symptr): Set RTX_UNCHANGING_P.
10113
10114 See ChangeLog.3 for earlier changes.