* diagnostic.def: Don't capitalize diagnostic descriptors.
[official-gcc.git] / gcc / ChangeLog
blob053e6e80582e1ce3a6f014ce5da1337ed1f923c3
1 2002-06-08  Gabriel Dos Reis  <gdr@codesourcery.com>
3         * diagnostic.def: Don't capitalize diagnostict descriptors.
5 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
7         * config/m68k/netbsd-elf.h (EXTRA_SPECS): Add netbsd_entry_point.
8         (LINK_SPEC): Define as NETBSD_LINK_SPEC_ELF.
9         (NETBSD_ENTRY_POINT): Define.
11 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
13         * config/i386/netbsd-elf.h (LINK_SPEC): Define as
14         NETBSD_LINK_SPEC_ELF.
15         (SUBTARGET_EXTRA_SPECS): Add netbsd_entry_point.
16         (NETBSD_ENTRY_POINT): Define.
17         * config/i386/netbsd64.h (LINK_SPEC): Use %(netbsd_link_spec).
18         (SUBTARGET_EXTRA_SPECS): Add netbsd_link_spec and
19         netbsd_entry_point.
20         (NETBSD_ENTRY_POINT): Define.
22 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
24         * config/alpha/netbsd.h (SUBTARGET_EXTRA_SPECS): Add
25         netbsd_link_spec and netbsd_entry_point.
26         (LINK_SPEC): Use %(netbsd_link_spec).
27         (NETBSD_ENTRY_POINT): Define.
29 2002-06-08  Jason Thorpe  <thorpej@wasabisystems.com>
31         * config/netbsd-elf.h (LINK_SPEC): Rename to...
32         (NETBSD_LINK_SPEC_ELF): ...this.  Use %(netbsd_entry_point)
33         to specify program entry point.
35 2002-06-07  Jeff Law <law@redhat.com
37         * emit-rtl.c (init_emit): Add hard registers to regno_reg_rtx.
38         * combine.c (move_deaths): Use regno_reg_rtx for hard regs rather       
39         than creating a new register.
40         (distribute_notes): Likewise.
41         * df.c (df_reg_use_gen): Likewise.
42         (df_reg_clobber_gen): Likewise.
43         (df_ref_record): Likewise.
44         * expr.c (use_regs): Likewise.
45         * flow.c (propagate_one_insn): Likewise.
46         (mark_set_1): Likewise.
47         (mark_used_reg): Likewise.
48         * reload.c (emit_reload_insns): Likewise.
50 2002-06-07  Roger Sayle  <roger@eyesopen.com>
52         * simplify-rtx.c (simplify_gen_relational): Simplify RTL of the form
53         (ne (comp x y) 0) into (comp x y) where comp is a comparison code.
54         Simplify (eq (comp x y) 0) into (revcomp x y) if the sense of the
55         comparison code comp can be reversed.
57 2002-06-07  Roger Sayle  <roger@eyesopen.com>
59         * fold-const.c (fold) [EQ_EXPR]:  Place both integer and real
60         constants last in comparisons.  Optimize (x+1.0)>0.0 into the
61         equivalent x > -1.0 when -ffast-math.
63 2002-06-07  Jason Thorpe  <thorpej@wasabisystems.com>
65         * config.gcc (mips*-*-netbsd*): Add mips/t-netbsd to ${tmake_file}.
66         * config/mips/t-netbsd: New file.
68 2002-06-07  Zack Weinberg  <zack@codesourcery.com>
70         * cppinit.c (COMMAND_LINE_OPTIONS): Give all relevant -W
71         options their own entries.
72         (parse_option): Clarify comment.
73         (cpp_handle_option): Remove 'ignore' parameter and OPT_W
74         special case.  Replace if/strcmp chain for -W options with
75         use of new OPT_* entries for them.
76         (cpp_handle_options): Update to match.
77         * cpplib.h: Remove last parameter to cpp_handle_option from prototype.
78         * c-decl.c: Update call to cpp_handle_option.
80 2002-06-07  Akim Demaille  <akim@epita.fr>
82         * gengtype-yacc.y (optionseqopt): Add the ending `;' to the action.
83         Whitespace changes.
85 2002-06-07  Jeffrey Law  <law@redhat.com>
87         * sched-deps.c (free_deps): Avoid calling free_INSN_LIST_list
88         on empty lists.
90 2002-06-07  H.J. Lu  (hjl@gnu.org)
92         * configure.in: Add --enable-__cxa_atexit.
93         * configure: Regenerated.
94         * config.in: Likewise.
96         * defaults.h (DEFAULT_USE_CXA_ATEXIT): New. Defined to be 0 if
97         not defined.
99 2002-06-07  Gabriel Dos Reis  <gdr@merlin.nerim.net>
101         * diagnostic.c (diagnostic_build_prefix): Fix initialization.
103 2002-06-07  Jason Thorpe  <thorpej@wasabisystems.com>
105         * config/mips/netbsd.h (CACHE_FLUSH_FUNC): Define.
107 2002-06-07  Jason Merrill  <jason@redhat.com>
109         * cppexp.c (num_equality_op): Use a temporary variable to work
110         around gcc 3.0.4 bug.
112 2002-06-07  Gabriel Dos Reis  <gdr@codesourcery.com>
114         * diagnostic.c (diagnostic_build_prefix): Tidy.
116 2002-06-07  Neil Booth  <neil@daikokuya.demon.co.uk>
118         * cpptrad.c (struct block, BLOCK_HEADER_LEN, BLOCK_LEN,
119         scan_parameters, save_replacement_text, replacement_length): New.
120         (scan_out_logical_line): Take a macro and save parameters if
121         non-NULL.
122         (_cpp_logical_line_trad): Update.
123         (_cpp_create_trad_definition): Update to handle function-like
124         macros.
125         * cpplex.c (new_buff): Update.
126         (struct dummy, DEFAULT_ALIGNMENT, CPP_ALIGN): Move...
127         * cpphash.h: ...here.
128         (CPP_ALIGN2, _cpp_save_parameter): New.
129         * cppmacro.c (save_parameter): Rename, export.
130         (parse_params): Update.
132 2002-06-07  Andreas Jaeger  <aj@suse.de>
134         * config/mmix/mmix.c: Remove extra broken prototype for
135         mmix_init_machine_status.
137 2002-06-06  Geoffrey Keating  <geoffk@redhat.com>
139         * gengtype.c: Add comments before all the routines.
141 2002-06-07  Jason Thorpe  <thorpej@wasabisystems.com>
143         * config.gcc (sh5*-*-netbsd*): Remove sh/t-netbsd-sh5-32
144         from and add t-sh64 to ${tmake_file}.
145         (sh64*-*-netbsd*): Add t-sh64 to ${tmake_file}.
146         * config/sh/t-netbsd-sh5 (LIB1ASMFUNCS): Remove.
147         * config/sh/t-netbsd-sh5-32: Remove.
148         * config/sh/t-netbsd-sh5-64 (MULTILIB_OPTIONS): Use
149         MULTILIB_ENDIAN.
150         (MULTILIB_DIRNAMES): Define.
152 Thu Jun  6 23:14:46 CEST 2002  Jan Hubicka  <jh@suse.cz>
154         * i386.md (and promoting splitters): Disable QI to SImode promoting
155         when doing so changes immediate to be 32bit.
157         * rtl.h (emit_*_scope): Declare.
158         * emit-rtl.c (emit_*_scope): New global functions.
159         (try_split): Copy scope.
160         * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
161         noce_try_flag_inc, noce_try_store_flag_mask, noce_try_cmove,
162         noce_try_cmove_arith, noce_try_minmax, noce_try_abs,
163         noce_process_if_block, find_cond_trap): Copy scopes.
164         * recog.c (peephole2_optimize): likewise.
166 2002-06-06  Jeffrey Law  <law@redhat.com>
168         * h8300.h (OK_FOR_U): Fix thinko exposed by flag checking.
170 Thu Jun  6 21:06:25 2002  J"orn Rennecke <joern.rennecke@superh.com>
172         * gengtype-lex.l (INITIAL): New rule for "'"("\\".|[^\\])"'".
174 2002-06-06  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
176         * Makefile.in (TEXI_GCCINSTALL_FILES): Define.
177         ($(docdir)/gccinstall.info): New target.
178         (info): Depend on it.
179         (gccinstall.dvi): New target.
180         (dvi): Depend on it.
181         * doc/.cvsignore: Ignore new info files.
182         * doc/install.texi (@setfilename): Reflect new info filename.
184 Thu Jun  6 15:57:23 2002  J"orn Rennecke <joern.rennecke@superh.com>
186         * sh.c (machine_dependent_reorg): Don't set RTX_UNCHANGING_P
187         on an UNSPEC.
189 Thu Jun  6 07:17:43 2002  Nicola Pero  <n.pero@mi.flashnet.it>
191         PR objc/6834
192         * objc/objc-lang.c (LANG_HOOKS_GET_ALIAS_SET): Define to be
193         c_common_get_alias_set.
194         (LANG_HOOKS_SAFE_FROM_P): Define to be c_safe_from_p.
196 2002-06-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
198         * emit-rtl.c (get_first_nonnote_insn, get_last_nonnote_insn): New
199         functions.
200         * rtl.h (get_first_nonnote_insn, get_last_nonnote_insn): Declare.
201         * avr/avr.c (avr_output_function_epilogue): Use above to determine
202         function size.
203         * pa/pa.c (pa_output_function_prologue): Likewise.
205 2002-06-05  David S. Miller  <davem@redhat.com>
207         * integrate.c (subst_constants): Handle 'B' RTL format.
209 2002-06-05  Eric Christopher  <echristo@redhat.com>
211         * varasm.c (make_decl_rtl): Fix comment for removed
212         halfpic.c.
214 2002-06-05  Eric Christopher  <echristo@redhat.com>
216         * Makefile.in: Remove missed halfpic bits.
218 2002-06-05  Eric Christopher  <echristo@redhat.com>
220         * toplev.c: Remove half-pic.
221         * config/mips/mips.c: Ditto.
222         * config/mips/mips.h: Ditto. Remove unused defines.
223         * config/mips/openbsd.h: Update comment to reflect above.
224         * config/mips/mips.md: Remove half-pic constraints.
225         * halfpic.h: Delete.
226         * halfpic.c: Ditto.
228 2002-06-05  Jeffrey Law  <law@redhat.com>
230         * pa.h (EXTRA_CONSTRAINT, T case): Further refine so that it
231         rejects (mem (lo_sum (reg) (unspec))), but will allow
232         (mem (lo_sum (reg) (symbol_ref)) for PA2.0.
234 2002-06-05  Neil Booth  <neil@daikokuya.demon.co.uk>
236         * cpphash.h (_cpp_create_definition): Update prototype.
237         (_cpp_push_text_context, _cpp_create_trad_definition): New.
238         ( cpp_lex_identifier_trad): New.
239         (_cpp_set_trad_context): New.
240         * cppinit.c (cpp_finish_options): Don't conditionalize builtins.
241         * cpplib.c (SEEN_EOL): Update.
242         (lex_macro_node): Update for -traditional.
243         (cpp_push_buffer, _cpp_pop_buffer): Similarly.
244         * cppmacro.c (_cpp_create_definition): Split into
245         create_iso_definition() and _cpp_create_trad_definition().
246         (warn_of_redefinition): Update prototype; handle traditional
247         macros.
248         (_cpp_push_text_context): New.
249         * cpptrad.c (skip_whitespace, push_replacement_text): New.
250         (lex_identifier): Call ht_lookup with correct start.
251         (_cpp_lex_identifier_tradm _cpp_create_trad_definition,
252         _cpp_set_trad_context): New.
253         (scan_out_logical_line): Update to handle changing contexts.
255 Wed Jun  5 20:42:31 2002  J"orn Rennecke <joern.rennecke@superh.com>
257         * config.gcc (sh-*-elf*,  sh64*-*-elf*): Unify.
258         (shl*-*-elf*): Add.
259         * config/sh/t-be (MULTILIB_ENDIAN): Set.
260         * config/sh/t-le (MULTILIB_ENDIAN): Likewise.
261         * t-sh (MULTILIB_ENDIAN): Set.
262         (MULTILIB_OPTIONS): Use it.
263         * t-sh64 (MULTILIB_OPTIONS): Likewise.
264         (MULTILIB_DIRNAMES): Likewise.
266 2002-06-05  Gabriel Dos Reis  <gdr@codesourcery.com>
268         * toplev.h (report_error_function): Remove.
270         * diagnostic.h (location_t): New datatype.
271         (text_info): Likewise.
272         (diagnostic_info): Likewise.
273         (output_prefix): New macro.
274         (diagnostic_last_function_changed): Likewise.
275         (diagnostic_set_last_function): Likewise.
276         (diagnostic_last_module_changed): Likewise.
277         (diagnostic_set_last_module): Likewise.
278         (report_diagnostic): Now macro.
279         (diagnostic_set_info): Declare.
281         * diagnostic.c (report_problematic_module): Rename to
282         diagnostic_repor_current_module.
283         (set_diagnostic_context): Remove.
284         (count_error): Rename to diagnostic_error_count.
285         (error_function_changed): Remove.
286         (record_last_error_function): Likewise.
287         (error_module_changed): Likewise.
288         (record_last_error_module): Likewise.
289         (context_as_prefix): Rename to diagnostic_build_prefix.
290         (flush_diagnostic_buffer): Rename to diagnostic_flush_buffer.
291         (diagnostic_set_info): New function.
293         * objc/objc-act.c: #include diagnostic.h
294         (error_with_ivar): Adjust call to count_error.
295         (warn_with_method): Likewise.
296         * objc/Make-lang.in (objc-act.o): Depend on diagnostic.h
298 2002-06-05  Bob Wilson  <bob.wilson@acm.org>
300         * config/xtensa/xtensa.c (xtensa_build_va_list): Use
301         lang_hooks.types.make_type instead of make_node; set up
302         __va_list_tag type decl.
303         (xtensa_builtin_saveregs): Remove broken use of
304         RTX_UNCHANGING_P and unnecessary use of MEM_IN_STRUCT_P
305         for saved registers; add varargs alias set.
307 2002-06-05  Neil Booth  <neil@daikokuya.demon.co.uk>
309 config:
310         * alpha/gnu.h: Undef TARGET_OS_CPP_BUILTINS.
311         * i386/beos-elf.h: Use TARGET_OS_CPP_BUILTINS rather than
312         CPP_PREDEFINES and part of CPP_SPEC.
313         i386/freebsd-aout.h, i386/gas.h, i386/gnu.h, i386/linux-aout.h,
314         i386/linux.h, i386/moss.h, i386/xm-vsta.h: Similarly.
316 Wed Jun  5 15:20:58 CEST 2002  Jan Hubicka  <jh@suse.cz>
318         * reg-stack.c (reg_to_stack): Do not call find_basic_blocks.
320 2002-06-05  Alan Modra  <amodra@bigpond.net.au>
322         * config/rs6000/linux64.h (ASM_OUTPUT_SOURCE_LINE): Define.
324 2002-06-04  Zack Weinberg  <zack@codesourcery.com>
326         * gengtype-yacc.y: Make sure all rules end with a semicolon.
328 2002-06-04  Bob Wilson  <bob.wilson@acm.org>
330         * config/xtensa/xtensa.c (xtensa_init_machine_status): Fix
331         typo in function prototype and include "ggc.h" header.
333 2002-06-04  Richard Henderson  <rth@redhat.com>
335         * config/alpha/alpha.c (mode_mask_operand): Simplify without ifdefs.
336         (print_operand) ['U']: Likewise.
337         (alpha_expand_unaligned_store): Correct constants for 32-bit cross.
338         (alpha_expand_unaligned_store_words): Likewise.
339         (alpha_expand_builtin_vector_binop): Fix typo.
340         (enum alpha_builtin, code_for_builtin): Add remaining ext, ins, msk,
341         umulh, and cix insns.
342         (one_arg_builtins): Add cix builtins.
343         (two_arg_builtins): Add ext, ins, msk, umulh builtins.
344         (alpha_expand_builtin): Fix typo in arity.
345         * config/alpha/alpha.md (UNSPEC_CTLZ, UNSPEC_CTPOP): New.
346         (builtin_extbl, builtin_extwl, builtin_extll, builtin_extwh,
347         builtin_extlh, builtin_insbl, builtin_inswl, builtin_insll,
348         builtin_insql, builtin_inswh, builtin_inslh, builtin_insqh,
349         builtin_mskbl, builtin_mskwl, builtin_mskll, builtin_mskql,
350         builtin_mskwh, builtin_msklh, builtin_mskqh, builtin_cttz,
351         builtin_ctlz, builtin_ctpop): New.
352         * doc/extend.texi (Alpha Built-in Functions): Update.
354 2002-06-04  Geoffrey Keating  <geoffk@redhat.com>
356         * gengtype.c (write_gc_root): Don't unnecessarily prevent
357         global variable-length arrays being roots.
359         * config.gcc (powerpc-*-darwin*): Set config_gtfiles.
360         * configure.in (config_gtfiles): New variable.
361         (all_gtfiles): Initialise from config_gtfiles.
362         * configure: Regenerate.
364 2002-06-04  Neil Booth  <neil@daikokuya.demon.co.uk>
366 config/i386:
367         * beos-elf.h, cygwin.h, djgpp.h, gas.h, gnu.h, i386-interix.h,
368         i386-interix3.h, i386elf.h, linux-aout.h, linux.h, linux64.h,
369         mingw32.h, netbsd-elf.h, netbsd.h, netbsd64.h, rtemself.h,
370         sco5.h, sol2.h, sysv3.h, sysv4.h, sysv5.h, uwin.h, vxi386.h,
371         win32.h (CPP_SPEC): Remove cpp_cpu.
372         * i386.h (TARGET_CPU_CPP_BUILTINS): Use.
373         (CPP_CPU_DEFAULT_SPEC, CPP_CPU_SPEC): Die!
375 2002-06-04  Janis Johnson  <janis187@us.ibm.com>
377         * config/ia64/ia64.c (gen_thread_pointer): Fix variable name.
379 2002-06-04  Jeff Law <law@redhat.com.
380             David Edelsohn <edelsohn@gnu.org>
381             Michael Matz <matz@kde.org>
383         * sched-int.h (struct deps): New field libcall_block_tail_insn.
384         * sched_deps.c (init_deps): Initialize libcall_block_tail_insn.
385         * sched_deps.c (sched_analyze_insn): If libcall_block_tail_insn
386         is set, then mark the current insn as being part of a libcall
387         scheduling group.
388         (sched_analyze): Set and clear libcall_block_tail_insn appropriately.
390         * haifa-sched.c (schedule_block): Do not count USE or CLOBBER
391         insns against the issue rate.
393 Tue Jun  4 19:29:42 CEST 2002  Jan Hubicka  <jh@suse.cz>
395         * cfglayout.c (duplicate_insn_chain): Kill NOTE_INSN_RANGE notes.
396         * final.c (final_scan_insn): Likewise.
397         * ggc-common.c (ggc_mark_rtx_children_1): Likewise; use
398         NOTE_EXPECTED_VALUE instead of NOTE_RANGE.
399         * haifa-sched.c (unlink_other_notes): Likeewise.
400         (reemit_notes): Likewise.
401         * print-rtl.c (print_rtx): Likewise.
402         * sched-deps (sched-analyze): Likewise.
403         * rtl.c (note_insn_name): Likewise.
404         * rtl.h (NOTE_RANGE_INFO, NOTE_LIVE_INFO): Kill.
405         (enum insn_note): Kill NOTE_INSN_RANGE_*, NOTE_INSN_LIVE.
406         (RANGE_*): Kill.
408 2002-06-04  Jason Thorpe  <thorpej@wasabisystems.com>
410         * varasm.c (mark_constants): Handle RTX format 'B'.
412 2002-06-04  Neil Booth  <neil@daikokuya.demon.co.uk>
414         * cpphash.h (FIRST, LAST, CUR, RLIMIT): New.
415         (struct cpp_context): Add traditional fields.
416         * cppmacro.c (paste_all_tokens, push_ptoken_context,
417         push_token_context, cpp_get_token, _cpp_backup_tokens): Update.
418         * cpptrad.c (skip_comment, lex_identifier,
419         _cpp_read_logical_line_trad, scan_out_logical_line): Update.
421 2002-06-04  Kazu Hirata  <kazu@cs.umass.edu>
423         * gbl-ctors.h: Fix formatting.
424         * gcc.c: Likewise.
425         * gccspec.c: Likewise.
426         * gcov.c: Likewise.
427         * gcov-io.h: Likewise.
428         * gcse.c: Likewise.
429         * ggc-common.c: Likewise.
430         * ggc.h: Likewise.
431         * ggc-page.c: Likewise.
432         * ggc-simple.c: Likewise.
433         * global.c: Likewise.
434         * graph.h: Likewise.
435         * gthr-dce.h: Likewise.
436         * gthr.h: Likewise.
437         * gthr-posix.h: Likewise.
438         * gthr-rtems.h: Likewise.
439         * gthr-solaris.h: Likewise.
440         * gthr-win32.h: Likewise.
442 2002-06-03  Geoffrey Keating  <geoffk@redhat.com>
444         Merge from pch-branch:
446         * gengtype.h (UNION_OR_STRUCT_P): New macro.
447         * gengtype.c (write_gc_structure_fields): Use it.
448         (write_gc_root): Use it here too.
450         * gengtype.c (write_gc_structure_fields): Assume that lengths
451         of typenames fit into an 'int'; don't pass a size_t to "%d" in
452         printf.
453         (write_gc_marker_routine_for_structure): Likewise.
454         (write_gc_types): Likewise.
455         (write_gc_root): Likewise.
457         * varray.h (VARRAY_CLEAR): New.
458         (varray_clear): Prototype.
459         * varray.c (varray_clear): New.
460         * cselib.c (reg_values_old): New.
461         (used_regs_old): New.
462         (cselib_init): Use cached varrays if available to avoid
463         generating large amounts of garbage.
464         (cselib_finish): Don't throw away old varrays.
466         * final.c (insn_addresses_): Move out of ifdef.
468         * varray.c (uses_ggc): Make more varray kinds GCable.
469         * varray.h (union varray_data_tag): Let gengtype see
470         fields 'generic' and 'te'.
471         * reg-stack.c: Include gt-reg-stack.h, ggc.h.
472         (stack_regs_mentioned_data): Move out of ifdef; mark with gengtype.
473         (reg_to_stack): Don't call VARRAY_FREE.
474         * insn-addr.h (INSN_ADDRESSES_FREE): Don't use VARRAY_FREE.
475         (insn_addresses_): Use gengtype to mark.
476         * gengtype.c (write_gc_structure_fields): Handle arrays of generic
477         pointers; handle generic pointers in unused union fields.
478         (get_output_file_with_visibility): Include cselib.h,
479         insn-addr.h in gtype-desc.c.
480         * function.c (prologue): Use gengtype to mark.
481         (epilogue): Likewise.
482         (sibcall_epilogue): Likewise.
483         * dependence.c: Include gt-dependence.h, ggc.h.
484         (struct def_use): Use gengtype to mark.
485         (struct loop): Likewise.
486         (struct induction): Likewise.
487         (struct dependence): Likewise.
488         (def_use_chain): Likewise.
489         (dep_chain): Likewise.
490         (loop_chain): Likewise.
491         (induction_chain): Likewise.
492         (init_dependence_analysis): Don't free anything, just clear pointers.
493         (build_def_use): Use GGC to allocate def_use.
494         (add_loop): Use GGC to allocate loop.
495         (find_induction_variable): Use GGC to allocate induction.
496         (check_node_dependence): Use GGC to allocate induction, dependence.
497         (dump_node_dependence): Don't free varrays.
498         (end_dependence_analysis): Likewise.
499         * cselib.h (struct cselib_val_struct): Use gengtype to mark.
500         (struct elt_loc_list): Likewise.
501         (struct elt_list): Likewise.
502         * cselib.c: Don't include obstack.h.
503         (hash_table): Use gengtype to mark.
504         (reg_values): Use gengtype to mark.
505         (used_regs): Use gengtype to mark.
506         (cselib_obstack): Delete.
507         (cselib_startobj): Delete.
508         (empty_vals): Mark as deletable.
509         (empty_elt_lists): Mark as deletable.
510         (empty_elt_loc_lists): Mark as deletable.
511         (new_elt_list): Use GGC to allocate struct elt_list.
512         (new_elt_loc_list): Use GGC to allocate struct elt_loc_list.
513         (clear_table): Don't delete obstack; don't unnecessarily clear
514         deletable variables.
515         (new_cselib_val): Use GGC to allocate struct cselib_val.
516         (cselib_init): Don't set up obstacks.  Use GGC to allocate
517         hash table.
518         (cselib_finish): Just clear variables, don't free anything.
519         * Makefile.in (cselib.o): Remove dependency on $(OBSTACK_H).
520         (reg-stack.o): Add dependency on gt-reg-stack.h, $(GGC_H).
521         (dependence.o): Add dependency on gt-dependence.h, $(GGC_H).
522         (GTFILES): Add insn-addr.h, cselib.h, dependence.c, reg-stack.c.
523         (gt-reg-stack.h): New rule.
524         (gt-dependence.h): New rule.
525         (gtype-desc.o): Add cselib.h, insn-addr.h.
527         * varray.c: Use only necessary headers.
528         (element_size): New.
529         (uses_ggc): New.
530         (varray_init): Take type, not size.  Use GGC if appropriate.
531         (varray_grow): Update for change to struct varray_head_tag.
532         Use GGC if appropriate.
533         * varray.h (struct const_equiv_data): Use gengtype.
534         (enum varray_data_enum): New.
535         (union varray_data_tag): Use gengtype.
536         (struct varray_head_tag): Use gengtype.  Replace size field with
537         enum varray_data_enum.
538         (varray_init): Update prototype.
539         (VARRAY_SCHED_INIT): Delete.
540         (VARRAY_*_INIT): Update for change to varray_init.
541         (VARRAY_SCHED): Delete.
542         (VARRAY_PUSH_SCHED): Delete.
543         (VARRAY_TOP_SCHED): Delete.
544         * tree.h: Update for change to length specifier.
545         * tree-inline.c (optimize_inline_calls): Don't use VARRAY_FREE.
546         (clone_body): Likewise.
547         * ssa.h (ssa_definition): Use gengtype to mark.
548         * ssa.c (convert_from_ssa): Don't use VARRAY_FREE.
549         * ssa-dce.c (ssa_eliminate_dead_code): Don't use VARRAY_FREE.
550         * rtl.h (struct rtvec_def): Update for change to length specifier.
551         * integrate.c (expand_inline_function): Don't use VARRAY_FREE.
552         (struct initial_value_struct): Update for change to length specifier.
553         * ggc.h (ggc_add_rtx_varray_root): Delete prototype.
554         (ggc_add_tree_varray_root): Delete prototype.
555         (ggc_mark_rtx_varray): Delete prototype.
556         (ggc_mark_tree_varray): Delete prototype.
557         * ggc-common.c (ggc_add_rtx_varray_root): Delete.
558         (ggc_add_tree_varray_root): Delete.
559         (ggc_mark_rtx_varray): Delete.
560         (ggc_mark_tree_varray): Delete.
561         (ggc_mark_rtx_varray_ptr): Delete.
562         (ggc_mark_tree_varray_ptr): Delete.
563         * gengtype.h (enum typekind): Remove TYPE_VARRAY.
564         (create_varray): Delete prototype.
565         * gengtype.c (varrays): Delete.
566         (create_varray): Delete.
567         (adjust_field_type): Detect array of string pointers.
568         (process_gc_options): Remove code to handle varray_type option.
569         (set_gc_used_type): Remove TYPE_VARRAY case.
570         (output_escaped_param): New.
571         (write_gc_structure_fields): Use output_escaped_param on all
572         parameters.  Handle 'skip' with 'use_param' option.  Handle
573         arrays of strings.  Remove TYPE_VARRAY handling.
574         (write_gc_roots): Use boolean to detect 'length' option.
575         * gengtype-yacc.y (VARRAY_TYPE): Delete token.
576         (struct_fields): Call adjust_field_type on array fields.
577         (type): Remove VARRAY_TYPE case.
578         (type_option): Likewise.
579         * gengtype-lex.l: Don't consider varray_type a keyword.
580         * function.h: Update for change to length specifier.
581         (free_eh_status): Delete prototype.
582         * function.c (free_after_compilation): Don't call free_eh_status.
583         (reorder_blocks): Don't use VARRAY_FREE.
584         * except.c (struct eh_status): Update for change to length specifier.
585         remove varray_type specifier.
586         (free_eh_status): Delete.
587         * dwarf2out.c: Include gt-dwarf2out.h.
588         (used_rtx_varray): Use gengtype to mark, move
589         outside ifdefs.
590         (incomplete_types): Likewise.
591         (decl_scope_table): Likewise.
592         (dwarf2out_init): Don't call ggc_add_tree_varray_root.
593         * cfglayout.c (scope_to_insns_finalize): Don't use VARRAY_FREE.
594         * c-tree.h (struct lang_type): Update for change to length specifier.
595         * c-parse.in (yylexstring): Don't use VARRAY_FREE.
596         * c-objc-common.c: Include gt-c-objc-common.h.
597         (deferred_fns): Mark for gengtype.
598         (c_objc_common_init): Don't call ggc_add_tree_varray_root.
599         (expand_deferred_fns): Just set deferred_fns to 0 to free it.
600         * Makefile.in (c-objc-common.o): Add gt-c-objc-common.h.
601         (gtype-desc.o): Update dependencies.
602         (dwarf2out.o): Add gt-dwarf2out.h.
603         (varray.o): Update dependencies.
604         (GTFILES): Add varray.h, ssa.h, dwarf2out.c, c-objc-common.c.
605         (gt-c-objc-common.h): New rule.
606         (gt-dwarf2out.h): New rule.
607         * objc/objc-act.c (build_objc_string_object): Don't use VARRAY_FREE.
609         * doc/gty.texi (GTY Options): Correct spelling.
610         (GGC Roots): Likewise.
611         * Makefile.in (TEXI_CPP_FILES): New.
612         (TEXI_GCC_FILES): New.
613         (TEXI_GCCINT_FILES): New.
614         (TEXI_CPPINT_FILES): New.
615         ($(docdir)/cpp.info): Use new macros.
616         ($(docdir)/gcc.info): Likewise.
617         ($(docdir)/gccint.info): Likewise.
618         ($(docdir)/cppinternals.info): Likewise.
619         (cpp.dvi): Likewise.
620         (gcc.dvi): Likewise.
621         (gccint.dvi): Likewise.
622         (cppinternals.dvi): Likewise.
624         * Makefile.in ($(docdir)/gccint.info): Depend on gty.texi.
625         * doc/gccint.texi (Top): Include gty.texi.
626         * doc/gty.texi: New file.
628         * bitmap.c: Include ggc.h, gt-bitmap.h.
629         (bitmap_ggc_free): New.
630         (bitmap_elem_to_freelist): New.
631         (bitmap_element_free): Use bitmap_elem_to_freelist.
632         (bitmap_element_allocate): Allow use of GGC.
633         (bitmap_clear): Use bitmap_elem_to_freelist.
634         (bitmap_copy): Update for change to bitmap_element_allocate.
635         (bitmap_set_bit): Likewise.
636         (bitmap_operation): Update for changes elsewhere.
637         (bitmap_initialize): Allow to create bitmaps that will use GGC.
638         * bitmap.h (struct bitmap_element_def): Use gengtype.
639         (struct bitmap_head_def): Likewise.  Also add 'using_obstack' field.
640         (bitmap_initialize): Add extra parameter.
641         (BITMAP_OBSTACK_ALLOC): Update for change to bitmap_initialize.
642         (BITMAP_ALLOCA): Delete.
643         (BITMAP_XMALLOC): Update for change to bitmap_initialize.
644         (BITMAP_GGC_ALLOC): New.
645         * Makefile.in (gtype-desc.o): Add bitmap.h.
646         (bitmap.o): Add gt-bitmap.h, $(GGC_H).
647         (GTFILES): Add bitmap.c.
648         (gt-bitmap.h): New rule.
649         ($(HOST_PREFIX_1)bitmap.o): Add gt-bitmap.h.
650         * basic-block.h: Update for changes to bitmap_initialize.
651         * except.c (exception_handler_label_map): Move into...
652         (struct eh_status): Here.
653         (struct eh_region): Make 'aka' GCable.
654         (free_eh_status): Don't need to specially handle
655         exception_handler_label_map.
656         (add_ehl_entry): Update for changes to exception_handler_label_map.
657         (find_exception_handler_labels): Likewise.
658         (remove_exception_handler_label): Likewise.
659         (maybe_remove_eh_handler): Likewise.
660         (for_each_eh_label): Likewise.
661         (remove_eh_handler): Allocate 'aka' using GGC.
662         * gengtype.c (get_output_file_with_visibility): Add bitmap.h
663         to list of includes.
665         * gengtype.c (write_gc_marker_routine_for_structure): Name
666         the routines 'gt_ggc_mx_*' instead of 'gt_ggc_m_*'.
667         (write_gc_types): Arrange for the tests with NULL to be inlined.
668         (write_gc_roots): Update uses of procedure pointers.
669         * ggc-common.c (gt_ggc_mx_rtx_def): Rename from gt_ggc_m_rtx_def.
671         * Makefile.in (explow.o): Add dependency on gt-explow.h.
672         (sdbout.o): Add dependency on gt-sdbout.h.
674         * emit-rtl.c (const_int_htab): Use gengtype to clear unused entries.
675         (mem_attrs_htab): Likewise.
676         (init_emit_once): Don't call ggc_add_deletable_htab.
677         * fold-const.c (size_htab): Use gengtype to clear unused entries.
678         (size_int_type_wide): Don't call ggc_add_deletable_htab.
679         * gengtype.c (finish_root_table): Add LASTNAME and TNAME
680         parameters, use them, change callers.
681         (write_gc_root): Add IF_MARKED parameter, use it, change callers.
682         (write_gc_roots): Handle 'if_marked' option.
683         (main): Don't need to call set_gc_used_type any more.
684         * ggc.h (ggc_htab_marked_p): Delete.
685         (ggc_htab_mark): Delete.
686         (struct ggc_cache_tab): New.
687         (gt_ggc_cache_rtab): New declaration.
688         * ggc-common.c (struct d_htab_root): Delete.
689         (d_htab_roots): Delete.
690         (ggc_add_deletable_htab): Delete.
691         (ggc_htab_delete): Handle new htab-deleting mechanism.
692         (ggc_mark_roots): Use new htab-deleting mechanism.
693         * tree.c (type_hash_table): Use gengtype to clear unused entries.
694         Make static.
695         (init_obstacks): Don't call ggc_add_deletable_htab.
697         * objc/objc-act.h (struct hashed_attribute): Use gengtype.
698         (struct hashed_entry): Likewise.
699         (nst_method_hash_list): Likewise.
700         (cls_method_hash_list): Likewise.
701         (HASH_ALLOC_LIST_SIZE): Delete.
702         (ATTR_ALLOC_LIST_SIZE): Delete.
703         * objc/objc-act.c (hash_init): Use ggc to allocate
704         nst_method_hash_list, cls_method_hash_list.
705         (hash_enter): Use ggc to allocate; allocate one entry at a time.
706         (hash_add_attr): Likewise.
707         (ggc_mark_hash_table): Delete.
708         (objc_act_parse_init): Delete.
709         (objc_init): Delete reference to objc_act_parse_init.
710         * tlink.c: Replace hash.h with hashtab.h.  Explicitly include
711         obstack.h.  Replace references to 'struct hash_table' with htab_t.
712         (struct symbol_hash_entry): Replace hash header with key field.
713         (struct file_hash_entry): Replace hash header with key field.
714         (struct demangled_hash_entry): Replace hash header with key field.
715         (hash_string_eq): New.
716         (hash_string_hash): New.
717         (symbol_hash_newfunc): Delete.
718         (symbol_hash_lookup): Modify to use htab_t.
719         (file_hash_newfunc): Delete.
720         (file_hash_lookup): Modify to use htab_t.
721         (demangled_hash_newfunc): Delete.
722         (demangled_hash_lookup): Modify to use htab_t.
723         (tlink_init): Modify to use htab_t.
724         * hash.h: Delete.
725         * hash.c: Delete.
726         * ggc.h: Delete forward structure declarations.
727         Delete prototypes for deleted functions.
728         * ggc-common.c: Don't include hash.h.
729         (ggc_add_tree_hash_table_root): Delete.
730         (ggc_mark_tree_hash_table_entry): Delete.
731         (ggc_mark_tree_hash_table): Delete.
732         (ggc_mark_tree_hash_table_ptr): Delete.
733         * gengtype.c (write_gc_structure_fields): Allow param_is option.
734         (write_gc_marker_routine_for_structure): Use visibility of
735         the parameter if there is one.
736         * function.c: Replace hash.h with hashtab.h.  Replace references
737         to 'struct hash_table *' with htab_t.
738         (struct insns_for_mem_entry): Include a plain key.
739         (fixup_var_refs_insns_with_hash): Update to use htab_t.
740         (insns_for_mem_newfunc): Delete.
741         (insns_for_mem_hash): Update to use htab_t.
742         (insns_for_mem_comp): Likewise.
743         (insns_for_mem_walk): Likewise.
744         * c-lang.c: Include ggc.h.
745         * Makefile.in (OBJS): Remove hash.o.
746         (c-lang.o): Add GGC_H.
747         (COLLECT2_OBJS): Remove hash.o.
748         (tlink.o): Remove hash.h, add HASHTAB_H and OBSTACK_H.
749         (ggc-common.o): Remove hash.h.
750         (function.o): Remove hash.h, add HASHTAB_H.
751         (genautomata.o): Remove hash.h, add HASHTAB_H.
753         * varasm.c (mark_const_str_htab_1): Delete.
754         (mark_const_str_htab): Delete.
755         (const_str_htab_del): Delete.
756         (const_str_htab): Use gengtype to mark.
757         (init_varasm_once): Use gengtype to mark hashtables.  Use GC to
758         allocate them.
759         * tree.c (mark_tree_hashtable_entry): Delete.
760         (mark_tree_hashtable): Delete.
761         * tree.h (mark_tree_hashtable): Delete prototype.
762         * ggc.h (ggc_test_and_set_mark): Treat (void *)1 like NULL.
763         (ggc_mark): Likewise.
764         (ggc_calloc): New.
765         (htab_create_ggc): New.
766         * ggc-common.c (ggc_calloc): New.
767         * gengtype.h (enum typekind): Add TYPE_PARAM_STRUCT.
768         (struct type): Add param_struct structure.
769         * gengtype.c (param_structs): New.
770         (adjust_field_type): Handle param_is option.
771         (set_gc_used_type): Handle TYPE_PARAM_STRUCT.
772         (get_output_file_with_visibility): Include hashtab.h in gtype-desc.c.
773         (write_gc_structure_fields): Add new PARAM parameter.  Update
774         callers.  Handle use_param option.  Handle TYPE_PARAM_STRUCT.
775         (write_gc_marker_routine_for_structure): Add new PARAM parameter.
776         Use it to generate function name.  Update callers.
777         (write_gc_types): Add new PARAM_STRUCTS parameter.  Update callers.
778         Process them.
779         (write_gc_roots): Handle TYPE_PARAM_STRUCT.  Allow param_is
780         option.
781         (main): Define PTR as pointer-to-scalar.  Don't specially
782         mark deferred_string or ehl_map_entry.
783         * gengtype-yacc.y (PARAM_IS): Add new token.
784         (externstatic): Use adjust_field_type.
785         (type_option): Add PARAM_IS.
786         * gengtype-lex.l: Add rule for typedef of function pointers.
787         Add rule for PARAM_IS.
788         (IWORD): Add size_t.
789         * except.c (exception_handler_label_map): Use gengtype to mark.
790         (type_to_runtime_map): Likewise.
791         (mark_ehl_map_entry): Delete.
792         (mark_ehl_map): Delete.
793         (init_eh): Use gengtype for roots; use GC to allocate hash tables.
794         (t2r_mark_1): Delete.
795         (t2r_mark): Delete.
796         * Makefile.in (gtype-desc.o): Correct dependencies.
797         (GTFILES): Add hashtab.h.
798         (genautomata.o): Actually uses hashtab.h.
800         * Makefile.in (stringpool.o): Add $(GGC_H).
801         (dwarf2asm.o): Likewise.
802         (GTFILES): Add hashtable.h.
803         * c-common.h (struct c_common_identifier): Use gengtype.
804         * c-decl.h (c_mark_tree): Delete.
805         * c-lang.c (LANG_HOOKS_MARK_TREE): Delete.
806         * c-tree.h (struct lang_identifier): Use gengtype.
807         (union lang_tree_node): New.
808         (c_mark_tree): Delete prototype.
809         * dwarf2out.c [!DWARF2_DEBUGGING_INFO]: Define dummy
810         dwarf2_debug_hooks.
811         * gengtype-lex.l (IWORD): Allow 'bool'.
812         (ptr_alias): Match.
813         * gengtype-yacc.y (ALIAS): New token.
814         (type_option): New rule.
815         (option): Use type_option.
816         * gengtype.c (process_gc_options): New.
817         (set_gc_used_type): Use it.
818         (write_gc_structure_fields): Add 'bitmap' parameter, change callers.
819         Add new variable 't' to hold the type of the field being processed.
820         Add more error checking.  Use UNION_P when looking at 'desc' option.
821         Handle language-specific structures containing other
822         language-specific structures.
823         (write_gc_types): Handle 'ptr_alias' option.
824         (main): Don't need to specially output lang_type, lang_decl, lang_id2.
825         * ggc-common.c (ggc_pending_trees): Delete.
826         (ggc_mark_roots): Don't manipulate ggc_pending_trees.
827         (ggc_mark_trees): Delete.
828         (gt_ggc_m_tree_node): Delete.
829         * ggc.h (ggc_pending_trees): Delete.
830         (ggc_mark_tree): Make alias of gt_ggc_m_tree_node.
831         * hashtable.h (ht_identifier): Use gengtype.
832         * langhooks-def.h (LANG_HOOKS_MARK_TREE): Delete.
833         * langhooks.h (struct lang_hooks): Delete mark_tree.
834         * sdbout.c [! SDB_DEBUGGING_INFO]: Define dummy sdb_debug_hooks
835         anyway.
836         * system.h: Poison LANG_HOOKS_MARK_TREE.
837         * tree.c (tree_node_structure): New.
838         * tree.h (struct tree_common): Use gengtype.
839         (struct tree_int_cst): Likewise.
840         (struct tree_real_cst): Likewise.
841         (struct tree_string): Likewise.
842         (struct tree_complex): Likewise.
843         (struct tree_vector): Likewise.
844         (struct tree_identifier): Likewise.
845         (struct tree_list): Likewise.
846         (struct tree_vec): Likewise.
847         (struct tree_exp): Likewise.
848         (struct tree_block): Likewise.
849         (struct tree_type): Likewise.
850         (struct tree_decl): Likewise.
851         (enum tree_structure_enum): New.
852         (union tree_node): Use gengtype, with an alias.
853         (tree_node_structure): Prototype.
854         * objc/objc-lang.c (LANG_HOOKS_MARK_TREE): Delete.
856         Merge to tag pch-merge-20020430.  The LANG_HOOKS_FUNCTION_MARK
857         macro was deleted.  The LANG_HOOKS_FUNCTION_FREE macro was renamed
858         to LANG_HOOKS_FUNCTION_FINAL.
859         * Makefile.in (GTFILES): Add bitmap.h.
860         * except.c (struct eh_region): Mark field 'aka' to be skipped.
862         * config/alpha/alpha.c [TARGET_ABI_UNICOSMK]
863         (alpha_init_machine_status): Give proper type.
864         * Makefile.in (c-lang.o): Depend on gtype-c.h.
865         (optabs.o): Depend on gt-optabs.h.
866         (GTFILES): Add optabs.o.
867         (gt-optabs.h): Add rule.
868         * optabs.c: Include gt-optabs.h.
870         * gengtype.c (set_gc_used_type): Correct some errors in last change.
871         (write_gc_structure_fields): If a field which should be NULL is
872         not, abort.
873         * c-pragma.c: Move struct align_stack and variable alignment_stack
874         out from the ifdef.
876         * config/xtensa/t-xtensa: Add dependencies for gt-xtensa.h.
877         * config/xtensa/xtensa.c: Include gt-cris.h.
878         (struct machine_function): Use gengtype to mark.
879         * config/mmix/mmix.h (struct machine_function): Use gengtype
880         to mark.
881         * config/cris/t-cris: Add dependencies for gt-cris.h.
882         * config/cris/cris.c: Include gt-cris.h.
883         (struct machine_function): Use gengtype to mark.
884         * config/rs6000/rs6000.h (struct machine_function): Use gengtype
885         to mark.
886         * doc/tm.texi (Per-Function Data): Delete references to
887         mark_machine_status.
888         * config/ia64/ia64.c (ia64_override_options): Don't set
889         mark_machine_status.
890         * config/i386/i386.c (override_options): Likewise.
891         * config/d30v/d30v.c (d30v_init_expanders): Likewise.
892         * config/arm/arm.c (arm_init_expanders): Likewise.
893         * config/alpha/alpha.c (override_options): Likewise.
894         * gengtype.h (enum gc_used_enum): Add GC_MAYBE_POINTED_TO.
895         * gengtype.c (set_gc_used_type): Handle 'maybe_null' option.
896         (write_gc_structure_fields): Don't handle 'really' option.
897         Handle 'maybe_null' option.
898         (write_gc_types): Handle 'maybe_null' option.
899         * function.h (struct function): Don't use "really".
900         (mark_machine_status): Delete declaration.
901         (mark_lang_status): Delete declaration.
902         (gt_ggc_mr_machine_function): Delete prototype.
903         (gt_ggc_mr_language_function): Delete prototype.
904         * function.c (mark_machine_status): Delete.
905         (mark_lang_status): Delete.
906         (gt_ggc_mr_machine_function): Delete.
907         (gt_ggc_mr_language_function): Delete.
908         * c-tree.h (mark_c_function_context): Delete prototype.
909         * c-objc-common.c (c_objc_common_init): Don't set mark_lang_status.
910         * c-decl.c (struct language_function): Rename from struct
911         c_language_function.  Update uses.  Use gengtype to mark.
912         (mark_c_function_context): Delete.
913         * c-common.h (struct c_language_function): Rename from struct
914         language_function.
915         (mark_stmt_tree): Delete prototype.
916         (c_mark_lang_decl): Delete prototype.
917         (mark_c_language_function): Delete prototype.
918         * c-common.c (mark_stmt_tree): Delete.
919         (c_mark_lang_decl): Delete.
920         (mark_c_language_function): Delete.
922         * gengtype.h (enum typekind): Add TYPE_LANG_STRUCT.
923         (lang_bitmap): New typedef.  Use where appropriate.
924         (struct type): Add gc_used field, lang_struct field.
925         (UNION_P): New macro.
926         (new_structure): New prototype.
927         (find_structure): Remove 'pos' parameter.  Change all callers.
928         * gengtype-lex.l: Update for changes to find_structure.
929         * gengtype-yacc.y (typedef_struct): Use new_structure.
930         (yacc_ids): Suppress warning.
931         (type): Use new_structure.
932         * gengtype.c (string_type): Update for changes to struct type.
933         (find_structure): Just find a structure, don't worry about
934         creating one.
935         (new_structure): New.
936         (note_yacc_type): Use new_structure.
937         (set_gc_used_type): New.
938         (set_gc_used): New.
939         (write_gc_structure_fields): Allow for pointers to TYPE_LANG_STRUCT.
940         (write_gc_types): Handle TYPE_LANG_STRUCT.
941         (write_gc_marker_routine_for_structure): New.
942         (main): Call set_gc_used.  Add some calls to set_gc_used_type
943         for places where GCC doesn't use gengtype properly yet.
944         * ggc.h (gt_ggc_m_rtx_def): Don't prototype.
945         (gt_ggc_m_tree_node): Likewise.
947         * varasm.c (copy_constant): Call expand_constant if we hit
948         something we can't recognise.
950         * ggc-common.c (ggc_mark_rtvec_children): Delete.
951         (ggc_mark_rtx_children): Use generic name for ggc_mark_rtvec.
952         (lang_mark_false_label_stack): Delete.
953         * rtl.h (struct rtvec_def): Use gengtype to mark.
954         * ggc.h (ggc_mark_rtvec): Delete.
955         (gt_ggc_m_rtvec_def): Delete.
956         (ggc_mark_nonnull_tree): Delete.
957         (ggc_mark_rtvec_children): Delete prototype.
958         (lang_mark_false_label_stack): Delete declaration.
960         * gengtype.h (note_yacc_type): Add prototype.
961         * gengtype.c (note_yacc_type): New function.
962         * gengtype-lex.l: Add lexer support for yacc files.
963         * gengtype-yacc.y (start): Extract union from yacc files.
964         (yacc_union): New rule.
965         (yacc_typematch): New rule.
966         (yacc_ids): New rule.
967         (enum_items): Tweak for efficiency.
968         (optionseq): Likewise.
970         * c-common.h (struct language_function): Use gengtype.
971         (struct c_lang_decl): Likewise.
972         * c-tree.h (struct lang_decl): Likewise.
973         (struct lang_type): Likewise.
974         * c-decl.c (lang_mark_tree): Use generated marker routines to mark
975         tree language substructures.
977         * stringpool.c (mark_ident): Replace ggc_mark_nonnull_tree with
978         ggc_mark_tree.
979         * dwarf2asm.c (mark_indirect_pool_entry): Likewise.
981         * varasm.c (struct rtx_const): Remove 'skip' tags for scalar arrays.
983         * stmt.c (struct nesting): Add discriminator.  Use gengtype to
984         mark. Remove 'data.block.cleanup_ptr' field.
985         (struct stmt_status): Use usual technique to mark struct nesting.
986         (gt_ggc_mr_nesting_cond): Delete.
987         (gt_ggc_mr_nesting_loop): Delete.
988         (gt_ggc_mr_nesting_block): Delete.
989         (gt_ggc_mr_nesting_case_stmt): Delete.
990         (expand_start_cond): Set discriminator.
991         (expand_start_loop): Likewise.
992         (expand_start_null_loop): Likewise.
993         (expand_start_bindings_and_block): Set discriminator.  Don't set
994         deleted fields.
995         (expand_decl_cleanup): Replace 'cleanup_ptr' with
996         &thisblock->data.block.cleanups.
997         (expand_start_case): Set discriminator.
998         (expand_start_case_dummy): Set discriminator.
1000         * ggc-callbacks.c: Remove.
1002         * gengtype.h (struct type): Add 'u.s.bitmap' field.
1003         (find_structure): Add 'pos' parameter.
1004         * gengtype-lex.l: Update callers to find_structure.
1005         * gengtype-yacc.y: Likewise.
1006         * gengtype.c (find_structure): Allow for structures to be defined
1007         in multiple language backends.
1008         (get_output_file_with_visibility): Include debug.h in gtype-desc.c.
1009         (counter): Rename to gc_counter.
1010         (write_gc_structure_fields): Fail when writing out fields for
1011         an incomplete structure.  Ignore arrays of scalars.  Handle
1012         'tree_vec' special.
1013         (write_gc_types): Reset counter for each procedure written.
1015         * stmt.c (add_case_node): Use GGC to allocate struct case_node.
1016         (free_case_nodes): Delete.
1017         (expand_end_case_type): Delete call to free_case_nodes.
1019         * Makefile.in (cselib.o): Include gt-<filename>.h.
1020         (gcse.o): Likewise.
1021         (profile.o): Likewise.
1022         (alias.o): Likewise.
1023         (GTFILES): Add alias.c, cselib.c, gcse.c, profile.c, and
1024         alphabetize backend files.
1025         (gt-alias.h, gt-cselib.h, gt-gcse.h, gt-profile.h): New rules.
1026         * alias.c: Use gengtype for roots.
1027         * c-common.h (struct stmt_tree_s): Use gengtype.
1028         * c-decl.c: Use gengtype for roots.
1029         * cselib.c: Use gengtype for roots.
1030         * expr.c: Use gengtype for roots.
1031         * fold-const.c: Use gengtype for roots.
1032         * gcse.c: Use gengtype for roots.
1033         * gengtype-lex.l: Handle typedefs of function types.
1034         Allow for empty array bounds.
1035         Allow processing to stop on initialisers.
1036         * gengtype-yacc.y (externstatic): Stop processing on initialisers.
1037         (semiequal): New rule.
1038         * gengtype.c (create_file): Tidy output files.
1039         (get_output_file_with_visibility): Fix paren warning.  Fix bug
1040         involving multiple input files mapping to one output file.
1041         (write_gc_structure_fields): Skip arrays of scalars.
1042         (write_gc_types): Tidy output files.
1043         (write_gc_root): New function.
1044         (write_gc_roots): Fix bugs, add support for roots that are
1045         structures.
1046         * ggc-common.c (ggc_mark_rtx_ptr): Delete.
1047         (ggc_mark_tree_ptr): Delete.
1048         (ggc_add_rtx_root): Delete.
1049         (ggc_add_tree_root): Delete.
1050         (ggc_del_root): Delete.
1051         * integrate.c (get_func_hard_reg_initial_val): Use ggc_alloc to
1052         allocate struct initial_value_struct.
1053         * profile.c: Use gengtype for roots.
1054         * sdbout.c: Use gengtype for roots.
1055         * varasm.c (mark_weak_decls): Delete unused prototype.
1056         (mark_const_hash_entry): Delete unused function.
1057         * config/darwin-protos.h: Use gengtype for roots.
1058         (machopic_add_gc_roots): Delete.
1059         * config/arm/arm.c: Use gengtype for roots.
1060         * config/arm/arm.h: Use gengtype for roots.
1061         * config/c4x/c4x-protos.h: Use gengtype for roots.
1062         * config/c4x/c4x.c (c4x_add_gc_roots): Delete.
1063         * config/d30v/d30v-protos.h: Use gengtype for roots.
1064         * config/d30v/d30v.c (d30v_add_gc_roots): Delete.
1065         * config/dsp16xx/dsp16xx.c (override_options): Use gengtype for roots.
1066         * config/dsp16xx/dsp16xx.h: Use gengtype for roots.
1067         * config/ia64/ia64-protos.h: Use gengtype for roots.
1068         * config/ia64/ia64.c (ia64_add_gc_roots): Delete.
1069         * config/m68hc11/m68hc11-protos.h: Use gengtype for roots.
1070         * config/m68hc11/m68hc11.c (z_reg): Make global.
1071         (z_reg_qi): Make global.
1072         (m68hc11_add_gc_roots): Delete.
1073         * config/mcore/mcore-protos.h: Use gengtype for roots.
1074         * config/mcore/mcore.c (mcore_add_gc_roots): Delete.
1075         * config/mips/mips.c (mips_add_gc_roots): Delete.
1076         * config/mips/mips.h: Use gengtype for roots.
1077         * config/mmix/mmix.c (override_options): Use gengtype for roots.
1078         * config/mmix/mmix.h: Use gengtype for roots.
1079         * config/mn10200/mn10200.c (asm_file_start): Use gengtype for roots.
1080         * config/mn10200/mn10200.h: Use gengtype for roots.
1081         * config/pa/pa.c: Use gengtype for roots, marking.
1082         (struct deferred_plabel): Use GGC, gengtype.
1083         (pa_add_gc_roots): Delete.
1084         (mark_deferred_plabels): Delete.
1085         * config/pj/pj-protos.h: Use gengtype for roots.
1086         * config/pj/pj.h (OVERRIDE_OPTIONS): Don't define.
1087         * config/rs6000/rs6000.c: Use gengtype for roots.  Don't call
1088         machopic_add_gc_roots.
1089         * config/rs6000/rs6000.h: Use gengtype for roots.
1090         * config/rs6000/t-darwin (darwin.o): Add dependency on gt-darwin.h.
1091         (gt-darwin.h): Add rule.
1092         * config/sh/sh.c: Use gengtype for roots.
1093         * config/sh/t-sh ($(out_object_file)): Add dependency on gt-sh.h.
1094         (gt-sh.h): Add rule.
1095         * config/sparc/sparc.c: Use gengtype for roots.
1096         (sparc_add_gc_roots): Delete.
1097         (struct ultrasparc_pipeline_state): Use GGC, gengtype.
1098         (mark_ultrasparc_pipeline_state): Delete.
1099         * config/sparc/sparc.h: Use gengtype for roots.
1101         * Makefile.in (c-parse.o): Update dependencies.
1102         (c-common.o): Likewise.
1103         (GTFILES): Add c-common.h, c-tree.h, c-common.c, c-parse.in.
1104         Add dependencies for the files they generate.
1105         * c-common.c: Replace ggc_add_* uses with GTY annotations.
1106         * c-common.h: Likewise.
1107         * c-decl.c: Likewise.
1108         (gt_ggc_mp_binding_level): Delete.
1109         * c-lang.c: Include gtype-c.h.
1110         * c-parse.in: Replace ggc_add_* uses with GTY annotations.  Include
1111         gt-c-parse.h.
1112         * c-pragma.h: Replace ggc_add_* uses with GTY annotations.
1113         (gt_ggc_mp_align_stack): Delete.
1114         * c-tree.h: Replace ggc_add_* uses with GTY annotations.
1115         * function.c: Replace ggc_add_* uses with GTY annotations.
1116         (gt_ggc_mp_function): Delete.
1117         * function.h: Replace ggc_add_* uses with GTY annotations.
1118         * gengtype.c (lang_names): New.
1119         (NUM_BASE_FILES): New.
1120         (open_base_files): Create language base files.
1121         (startswith): New.
1122         (get_file_basename): New.
1123         (get_base_file_bitmap): New.
1124         (get_output_file_with_visibility): Rename from get_output_file.
1125         Add more mappings for various C/Objc filenames.
1126         (finish_root_table): New.
1127         (write_gc_roots): Handle dependencies and scoping properly.
1128         * gengtype.h: Add prototypes for new functions.
1129         * ggc-common.c (struct deletable_root): Delete.
1130         (deletables): Delete.
1131         (ggc_add_deletable_root): Delete.
1132         (ggc_mark_roots): No need to deal with deleted functionality.
1133         * ggc.h (ggc_add_deletable_root): Delete prototype.
1134         * objc/Make-lang.in (objc-act.o): Add gtype-objc.h dependency.
1135         (gtype-objc.h): Add rule to create.
1136         * objc/config-lang.in (gtfiles): New.
1137         * objc/objc-act.c: Allocate imp_list using GGC.  Replace uses of
1138         ggc_add_* with GTY markers.  Include gtype-objc.h.
1139         (ggc_mark_imp_list): Delete.
1140         * objc/objc-act.h: Replace uses of ggc_add_* with GTY markers.
1141         * objc/objc-lang.c: Random Whitespace Change.
1143         * except.h (exception_handler_labels): Delete.
1144         (get_exception_handler_labels): New.
1145         * except.c (exception_handler_labels): Delete.
1146         (struct eh_status): Add exception_handler_labels field.
1147         (doing_eh): Don't add exception_handler_labels as root.
1148         (free_eh_status): Don't need to free exception_handler_labels.
1149         (get_exception_handler_labels): New.
1150         (find_exception_handler_labels): Update for move of
1151         exception_handler_labels.
1152         (remove_exception_handler_label): Likewise.
1153         * cfgrtl.c (can_delete_label_p): Use get_exception_handler_labels.
1154         * jump.c (rebuild_jump_labels): Likewise.
1155         * loop.c (find_and_verify_loops): Likewise.
1156         * sched-rgn.c (is_cfg_nonregular): Likewise.
1158         * gengtype.c (write_gc_structure_fields): Handle variable-length
1159         TYPE_ARRAYs.
1161         * varasm.c (struct weak_syms): Use GGC, gengtype.
1162         (mark_weak_decls): Delete.
1163         (weak_decls): Likewise.
1164         (add_weak): Likewise.
1165         (remove_from_pending_weak_list): Likewise.
1166         (init_varasm_once): Likewise.
1168         * Makefile.in (gtype-desc.o): Add libfuncs.h dependency.
1169         (GTFILES): Add tree.h, libfuncs.h, emit-rtl.c, explow.c,
1170         stor-layout.c, regclass.c, and lists.c.
1171         Add dependencies of gt-emit-rtl.h gt-explow.h gt-stor-layout.h
1172         gt-regclass.h and gt-lists.h on s-gtype.
1173         * emit-rtl.c: Use gengtype for roots.  Include gt-emit-rtl.h.
1174         * except.c: Use gengtype for roots.
1175         * explow.c: Use gengtype for roots.  Include gt-explow.h.
1176         * expr.h (init_stor_layout_once): Delete prototype.
1177         * function.c: Use gengtype for roots.
1178         * gengtype-lex.l: Add ENT_EXTERNSTATIC lexing.
1179         * gengtype-yacc.y (start): Can also be an externstatic.
1180         (externstatic): New production.
1181         (struct_fields): Correct array bounds inversion for 2-d arrays.
1182         * gengtype.c (variables): New variable.
1183         (note_variable): New function.
1184         (get_output_file): Include libfuncs.h into gtype-desc.c.
1185         (get_output_file_name): New function.
1186         (write_gc_structure_fields): Suppress warnings.
1187         (write_gc_types): Make static.
1188         (put_mangled_filename): New function.
1189         (write_gc_roots): New function.
1190         (main): Call write_gc_roots.
1191         * gengtype.h (note_variable): Prototype.
1192         (get_output_file_name): Prototype.
1193         (write_gc_types): Delete prototype.
1194         * ggc.h: Clean up unnecessary structure predefinitions.
1195         (struct ggc_root_tab): Define.
1196         (gt_ggc_m_rtx_def): Make function, not macro.
1197         (gt_ggc_m_tree_node): Likewise.
1198         * libfuncs.h: Use gengtype for roots.
1199         * lists.c: Use gengtype for roots.  Include gt-lists.h.
1200         (init_EXPR_INSN_LIST_cache): Delete.
1201         * optabs.c: Use gengtype for roots.
1202         (gt_ggc_mp_optab): Delete.
1203         * optabs.h: Use gengtype for roots.
1204         * regclass.c: Use gengtype for roots.  Include gt-regclass.h.
1205         * rtl.h: Use gengtype for roots.
1206         (init_EXPR_INSN_LIST_cache): Delete prototype.
1207         * stor-layout.c: Use gengtype for roots.
1208         Include gt-stor-layout.h.
1209         (init_stor_layout_once): Delete.
1210         * toplev.c: Use gengtype for roots.  Delete calls to deleted
1211         routines.
1212         * tree.c: Use gengtype for roots.
1213         * tree.h: Use gengtype for roots.
1214         * varasm.c: Use gengtype for roots.
1216         * Makefile.in (GTFILES): Add @all_gtfiles@.
1217         * configure: Regenerate.
1218         * configure.in: Construct all_gtfiles from the gtfiles definitions
1219         in config-lang.in.
1220         * gengtype-yacc.y (type): Warn about duplicate structure names.
1221         * gengtype.c (get_output_file): Handle .c files in language
1222         subdirectories.
1224         * Makefile.in (GTFILES): Run gengtype on all the config files
1225         and on the target .c file.
1226         * except.c (mark_eh_region): Delete.
1227         (init_eh_for_function): Use GGC on struct eh_status.
1228         (mark_eh_status): Delete.
1229         (free_eh_status): Use GGC.
1230         (expand_eh_region_start): Use GGC to
1231         (collect_eh_region_array): Allocate last_region_number using GGC.
1232         (duplicate_eh_region_1): Use GGC to allocate struct eh_region.
1233         (remove_eh_handler): Let GGC free struct eh_region.
1234         (add_call_site): Use GGC to reallocate call_site_record array.
1235         * function.c (init_machine_status): Update calling sequence.
1236         (mark_machine_status): Likewise.
1237         (mark_lang_status): Likewise.
1238         (prepare_function_start): Update init_machine_status call.
1239         (mark_function_status): Delete.
1240         (maybe_mark_struct_function): Delete.
1241         (ggc_mark_struct_function): Delete.
1242         (gt_ggc_mp_function): New.
1243         (gt_ggc_mr_machine_function): New.
1244         (gt_ggc_mr_language_function): New.
1245         (init_function_once): Use canonical names.
1246         * function.h (struct function): Use gengtype.
1247         (init_machine_status): Return the structure.
1248         (mark_machine_status): Take a 'void *'.
1249         (mark_lang_status): Likewise.
1250         * ggc-common.c (ggc_mark_trees): Use canonical name for
1251         ggc_mark_struct_function.
1252         * tree.h (ggc_mark_struct_function): Delete prototype.
1253         * config/alpha/alpha.c (alpha_mark_machine_status): Delete.
1254         (alpha_init_machine_status): Likewise.
1255         (override_options): Use canonical name for alpha_mark_machine_status.
1256         * config/alpha/unicosmk.h (struct machine_function): Use gengtype.
1257         * config/arm/arm.h (struct machine_function): Use gengtype.
1258         * config/arm/arm.c (arm_mark_machine_status): Delete.
1259         (arm_init_machine_status): Update calling sequence.
1260         (arm_init_expanders): Use canonical name for arm_mark_machine_status.
1261         * config/cris/cris.c (cris_init_machine_status): Update
1262         calling sequence.
1263         * config/d30v/d30v.h (struct machine_function): Use gengtype.
1264         * config/d30v/d30v.c (d30v_init_machine_status): Update
1265         calling sequence.
1266         (d30v_mark_machine_status): Delete.
1267         * config/i386/i386.c: Include gt-i386.h.
1268         (struct machine_function): Use gengtype.
1269         (ix86_init_machine_status): Update calling sequence.
1270         (ix86_mark_machine_status): Delete.
1271         (override_options): Use canonical namke for ix86_mark_machine_status.
1272         * config/ia64/ia64.h (struct machine_function): Use gengtype.
1273         * config/ia64/ia64.c (ia64_init_machine_status): Update calling
1274         sequence.
1275         (ia64_mark_machine_status): Delete.
1276         (ia64_override_options): Use canonical name for
1277         ia64_mark_machine_status.
1278         * config/mmix/mmix.c (mmix_init_machine_status): Update calling
1279         sequence.
1280         * config/rs6000/rs6000.c (rs6000_init_machine_status): Likewise.
1281         * config/xtensa/xtensa.c (xtensa_init_machine_status): Likewise.
1282         * gengtype.c (get_output_file): Fix warning.
1283         (main): Add prototype to suppress warning.
1284         * tree.c: Remove tree_hash_mark prototype.
1286         * tree.h (init_stmt): Delete prototype.
1287         * toplev.c (lang_independent_init): Don't call init_stmt.
1288         * stmt.c (ALLOC_NESTING): Use GGC for 'struct nesting'.
1289         (stmt_obstack): Delete.
1290         (POPSTACK): No need to free 'struct nesting'.
1291         (gt_ggc_mr_nesting_cond): Use canonical names.
1292         (gt_ggc_mr_nesting_loop): Use canonical names.
1293         (gt_ggc_mr_nesting_block): Use canonical names.
1294         (gt_ggc_mr_nesting_case_stmt): Use canonical names.
1295         (mark_stmt_status): Delete.
1296         (init_stmt): Delete.
1297         (clear_last_expr): Clear both last_expr_type and last_expr_value.
1298         Use it everywhere that last_expr_type was cleared.
1299         * lists.c (init_EXPR_INSN_LIST_cache): Use ggc_add_deletable_root.
1300         (zap_lists): Delete.
1301         * ggc.h (ggc_add_deletable_root): Prototype.
1302         (mark_stmt_status): Remove prototype.
1303         * ggc-common.c (ggc_add_deletable_root): New.
1304         (ggc_mark_roots): Handle deletable roots.
1305         * function.c (ggc_mark_struct_function): Use canonical name
1306         for mark_stmt_status.
1307         * emit-rtl.c (free_sequence_stack): New.
1308         (start_sequence): Use a freelist for sequences.
1309         (end_sequence): Likewise.
1310         (init_emit_once): Add free_sequence_stack as a deleteable root.
1311         * c-pragma.c Include gt-c-pragma.h.
1312         (struct align_stack): Use gengtype.
1313         (push_alignment): Use GGC for struct align_stack.
1314         (mark_align_stack): Delete.
1315         (gt_ggc_mp_align_stack): New.
1316         (init_pragma): Use canonical name for mark_align_stack.
1317         * c-decl.c: Include gt-c-decl.h.
1318         (struct binding_level): Use gengtype.
1319         (make_binding_level): Use GGC; handle the freelist here.
1320         (pop_binding_level): New.
1321         (pushlevel): Move code into make_binding_level.
1322         (push_label_level): Likewise.
1323         (poplevel): Move code into pop_binding_level.
1324         (pop_label_level): Likewise.
1325         (mark_binding_level): Delete.
1326         (gt_ggc_mp_binding_level): New.
1327         (c_init_decl_processing): Use canonical name for mark_binding_level.
1328         Add free_binding_level as deletable root.
1329         (mark_c_function_context): Use canonical name for mark_binding_level.
1330         * Makefile.in (c-decl.o): Add gt-c-decl.h.
1331         (c-pragma.o): Add gt-c-pragma.h.
1332         (GTFILES): Add c-decl.c and c-pragma.c.
1333         (gt-c-decl.h, gt-c-pragma.h): Create using gengtype.
1335         * tree.c (struct type_hash): Use gengtype.
1336         (init_obstacks): Use canonical name for type_hash_mark.
1337         (type_hash_mark): Delete.
1338         Include gt-tree.h.
1339         * rtl.h (struct mem_attrs): Use gengtype.
1340         * optabs.h (struct optab): Use gengtype.
1341         * optabs.c (expand_binop): Squish signed/unsigned warning.
1342         (mark_optab): Make local, use canonical name, use autogenerated
1343         marker procedure.
1344         (init_optabs): Use canonical name for mark_optab.
1345         (new_optab): Use GGC to allocate optabs.
1346         * ggc.h: Delete mark_optab prototype.
1347         * ggc-common.c (ggc_mark_rtx_children): Use canonical name for
1348         mem_attrs marker procedure.
1349         * gengtype.c (get_output_file): Include headers in gtype-desc.c
1350         explicitly rather than deducing them from file names.
1351         (write_gc_structure_fields): Handle arrays of structures.
1352         (main): Return non-zero exit code if errors occur during output.
1353         * emit-rtl.c (mem_attrs_mark): Delete.
1354         (init_emit_once): Use canonical name for mem_attrs marker procedure.
1355         * Makefile.in (gtype-desc.o): Explicitly name dependencies.
1356         (tree.o): Depend on gt-tree.h.
1357         (GTFILES): Add rtl.h, optabs.h, tree.c.
1358         (gt-tree.h): Add it to s-gtype rule.
1360         * .cvsignore: Ignore gengtype flex/bison generated files.
1361         * Makefile.in (GGC_H): Add gtype-desc.h.
1362         (OBJS): Add gtype-desc.o.
1363         (GEN): Add gengtype.
1364         (STAGESTUFF): Add gengtype.
1365         (varasm.o): Add gt-varasm.h.
1366         (stmt.o): Add gt-stmt.h.
1367         (except.o): Add gt-except.h.
1368         (integrate.o): Add gt-integrate.h.
1369         (GTFILES): New.
1370         Add new rules for new files.
1371         * configure: Regenerate.
1372         * configure.in: Correct defaults.h paths.
1373         * emit-rtl.c (mark_sequence_stack): Delete.
1374         (mark_emit_status): Delete.
1375         (start_sequence): Allocate sequence structures using GGC.
1376         (end_sequence): Allocate sequence structures using GGC.
1377         * except.c: Use gengtype for various structures.  Include
1378         gt-except.h.
1379         * expr.c (mark_expr_status): Delete.
1380         * function.c: Use gengtype for various structures.  Include
1381         gt-function.h.
1382         (mark_function_status): Use standard gt_ggc names for marker functions.
1383         (ggc_mark_struct_function): Likewise.
1384         * function.h: Use gengtype for various structures.
1385         * gengtype-lex.l: New file.
1386         * gengtype-yacc.y: New file.
1387         * gengtype.c: New file.
1388         * gengtype.h: New file.
1389         * ggc.h: Include gtype-desc.h.  Alias some marker procedures to
1390         the standard names.  Remove some now-unnecessary prototypes.
1391         * integrate.c: Use gengtype for various structures.  Include
1392         gt-integrate.h.
1393         (mark_hard_reg_initial_vals): Delete.
1394         * integrate.h (mark_hard_reg_initial_vals): Delete.
1395         * stmt.c: Use gengtype for various structures.  Include
1396         gt-stmt.h.
1397         (mark_case_node): Delete.
1398         (mark_goto_fixup): Delete.
1399         (mark_stmt_status): Use standard gt_ggc names for marker functions.
1400         * system.h: Define GTY to empty.   In flex/bison files,
1401         don't poison malloc or realloc, instead just define them to
1402         xmalloc and xrealloc.
1403         * varasm.c: Use gengtype for various structures.  Include
1404         gt-varasm.h.  Use standard gt_ggc names for marker functions.
1405         (mark_pool_constant): Delete.
1406         (mark_varasm_status): Delete.
1407         (decode_rtx_const): #if 0 out non-typesafe hack.
1409         * function.h (free_lang_status): Mark as obsolete.
1410         * function.c (free_lang_status): Mark as obsolete.
1411         * c-decl.c (push_c_function_context): Use GC to allocate and free
1412         struct language_function.
1413         (pop_c_function_context): Likewise.
1414         * c-common.c (mark_c_language_function): Mark struct
1415         language_function.
1417         * doc/tm.texi (Per-Function Data): Don't document free_machine_status.
1418         Document that the machine_function structures must be allocated
1419         using GC.  Update mark_machine_status documentation.
1420         * function.h: Don't declare free_machine_status.
1421         * function.c (free_machine_status): Don't define.
1422         (free_after_compilation): Don't call free_machine_status.
1423         (ggc_mark_struct_function): Mark f->machine.  Call
1424         mark_machine_status only on non-NULL pointers.
1425         * system.h: Poison free_machine_status.
1426         * config/xtensa/xtensa.c (xtensa_init_machine_status): Use GC on
1427         struct machine_function.
1428         (xtensa_free_machine_status): Delete.
1429         (override_options): Don't set free_machine_status.
1430         * config/rs6000/rs6000.c (rs6000_override_options): Don't set
1431         free_machine_status.
1432         (rs6000_init_machine_status): Use GC on struct machine_function.
1433         (rs6000_free_machine_status): Delete.
1434         * config/ia64/ia64.c (ia64_init_machine_status): Use GC on struct
1435         machine_function.
1436         (ia64_mark_machine_status): Likewise.
1437         (ia64_free_machine_status): Delete.
1438         (ia64_override_options): Don't set free_machine_status.
1439         * config/i386/i386.c (override_options): Don't set
1440         free_machine_status.
1441         (ix86_init_machine_status): Use GC on struct machine_function.
1442         (ix86_mark_machine_status): Likewise.
1443         (ix86_free_machine_status): Delete.
1444         * config/d30v/d30v.c: (d30v_init_machine_status): Use GC on struct
1445         machine_function.
1446         (d30v_mark_machine_status): Likewise.
1447         (d30v_free_machine_status): Delete.
1448         (d30v_init_expanders): Don't set free_machine_status.
1449         * config/arm/arm.c (arm_mark_machine_status): Use GC on struct
1450         machine_function.
1451         (arm_init_machine_status): Likewise.
1452         (arm_free_machine_status): Delete.
1453         (arm_init_expanders): Don't set free_machine_status.
1454         * config/alpha/alpha.c (override_options): Don't set
1455         free_machine_status.
1456         (alpha_init_machine_status): Use GC on struct machine_function.
1457         (alpha_mark_machine_status): Likewise.
1458         (alpha_free_machine_status): Delete.
1460         * varasm.c (compare_constant): Fix typo.
1462         * varasm.c: Don't include obstack.h.
1463         (struct varasm_status): x_const_rtx_hash_table is a hash of rtxes.
1464         (struct rtx_const): Give substructures names, improve formatting.
1465         (struct constant_descriptor): Delete.
1466         (struct constant_descriptor_tree): New, based on constant_descriptor.
1467         (const_hash_table): Is a hash table of trees.
1468         (mark_const_hash_entry): Is used for hashes of trees.  Mark
1469         constant_descriptor_tree structure.
1470         (mark_const_str_htab_1): Mark deferred_string structure.
1471         (compare_constant): Rewrite to compare trees.
1472         (compare_constant_1): Delete.
1473         (record_constant): Delete.
1474         (record_constant_1): Delete.
1475         (output_constant_def): Use struct constant_descriptor_tree.
1476         Don't duplicate trees twice.
1477         (struct constant_descriptor_rtx): New.
1478         (struct pool_constant): Used for rtx constants.
1479         (init_varasm_status): Update for change to struct varasm_status.
1480         (mark_varasm_status): Likewise.
1481         (free_varasm_status): Delete.
1482         (compare_constant_rtx): Rewrite to handle constant_descriptor_rtx.
1483         (record_constant_rtx): Likewise.
1484         (mem_for_const_double): Update to use struct constant_descriptor_rtx.
1485         (force_const_mem): Likewise.
1486         * Makefile.in (varasm.o): Doesn't depend on obstack.h.
1487         * function.c (free_after_compilation): Don't use free_varasm_status.
1488         * function.h: Don't prototype free_varasm_status.
1490         * ggc-common.c (ggc_realloc): Handle X being NULL.
1492         * ggc-common.c (ggc_realloc): New function.
1493         * ggc.h: Prototype it.
1494         * emit-rtl.c (free_emit_status): Delete.
1495         (init_emit): Allocate emit subarrays using GC.
1496         (gen_reg_rtx): Reallocate subarrays using GC.
1497         (init_emit): Use GC to allocate 'struct emit_status' and its
1498         subarrays.
1499         (mark_emit_status): Mark structure and its subarrays.
1500         * stmt.c (free_stmt_status): Delete.
1501         * expr.c (free_expr_status): Delete.
1502         * function.h: Remove prototypes for deleted functions.
1503         * function.c (free_after_compilation): Don't use deleted functions.
1504         Don't call free() on x_parm_reg_stack_loc.
1505         (free_after_parsing): Don't use free_stmt_status.
1506         (assign_parms): Use GC to allocate and resize x_parm_reg_stack_loc.
1507         (mark_function_status): Mark x_parm_reg_stack_loc.
1509         * varasm.c (init_varasm_status): Use GC to allocate
1510         'struct varasm_status' and its fields x_const_rtx_hash_table
1511         and x_const_rtx_sym_hash_table.
1512         (mark_varasm_status): Mark them.
1513         (free_varasm_status): Use GC to free them.
1514         * expr.c (init_expr): Use GC to allocate 'struct expr_status'.
1515         (mark_expr_status): Mark the structure itself.
1516         (free_expr_status): Use GC to free the structure.
1517         * stmt.c (free_stmt_status): Use GC to free 'struct stmt_status'.
1518         (mark_stmt_status): Mark the 'struct stmt_status' itself.
1519         (init_stmt_for_function): Allocate the structure for GC.
1521         * dwarf2out.c (lookup_type_die): Use TYPE_SYMTAB_DIE.
1522         (equate_type_number_to_die): Likewise.
1523         * tree.h (TYPE_SYMTAB_DIE): New macro.
1524         (struct die_struct): Predeclare.
1525         (struct tree_type): Add field symtab.die.   Add a tag
1526         to the union type of field symtab.
1528         * varray.h (VARRAY_RTVEC_INIT): A varray of rtvec contains
1529         'struct rtvec_def *', not 'struct rtvec_def'.
1531         * function.h (original_arg_vector): Make a real rtvec.
1532         * function.c (ggc_mark_struct_function): Adjust.
1533         * integrate.c (expand_inline_function): Adjust.
1535 2002-06-04  Jason Thorpe  <thorpej@wasabisystems.com>
1537         * config.gcc (sh5-*-netbsd*, sh5l*-*-netbsd*)
1538         (sh64-*-netbsd*, sh64l*-*-netbsd*): New targets.
1539         * config/sh/netbsd-elf.h (TARGET_VERSION_ENDIAN)
1540         (TARGET_VERSION_CPU): Define according to the
1541         default target.
1542         (TARGET_VERSION): Use TARGET_VERSION_ENDIAN and
1543         TARGET_VERSION_CPU.
1544         (TARGET_OS_CPP_BUILTINS): Use NETBSD_OS_CPP_BUILTINS_LP64
1545         if TARGET_SHMEDIA64.
1546         (LINK_DEFAULT_CPU_EMUL): Define according to the
1547         default target.
1548         (SUBTARGET_LINK_EMUL_SUFFIX): Define.
1549         (SUBTARGET_LINK_SPEC): Define.
1550         (LINK_SPEC): Use SH_LINK_SPEC.
1551         (ASM_SPEC): Remove.
1552         (TARGET_DEFAULT): Use TARGET_CPU_DEFAULT.
1553         (FUNCTION_PROFILER): Add cases for TARGET_SHMEDIA32
1554         and TARGET_SHMEDIA64 which abort, for now.
1555         * config/sh/t-netbsd-sh5: New file.
1556         * config/sh/t-netbsd-sh5-32: New file.
1557         * config/sh/t-netbsd-sh5-64: New file.
1559 2002-06-03  Falk Hueffner  <falk.hueffner@student.uni-tuebingen.de>
1560             Richard Henderson  <rth@redhat.com>
1562         * config/alpha/alpha.c (reg_or_const_int_operand): New.
1563         (some_operand, input_operand): Accept CONST_VECTOR.
1564         (alpha_extra_constraint): Add 'W'.
1565         (alpha_expand_zap_mask): New.
1566         (alpha_expand_builtin_vector_binop): New.
1567         (enum alpha_builtin): New.
1568         (zero_arg_builtins, one_arg_builtins, two_arg_builtins): New.
1569         (alpha_init_builtins, alpha_expand_builtin): New.
1570         (TARGET_INIT_BUILTINS, TARGET_EXPAND_BUILTIN): New.
1571         * config/alpha/alpha.h (VECTOR_MODE_SUPPORTED_P): New.
1572         (PREDICATE_CODES): Update.
1573         * config/alpha/alpha-protos.h: Update.
1574         * config/alpha/alpha.md (UNSPEC_CMPBGE, UNSPEC_ZAP,
1575         UNSPEC_AMASK, UNSPEC_IMPLVER, UNSPEC_PERR, UNSPECV_RPCC): New.
1576         (movv8qi, movv8qi_fix, movv8qi_nofix): New.
1577         (movv4hi, movv4hi_fix, movv4hi_nofix): New.
1578         (movv2si, movv2si_fix, movv2si_nofix): New.
1579         (uminv8qi3, sminv8qi3, uminv4hi3, sminv4hi3): New.
1580         (umaxv8qi3, smaxv8qi3, umaxv4hi3, smaxv4hi3): New.
1581         (builtin_cmpbge, builtin_extql, builtin_extqh, builtin_zap,
1582         builtin_zap_1, builtin_zapnot, builtin_zapnot_1, builtin_amask,
1583         builtin_implver, builtin_rpcc, builtin_minub8, builtin_minsb8,
1584         builtin_minuw4, builtin_minsw4, builtin_maxub8, builtin_maxsb8,
1585         builtin_maxuw4, builtin_maxsw4, builtin_perr, builtin_pklb,
1586         pklb, builtin_pkwb, pkwb, builtin_unpkbl, unpkbl,
1587         builtin_unpkbw, unpkbw): New.
1588         * doc/extend.texi (Alpha Built-in Functions): New.
1590 2002-06-03  Richard Henderson  <rth@redhat.com>
1592         * crtstuff.c (__EH_FRAME_BEGIN__): Conditionalize on
1593         USE_EH_FRAME_REGISTRY, not EH_FRAME_SECTION_NAME.
1595 2002-06-03  Richard Henderson  <rth@redhat.com>
1597         * config/alpha/alpha-protos.h: Eliminate unneeded ifdefs.
1599         * config/alpha/alpha.c (reg_or_0_operand): Use CONST0_RTX.
1600         (const0_operand): New.
1601         (reg_or_fp0_operand, fp0_operand): Remove.
1602         * config/alpha/alpha.h (PREDICATE_CODES): Update.
1603         * config/alpha/alpha-protos.h: Update.
1604         * config/alpha/alpha.md: Replace all uses of reg_or_fp0_operand
1605         and fp0_operand with reg_or_0_operand and const0_operand.
1607 2002-06-03  Dan Nicolaescu  <dann@godzilla.ics.uci.edu>
1609         * alias.c (nonoverlapping_memrefs_p): Fix off by one error.
1611 2002-06-03  Roger Sayle  <roger@eyesopen.com>
1613         * gcse.c (cprop_jump): Use single_set to get the pattern
1614         from the setcc argument.
1616 2002-06-03  Gabriel Dos Reis  <gdr@codesourcery.com>
1618         * diagnostic.h (diagnostic_count): Move from output_buffer to
1619         diagnostic_context.
1620         (diagnostic_kind_count): Adjust definition.
1622 Mon Jun  3 19:11:53 CEST 2002  Jan Hubicka  <jh@suse.cz>
1624         * except.c (except.c): Do not rebuild CFG.
1625         * toplev.c (rest_of_compilation): Recompute CFG after sibcall
1626         optimization.
1628 Mon Jun  3 11:53:01 CEST 2002  Jan Hubicka  <jh@suse.cz>
1630         * integrate.c (copy_insn_list): Properly pace the INSN_SCOPE copies.
1631         * toplev.c: Include cfglahout.h
1632         * Makefile.in (toplev.c): Add dependnecy.
1634 2002-06-03  Neil Booth  <neil@daikokuya.demon.co.uk>
1636         * config/i386/i386.h (TARGET_CPU_CPP_BUILTINS): New.
1637         (CPP_CPU32_SPEC, CPP_CPU64_SPEC): Kill.
1638         (CPP_CPUCOMMON_SPEC): Rename CPP_CPU_SPEC.
1640 2002-06-03  Jason Thorpe  <thorpej@wasabisystems.com>
1642         * config/ns32k/netbsd.h: Update copyright years.
1643         (TARGET_OS_CPP_BUILTINS): Define.
1644         (CPP_PREDEFINES): Remove.
1645         * config/ns32k/ns32k.h (CPP_PREDEFINES): Remove.
1646         (TARGET_CPU_CPP_BUILTINS): Define.
1648 2002-06-02  Kazu Hirata  <kazu@cs.umass.edu>
1650         * emit-rtl.c: Fix formatting.
1651         * errors.h: Likewise.
1652         * except.c: Likewise.
1653         * explow.c: Likewise.
1654         * expmed.c: Likewise.
1655         * expr.c: Likewise.
1656         * expr.h: Likewise.
1658 2002-06-02  Kazu Hirata  <kazu@cs.umass.edu>
1660         * config/h8300/elf.h: Fix formatting.
1661         * config/h8300/rtems.h: Likewise.
1663 2002-06-03  Jason Thorpe  <thorpej@wasabisystems.com>
1665         * config/rs6000/netbsd.h (DRAFT_V4_STRUCT_RET): Remove.
1667 2002-06-02  Tom Tromey  <tromey@redhat.com>
1669         * fixinc/fixincl.x: Rebuilt.
1670         * fixinc/inclhack.def (thread_keyword): Match `*__thread'.
1672 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1674 config/i370:
1675         * i370.h (TARGET_CPU_CPP_BUILTINS): Use.
1676         * linux.h: Use TARGET_OS_CPP_BUILTINS rather than CPP_PREDEFINES.
1677         * mvs.h: Similarly.
1678         * oe.h: Similarly.
1680 Mon Jun  3 00:18:20 CEST 2002  Jan Hubicka  <jh@suse.cz>
1682         * final.c (final):  Allow notes to not have computed addresses;
1683         kill no longer needed STACK_REGS ifdef.
1685 2002-06-02  Richard Henderson  <rth@redhat.com>
1687         * gcse.c (bypass_conditional_jumps): Fix typo last change.
1689 Sun Jun  2 23:02:11 CEST 2002  Jan Hubicka  <jh@suse.cz>
1691         * loop.c (emit_prefetch_instructions): Properly place the address
1692         computation.
1694 Sun Jun  2 22:56:48 CEST 2002  Jan Hubicka  <jh@suse.cz>
1696         * basic-block.h (basic_block_for_insn, BLOCK_FOR_INSN): Kill.
1697         (set_block_for_insn): Turn into macro.
1698         * cfgbuild.c (find_basic_block): Do not clear basic_block_for_insn.
1699         * cfglayout.c (insn_scopes): Kill.
1700         (scope_to_insns_initialize): Do not use insn_scopes.
1701         (scope_to_insns_finalize): Likewise.
1702         (duplicate_insn_chain): Likewise.
1703         (cfg_layout_initialize, cfg_layout_finalize): Do not turn scopes to notes.
1704         * cfgrtl.c (basic_block_for_insn): Kill.
1705         (delete_insn_and_edges, delete_insn_chain_and_edges): Simplify.
1706         (create_basic_block_structure): Use reorder_insns.
1707         (compute_bb_for_insn): Do not use basic_block_for_insn.
1708         (merge_blocks_nomove): Likewise.
1709         (update_bb_for_insn): Likewise.
1710         (verify_flow_info): Likewise.
1711         (set_block_for_insn): Kill.
1712         * combine.c (try_combine): Update gen_rtx_INSN call.
1713         * emit-rtl.c (gen_label_rtx): Update gen_rtx_CODE_LABEL call.
1714         (mark_insn_raw, make_jump_insn_raw, make_call_insn_raw): Clear
1715         scopes and BBs.
1716         (add_insn_after, add_insn_before, remove_insn, reorder_insns): Simplify.
1717         (emit_note_before, emit_note_after, emit_line_note_after, emit_note):
1718         Clear BB.
1719         (emit_insns_after): Simplify.
1720         (emit_copy_of_insn_after): Copy scope.
1721         * final.c (final_start_function): Lower scopes.
1722         * flow.c (check_function_return_warnings): Do not rely on deleted insn.
1723         * integrate.c (copy_insn_list): Cope scopes.
1724         * jump.c (duplicate_loop_exit_test): LIkewise; simplify.
1725         * loop.c (loop_optimize): Do not care block notes.
1726         * print-rtl.c (print_rtx): Print BB.
1727         * recog.c (apply_change_group): Simplify.
1728         * rtl.c (copy_rtx): Handle 'B'.
1729         * rtl.def (INSN, CALL_INSN, JUMP_INSN, NOTE): Add extra fields.
1730         * rtl.h (Field accessors): Update indexes.
1731         * sched-ebb.c (schedule_ebbs): Do not lower notes.
1732         * sched-rgn.c (schedule_insns): Likewise.
1733         * toplev.c (rest_of_compilation): Lower notes.
1734         * unroll.c (unroll_loop): Do not care scoping notes.
1735         (copy_loop_body): Copy scopes.
1737 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1739 config/h8300:
1740         * elf.h: Use TARGET_OS_CPP_BUILTINS rather than
1741         SUBTARGET_SPEC.
1742         * rtems.h: Similarly.
1743         * h8300.h (CPP_PREDEFINES, CPP_SPEC, SUBTARGET_CPP_SPEC,
1744         EXTRA_SPECS, SUBTARGET_EXTRA_SPECS): Remove.
1745         (TARGET_CPU_CPP_BUILTINS): Use.
1747 2002-06-02  Richard Henderson  <rth@redhat.com>
1749         * alias.c: Include target.h.
1750         (mark_constant_function): Use targetm.binds_local_p instead
1751         of checking TREE_PUBLIC ourselves.
1752         * Makefile.in (alias.o): Add TARGET_H.
1754 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1756         * c-lex.c: Update copyright and file description.
1758 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1760         * config/fr30/fr30.h: Update to new CPP macros.
1762 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1764         * config/dsp16xx/dsp16xx.h: Update to new CPP macros.
1766 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1767             Zack Weinberg <zack@codesourcery.com>
1769         * c-common.c (c_common_init): Override cpplib's default
1770         warn_long_long setting.
1771         * c-lex.c (lex_number): Replace with interpret_integer,
1772         interpret_float, narrowest_unsigned_type and
1773         narrowest_signed_type, taking advantage of the new
1774         cpplib functionality.
1775         * cpperror.c (_cpp_begin_message): If a warning is turned
1776         into an error, avoid printing "warning:".
1777         * cppexp.c (cpp_num_sign_extend): New.
1778         * cppinit.c: Update comment.
1779         * cpplib.h (cpp_num_sign_extend): New.
1780         * tree.h: Update comment.
1782 2002-06-02  Gabriel Dos Reis  <gdr@codesourcery.com>
1784         * diagnostic.h (struct diagnostic_context):  Add new member
1785         internal_error.
1786         (internal_error_function): Remove declaration.
1787         * diagnostic.c (internal_error_function): Remove definition..
1788         (internal_error): Adjust use.
1790 2002-06-02  Richard Henderson  <rth@redhat.com>
1792         * rtl.h (CC0_P): New.
1793         * gcse.c (cprop_jump): Use it with single_set.  Tweak dump text.
1794         (cprop_insn): Allow any mode register; use CC0_P.  CSE out single_set.
1795         (bypass_block): Save old dest block for dump text.
1796         (bypass_conditional_jumps): Allow any mode register; use CC0_P.
1797         Allow only true SET insns, not single_set.
1799 2002-06-02  Gabriel Dos Reis  <gdr@codesourcery.com>
1801         * diagnostic.c (diagnostic_finish): Rename to output_flush.
1802         (clear_disgnostic_info): Rename to output_clear_data.  Use false
1803         instead of 0 for boolean value.
1804         Adjust function call throughout.
1806 Sun Jun  2 19:15:27 CEST 2002  Jan Hubicka  <jh@suse.cz>
1808         * cfgrtl.c (commit_one_edge_insertion): Fix warning.
1809         * gcse.c (bypass_conditional_jumps): CSE out single_set call.
1811 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1813         * d30v.h (CPP_PREDEFINES): Replace with
1814         (TARGET_CPU_CPP_BUILTINS): New.
1816 2002-06-02  Roger Sayle  <roger@eyesopen.com>
1818         * config/alpha/alpha.h [ASM_OUTPUT_LABELREF]: Fix typo.
1820 Sun Jun  2 12:11:52 CEST 2002  Jan Hubicka  <jh@suse.cz>
1822         * gcse.c (bypass_conditional_jumps): Use single set to obtain set.
1824 2002-06-02  Richard Henderson  <rth@redhat.com>
1826         * rtlanal.c (volatile_refs_p): Not automatically true for CALL.
1828 2002-06-02  Marek Michalkiewicz  <marekm@amelek.gda.pl>
1830         Support for C++ constructors/destructors.
1831         * config/avr/avr.c (avr_output_function_epilogue): Jump to exit()
1832         instead of looping if main() returns.
1833         (asm_file_start): Output global symbols that cause .data and .bss
1834         initialization code to be linked in, unconditionally for now.
1835         (avr_asm_out_ctor, avr_asm_out_dtor): New functions.
1836         * config/avr/avr.h (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): New.
1837         (TARGET_ASM_CONSTRUCTOR, TARGET_ASM_DESTRUCTOR): New.
1838         (LIBSTDCXX): New.
1839         * config/avr/libgcc.S (_exit): Split in .fini9 and .fini0 sections.
1840         (__tablejump__): New.
1841         (__do_copy_data, __do_clear_bss): New.
1842         (__do_global_ctors, __do_global_dtors): New.
1843         * config/avr/t-avr (LIB1ASMFUNCS): Add _copy_data, _clear_bss,
1844         _ctors, _dtors.
1846 2002-06-02  Neil Booth  <neil@daikokuya.demon.co.uk>
1848         * c4x/c4x.h (TARGET_CPU_CPP_BUILTINS): New.
1849         (CPP_SPEC, CPP_PREDEFINES): Kill.
1850         * c4x/rtems.h (CPP_PREDEFINES): Kill.
1851         (TARGET_OS_CPP_BUILTINS): New.
1853 Sat Jun  1 23:29:51 CEST 2002  Jan Hubicka  <jh@suse.cz>
1855         * Makefile.in (tracer.o): New.
1856         * params.def (TRACER_*): New options.
1857         * rtl.h (tracer): Declare.
1858         * timevar.def (TV_TRACER): New.
1859         * toplev.c (dump_file_index): Add DFI_tracer.
1860         (dump_file_info): Add tracer.
1861         (flag_tracer): New.
1862         (lang_indepdenent_options): Add tracer.
1863         (rest_of_compilation): Call tracer.
1864         * tracer.c: New file.
1865         * invoke.texi (-ftracer): Document.
1866         (--param tracer-*): Document.
1868 2002-06-01  Daniel Berlin  <dberlin@dberlin.org>
1870         * tree-inline.c (expand_call_inline): Make the statement
1871         expression we generate have a COMPOUND_STMT.
1873 2002-06-01  Roger Sayle  <roger@eyesopen.com>
1875         * gcse.c (cprop_cc0_jump): Function deleted.
1876         (cprop_jump): Take an additional argument which is the possibly
1877         NULL cc setting insn immediately before the conditional jump.
1878         When a MODE_CC set is present, substitute it into the JUMP_INSN
1879         before attempting the constant propagation.
1880         (cprop_insn):  Recognize cc setters followed by conditional jumps
1881         as a special case.   Use cprop_jump instead of cprop_cc0_jump.
1882         (cprop_one_pass):  Call bypass_conditional_jumps if altering jumps.
1883         (find_bypass_set): New function based upon find_avail_set used by
1884         cprop, but finds constant expressions available at the end of
1885         basic blocks.
1886         (bypass_block): New function.  Given a basic block that begins
1887         with a conditional jump and multiple incoming edges, perform
1888         the jump bypass optimization.
1889         (bypass_conditional_jumps): New function.  Call bypass_block with
1890         each suitable basic block in the CFG using a simple single pass.
1892 2002-06-01  Roger Sayle  <roger@eyesopen.com>
1894         * tree.c (real_minus_onep): New function to test for -1.0.
1895         * fold-const.c (fold) [MULT_EXPR]:  Optimize -1.0*x into -x.
1897 2002-06-01  Roger Sayle  <roger@eyesopen.com>
1899         * fold-const.c (fold_truthop): Transform "a || b" into "(a|b) != 0"
1900         and "!p && !q" into "(p|q) == 0" under suitable conditions.
1902 2002-06-01  Andreas Jaeger  <aj@suse.de>
1904         * cppexp.c (cpp_classify_number): Cast precission to int for
1905         correct printf format.
1907 2002-06-01  Marek Michalkiewicz  <marekm@amelek.gda.pl>
1909         * config/avr/avr.c (avr_mcu_types): Remove devices that were once
1910         expected, but don't really exist: atmega83, atmega85, attiny10.
1911         * config/avr/avr.h (LINK_SPEC): Update to use the new avr[1-5] ld
1912         emulations for all devices.
1913         (CRT_BINUTILS_SPECS): Remove atmega83, atmega85, attiny10.
1914         * config/avr/t-avr (MULTILIB_MATCHES): Remove atmega83, atmega85.
1916 2002-06-01  Kazu Hirata  <kazu@cs.umass.edu>
1918         * config/h8300/h8300-protos.h: Add a prototype for
1919         h8300_shift_needs_scratch_p.
1920         * config/h8300/h8300.c (h8300_shift_needs_scratch_p): New.
1921         * config/h8300/h8300.h (OK_FOR_R): New.
1922         (OK_FOR_S): Likewise.
1923         (OK_FOR_T): Likewise.
1924         (EXTRA_CONSTRAINT): Call OK_FOR_R, OK_FOR_S, and OK_FOR_T.
1925         * config/h8300/h8300.md (anonymous shift patterns): Use
1926         constraints R, S, and T.
1928 Sat Jun  1 11:23:22 CEST 2002  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1930         * basic-block.h (struct basic_block_def): New field loop_father.
1931         (BB_VISITED): New flag.
1932         (struct loop): New field pred, removed field shared.
1933         (struct loops): New field parray.
1934         (LOOP_EXITS_DOMS): Removed.
1935         (flow_loop_tree_node_add, flow_loop_tree_node_remove,
1936         flow_loop_nested_p, flow_bb_inside_loop_p, get_loop_body,
1937         dfs_enumerate_from, loop_preheader_edge, loop_latch_edge,
1938         add_bb_to_loop, remove_bb_from_loops, find_common_loop,
1939         verify_loop_structure): Declare.
1940         * cfg.c (entry_exit_blocks): Initialize loop_father field.
1941         * cfganal.c (dfs_enumerate_from): New function.
1942         * cfgloop.c (HEAVY_EDGE_RATIO): New constant.
1943         (flow_loop_entry_edges_find, flow_loop_exit_edges_find,
1944         flow_loop_nodes_find, flow_loop_level_compute, flow_loop_nested_p,
1945         flow_loop_dump, flow_loops_dump, flow_loops_free,
1946         flow_loop_tree_node_add, flow_loop_level_compute,
1947         flow_loops_level_compute, flow_loop_scan, flow_loops_update,
1948         flow_loop_outside_edge_p): Modified for new infrastructure.
1949         (make_forwarder_block, canonicalize_loop_headers, glb_enum_p,
1950         redirect_edge_with_latch_update, flow_loop_free): New static functions.
1951         (flow_loop_tree_node_remove, flow_bb_inside_loop_p,
1952         get_loop_body, add_bb_to_loop, remove_bb_from_loops,
1953         find_common_loop, verify_loop_structure, loop_latch_edge,
1954         loop_preheader_edge): New functions.
1955         (flow_loops_cfg_dump): Do not show dominators, as this information
1956         does not remain up to date long.
1957         (flow_loops_find): Store results in new format.
1958         * predict.c (propagate_freq, estimate_probability,
1959         estimate_loops_at_level, estimate_bb_frequencies): Use new loop
1960         infrastructure.
1962 2002-06-01  Alan Lehotsky  <apl@alum.mit.edu>
1964         * except.c (nothrow_function_p): Walk epilogue delay list
1965         checking the insn, not the chain for potential throws.
1967 2002-05-31  Zack Weinberg  <zack@codesourcery.com>
1969         * Makefile.in (INSTALL_CPP, UNINSTALL_CPP): Remove.
1970         (install): Refer to install-cpp directly.
1971         (uninstall-cpp): Folded into uninstall rule.
1972         * configure.in: Delete all code relating to --disable-cpp.
1973         * configure: Regenerate.
1974         * config/t-install-cpp: Delete.
1976 2002-05-31  Richard Henderson  <rth@redhat.com>
1978         * configure.in (HAVE_AS_TLS): Add alpha tests.
1979         * configure: Rebuild.
1980         * config/alpha/alpha.c (TARGET_AS_TLS): New.
1981         (alpha_tls_size, alpha_tls_size_string): New.
1982         (overide_options): Set it.  Always install machine_status hooks.
1983         (input_operand): Accept got tls predicates.
1984         (local_symbol_p): Merge into ...
1985         (local_symbolic_operand): ... here.  Reject tls symbols.
1986         (global_symbolic_operand): Likewise.
1987         (tls_symbolic_operand_1, dtp16_symbolic_operand): New.
1988         (dtp32_symbolic_operand, gotdtp_symbolic_operand): New.
1989         (tp16_symbolic_operand, tp32_symbolic_operand): New.
1990         (gottp_symbolic_operand, tls_symbolic_operand_type): New.
1991         (alpha_encode_section_info): Handle TLS symbols.
1992         (alpha_strip_name_encoding): Likewise.
1993         (alpha_legitimate_address_p): Likewise.
1994         (alpha_legitimize_address): Likewise.
1995         (alpha_expand_mov): Early exit to avoid nop moves.
1996         (struct machine_function): Move from unicosmk.h.  Add some_ld_name.
1997         (alpha_init_machine_status, alpha_mark_machine_status,
1998         alpha_free_machine_status): Always define.
1999         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): New.
2000         (print_operand, print_operand_address): Add TLS relocs.
2001         * config/alpha/alpha.h (HAVE_AS_TLS): Default 0.
2002         (MASK_TLS_KERNEL, TARGET_TLS_KERNEL): New.
2003         (TARGET_SWITCHES): Add -mtls-kernel.
2004         (alpha_tls_size, alpha_tls_size_string): New.
2005         (TARGET_OPTIONS): Add -mtls-size=.
2006         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS,
2007         REGNO_REG_CLASS, REG_CLASS_FROM_LETTER): Add R0_REG.
2008         (ASM_OUTPUT_LABELREF): Skip %.
2009         (PRINT_OPERAND_PUNCT_VALID_P): Add &.
2010         (PREDICATE_CODES): Update.
2011         * config/alpha/alpha.md (UNSPEC_TLSGD_CALL, UNSPEC_TLSLDM_CALL,
2012         UNSPEC_TLSGD, UNSPEC_TLSLDM, UNSPEC_DTPREL, UNSPEC_TPREL,
2013         UNSPEC_TP, UNSPECV_SET_TP): New.
2014         (adddi_er_lo16_dtp, adddi_er_hi32_dtp, adddi_er_lo32_dtp,
2015         adddi_er_lo16_tp, adddi_er_hi32_tp, adddi_er_lo32_tp, load_tp,
2016         set_tp, movdi_er_tlsgd, movdi_er_tlsldm, movdi_er_gotdtp,
2017         movdi_er_gottp, call_value_osf_tlsgd, call_value_osf_tlsldm): New.
2018         (call_value_osf_2_er): Accept anything as op4.
2019         * config/alpha/alpha-protos.h: Update.
2020         * config/alpha/unicosmk.h (struct machine_function): Move to alpha.c.
2022 2002-05-31  Zack Weinberg  <zack@codesourcery.com>
2024         * cppinit.c (append_include_chain): Always pay attention to
2025         cxx_aware when setting new->sysp.  Remove ATTRIBUTE_UNUSED
2026         marker on argument.
2028 2002-05-31  Kazu Hirata  <kazu@cs.umass.edu>
2030         * target.h: Fix formatting.
2031         * timevar.h: Likewise.
2032         * tlink.c: Likewise.
2033         * toplev.c: Likewise.
2034         * toplev.h: Likewise.
2035         * tree.c: Likewise.
2036         * tree-dump.h: Likewise.
2037         * tree.h: Likewise.
2038         * tree-inline.h: Likewise.
2039         * unroll.c: Likewise.
2040         * unwind-dw2.c: Likewise.
2041         * unwind-dw2-fde.c: Likewise.
2042         * unwind-dw2-fde-glibc.c: Likewise.
2043         * unwind-dw2-fde.h: Likewise.
2044         * unwind.h: Likewise.
2045         * unwind-sjlj.c: Likewise.
2046         * varasm.c: Likewise.
2047         * varray.h: Likewise.
2048         * vmsdbg.h: Likewise.
2049         * vmsdbgout.c: Likewise.
2050         * xcoffout.h: Likewise.
2052 2002-05-31  Igor Shevlyakov <igor@microunity.com>
2054         * expr.c (compare_from_rtx): Generate comparison between op0 and op1
2055         rather than cc0 and 0 in a case when HAVE_cc0 is not defined.
2057 2002-05-31  Matthew Woodcraft  <mattheww@chiark.greenend.org.uk>
2059         * gcc.c (cpp_unique_options): Remove "-d" options.
2060         (cpp_debug_options): New spec string.
2061         (default_compilers): Use it.
2062         * objc/lang-specs.h: Likewise.
2064 2002-05-31  Nathanael Nerode  <neroden@twcny.rr.com>
2066         * gcc/Makefile.in: Replace HOST_PREFIX, HOST_PREFIX_1 with
2067         BUILD_PREFIX, BUILD_PREFIX_1, to correct nomenclature.
2068         * gcc/mklibgcc.in: Likewise.
2069         * gcc/config/arc/t-arc: Likewise.
2070         * gcc/configure.in: Likewise.
2071         * gcc/configure: Regenerate.
2073 2002-05-31  Stan Shebs  <shebs@apple.com>
2074             Turly O'Connor  <turly@apple.com>
2076         * c-decl.c (struct binding_level): Change int field n_incomplete
2077         to tree list incomplete_list.
2078         (clear_binding_level): Init field with NULL.
2079         (pushdecl): Add incomplete type to list.
2080         (mark_binding_level): Mark the incomplete list.
2081         (finish_struct): Scan the incomplete list for types instead
2082         of all decls in the current binding level.
2084 2002-05-31  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2086         * pa.c (output_millicode_call): Add missing '%' characters.
2087         (output_call): Likewise.
2089 2002-05-31  David Edelsohn  <edelsohn@gnu.org>
2091         * config/rs6000/xcoff.h (HOT_TEXT_SECTION_NAME): Define.
2092         (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Define.
2094 2002-05-31  Alan Lehotsky <apl@alum.mit.edu>
2096         * varasm.c (mark_constant_pool): Walk epilogue delay list
2097         checking the insn, not the chain for potential constants.
2099 Fri May 31 12:38:43 2002  J"orn Rennecke <joern.rennecke@superh.com>
2101         * config/sh/elf.h (ASM_SPEC): Use subtarget_endian_asm_spec.
2103 Fri May 31 13:50:19 CEST 2002  Jan Hubicka  <jh@suse.cz>
2105         * i386.c (classify_argument): Properly handle base types.
2107         * dwarf2out.c (expand_builin_init_dwarf_reg_sizes):
2108         Store first DWARF_FRAME_REGISTERS dwarf registers, not pseudo
2109         registers.
2111 Fri May 31 13:37:54 CEST 2002  Jan Hubicka  <jh@suse.cz>
2113         * gcse.c (gcse_emit_move_after): New.
2114         (pre_delete, hoist_store): Use it.
2116         * reload1.c (emit_input_reload_insns): Use constrain_operands
2117         instead of constraint_accepts_reg_p to verify optimization.
2118         (constraint_accepts_reg_p): Kill
2120         * reload1.c (reload_cse_delete_noop_set): Kill.
2121         (reload_cse_simplify): use delte_insn_and_edges.
2123 2002-05-31  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2125         * cfgloop.c (flow_loops_find): Initialize first and last fields
2126         correctly.
2128 2002-05-31  Neil Booth  <neil@daikokuya.demon.co.uk>
2130         * c-common.c (builtin_define_std): Correct logic.
2132 2002-05-31  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2134         * pa.c (output_millicode_call): Correct "be,l" insn for TARGET_PA_20.
2135         (output_call): Likewise.
2137 2002-05-31  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2139         * pa.c: Move output.h include after tree.h include.
2140         (pa_asm_output_mi_thunk): Constify identifier lab.
2142 2002-05-31  Jason Thorpe  <thorpej@wasabisystems.com>
2144         * config/ns32k/ns32k.h: Define named constants for the
2145         bits in target_flags and use them.
2146         * config/ns32k/netbsd.h (TARGET_DEFAULT): Use named constants.
2148 2002-05-30  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2150         * config.gcc (tm_file): Prefix pa/pa-700.h to tm_file list for PA1.0
2151         architecture and pa/pa-7100.h for PA1.1 architecture, respectively.
2152         * pa/pa.c (override_options): Use TARGET_SCHED_DEFAULT to select
2153         default scheduling model.
2154         * pa/pa.h (TARGET_SCHED_DEFAULT): Define if not defined to "8000".
2155         * pa/pa-700.h (TARGET_SCHED_DEFAULT): New file for "700" scheduling.
2156         * pa/pa-7100.h (TARGET_SCHED_DEFAULT): New file for "7100" scheduling.
2157         * doc/install.texi (hppa*-*-*): Document default scheduling.
2159 2002-05-30  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2161         * pa.c (following_call): Check TARGET_JUMP_IN_DELAY.
2163 2002-05-31  Jason Thorpe  <thorpej@wasabisystems.com>
2165         * config.gcc (ns32k-*-netbsd*): Set tm_file to
2166         "${tm_file} netbsd.h netbsd-aout.h ns32k/netbsd.h"
2167         * config/ns32k/netbsd.h: Don't include ns32k/ns32k.h,
2168         netbsd.h, or netbsd-aout.h.
2170 2002-05-31  Jason Thorpe  <thorpej@wasabisystems.com>
2172         * longlong.h (count_trailing_zeros): Add missing \, and clean up
2173         whitespace in __ns32000__ case.
2175 2002-05-31  Aldy Hernandez  <aldyh@redhat.com>
2177         * expr.c (expand_expr): Output partially zeroed out vectors with
2178         output_constant_def.
2180 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
2182         * config.gcc (sh[123456789l]*-*-*): Set cpu_type to sh.
2183         (sh-*-netbsdelf*)
2184         (shl*-*-netbsdelf*): New targets.
2185         * config/sh/netbsd-elf.h: New file.
2186         * config/sh/t-netbsd: New file.
2188 2002-05-30  Richard Henderson  <rth@redhat.com>
2189             Eric Botcazou  <ebotcazou@multimania.com>
2191         PR optimization/6822
2192         * config/i386/i386.c (ix86_expand_int_movcc): Don't cast INTVAL
2193         to unsigned int for op1 comparisons.  Use gen_int_mode.
2195 2002-05-30  Eric Botcazou  <ebotcazou@multimania.com>
2197         * expmed.c (const_mult_add_overflow_p): New.
2198         * expr.h: Declare it.
2199         * loop.c (maybe_eliminate_biv_1) [COMPARE]: Use it.
2200         Don't eliminate the biv if the giv has a constant multiplier and
2201         the rhs argument of the comparison does satisfy the predicate.
2202         Use expand_mult_add to compute the replacement constant.
2204 2002-05-30  Osku Salerma  <osku@iki.fi>
2206         * c-common.c (c_common_attribute_table): Add "may_alias" entry.
2207         (c_common_get_alias_set): Handle it.
2208         * doc/extend.texi: Document it.
2210 2002-05-30  Richard Henderson  <rth@redhat.com>
2212         * defaults.h (TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER): Kill.
2213         * toplev.c (process_options): Don't check it.
2214         * doc/tm.texi: Don't document it.
2215         * config/i386/linux.h (SUBTARGET_FRAME_POINTER_REQUIRED): New.
2216         (TARGET_ALLOWS_PROFILING_WITHOUT_FRAME_POINTER): Kill.
2217         * config/i386/i386.c (ix86_frame_pointer_required): Suppress leaf
2218         frame pointer optimization if current_function_profile.
2220 2002-05-30  Kazu Hirata  <kazu@cs.umass.edu>
2222         * langhooks.c: Fix formatting.
2223         * langhooks.h: Likewise.
2224         * lcm.c: Likewise.
2225         * libgcc2.c: Likewise.
2226         * lists.c: Likewise.
2227         * local-alloc.c: Likewise.
2228         * loop.c: Likewise.
2229         * loop.h: Likewise.
2231 2002-05-30  Marc Espie <espie@openbsd.org>
2233         * config.gcc (sparc64-*-openbsd*): New.
2234         * config/sparc/openbsd1-64.h: New.
2235         * config/sparc/openbsd64.h: New.
2237 2002-05-30  Jeff Law <law@redhat.com>
2239         * flow.c (propagate_one_insn): Revise yesterday's patch.  Delete
2240         a dead insn with a REG_RETVAL note when the entire libcall is not
2241         dead and remove the associated REG_LIBCALL note at the same time.
2243 Thu May 30 19:54:30 2002  J"orn Rennecke <joern.rennecke@superh.com>
2245         * lcm.c (output.h): #include.
2246         (compute_earliest): Remove hack to treat renumbered EXIT_BLOCK
2247         as an ordinary block.
2248         (optimize_mode_switching): Don't pretend that the exit block is
2249         an ordinary block, or handle sucessors of entry block specially.
2250         Instead, split edges from entry block and to exit block, and
2251         put a computing definition on the thus gained post-entry-block,
2252         and a need on the pre-exit-block.
2254 Thu May 30 20:28:01 CEST 2002  Jan Hubicka  <jh@suse.cz>
2256         * gengenrtl.c (type_from_format, accessor_from_format): Support 'B'.
2257         * rtl.texi: Document 'B'
2259 2002-05-30  Jason Thorpe  <thorpej@wasabisystems.com>
2261         * config/m68k/netbsd-elf.h (LONG_DOUBLE_TYPE_SIZE): Compute
2262         at run-time.
2263         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): Set to 96 if not __mc68010__.
2265 2002-05-30  Aldy Hernandez  <aldyh@redhat.com>
2267         * config/rs6000/rs6000.c (rs6000_expand_unop_builtin): Return
2268         const0_rtx instead of NULL_RTX when in error.
2269         (altivec_expand_abs_builtin): Same.
2270         (rs6000_expand_binop_builtin): Same.
2271         (altivec_expand_predicate_builtin): Same.
2272         (altivec_expand_stv_builtin): Same.
2273         (rs6000_expand_ternop_builtin): Same.
2274         (altivec_expand_builtin): Same.
2276 2002-05-29  David S. Miller  <davem@redhat.com>
2278         * rtl.h (clear_emit_caches): Delete.
2279         * integrate.c (output_inline_function): Don't call it.
2280         * emit-rtl.c (restore_emit_status, init_emit): Likewise.
2281         (clear_emit_caches): Delete definition.
2282         (SEQUENCE_RESULT_SIZE, sequence_result, free_insn): Likewise.
2284 2002-05-30  Hans-Peter Nilsson  <hp@bitrange.com>
2286         * config/mmix/mmix.c: Include real.h.
2287         (mmix_constant_address_p): Remove redundant test before switch.
2289 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2291         * config/mips/mips.h (READONLY_DATA_SECTION_ASM_OP): Define
2292         only if not already defined.
2294 2002-05-29  Kazu Hirata  <kazu@cs.umass.edu>
2296         * config/h8300/h8300-protos.h: Remove prototypes for
2297         ok_for_bclr and small_power_of_two.
2298         * config/h8300/h8300.c (small_power_of_two): Remove.
2299         (ok_for_blcr): Likewise.
2300         (fix_bit_operand): Make WHAT deal with an integer instead of a
2301         constraint character.
2302         * config/h8300/h8300.h (CONST_OK_FOR_O): Remove.
2303         (CONST_OK_FOR_P): Likewise.
2304         (CONST_OK_FOR_LETTER_P): Do not call CONST_OK_FOR_O or
2305         CONST_OK_FOR_P any more.
2306         * config/h8300/h8300.md (andqi3): Adjust to the new prototype
2307         of fix_bit_operand.
2308         (iorqi3): Likewise.
2309         (xorqi3): Likewise.
2311 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2313         * config/mips/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
2314         (CPP_PREDEFINES): Make sure this is undefined.
2315         (CPP_SPEC): Place -D__mips=1 at the beginning of the spec,
2316         since it is no longer in CPP_PREDEFINES.  Don't -U__MIPSEL__
2317         or -U__MIPSEB__ before defining one or the other.  Instead,
2318         use %(subtarget_endian_default) if neither -EB nor -EL are
2319         specified.
2320         (SUBTARGET_EXTRA_SPECS): Define.
2321         (SUBTARGET_CPP_SPEC): Remove __LONG64 handling.  Use
2322         %(netbsd_cpp_spec).
2324 2002-05-29  Hans-Peter Nilsson  <hp@axis.com>
2326         * doc/md.texi (Patterns): Note pattern condition pitfall
2327         for unnamed insn.
2329 2002-05-29  Aldy Hernandez  <aldyh@redhat.com>
2331         * rs6000.c: (altivec_expand_builtin): Only expand altivec builtins
2332         when TARGET_ALTIVEC.  Move handling of generic unary, binary, and
2333         ternary operations from here...
2334         (rs6000_expand_builtin): ...to here.
2335         New argument expandedp.
2336         Change all instances of altivec_expand_binop_builtin to
2337         rs6000_expand_binop_builtin.
2338         (altivec_expand_unop_builtin): Rename to
2339         rs6000_expand_unop_builtin.
2340         (altivec_expand_binop_builtin): Rename to
2341         rs6000_expand_binop_builtin.
2342         (altivec_expand_ternop_builtin): Rename to
2343         rs6000_expand_ternop_builtin.
2345 2002-05-29  Richard Henderson  <rth@redhat.com>
2347         * config/i386/biarch64.h (TARGET_64BIT_DEFAULT): Define with value.
2348         (TARGET_BI_ARCH): Likewise.
2349         * config/i386/i386.h: Test TARGET_64BIT_DEFAULT by value.
2350         (TARGET_SWITCHES): Combine target defaults here not in TARGET_DEFAULT.
2351         (TARGET_64BIT_DEFAULT): Default to 0.
2352         (TARGET_DEFAULT): Default to MASK_OMIT_LEAF_FRAME_POINTER.
2354 2002-05-29  Richard Henderson  <rth@redhat.com>
2356         * config/i386/i386.c (USE_HIDDEN_LINKONCE): New.
2357         (get_pc_thunk_name): New.
2358         (output_set_got): Use it.
2359         (ix86_asm_file_end): If USE_HIDDEN_LINKONCE, emit get_pc thunks
2360         into linkonce sections.
2362 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2364         * config/sparc/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
2365         (CPP_PREDEFINES): Make sure this is undefined.
2366         (CPP_SUBTARGET_SPEC64, CPP_SUBTARGET_SPEC32): Remove.
2367         (CPP_SUBTARGET_SPEC): Don't provide different versions for
2368         default-32 and default-64.  Just always use %(netbsd_cpp_spec).
2369         (SUBTARGET_EXTRA_SPECS): Remove cpp_subtarget_spec32 and
2370         cpp_subtarget_spec64.  Add netbsd_cpp_spec.
2371         * config/sparc/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
2372         (CPP_PREDEFINES): Make sure this is undefined.
2373         (SUBTARGET_EXTRA_SPECS): Define.
2374         (CPP_SPEC): Use %(netbsd_cpp_spec).
2376 2002-05-29  Jeff Law <law@redhat.com>
2378         * pa.h (ASM_OUTPUT_MI_THUNK): Remove unwanted semi-colon.
2380         * flow.c (propagate_one_insn): Do not remove a dead insn if it
2381         contains a REG_RETVAL note.
2383         * haifa-sched (sched_analyze): Remove another useless clearing
2384         of SCHED_GROUP_P I missed yesterday.
2386         * pa.h (ASM_OUTPUT_MI_THUNK): Move implementation into pa.c.
2387         * pa.c (pa_asm_output_mi_thunk): New function.
2388         * pa-protos.h (pa_asm_output_mi_thunk): Declare.
2390 2002-05-29  Neil Booth  <neil@daikokuya.demon.co.uk>
2391             Marek Michalkiewicz  <marekm@amelek.gda.pl>
2393         * config/avr/avr.c (avr_base_arch_macro, avr_extra_arch_macro): New.
2394         (avr_asm_only_p): Make non-static.
2395         (enum avr_arch): Remove.
2396         (avr_arch_types): New.
2397         (avr_mcu_types): Update.
2398         (avr_override_options): Use avr_arch_types table instead of switch.
2399         * avr.h (CPP_PREDEFINES): Die.
2400         (avr_base_arch_macro, avr_extra_arch_macro): New.
2401         (TARGET_CPU_CPP_BUILTINS): New.
2402         (CPP_SPEC, EXTRA_SPECS): Simplify.
2403         (CPP_AVR1_SPEC, CPP_AVR2_SPEC, CPP_AVR3_SPEC, CPP_AVR4_SPEC,
2404         CPP_AVR5_SPEC): Die.
2406 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2408         * config/arm/netbsd.h (TARGET_OS_CPP_BUILTINS): Use
2409         NETBSD_OS_CPP_BUILTINS_AOUT.
2410         (SUBTARGET_EXTRA_SPECS): Define.
2411         (CPP_SPEC): Use %(netbsd_cpp_spec).
2413 2002-05-29  Richard Henderson  <rth@redhat.com>
2415         * config/i386/i386.c (ix86_output_function_epilogue): New.
2416         (TARGET_ASM_FUNCTION_EPILOGUE): New.
2417         (pic_label_name): Remove.
2418         (pic_labels_used): New.
2419         (ix86_asm_file_end): Emit one pc load stub for each register used.
2420         (output_set_got): Generate deep pc load to any register.
2421         (ix86_select_alt_pic_regnum): New.
2422         (ix86_save_reg): Don't save pic register if we can find a valid
2423         call-clobbered replacement.
2424         (ix86_expand_prologue): If we found a valid replacement, renumber
2425         pic_offset_table_rtx.
2426         * config/i386/i386.h (PIC_OFFSET_TABLE_REGNUM): Look at
2427         pic_offset_table_rtx after reload.
2428         (REAL_PIC_OFFSET_TABLE_REGNUM): New.
2429         * config/i386/i386.md (set_got): Make insn, not expander.
2430         (set_got_nopic, set_got_deep, set_got_nodeep): Remove.
2432 2002-05-29  Richard Henderson  <rth@redhat.com>
2434         * config/i386/i386.c (ix86_compute_frame_layout): Do add bottom
2435         alignment for alloca.
2437 2002-05-29  Richard Henderson  <rth@redhat.com>
2439         * config/i386/i386.c (output_pic_addr_const): Lowercase rip.
2440         (print_operand_address): Only add rip for symbolic addresses
2441         for which we do not have another relocation type.
2443 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2445         * config/m68k/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
2446         (EXTRA_SPECS): Add netbsd_cpp_spec.
2447         (CPP_SPEC): Use %(netbsd_cpp_spec).
2448         (CPP_PREDEFINES): Remove.
2449         * config/m68k/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
2450         (EXTRA_SPECS): Define.
2451         (CPP_SPEC): Use %(netbsd_cpp_spec).
2452         (CPP_PREDEFINES): Remove.
2454 2002-05-29  Neil Booth  <neil@daikokuya.demon.co.uk>
2456         PR preprocessor/6844
2457         * cppmacro.c (cpp_macro_definition): Reserve space for terminating
2458         NUL.
2460 2002-05-29  Eric Christopher  <echristo@redhat.com>
2462         * config/mips/linux.h (SUBTARGET_CPP_SPEC): Add support for
2463         mips5/mips32/mips64 and _MIPS_ISA_MIPSXX.
2465 2002-05-29  Nick Clifton  <nickc@cambridge.redhat.com>
2467         * config/fr30/fr30.md: Remove previous restriction on splits.
2468         Enforce conformance through gen_lowpart and cont_int_operand.
2469         * config/fr30/fr30.h (BSS_SECTION_ASM_OP): Use ".section .bss"
2470         as the assembler does not support ".bss".
2472 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2474         * config/i386/netbsd-elf.h (TARGET_OS_CPP_BUILTINS): Define.
2475         (CPP_PREDEFINES): Remove.
2476         (SUBTARGET_EXTRA_SPECS): Define.
2477         (CPP_SPEC): Use %(netbsd_cpp_spec).
2478         * config/i386/netbsd.h (TARGET_OS_CPP_BUILTINS): Define.
2479         (CPP_PREDEFINES): Remove.
2480         (SUBTARGET_EXTRA_SPECS): Define.
2481         (CPP_SPEC): Use %(netbsd_cpp_spec).
2482         * config/i386/netbsd64.h (TARGET_OS_CPP_BUILTINS): Define.
2483         (CPP_PREDEFINES, CPP_LP64_SPEC, CPP_SUBTARGET_SPEC): Remove.
2484         (SUBTARGET_EXTRA_SPECS): Remove cpp_lp64 and cpp_subtarget.
2485         Add netbsd_cpp_spec.
2486         (CPP_SPEC): Remove %(cpp_subtarget), add %(netbsd_cpp_spec).
2488 2002-05-29  Neil Booth  <neil@daikokuya.demon.co.uk>
2489             Zack Weinberg <zack@codesourcery.com>
2491         * cppexp.c (cpp_num): Move to cpplib.h.
2492         (CPP_ERROR): Remove.
2493         (interpret_float_suffix, interpret_int_suffix): New.
2494         (struct suffix, vsuf_1, vsuf_2, vsuf_3): Remove.
2495         (cpp_classify_number, cpp_interpret_integer): New.
2496         (interpret_number): Remove.
2497         (eval_token): Update to use new routines.
2498         * cpphash.h (cpp_num_part): Move to cpplib.h.
2499         * cppinit.c (cpp_post_options): Set warn_long_long.
2500         * cpplib.h (struct cpp_options): Add warn_long_long.
2501         (cpp_num, cpp_num_part, CPP_N_CATEGORY, CPP_N_INVALID,
2502         CPP_N_INTEGER, CPP_N_FLOATING, CPP_N_WIDTH, CPP_N_SMALL,
2503         CPP_N_MEDIUM, CPP_N_LARGE, CPP_N_RADIX, CPP_N_DEC, CPP_N_HEX,
2504         CPP_N_OCTAL, CPP_N_UNSIGNED, CPP_N_IMAGINARY, cpp_classify_number,
2505         cpp_interpret_integer): New.
2507 2002-05-29  Joel Sherrill <joel@OARcorp.com>
2509         * config/rs6000/rs6000.h (ASM_CPU_SPEC): Use -m403 and -m405.
2511 2002-05-29  Jason Thorpe  <thorpej@wasabisystems.com>
2513         * config/alpha/netbsd.h (TARGET_OS_CPP_BUILTINS): Use
2514         NETBSD_OS_CPP_BUILTINS_ELF and NETBSD_OS_CPP_BUILTINS_LP64.
2515         (CPP_SUBTARGET_SPEC): Define.
2516         (SUBTARGET_EXTRA_SPECS): Define.
2517         (CPP_SPEC): Remove.
2519 2002-05-29  Chris Lattner  <sabre@nondot.org>
2521         * ssa.c (rename_insn_1): Rename uses of undefined registers to
2522         prevent confusion if/when the register is defined.
2524 2002-05-29  Hans-Peter Nilsson  <hp@axis.com>
2526         PR target/6838
2527         * config/cris/cris.md: Fix typos and thinkos in comments.
2528         ("*mov_sideqi_biap_mem"): Remove '*' in constraint for operand 4,
2529         second alternative.
2530         ("*mov_sidehi_biap_mem", "*mov_sidesi_biap_mem"): Ditto.
2531         ("*mov_sideqi_mem"): Similar, but for operand 3.
2532         ("*mov_sidehi_mem", "*mov_sidesi_mem"): Ditto.
2533         (splitter for mov_sideqi_mem, mov_sidehi_mem, mov_sidesi_mem):
2534         Remove spurious mode specifier on operand 2.
2536 2002-05-29  Kazu Hirata  <kazu@cs.umass.edu>
2538         * config/h8300/h8300-protos.h: Remove the prototype for
2539         o_operand.
2540         Add prototypes for single_one_operand and single_zero_operand.
2541         * config/h8300/h8300.c (o_operand): Remove.
2542         (single_one_operand): New.
2543         (single_zero_operand): Likewise.
2544         (print_operand): For 'V' operand, and the operand with 0xff.
2545         For 'V' and 'W' operands, do not and the bit position with 7.
2546         * config/h8300/h8300.md (various anonymous patterns): Replace
2547         use of exact_log2 with single_one_operand/single_zero_operand.
2549 2002-05-29  Ulrich Weigand  <uweigand@de.ibm.com>
2551         * config/s390/linux.h (MD_FALLBACK_FRAME_STATE_FOR): New.
2553 2002-05-29  Ulrich Weigand  <uweigand@de.ibm.com>
2555         * config/s390/s390.c (legitimate_pic_operand_p): Do not
2556         accept symbolic LARL operands.
2557         (s390_emit_epilogue): Do not set FRAME_RELATED_P on
2558         epilogue insns.
2560 2002-05-29  Hartmut Penner  <hpenner@de.ibm.com>
2562         * config/s390/s390.md (cmpstr_64/31): Mark whole
2563         input registers as used.
2565 2002-05-28  Richard Henderson  <rth@redhat.com>
2567         * config/i386/i386.c (ix86_save_reg): Examine regs_ever_live,
2568         not current_function_uses_pic_offset_table and
2569         current_function_uses_const_pool; examine current_function_profile.
2570         (ix86_expand_prologue): Likewise.  Add pic_offset_table_rtx as
2571         input to blockage if needed.
2572         (ix86_expand_call): Do not set current_function_uses_pic_offset_table.
2573         (legitimize_pic_address): Likewise.  Set regs_ever_live for
2574         pic_offset_table_rtx when invoked during reload.
2575         * config/i386/i386.h (FINALIZE_PIC): Remove.
2576         * config/i386/i386.md (tablejump): Reformat.  Do not set
2577         current_function_uses_pic_offset_table.
2578         (tls_global_dynamic, tls_local_dynamic_base): Likewise.
2579         (blockage): Accept anything as operand 0.
2581 2002-05-28  Jason Thorpe  <thorpej@wasabisystems.com>
2583         * config/netbsd-aout.h (NETBSD_OS_CPP_BUILTINS_AOUT): Define
2584         common CPP built-ins for all NetBSD a.out targets.
2585         * config/netbsd-elf.h (NETBSD_OS_CPP_BUILTINS_ELF): Define
2586         common CPP built-ins for all NetBSD ELF targets.
2587         * config/netbsd.h: Add missing notice.
2588         (NETBSD_OS_CPP_BUILTINS_COMMON): Define common CPP built-ins
2589         for all NetBSD targets.
2590         (NETBSD_OS_CPP_BUILTINS_LP64): Define common CPP built-ins
2591         for all NetBSD targets using an LP64 code model.
2592         (NETBSD_CPP_SPEC): Define CPP_SPEC parts common to all
2593         NetBSD targets.
2595 2002-05-28  Richard Henderson  <rth@redhat.com>
2597         * flow.c (update_life_info_in_dirty_blocks): Only do a partial
2598         update if UPDATE_LIFE_LOCAL.
2600 2002-05-28  Toshiyasu Morita  <toshiyasu.morita@hsa.hitachi.com>
2602         * config/sh/sh.c: Include real.h for REAL_VALUE_TYPE.
2604 Tue May 28 21:16:18 2002  J"orn Rennecke <joern.rennecke@superh.com>
2605                           Jason R. Thorpe <thorpej@wasabisystems.com>
2607         config/sh reorganization to factor out endianness and coff:
2609         * config/sh/little.h: New file.
2610         * config/sh/sh.h (TARGET_ENDIAN_DEFAULT): If not already
2611         defined, define to 0 to select big-endian.
2612         (SUBTARGET_ASM_ENDIAN_SPEC): Define according to TARGET_ENDIAN_DEFAULT.
2613         (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
2614         * config/sh/sh64.h (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
2615         * config/sh/t-be: New file.
2616         * config/sh/t-le: New file.
2618         * sh.h (SDB_DEBUGGING_INFO, #include "dbxcoff.h"): Moved to sh/coff.h.
2619         (SDB_DELIM, MAX_OFILE_ALIGNMENT, IDENT_ASM_OP): Likewise.
2620         (TARGET_ASM_NAMED_SECTION, ASM_OUTPUT_SKIP): Likewise.
2621         (USER_LABEL_PREFIX, LOCAL_LABEL_PREFIX): Likewise.
2622         (ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL): Likewise.
2623         (ASM_OUTPUT_COMMON, ASM_OUTPUT_LOCAL): Likewise.
2624         (ASM_FILE_END, ASM_DECLARE_FUNCTION_NAME): Deleted.
2625         (CPP_SPEC, SUBTARGET_CPP_ENDIAN_SPEC): Likewise.
2626         (SUBTARGET_CPP_SPEC, CPP_DEFAULT_CPU_SPEC, CPP_PREDEFINES): Likewise.
2627         (EXTRA_SPECS): Remove SUBTARGET_CPP_ENDIAN_SPEC and
2628         CPP_DEFAULT_CPU_SPEC.  Add LINK_EMUL_PREFIX, LINK_DEFAULT_CPU_EMUL,
2629         SUBTARGET_LINK_EMUL_SUFFIX and SUBTARGET_LINK_SPEC.
2630         (LINK_SPEC): Define to SH_LINK_SPEC.
2631         (TARGET_CPU_CPP_BUILTINS, SH_LINK_SPEC): Define.
2632         (LINK_EMUL_PREFIX, LINK_DEFAULT_CPU_EMUL): Likewise.
2633         (SUBTARGET_LINK_EMUL_SUFFIX, SUBTARGET_LINK_SPEC): Likewise.
2634         (CPP_SPEC): Reduce to %(subtarget_cpp_spec).
2635         (TARGET_ENDIAN_DEFAULT): Define if not already defined.
2636         * config/sh/coff.h: New file.
2637         (TARGET_ASM_NAMED_SECTION): Now default_coff_asm_named_section
2638         (TARGET_OBJFMT_CPP_BUILTINS): Define.
2639         * config/sh/elf.h (IDENT_ASM_OP): No need to #undef at the start.
2640         (ASM_FILE_END, ASM_OUTPUT_SOURCE_LINE): Likewise.
2641         (DBX_OUTPUT_MAIN_SOURCE_FILE_END, TARGET_ASM_NAMED_SECTION): Likewise.
2642         (ASM_DECLARE_FUNCTION_NAME, MAX_OFILE_ALIGNMENT, SIZE_TYPE): Likewise.
2643         (PTRDIFF_TYPE): Likewise.
2644         ("dbxelf.h", "elfos.h", "svr4.h"): Don't #include.
2645         (CPP_PREDEFINES): Don't define.
2646         (TARGET_OBJFMT_CPP_BUILTINS): Define.
2647         (LINK_SPEC): Define to SH_LINK_SPEC.
2648         (LINK_EMUL_PREFIX): Redefine.
2649         * config/sh/linux.h: (SUBTARGET_CPP_SPEC): Remove -fpic / -fPIC cases.
2650         (SUBTARGET_CPP_ENDIAN_SPEC, CPP_DEFAULT_CPU_SPEC): Remove redefinition.
2651         (CPP_PREDEFINES, SUBTARGET_ASM_ENDIAN_SPEC): Likewise.
2652         (CC1_SPEC, CC1PLUS_SPEC, LINK_SPEC): Likewise.
2653         (TARGET_OS_CPP_BUILTINS): Define.
2654         (TARGET_DEFAULT): Redefine.
2655         (SUBTARGET_LINK_EMUL_SUFFIX, SUBTARGET_LINK_SPEC): Likewise.
2656         * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): Remove.
2657         (LINK_SPEC): Don't redefine.
2658         (LINK_DEFAULT_CPU_EMUL): Redefine.
2659         (TARGET_DEFAULT): Include TARGET_ENDIAN_DEFAULT.
2660         * sh.c (sh_asm_named_section): Don't declare / define.
2661         * t-linux (MULTILIB_OPTIONS): Rely on pre-set endianness option.
2662         * config.gcc (sh-*-elf* tm_file): Add dbxelf.h elfos.h svr4.h.
2663         (sh64-*-elf* tm_file): Likewise.
2664         (sh-*-rtemself* tm_file): Likewise.
2665         (sh-*-linux* tm_file): Likewise.  Add sh/little.h.
2666         (sh-*-linux* tmake_file): Add sh/t-le.
2667         (sh-*-rtems* tm_file): Add sh/coff.h
2668         (sh-*-* tm_file): Likewise.
2670 Tue May 28 21:16:18 2002  J"orn Rennecke <joern.rennecke@superh.com>
2672         * sh.h (LEGITIMATE_PIC_OPERAND_P): Check for SYMBOL_REF before using
2673         CONSTANT_POOL_ADDRESS_P.
2675         * coff.h (HAS_INIT_SECTION, INVOKE__MAIN): Define.
2677 2002-05-28  David Edelsohn  <edelsohn@gnu.org>
2678             Jeff Law <law@redhat.com>
2680         * optabs.c (expand_binop): Fix nwords sign warnings.
2681         generate pseudo for add_optab.
2683         * sched-deps.c (sched_analyze): Do not clear SCHED_GROUP_P.
2684         * haifa-sched.c (move_insn): Clear SCHED_GROUP_P after it is used.
2686 2002-05-28      Marc Espie <espie@openbsd.org>
2688         * config/i386/openbsd.h (HAVE_GAS_MAX_SKIP_P2ALIGN):  Remove,
2689         inherited from gas.h.
2690         (ASM_QUAD):  Undef.  OpenBSD does not support it.
2692 2002-05-28  Danny Smith  <dannysmith@users.sourceforge.net>
2694         * doc/install.texi (binaries): Change mingw binaries
2695         link to www.mingw.org.
2697 2002-05-28  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2699         * cfgloop.c (flow_loops_cfg_dump): Use bb->index, not i.
2701 2002-05-28  Richard Henderson  <rth@redhat.com>
2703         * config/i386/i386.c (ix86_compute_frame_layout): Do not add
2704         bottom alignment for leaf functions.
2706 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
2708         * config/pa/milli32.S, config/pa/lib1funcs.asm,
2709         config/sparc/sol2-g1.asm: Delete unused files.
2711 2002-05-28  Richard Henderson  <rth@redhat.com>
2713         * cfg.c (dump_flow_info): Print bb->index, not i, for block number.
2715         * flow.c (calculate_global_regs_live): Rename call_used to
2716         invalidated_by_call.  Initialize from regs_invalidated_by_call
2717         instead of call_used_regs.
2719         * varasm.c (default_binds_local_p): Check TREE_PUBLIC before
2720         DECL_EXTERNAL.
2722 2002-05-28  Zack Weinberg  <zack@codesourcery.com>
2724         * tree.h: Don't include real.h.
2725         Forward-declare struct realvaluetype.
2726         (struct tree_real_cst): Point to the REAL_VALUE_TYPE, do not
2727         contain it.
2728         (TREE_REAL_CST_PTR): New accessor.
2729         (TREE_REAL_CST): Update.
2730         * real.h: Include machmode.h.
2731         (realvaluetype): Make it struct realvaluetype, not a typedef.
2732         (build_real): Prototype here.
2734         * tree.c: Include real.h.
2735         (build_real): Allocate the REAL_VALUE_TYPE as a separate
2736         object in GC memory, set TREE_REAL_CST_PTR to point to it.
2737         (build_real_from_int_cst): Use build_real.
2738         * ggc-common.c (ggc_mark_trees): Mark TREE_REAL_CST_PTR of a
2739         REAL_CST.
2741         * builtins.c, c-common.c, c-lex.c, dwarf2out.c, expr.c,
2742         fold-const.c, print-tree.c, real.c: Include real.h.
2743         * Makefile.in: Update dependency lists.
2745 2002-05-28  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2747         * basic-block.h (last_basic_block): Declare.
2748         (expunge_block_nocompact): Declaration removed.
2749         (compact_blocks): Declare.
2750         * cfg.c (last_basic_block): New variable.
2751         (expunge_block_nocompact): Removed.
2752         (expunge_block): Do not compact basic blocks.
2753         (compact_blocks): New.
2754         * cfganal.c (flow_call_edges_add): Use the fact that bb indices no
2755         longer change.
2756         * cfgbuild.c (find_basic_blocks_1, find_basic_blocks): Set
2757         last_basic_block.
2758         * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): Do not change
2759         real positions of blocks.
2760         (delete_unreachable_blocks): Simplified -- quadratic behavior now
2761         cannot occur.
2762         (cleanup_cfg): Compact blocks.
2763         * cfgrtl.c (create_basic_block): Insert basic blocks to the end of
2764         basic_block_info varray.
2765         (flow_delete_block): Comment update.
2766         (back_edge_of_syntactic_loop_p): Modify position check code.
2767         (verify_flow_info): Update checking.
2768         * flow.c (calculate_global_regs_live): Use FOR_EACH_BB.
2769         * ifcvt.c (SET_ORIG_INDEX, ORIG_INDEX): Removed.
2770         (find_if_case_1, find_if_case_2, if_convert): Use the fact that bb
2771         indices no longer change.
2772         * lcm.c (optimize_mode_switching): Replace n_basic_blocks with
2773         last_basic_block.
2774         * predict.c (estimate_bb_frequencies): Remove unneccessary code.
2775         * profile.c (branch_prob): Compact blocks.
2776         * sched-rgn.c (find_rgns): Replace n_basic_blocks with
2777         last_basic_block.
2779 2002-05-28  Kazu Hirata  <kazu@cs.umass.edu>
2781         * config/h8300/h8300.md (two anonymous patterns): New.
2783 2002-05-28  David S. Miller  <davem@redhat.com>
2785         * config/sparc/sparc.md (cpu): Tidy.
2786         (type): Delete 'return', add 'ialuX', 'flushw', 'iflush', and
2787         'trap'.
2788         (in_call_delay): Delete reference to 'return' type.
2789         (eligible_for_return_delay, in_return_delay, define_delay
2790         referencing those): Delete.
2791         (rest of file): Use new type attributes as appropriate.
2792         * config/sparc/sparc-protos.h (eligible_for_return_delay): Delete.
2793         * config/sparc/sparc.c (eligible_for_return_delay): Likewise.
2794         * config/sparc/ultra1_2.md (us1_single): New reservation.
2795         (us1_ialuX): Likewise.
2796         * config/sparc/ultra3.md (us3_single): Likewise.
2797         (us3_ialuX): Likewise.
2798         (us3_imul, us3_idiv): Tweak.
2800 2002-05-28  Richard Henderson  <rth@redhat.com>
2802         * config/alpha/alpha.c (alpha_in_small_data_p): Return false for
2803         STRING_CST.
2805 2002-05-28  Richard Henderson  <rth@redhat.com>
2807         * config.gcc: Obsolete mn10200.
2809 2002-05-28  Neil Booth  <neil@daikokuya.demon.co.uk>
2811         * cppexp.c (interpret_number): Optimize for single-digit
2812         and less-than-half-precision cases.
2813         (num_trim, num_positive, num_div_op): Cast constants.
2815 2002-05-27  Bo Thorsen  <bo@suse.de>
2817         * config/i386/libgcc-x86_64-glibc.ver: Copy this file from the
2818         3.1 branch. The file was made by Jakub Jelinek.
2819         * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Add i386
2820         support so multilib doesn't break. And don't define this at all
2821         when -Dinhibit_libc is used.
2822         (MULTILIB_DEFAULTS): Always set default to 64 bit compilation.
2823         * config/i386/t-linux64: Implement full multilib support. Patch
2824         originally done by Andreas Jaeger and Jakub Jelinek.
2826 2002-05-27  Roger Sayle  <roger@eyesopen.com>
2828         * c-common.c: Add support for __attribute__((nothrow)) to specify
2829         that a function cannot throw an exception (using TREE_NOTHROW).
2830         (handle_nothrow_attribute): New function to process this attribute.
2832         * doc/extend.texi: Document the new nothrow function attribute.
2834 2002-05-27  H.J. Lu  (hjl@gnu.org)
2836         * cppexp.c (num_trim): Use 1UL instead of 1 for long int.
2837         (num_positive): Likewise.
2838         (num_div_op): Likewise.
2840 2002-05-27  Neil Booth  <neil@daikokuya.demon.co.uk>
2842         * c-common.c (c_common_init): Always use intmax_t.
2844 2002-05-27  Neil Booth  <neil@daikokuya.demon.co.uk>
2846         * c-common.c (c_common_init): Use intmax_t for now.
2848 2002-05-24  Andrew Haley  <aph@redhat.com>
2850         * fold-const.c (fold): Don't convert (T)(x & c) into (T)x & (T)c
2851         if T is a boolean type.
2853 2002-05-27  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2855         * basic-block.h (last_basic_block): Defined as synonym for
2856         n_basic_blocks.
2857         * cfganal.c (mark_dfs_back_edges, flow_reverse_top_sort_order_compute,
2858         flow_depth_first_order_compute, flow_preorder_transversal_compute,
2859         flow_dfs_compute_reverse_init): Replaced relevant occurences of
2860         n_basic_blocks with last_basic_block.
2861         * cfgbuild.c (make_edges): Likewise.
2862         * cfgloop.c (flow_loop_scan, flow_loops_find): Likewise.
2863         * cfgrtl.c (verify_flow_info, purge_all_dead_edges): Likewise.
2864         * combine.c (combine_instructions): Likewise.
2865         * df.c (df_alloc, df_analyse_1, df_analyse, iterative_dataflow_sbitmap,
2866         iterative_dataflow_bitmap): Likewise.
2867         * dominance.c (init_dom_info, calc_dfs_tree_nonrec, calc_dfs_tree,
2868         calc_idoms, idoms_to_doms): Likewise.
2869         * flow.c (update_life_info_in_dirty_blocks, free_basic_block_vars):
2870         Likewise.
2871         * gcse.c (gcse_main, alloc_gcse_mem, compute_local_properties,
2872         compute_hash_table, expr_reaches_here_p, one_classic_gcse_pass,
2873         one_cprop_pass, compute_pre_data, pre_expr_reaches_here_p,
2874         one_pre_gcse_pass, compute_transpout, delete_null_pointer_checks_1,
2875         delete_null_pointer_checks, compute_code_hoist_vbeinout,
2876         hoist_expr_reaches_here_p, hoist_code, one_code_hoisting_pass,
2877         compute_store_table, build_store_vectors): Likewise.
2878         * haifa-sched.c (sched_init): Likewise.
2879         * ifcvt.c (if_convert): Likewise.
2880         * lcm.c (compute_antinout_edge, compute_laterin, compute_insert_delete,
2881         pre_edge_lcm, compute_available, compute_nearerout,
2882         compute_rev_insert_delete, pre_edge_rev_lcm, optimize_mode_switching):
2883         Likewise.
2884         * predict.c (estimate_probability, process_note_prediction,
2885         note_prediction_to_br_prob): Likewise.
2886         * profile.c (GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX): Likewise.
2887         * recog.c (split_all_insns, peephole2_optimize): Likewise.
2888         * regrename.c (copyprop_hardreg_forward): Likewise.
2889         * resource.c (init_resource_info): Likewise.
2890         * sched-rgn.c (build_control_flow, find_rgns, compute_trg_info,
2891         init_regions, schedule_insns): Likewise.
2892         * ssa-ccp.c (ssa_const_prop): Likewise.
2893         * ssa-dce.c (ssa_eliminate_dead_code): Likewise.
2894         * ssa.c (compute_dominance_frontiers,
2895         compute_iterated_dominance_frontiers, convert_to_ssa): Likewise.
2897         * df.c (df_refs_unlink): Fix FOR_EACH_BB usage (in #if 0'ed code)
2898         * gcse.c (alloc_rd_mem, alloc_avail_expr_mem): Use n_blocks for vector
2899         sizes consistently.
2901 Mon May 27 14:28:12 CEST 2002  Jan Hubicka  <jh@suse.cz>
2903         * basic-block.h (can_hoist_p, hoist_insn_after, hoist_insn_to_edge):
2904         new.
2905         * rtlanal.c (hoist_test_store, can_hoist_insn_p, hoist_update_store,
2906         hoist_insn_after, hoist_insn_to_edge): New.
2908 Mon May 27 12:14:02 CEST 2002  Jan Hubicka  <jh@suse.cz>
2910         * basic-block.h (PEOP_SCAN_DEAD_STORES): New.
2911         (PROP_FINAL): Include.
2912         * flow.c (life_analysis, update_life_info,
2913         init_propagate_block_info, mark_set_1, mark_used_rgs):
2914         Support SCAN_DEAD_STORE.
2916 2002-05-27  Neil Booth  <neil@daikokuya.demon.co.uk>
2918         * c-common.c (c_common_init): Set CPP arithmetic precision.
2919         * cppexp.c (cpp_num_part): Move typedef ...
2920         * cpphash.h: ...here; make unsigned HOST_WIDE_INT.
2921         * cppinit.c (cpp_create_reader): Default to host long arithmetic.
2922         (sanity_checks): Update.
2924 2002-05-26  Geoffrey Keating  <geoffk@redhat.com>
2926         * Makefile.in (INSTALL_HEADERS): Add 'install-mkheaders'.
2927         (mkheaders): New rule.
2928         (install-mkheaders): New rule.
2929         * configure.in (all_outputs): Add mkheaders.
2930         * configure: Regenerate.
2931         * mkheaders.in: New file.
2933 2002-05-26  Jakub Jelinek  <jakub@redhat.com>
2935         * cse.c (fold_rtx): Don't optimize if SUBREG changes mode class.
2937 2002-05-26  Andreas Jaeger  <aj@suse.de>
2939         * cfg.c (dump_flow_info): Remove extra argument to fprintf.
2941 2002-05-26  Neil Booth  <neil@daikokuya.demon.co.uk>
2943         * cppexp.c (possible_sum_sign, integer_overflow, left_shift,
2944         right_shift): Remove.
2945         (cpp_num, cpp_num_part, PART_PRECISION, HALF_MASK, LOW_PART,
2946         HIGH_PART): New.
2947         (struct op): Use cpp_num.
2948         (num_zerop, num_eq, num_positive, num_greater_freq, num_trim,
2949         num_part_mul, num_unary_op, num_binary_op, num_negate,
2950         num_bitwise_op, num_inequality_op, num_equality_op, num_mul,
2951         num_div_op, num_lshift, num_rshift, append_digit): New.
2952         (interpret_number, parse_defined, eval_token, reduce): Update
2953         for two-integer arithmetic.
2954         (binary_handler): New typedef.
2955         (optab): Update.
2956         (COMPARE, EQUALITY, BITWISE, MINMAX, UNARY, SHIFT): Delete.
2957         (_cpp_parse_expr, reduce): Update to handle two-integers.
2958         * cpplib.c (_cpp_test_assertion): Back up on CPP_EOF.
2960 2002-05-26  Marek Michalkiewicz  <marekm@amelek.gda.pl>
2962         * config/avr/avr-protos.h (avr_out_sbxx_branch): Declare.
2963         * config/avr/avr.c (jump_over_one_insn_p): Take length of the
2964         branch insn into account, do not assume 1.
2965         (avr_out_sbxx_branch): New function.  Optimize cases of skipping
2966         over single word insn.  Handle upper half of I/O space too.
2967         * config/avr/avr.md (*sbrx_branch): Use it.
2968         (*sbrx_and_branchhi, *sbrx_and_branchsi): Likewise.
2969         (*sbix_branch, *sbix_branch_bit7): Likewise.
2970         (*sbix_branch_tmp, *sbix_branch_tmp_bit7): New.
2971         Use RTL peepholes to optimize register operand sign tests.
2973 2002-05-26  Marek Michalkiewicz  <marekm@amelek.gda.pl>
2975         * config/avr/avr.c (avr_asm_only_p): New variable.
2976         (avr_override_options): Set it here if AVR1.
2977         (asm_file_start): Test it here, report an error if set.
2979 2002-05-26  Kazu Hirata  <kazu@cs.umass.edu>
2981         * alias.c: Fix formatting.
2982         * attribs.c: Likewise.
2983         * bb-reorder.c: Likewise.
2984         * bitmap.c: Likewise.
2985         * bitmap.h: Likewise.
2986         * builtins.c: Likewise.
2988 Sun May 26 14:00:44 CEST 2002  Jan Hubicka  <jh@suse.cz>
2990         * reload.c (find_valid_class): Accept new argument DEST,
2991         choose class accordingly.
2992         (push_reload): Update callers.
2994 2002-05-26  Andreas Jaeger  <aj@suse.de>
2996         * combine.c (combine_instructions): Do not indent #if for
2997         traditional C.
2999 2002-05-25  Richard Henderson  <rth@redhat.com>
3001         * c-pragma.c (apply_pragma_weak): Convert value identifier to
3002         string for decl_attributes.
3003         (handle_pragma_weak): Call assemble_alias if we're modifying
3004         an existing decl.
3006 2002-05-25  Richard Henderson  <rth@redhat.com>
3008         PR target/6788
3009         * config/sparc/sparc.c (sparc_output_mi_thunk): New implementation
3010         using rtl instead of fprintf.
3011         * config/sparc/sparc.h (ASM_OUTPUT_MI_THUNK): Use it.
3012         * config/sparc/sparc-protos.h: Update.
3014 2002-05-25  Neil Booth  <neil@daikokuya.demon.co.uk>
3016         * Makefile.in (C_COMMON_H): Fix.
3017         Update other targets.
3018         * c-common.c: Don't include c-lex.h.
3019         (builtin_define_with_value): Make static and prototype.
3020         (builtin_define_std): Move from c-lex.h.
3021         * c-common.h (init_c_lex): Move from c-lex.h.
3022         * c-decl.c: Don't include c-lex.h.
3023         (make_pointer_declarator): Move from c-parse.in.
3024         * c-lex.c: Don't include c-lex.h.
3025         * c-lex.h: Remove.
3026         * c-parse.in: Don't include c-lex.h; include c-pragma.h.
3027         (make_pointer_declarator): Move to c-decl.c.
3028         * c-pragma.c: Don't include c-lex.h.
3029         * c-pragma.h (yydebug, YYDEBUG, parse_in, c_lex): Move from c-lex.h.
3030         * c-tree.h (make_pointer_declarator): New.
3031 doc:
3032         * passes.texi, tm.texi: Update.
3033 objc:
3034         * Make-lang.in: Update and correct.
3035         * objc-act.c: Don't include c-lex.h or cpplib.h.
3036 treelang:
3037         * treetree.c: Don't include c-lex.h.
3038 config:
3039         * darwin-c.c: Don't include c-lex.h.
3040         * c4x/c4x-c.c: Don't include c-lex.h.
3041         * c4x/t-c4x: Update.
3042         * i370/i370-c.c: Don't include c-lex.h.
3043         * i370/t-i370: Update.
3044         * i960/i960-c.c: Don't include c-lex.h.
3045         * i960/i960.c: Don't include cpplib.h, c-lex.h or c-pragma.h.
3046         * i960/t-960bare: Update.
3047         * i960/t-vxworks: Update.
3048         * rs6000/rs6000-c.c: Don't include c-lex.h; include c-pragma.h.
3049         * rs6000/t-darwin: Update.
3050         * rs6000/t-rs6000-c-rule: Update.
3051         * v850/v850-c.c: Don't include c-lex.h.
3052         * v850/v850.c: Don't include c-lex.h or cpplib.h.
3055 2002-05-25  Kazu Hirata  <kazu@cs.umass.edu>
3057         * tree.def: Fix typos.
3058         * doc/install.texi: Likewise.
3060 2002-05-25  Richard Henderson  <rth@redhat.com>
3062         * configure.in (HAVE_AS_TLS): Add ia64 test.
3063         * configure: Rebuild.
3064         * config/ia64/ia64.c (ia64_tls_size_string, ia64_tls_size): New.
3065         (override_options): Set it.
3066         (TARGET_HAVE_TLS): New.
3067         (sdata_symbolic_operand): Look for 's'.
3068         (tls_symbolic_operand): New.
3069         (ia64_expand_load_address): Abort for tls symbols.
3070         (gen_tls_get_addr): New.
3071         (gen_thread_pointer): New.
3072         (ia64_expand_move): Split out from movdi.  Handle tls symbols.
3073         (rtx_needs_barrier): Add new unspecs.
3074         (ia64_encode_section_info): Handle tls symbols.
3075         (ia64_strip_name_encoding): Strip two encoding chars.
3076         * config/ia64/ia64.h (ia64_tls_size, ia64_tls_size_string): New.
3077         (TARGET_TLS14, TARGET_TLS22, TARGET_TLS64): New.
3078         (TARGET_OPTIONS): Add tls-size.
3079         (ENCODE_SECTION_INFO_CHAR): Rename from SDATA_NAME_FLAG_CHAR.
3080         * config/ia64/ia64.md (UNSPEC_LTOFF_DTPMOD, UNSPEC_LTOFF_DTPREL,
3081         UNSPEC_DTPREL, UNSPEC_LTOFF_TPREL, UNSPEC_TPREL, UNSPEC_LD_BASE): New.
3082         (movqi, movhi, movsi, movdi, movti): Use ia64_expand_move.
3083         (movsf, movdf): Likewise.
3084         (movdi_symbolic): Use match_scratch.  Don't split if we won't
3085         have a scratch availiable.
3086         (load_ltoff_dtpmod, load_dtprel, load_dtprel64, load_dtprel22,
3087         add_dtprel, add_dtprel14, add_dtprel22, load_ltoff_tprel, load_tprel,
3088         load_tprel64, load_tprel22, add_tprel, add_tprel14, add_tprel22): New.
3089         * config/ia64/ia64-protos.h: Update.
3090         * config/ia64/sysv4.h (ASM_OUTPUT_ALIGNED_DECL_LOCAL): Use
3091         sdata_symbolic_operand.
3092         (ASM_OUTPUT_LABELREF): Strip two characters.
3094 2002-05-25  Kazu Hirata  <kazu@cs.umass.edu>
3096         * combine.c (simplify_set): Remove an unnecessary subreg.
3098 2002-05-25  Marek Michalkiewicz  <marekm@amelek.gda.pl>
3100         * config/avr/avr.c (avr_handle_progmem_attribute): Handle TYPE_DECL.
3102         * config/avr/avr.h (BSS_SECTION_ASM_OP, ASM_OUTPUT_BSS): New.
3104 2002-05-25  Gabriel Dos Reis  <gdr@codesourcery.com>
3106         * toplev.c (output_clean_symbol_name): Fix another thinko.  Gosh.
3108 2002-05-25  Roger Sayle  <roger@eyesopen.com>
3110         * simplify-rtx.c (simplify_gen_relational): Simplify the RTX
3111         (cond (compare x y) 0) into the equivalent (cond x y).
3113 2002-05-25  Gabriel Dos Reis  <gdr@codesourcery.com>
3115         * toplev.c (output_clean_symbol_name): Use xstrdup.  Fix thinko.
3117 2002-05-24  Zack Weinberg  <zack@codesourcery.com>
3119         * config.gcc: Remove all stanzas for previously obsoleted
3120         systems.  Where necessary, add explicit error stanzas to
3121         prevent removed systems from being misidentified as something
3122         else.  Begin a fresh obsoletions list, with the systems that
3123         were reprieved last round.
3124         * doc/install.texi: Remove all mention of dead targets.
3125         * fixinc/mkfixinc.sh: Likewise.
3127         * config/arm/arm.h: Bit 31 of target_flags is no longer
3128         reserved.
3130         * config/1750a/1750a-protos.h, config/1750a/1750a.c,
3131         config/1750a/1750a.h, config/1750a/1750a.md, config/1750a/ms1750.inc,
3132         config/a29k/a29k-protos.h, config/a29k/a29k.c, config/a29k/a29k.h,
3133         config/a29k/a29k.md, config/a29k/rtems.h, config/a29k/t-a29kbare,
3134         config/a29k/t-vx29k, config/a29k/unix.h, config/a29k/vx29k.h,
3135         config/alpha/osf12.h, config/alpha/osf2or3.h,
3136         config/arm/arm-wince-pe.h, config/arm/arm.h, config/arm/riscix.h,
3137         config/arm/riscix1-1.h, config/arm/rix-gas.h, config/arm/t-riscix,
3138         config/clipper/clipper-protos.h, config/clipper/clipper.c,
3139         config/clipper/clipper.h, config/clipper/clipper.md,
3140         config/clipper/clix.h, config/convex/convex-protos.h,
3141         config/convex/convex.c, config/convex/convex.h,
3142         config/convex/convex.md, config/convex/fixinc.convex,
3143         config/convex/proto.h, config/elxsi/elxsi-protos.h,
3144         config/elxsi/elxsi.c, config/elxsi/elxsi.h, config/elxsi/elxsi.md,
3145         config/i386/386bsd.h, config/i386/aix386.h, config/i386/aix386ng.h,
3146         config/i386/bsd386.h, config/i386/dgux.h, config/i386/djgpp-rtems.h,
3147         config/i386/isc.h, config/i386/iscdbx.h, config/i386/linux-oldld.h,
3148         config/i386/next.h, config/i386/osf1-ci.asm, config/i386/osf1-cn.asm,
3149         config/i386/osf1elf.h, config/i386/osf1elfgdb.h, config/i386/osfelf.h,
3150         config/i386/osfrose.h, config/i386/rtems.h, config/i386/seq-gas.h,
3151         config/i386/seq-sysv3.h, config/i386/seq2-sysv3.h,
3152         config/i386/sequent.h, config/i386/sun.h, config/i386/sun386.h,
3153         config/i386/t-dgux, config/i386/t-next, config/i386/t-osf,
3154         config/i386/t-osf1elf, config/i860/bsd-gas.h, config/i860/bsd.h,
3155         config/i860/fx2800.h, config/i860/i860-protos.h, config/i860/i860.c,
3156         config/i860/i860.h, config/i860/i860.md, config/i860/mach.h,
3157         config/i860/paragon.h, config/i860/sysv3.h, config/i860/sysv4.h,
3158         config/i860/t-fx2800, config/i860/varargs.asm, config/m68k/a-ux.h,
3159         config/m68k/altos3068.h, config/m68k/apollo68.h,
3160         config/m68k/aux-crt1.c, config/m68k/aux-crt2.asm,
3161         config/m68k/aux-crtn.asm, config/m68k/aux-exit.c,
3162         config/m68k/aux-low.gld, config/m68k/aux-mcount.c,
3163         config/m68k/auxas.h, config/m68k/auxgas.h, config/m68k/auxgld.h,
3164         config/m68k/auxld.h, config/m68k/ctix.h, config/m68k/dpx2.h,
3165         config/m68k/dpx2.ifile, config/m68k/dpx2cdbx.h, config/m68k/dpx2g.h,
3166         config/m68k/isi-nfp.h, config/m68k/isi.h, config/m68k/lynx-ng.h,
3167         config/m68k/lynx.h, config/m68k/math-3300.h, config/m68k/news.h,
3168         config/m68k/news3.h, config/m68k/news3gas.h, config/m68k/newsgas.h,
3169         config/m68k/next.h, config/m68k/next21.h, config/m68k/rtems.h,
3170         config/m68k/t-aux, config/m68k/t-lynx, config/m68k/t-next,
3171         config/m68k/x-next, config/m88k/dgux.h, config/m88k/dgux.ld,
3172         config/m88k/dguxbcs.h, config/m88k/dolph.h, config/m88k/dolphin.ld,
3173         config/m88k/luna.h, config/m88k/m88k-coff.h, config/m88k/sysv3.h,
3174         config/m88k/t-bug, config/m88k/t-dgux, config/m88k/t-dgux-gas,
3175         config/m88k/t-dguxbcs, config/m88k/t-dolph, config/m88k/t-m88k-gas,
3176         config/m88k/t-tekXD88, config/m88k/tekXD88.h, config/m88k/tekXD88.ld,
3177         config/mips/bsd-4.h, config/mips/bsd-5.h, config/mips/dec-bsd.h,
3178         config/mips/dec-osf1.h, config/mips/elflorion.h,
3179         config/mips/iris4loser.h, config/mips/mips-5.h, config/mips/news4.h,
3180         config/mips/news5.h, config/mips/nws3250v4.h, config/mips/osfrose.h,
3181         config/mips/svr3-4.h, config/mips/svr3-5.h, config/mips/svr4-4.h,
3182         config/mips/svr4-5.h, config/mips/svr4-t.h, config/mips/t-bsd,
3183         config/mips/t-bsd-gas, config/mips/t-svr3, config/mips/t-svr3-gas,
3184         config/mips/t-svr4, config/mips/t-svr4-gas, config/mips/t-ultrix,
3185         config/mips/ultrix.h, config/nextstep-protos.h, config/nextstep.c,
3186         config/nextstep.h, config/nextstep21.h, config/ns32k/encore.h,
3187         config/ns32k/merlin.h, config/ns32k/pc532-mach.h,
3188         config/ns32k/pc532-min.h, config/ns32k/pc532.h,
3189         config/ns32k/sequent.h, config/ns32k/tek6000.h,
3190         config/ns32k/tek6100.h, config/ns32k/tek6200.h, config/pj/lib1funcs.S,
3191         config/pj/linux.h, config/pj/pj-protos.h, config/pj/pj.c,
3192         config/pj/pj.h, config/pj/pj.md, config/pj/pjl.h, config/pj/t-pj,
3193         config/sparc/rtems.h, config/we32k/we32k-protos.h,
3194         config/we32k/we32k.c, config/we32k/we32k.h, config/we32k/we32k.md:
3195         Delete file.
3197 2002-05-24  Richard Henderson  <rth@redhat.com>
3199         * flags.h (TLS_MODEL_GLOBAL_DYNAMIC): Set to 1.
3200         * toplev.c (flag_tls_default) Set to TLS_MODEL_GLOBAL_DYNAMIC.
3201         * config/i386/i386.c (tls_model_chars): Add leading space.
3202         (tls_symbolic_operand): Don't bias by 1.
3203         (legitimize_address): Don't unbias by 1.
3205 2002-05-24  Toshiyasu Morita  <toshiyasu.morita@hsa.hitachi.com>
3207         * lcm.c (optimize_mode_switching): Change bb used as indices
3208         to bb->index.
3210 2002-05-24  Richard Henderson  <rth@redhat.com>
3212         * config/ia64/ia64.c (ia64_reorg): Use update_life_info instead
3213         of update_life_info_in_dirty_blocks.
3215 2002-05-24  Jakub Jelinek  <jakub@redhat.com>
3217         PR other/6782
3218         * final.c (get_mem_expr_from_op): Return 0 if op is NULL.
3220 2002-05-24  Neil Booth  <neil@daikokuya.demon.co.uk>
3222         PR preprocessor/6780
3223         * cppmacro.c (enter_macro_context): Clear state.angled_headers.
3225 2002-05-24  Jim Blandy  <jimb@redhat.com>
3227         * dwarf2out.c (dwarf2out_finish): Don't forget to emit a final
3228         entry with a type code of zero, marking the end of the compilation
3229         unit's macro info.
3231 2002-05-24  Richard Henderson  <rth@redhat.com>
3233         * varasm.c (asm_output_bss): Always output one byte.
3234         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_LOCAL): Likewise.
3236 2002-05-24  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
3238         * tree.c (decl_type_context): Return NULL_TREE if decl's context is a
3239         namespace.
3241 2002-05-24  Andreas Jaeger  <aj@suse.de>
3243         * ggc-page.c (alloc_page): Cast variables of type size_t to
3244         unsigned long, adjust printf format string.
3245         (ggc_alloc): Likewise.
3246         (ggc_print_statistics): Likewise.
3247         (ggc_print_statistics): Correct printf format string for SCALE to
3248         use unsigned long.
3250 2002-05-24  Danny Smith  <dannysmith@users.sourceforge.net>
3252         * config/i386/mingw32.h (CPP_SPEC): Remove -remap.
3254 2002-05-23  Gabriel Dos Reis  <gdr@codesourcery.com>
3255             Zack Weinberg     <zack@codesourcery.com>
3257         * config/i386/mingw32.h (OUTPUT_QUOTED_STRING): Properly output
3258         quoted strings.
3259         * dwarf2out.c (lookup_filename): Properly quote filename in .file
3260         directive in assembly file.
3261         * config/m68k/dpx2.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
3262         * config/m88k/m88k.h (ASM_OUTPUT_SOURCE_FILENAME): Likewise.
3263         * config/pj/pj.h (ASM_FILE_START): Likewise.
3264         * config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
3265         * config/avr/avr.c (asm_file_end): Likewise.
3266         * toplev.c (output_quoted_string): Handle possibly signed plain
3267         char.
3268         * toplev.h (output_clean_symbol_name): Declare
3269         * toplev.c (output_clean_symbol_name): Define.
3270         * config/alpha/alpha.c (unicosmk_output_module_name): Use it.
3271         * config/1750a/1750a.h (ASM_FILE_START): Likewise.
3273 2002-05-24  Alan Modra  <amodra@bigpond.net.au>
3275         * config/rs6000/rs6000.c (output_toc): Mask longs to 32 bits.
3277 2002-05-23  Vladimir Makarov  <vmakarov@redhat.com>
3279         * genautomata.c (reserv_sets_hash_value): Use shift equal to 3/4
3280         of size of unsigned.
3282 2002-05-23  Richard Henderson  <rth@redhat.com>
3284         * configure.in (HAVE_AS_TLS): New test.
3285         * config.in, configure: Rebuild.
3286         * config/i386/i386.c (TARGET_HAVE_TLS): Set if HAVE_AS_TLS.
3287         (ix86_tls_dialect_string, ix86_tls_dialect): New.
3288         (override_options): Set it.
3289         (tls_model_chars, tls_symbolic_operand): New.
3290         (tls_symbolic_operand_1, global_dynamic_symbolic_operand): New.
3291         (local_dynamic_symbolic_operand, initial_exec_symbolic_operand): New.
3292         (local_exec_symbolic_operand): New.
3293         (get_pic_label_name): Merge into output_set_got.
3294         (ix86_asm_file_end): Emit pic_label_name if defined.
3295         (legitimate_constant_p, constant_address_p): New.
3296         (legitimate_pic_operand_p): New.
3297         (legitimate_pic_address_disp_p): Handle GOTTPOFF, NTPOFF, DTPOFF.
3298         (legitimate_address_p): Likewise.
3299         (ix86_encode_section_info): Rename from i386_; handle tls decls.
3300         (ix86_strip_name_encoding): New.
3301         (get_thread_pointer): New.
3302         (legitimize_address): Handle tls symbols.
3303         (output_pic_addr_const): Handle GOTTPOFF, TPOFF, NTPOFF, DTPOFF.
3304         Remove UNSPEC_PLT.
3305         (struct machine_function): Add some_ld_name.
3306         (get_some_local_dynamic_name, get_some_local_dynamic_name_1): Set it.
3307         (print_operand) [&]: Use it.  Handle UNSPEC_TP.
3308         (output_addr_const_extra): New.
3309         (maybe_get_pool_constant): New.
3310         (ix86_split_to_parts): Use it.
3311         (ix86_expand_move): Handle tls symbols.
3312         (ix86_tls_get_addr): New.
3313         * config/i386/i386.h (TARGET_GNU_TLS, TARGET_SUN_TLS): New.
3314         (TARGET_OPTIONS): Add tls-dialect.
3315         (CONSTANT_ADDRESS_P): Use new out-of-line function.
3316         (LEGITIMATE_CONSTANT_P): Likewise.
3317         (LEGITIMATE_PIC_OPERAND_P): Likewise.
3318         (TARGET_STRIP_NAME_ENCODING): New.
3319         (ASM_OUTPUT_LABELREF): New.
3320         (PRINT_OPERAND_PUNCT_VALID_P): Add '&'.
3321         (OUTPUT_ADDR_CONST_EXTRA): New.
3322         (PREDICATE_CODES): Update.
3323         (ix86_tls_dialect, ix86_tls_dialect_string): New.
3324         * config/i386/i386.md: Regroup and renumber unspec constants.
3325         (tls_global_dynamic_gnu, tls_global_dynamic_sun): New.
3326         (tls_local_dynamic_base_gnu, tls_local_dynamic_base_sun): New.
3327         (tls_global_dynamic, tls_local_dynamic_base): New.
3328         (tls_local_dynamic_once): New.
3329         * config/i386/i386-protos.h: Update.
3331 2002-05-23  Richard Henderson  <rth@redhat.com>
3333         * genemit.c (gen_insn): Print file:lineno comment before function.
3334         (main): likewise.
3335         * gensupport.c (struct queue_elem): Add filename member.
3336         (queue_pattern): Initialize it; update all callers.
3337         (process_include): Don't free filename.
3338         (read_md_rtx): Set read_rtx_filename.
3340 2002-05-23  Hans Boehm  <Hans_Boehm@hp.com>
3342         * config/ia64/linux.h (IA64_GATE_AREA_END): Adjust for 64K pages.
3344 2002-05-23  Richard Henderson  <rth@redhat.com>
3346         * config/i386/i386.c (output_set_got): Fix typo in pic no-deep case.
3348 2002-05-23  Richard Henderson  <rth@redhat.com>
3350         * doc/extend.texi (C++98 Thread-Local Edits): Update with
3351         commentary from Mark.
3353 2002-05-23  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3355         * bb-reorder.c (make_reorder_chain, make_reorder_chain_1):
3356         Use FOR_EACH_BB macros to iterate over basic block chain.
3357         * cfg.c (clear_edges, clear_bb_flags, dump_flow_info,
3358         alloc_aux_for_blocks, clear_aux_for_blocks, alloc_aux_for_edges):
3359         Likewise.
3360         * cfganal.c (set_edge_can_fallthru_flag, flow_call_edges_add,
3361         find_unreachable_blocks, create_edge_list, verify_edge_list,
3362         remove_fake_edges, add_noreturn_fake_exit_edges,
3363         flow_preorder_transversal_compute, flow_dfs_compute_reverse_execute):
3364         Likewise.
3365         * cfgbuild.c (make_edges, find_basic_blocks, find_many_sub_basic_blocks,
3366         find_sub_basic_blocks): Likewise.
3367         * cfgcleanup.c (try_optimize_cfg, delete_unreachable_blocks):
3368         Likewise.
3369         * cfglayout.c (record_effective_endpoints, cleanup_unconditional_jumps):
3370         Likewise.
3371         * cfgloop.c (flow_loops_cfg_dump, flow_loops_find):
3372         Likewise.
3373         * cfgrtl.c (compute_bb_for_insn, tidy_fallthru_edges,
3374         commit_edge_insertions, commit_edge_insertions_watch_calls,
3375         print_rtl_with_bb, verify_flow_info, purge_all_dead_edges): Likewise.
3376         * combine.c (combine_instructions, reg_dead_at_p): Likewise.
3377         * conflict.c (conflict_graph_compute): Likewise.
3378         * df.c (df_bitmaps_alloc, df_bitmaps_free, df_alloc, df_analyse_1,
3379         df_modified_p, df_refs_unlink, df_dump): Likewise.
3380         * dominance.c (calc_dfs_tree, calculate_dominance_info): Likewise.
3381         * final.c (compute_alignments): Likewise.
3382         * flow.c (update_life_info, update_life_info_in_dirty_blocks,
3383         delete_noop_moves, calculate_global_regs_live, allocate_bb_life_data,
3384         count_or_remove_death_notes): Likewise.
3385         * gcse.c (oprs_unchanged_p, record_last_reg_set_info,
3386         compute_hash_table, compute_kill_rd, compute_rd, compute_ae_kill,
3387         classic_gcse, compute_transp, cprop, compute_pre_data,
3388         compute_transpout, invalidate_nonnull_info,
3389         delete_null_pointer_checks_1, delete_null_pointer_checks,
3390         compute_code_hoist_vbeinout, hoist_code, compute_ld_motion_mems,
3391         compute_store_table, build_store_vectors, store_motion): Likewise.
3392         * global.c (global_conflicts, mark_elimination): Likewise.
3393         * graph.c (print_rtl_graph_with_bb): Likewise.
3394         * haifa-sched.c (sched_init): Likewise.
3395         * ifcvt.c (if_convert): Likewise.
3396         * lcm.c (compute_antinout_edge, compute_laterin, compute_insert_delete,
3397         compute_available, compute_nearerout, compute_rev_insert_delete,
3398         optimize_mode_switching): Likewise.
3399         * local-alloc.c (local_alloc, update_equiv_regs): Likewise.
3400         * predict.c (estimate_probability, note_prediction_to_br_prob,
3401         propagate_freq, counts_to_freqs, expensive_function_p,
3402         estimate_bb_frequencies): Likewise.
3403         * profile.c (instrument_edges, get_exec_counts,
3404         compute_branch_probabilities, compute_checksum, branch_prob,
3405         find_spanning_tree): Likewise.
3406         * recog.c (split_all_insns, peephole2_optimize): Likewise.
3407         * reg-stack.c (reg_to_stack, convert_regs_entry, convert_regs):
3408         Likewise.
3409         * regclass.c (scan_one_insn, regclass): Likewise.
3410         * regmove.c (mark_flags_life_zones, regmove_optimize,
3411         record_stack_memrefs): Likewise.
3412         * regrename.c (regrename_optimize, copyprop_hardreg_forward): Likewise.
3413         * reload1.c (reload, reload_combine, fixup_abnormal_edges): Likewise.
3414         * resource.c (find_basic_block): Likewise.
3415         * sched-ebb.c (schedule_ebbs): Likewise.
3416         * sched-rgn.c (is_cfg_nonregular, build_control_flow,
3417         find_single_block_region, find_rgns, schedule_insns)
3418         * sibcall.c (optimize_sibling_and_tail_recursive_call)
3419         * ssa-ccp.c (optimize_unexecutable_edges,
3420         ssa_ccp_df_delete_unreachable_insns): Likewise.
3421         * ssa-dce.c (ssa_eliminate_dead_code): Likewise.
3422         * ssa.c (find_evaluations, compute_dominance_frontiers_1,
3423         rename_block, convert_to_ssa, compute_conservative_reg_partition,
3424         compute_coalesced_reg_partition, rename_equivalent_regs,
3425         convert_from_ssa): Likewise.
3426         * config/ia64/ia64.c (emit_predicate_relation_info, process_epilogue,
3427         process_for_unwind_directive): Likewise.
3429         * df.c (FOR_ALL_BBS): Removed.
3430         * gcse.c (struct null_pointer_info): Type of current_block field
3431         changed.
3432         (struct reg_avail_info): Type of last_bb field changed.
3433         * config/ia64/ia64.c (block_num): Removed.
3434         (need_copy_state): Type changed.
3435         (last_block): New.
3437 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
3439         * cppinit.c (mark_named_operators): Split out from init_builtins.
3440         (cpp_finish_options): Call it from here instead.
3442 2002-05-23  Jason Thorpe  <thorpej@wasabisystems.com>
3444         * builtin-attrs.def: Update copyright years.
3445         (ATTR_NONNULL): New attribute identifier.
3446         (ATTR_NONNULL_1, ATTR_NONNULL_2, ATTR_NONNULL_3): New
3447         attribute tree lists.
3448         (DEF_FORMAT_ATTRIBUTE): Chain a nonnull attribute for the
3449         format operand.
3450         (ATTR_FORMAT_ARG_1, ATTR_FORMAT_ARG_2): Use...
3451         (DEF_FORMAT_ARG_ATTRIBUTE): ...this to generate format_arg
3452         attribute lists.  Chain the appropriate nonnull attribute.
3453         * c-format.c (check_format_arg): Remove null format string
3454         warning.
3455         * testsuite/gcc.dg/format/null-1.c: New test.
3457 2002-05-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
3459         * Makefile.in (ADAC): Define.
3460         (SYSLIBS): Define.
3461         (.SUFFIXES): Move before language makefile fragments.
3462         (STAGE2_FLAGS_TO_PASS): Use stage CC as ADAC.
3464 2002-05-23  Mark Mitchell  <mark@codesourcery.com>
3466         * varasm.c (make_decl_rtl): Don't allow weak variables to be
3467         placed in common.
3469 Thu May 23 19:43:41 CEST 2002  Jan Hubicka  <jh@suse.cz>
3471         * cfg.c (dump_flow_info): Print results of
3472         maybe_hot/probably_never_executed predicates.
3473         * toplev.c (open_dump_file): Print function frequency.
3475 2002-05-23  David S. Miller  <davem@redhat.com>
3477         * cse.c (approx_reg_cost_1, approx_reg_cost): Recode to not use
3478         regsets.
3480 2002-05-23  Jason Thorpe  <thorpej@wasabisystems.com>
3482         * c-common.c (warn_nonnull): Declare.
3483         (c_common_attribute_table): Add "nonnull" attribute.
3484         (handle_nonnull_attribute, check_function_nonnull, nonnull_check_p,
3485         check_nonnull_arg, get_nonnull_operand, check_function_arguments,
3486         check_function_arguments_recurse): New functions.
3487         * c-common.h (warn_nonnull): Declare extern.
3488         (check_function_arguments, check_function_arguments_recurse): New
3489         prototypes.
3490         * c-decl.c (c_decode_option): Add -Wnonnull option.
3491         * c-format.c (set_Wformat): Set warn_nonnull if enabling
3492         format checking.
3493         (format_check_context): New structure.
3494         (check_format_info_recurse): Remove recursion and rename to...
3495         (check_format_arg): ...this.  Update comment.
3496         (check_format_info): Use check_function_arguments_recurse.
3497         * c-typeck.c (build_function_call): Call check_function_arguments
3498         instead of check_function_format.
3499         * doc/extend.texi: Document "nonnull" attribute.
3500         * doc/invoke.texi: Docuemnt -Wnonnull option.
3501         * testsuite/gcc.dg/nonnull-1.c: New test.
3502         * testsuite/gcc.dg/nonnull-2.c: New test.
3504 2002-05-23  David S. Miller  <davem@redhat.com>
3506         * basic-block.h (CLEANUP_NO_INSN_DEL): Define it.
3507         * cfgcleanup.c (cleanup_cfg): If it is set do not
3508         attempt to delete trivially dead insns.
3509         * except.c (finish_eh_generation): Pass it to cleanup_cfg.
3510         * toplev.c (rest_of_compilation): Document non-trivial aspect
3511         the RTL before optimize_save_area_alloca is run.
3513 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
3515         * c-lex.c (indent_level): Remove.
3516         (cb_file_change, c_lex): Remove indent level handling.
3517         * c-lex.h (indent_level): Remove.
3518         * input.h (struct file_stack): Remove indent_level.
3519         * toplev.c (push_srcloc): Remove indent_level handling.
3521 2002-05-23  Jakub Jelinek  <jakub@redhat.com>
3523         PR target/6753
3524         * config/i386/i386.md (sse_movdfcc, sse_movdfcc_eq): Use Y instead
3525         of x in constraints for clarity.
3526         (sse_mov?fcc split): abort if op2 == op3.
3527         (sse_movsfcc_const0_1, sse_movsfcc_const0_2, sse_movsfcc_const0_3,
3528         sse_movsfcc_const0_4): Add earlyclobber.
3529         (sse_movdfcc_const0_1, sse_movdfcc_const0_2, sse_movdfcc_const0_3,
3530         sse_movdfcc_const0_4): Likewise.  Use DFmode, not SFmode.
3531         Use Y instead of x in constraints.
3533 2002-05-23  Richard Henderson  <rth@redhat.com>
3535         * doc/extend.texi (C99 Thread-Local Edits): New subsection.
3536         (C++98 Thread-Local Edits): New subsection.
3538         * config/i386/i386.c, config/i386/i386.h: Tidy comments and whitespace.
3539         (ix86_arch): Set type to enum processor_type.
3541         * config/i386/i386.md (movsi_1, movdi_1_rex64): Use
3542         LEGITIMATE_PIC_OPERAND_P not SYMBOLIC_CONST.
3544 2002-05-23  Jakub Jelinek  <jakub@redhat.com>
3546         * configure.in: Fix as version test for binutils 2.12.1 releases
3547         (without dates).
3548         * configure: Rebuilt.
3550 2002-05-23  Richard Henderson  <rth@redhat.com>
3552         * config/i386/i386.c (get_pic_label_name): New.
3553         (load_pic_register): Remove.
3554         (output_set_got): New.
3555         (ix86_expand_prologue): Use gen_set_got; mark insn REG_MAYBE_DEAD.
3556         * config/i386/i386.md (UNSPEC_SET_GOT): New.
3557         (UNSPECV_PROLOGUE_SET_GOT, UNSPECV_PROLOGUE_GET_PC): Remove.
3558         (prologue_set_got, prologue_get_pc): Remove.
3559         (set_got, set_got_nopic, set_got_deep, set_got_nodeep): New.
3560         (builtin_setjmp_receiver): Use gen_set_got.
3561         * config/i386/i386-protos.h: Update.
3563 Thu May 23 09:22:23 CEST 2002  Jan Hubicka  <jh@suse.cz>
3565         * gcse.c (hash_expr): Do not use alias set for hashing.
3567 2002-05-22  Kevin Buettner  <kevinb@redhat.com>
3569         * dbxout.c (dbxout_class_name_qualifiers): New function.
3570         (dbxout_symbol): Output class/struct qualifiers for a .stabs entry.
3572 2002-05-23  Neil Booth  <neil@daikokuya.demon.co.uk>
3574         * cpperror.c (_cpp_begin_message): No special casing
3575         of CPP_FATAL_LIMIT.
3576         * cppinit.c (sanity_checks): s/DL_FATAL/DL_ICE/.
3577         (output_deps, cpp_handle_option, cpp_post_options): Use DL_ERROR.
3578         * cpplib.c (do_include_common): Use DL_ERROR.
3579         * cpplib.h (CPP_FATAL_LIMIT, CPP_FATAL_ERRORS, DL_FATAL): Remove.
3580         (DL_ICE): Renumber.
3581         * fix-header.c (read_scan_file): Update.
3583 2002-05-22  Richard Henderson  <rth@redhat.com>
3585         * config/i386/i386.c (ix86_expand_call): New function, extracted
3586         from md call patterns.  Add pic_offset_table_rtx to
3587         CALL_INSN_FUNCTION_USAGE when needed.
3588         * config/i386/i386.md (call_pop, call): Use ix86_expand_call.
3589         (call_value_pop, call_value, untyped_call): Likewise.
3590         (call_exp, call_value_exp): Remove.
3591         * config/i386/i386-protos.h: Update.
3593 2002-05-22  Richard Henderson  <rth@redhat.com>
3595         * varasm.c (default_section_type_flags): Check for VAR_DECL
3596         before using DECL_THREAD_LOCAL.
3598 2002-05-22  David Edelsohn  <edelsohn@gnu.org>
3600         * config/rs6000/aix43.h (LINK_SPEC): Add PE initializer.
3601         (STARTFILE_SPEC): Delete PE crt0.o.
3602         * config/rs6000/aix51.h: Same.
3603         * config/rs6000/rs6000.c: Use TARGET_XCOFF, not OBJECT_FORMAT_COFF.
3604         * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Append [DS] to
3605         function descriptor symbol.  Use RS6000_OUTPUT_BASENAME.
3606         (ASM_OUTPUT_DEF_FROM_DECLS): Use RS6000_OUTPUT_BASENAME.
3607         * config/rs6000/xcoff.h (ASM_OUTPUT_DEF): Define.
3609 2002-05-22  Richard Henderson  <rth@redhat.com>
3611         * varasm.c (default_section_type_flags): Handle tls data and
3612         default sections.
3613         (default_unique_section): Handle tls sections.
3615 2002-05-23  Alan Modra  <amodra@bigpond.net.au>
3617         * configure.in (CROSS): Define NATIVE_CROSS.
3618         * configure: Regenerate.
3619         * gcc.c (STARTFILE_PREFIX_SPEC): Define.
3620         (startfile_prefix_spec): New var.
3621         (static_specs): Add startfile_prefix_spec.
3622         (do_spec_2): Split out from..
3623         (do_spec): ..here.
3624         (main): Process startfile_prefix_spec.
3625         * config/rs6000/linux64.h (LINK_OS_LINUX_SPEC) Change name of
3626         dynamic linker.
3627         (STARTFILE_PREFIX_SPEC): Define.
3628         (STARTFILE_LINUX_SPEC, ENDFILE_LINUX_SPEC): Rewrite without
3629         absolute paths.
3631 2002-05-22  Kazu Hirata  <kazu@cs.umass.edu>
3633         * cpperror.c: Fix formatting.
3634         * cppexp.c: Likewise.
3635         * cppfiles.c: Likewise.
3636         * cpphash.c: Likewise.
3637         * cpphash.h: Likewise.
3638         * cppinit.c: Likewise.
3639         * cpplex.c: Likewise.
3640         * cpplib.c: Likewise.
3641         * cppmacro.c: Likewise.
3642         * cppmain.c: Likewise.
3643         * cppspec.c: Likewise.
3645 2002-05-22  Jakub Jelinek  <jakub@redhat.com>
3647         * combine.c (force_to_mode): Use gen_int_mode.
3648         Don't clear CONST_INT bits outside of mode.
3650 2002-05-22  Richard Henderson  <rth@redhat.com>
3652         * fixinc/inclhack.def (thread_keyword): Match __thread as last arg.
3653         * fixinc/fixincl.x, fixinc/tests/base/pthread.h: Rebuild.
3655 2002-05-22  Jakub Jelinek  <jakub@redhat.com>
3657         PR c/6643
3658         * emit-rtl.c (widen_memory_access): Only call compare_tree_int
3659         if DECL_SIZE_UNIT is INTEGER_CST.
3661 2002-05-22  Richard Henderson  <rth@redhat.com>
3663         * flow.c (life_analysis): Delete broken reg_label check.
3665 2002-05-22  Richard Henderson  <rth@redhat.com>
3667         * fixinc/inclhack.def (thread_keyword): Allow as any prototype arg.
3668         * fixinc/fixincl.x, fixinc/tests/base/pthread.h: Rebuild.
3670 Wed May 22 18:39:57 2002  J"orn Rennecke <joern.rennecke@superh.com>
3672         * t-sh (LIB2FUNCS_EXTRA): Now embed-bb.c.
3673         (embed-bb.c): New rule.
3674         * t-sh64 (LIB2FUNCS_EXTRA): Don't change.
3675         * config/sh/embed_bb.c: Delete.
3677 Wed May 22 18:25:29 2002  J"orn Rennecke <joern.rennecke@superh.com>
3679         * c-common.c (cb_register_builtins): Don't indent '#' of #define.
3681 2002-05-22  Kazu Hirata  <kazu@cs.umass.edu>
3683         * config/h8300/h8300.md (*andorqi3): New.
3685 2002-05-22  Neil Booth  <neil@daikokuya.demon.co.uk>
3687         PR preprocessor/6517
3688         * Makefile.in: Update.
3689         * c-common.c (c_common_post_options): Add preprocessor
3690         errors to the error count.
3691         * c-lang.c (c_post_options): Kill.
3692         (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
3693         * hooks.h: Add header guards.
3694         * langhooks-def.h: Include hooks.h.
3695         (LANG_HOOKS_POST_OPTIONS): Update.
3696         * langhooks.h (struct lang_hooks): Update post_options.
3697         * toplev.c (parse_options_and_default_flags): Update.
3698 objc:
3699         * objc-lang.c (objc_post_options): Kill.
3700         (LANG_HOOKS_POST_OPTIONS): Use c_common_post_options.
3702 2002-05-21  Bruce Korb  <bkorb@gnu.org>
3704         * fixinc/tests/base/pthread.h(THREAD_KEYWORD_CHECK): add fix check
3705         * fixinc/inclhack.def(thread_keyword): use c_fix = format.
3706         * fixinc/fixincl.x: regen.
3708 2002-05-21  Kazu Hirata  <kazu@cs.umass.edu>
3710         * cfgbuild.c: Fix formatting.
3711         * cfg.c: Likewise.
3712         * cfgcleanup.c: Likewise.
3713         * cfglayout.c: Likewise.
3714         * cfgloop.c: Likewise.
3715         * cfgrtl.c: Likewise.
3717 2002-05-21  Richard Henderson  <rth@redhat.com>
3719         * c-common.h (enum rid): Add RID_THREAD.
3720         * c-decl.c (start_decl): Do not set DECL_COMMON for tls variables.
3721         (grokdeclarator): Grok __thread.
3722         * c-parse.in (reswords): Add __thread.
3723         (rid_to_yy): Add RID_THREAD.
3725         * tree.h (DECL_THREAD_LOCAL): New.
3726         (struct tree_decl): Add thread_local_flag.
3727         * print-tree.c (print_node): Dump DECL_THREAD_LOCAL.
3728         * tree.c (staticp): TLS variables are not static.
3730         * target-def.h (TARGET_HAVE_TLS): New.
3731         * target.h (have_tls): New.
3732         * output.h (SECTION_TLS): New.
3733         * varasm.c (assemble_variable): TLS variables can't be common for now.
3734         (default_section_type_flags): Handle .tdata and .tbss.
3735         (default_elf_asm_named_section): Handle SECTION_TLS.
3736         (categorize_decl_for_section): Handle DECL_THREAD_LOCAL.
3738         * flags.h (flag_tls_default): Declare.
3739         * toplev.c (flag_tls_default): Define.
3740         (display_help): Display help for it.
3741         (decode_f_option): Set it.
3743         * doc/extend.texi (Thread-Local): New node describing language-level
3744         thread-local storage.
3745         * doc/invoke.texi (-ftls-model): Document.
3747         * fixinc/inclhack.def (thread_keyword): New.
3748         * fixinc/fixincl.x: Rebuild.
3750 2002-05-21  Jeffrey A Law  <law@redhat.com>
3752         * optabs.c (expand_binop): For double-word integer multiplies,
3753         do not compute intermediate results into something that is
3754         not a register (such as a SUBREG or MEM).
3756         * i386.c (ix86_sched_reorder_ppro): Fix typo/thinko.
3757         (ix86_sched_reorder): Make sure to initialize scheduling
3758         data even when there's only one insn in the ready queue.
3760 2002-05-21  Vladimir Makarov  <vmakarov@redhat.com>
3762         * genautomata.c (reserv_sets_hash_value): Fix a typo.
3764 2002-05-21  Vladimir Makarov  <vmakarov@redhat.com>
3766         * genautomata.c (reserv_sets_hash_value): Define hash_value as
3767         set_el_t.  Transform the hash value into unsigned.
3768         (output_cycle_reservs): Fix bug with output of repeated `nothing'.
3769         (transform_3): Add code to process `(A,B)+(D,E)'.
3771 2002-05-21  NIIBE Yutaka  <gniibe@m17n.org>
3773         * reload1.c (do_output_reload): Run delete_output_reload
3774         only if optimizing.
3776 2002-05-21  Roger Sayle  <roger@eyesopen.com>
3778         PR middle-end/6600
3779         * expr.c (STORE_MAX_PIECES): New macro to avoid immediate constants
3780         larger than INTEGER_CST.  (store_by_pieces_1): Use it here...
3781         (can_store_by_pieces): ... and here to limit the largest mode used.
3782         Add a comment to document this function.
3784 2002-05-21  Richard Henderson  <rth@redhat.com>
3786         * flow.c (life_analysis): Fix test for deleted label.
3788 2002-05-21  Neil Booth  <neil@daikokuya.demon.co.uk>
3790         * doc/tm.texi: Fix typo.
3792 2002-05-21  Zack Weinberg  <zack@codesourcery.com>
3794         * c-common.c (c_common_init): Set options->unsigned_char from
3795         flag_signed_char.
3796         (cb_register_builtins): Define __STRICT_ANSI__ and
3797         __CHAR_UNSIGNED__ here...
3798         * cppinit.c (init_builtins): Not here.
3799         (cpp_create_reader): unsigned_char option defaults to 0, not
3800         !DEFAULT_SIGNED_CHAR.
3801         (COMMAND_LINE_OPTIONS, cpp_handle_option): Lose -fsigned-char
3802         and -funsigned-char.
3804         * cpphash.h (struct spec_nodes): Kill n__STRICT_ANSI__.
3805         * cpphash.c (_cpp_init_hashtable): Don't set it.
3806         * cppmacro.c (builtin_macro) [BT_STDC]: Use the language setting
3807         directly.  Clarify comment.
3809 2002-05-21  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3811         * bb-reorder.c (make_reorder_chain_1): Use prev_bb/next_bb to get to
3812         neighbouring basic blocks.  Use ENTRY_BLOCK_PTR->next_bb instead of
3813         BASIC_BLOCK (0).  Use EXIT_BLOCK_PTR->prev_bb instead of
3814         BASIC_BLOCK (n_basic_blocks - 1).
3815         * cfganal.c (can_fallthru, flow_call_edges_add,
3816         flow_preorder_transversal_compute): Too.
3817         * cfgbuild.c (make_edges, find_basic_blocks, find_many_sub_basic_blocks,
3818         find_sub_basic_blocks): Too.
3819         * cfgcleanup.c (try_simplify_condjump, try_optimize_cfg): Too.
3820         * cfglayout.c (skip_insns_after_block, fixup_reorder_chain,
3821         fixup_fallthru_exit_predecessor, cfg_layout_redirect_edge): Too.
3822         * cfgrtl.c (tidy_fallthru_edges, verify_flow_info): Too.
3823         * combine.c (this_basic_block): Type changed to basic_block.
3824         (combine_instructions, set_nonzero_bits_and_sign_copies, try_combine,
3825         nonzero_bits, num_sign_bit_copies, get_last_value_validate,
3826         get_last_value, distribute_notes, distribute_links): Too.
3827         * final.c (compute_alignments): Too.
3828         * flow.c (regno_uninitialized, regno_clobbered_at_setjmp): Too.
3829         * function.c (thread_prologue_and_epilogue_insns): Too.
3830         * gcse.c (compute_code_hoist_vbeinout): Too.
3831         * global.c (build_insn_chain): Too.
3832         * ifcvt.c (find_if_block, find_cond_trap): Too.
3833         * predict.c (last_basic_block_p, note_prediction_to_br_prob): Too.
3834         * regmove.c (regmove_optimize): Too.
3835         * resource.c (find_basic_block): Too.
3836         * sched-ebb.c (schedule_ebbs): Too.
3837         * ssa-dce.c (find_control_dependence, find_pdom): Too.
3839 2002-05-21  Andreas Jaeger  <aj@suse.de>
3841         * cppinit.c (sanity_checks): Avoid printf mismatch warnings.
3843 2002-05-21  Richard Henderson  <rth@redhat.com>
3845         * reg-stack.c (swap_rtx_condition, subst_stack_regs_pat): Use
3846         unspec names, not numbers.
3848 2002-05-21  Joseph S. Myers  <jsm28@cam.ac.uk>
3850         * doc/sourcebuild.texi: Mention snapshot-README and
3851         snapshot-index.html as needing updating for new front ends.
3853 2002-05-21  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3855         * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): Avoid warnings when
3856         disabling checking, and avoid multiple evaluation of RTX.
3858 2002-05-21  Richard Earnshaw  <rearnsha@arm.com>
3860         * bitmap.c (bitmap_find_bit): Return early if we have the correct
3861         element cached.
3863 Tue May 21 10:51:54 CEST 2002  Jan Hubicka  <jh@suse.cz>
3865         * profile.c (gen_edge_profiler):  Set alias set before the memory is
3866         used.
3868 2002-05-20  David S. Miller  <davem@redhat.com>
3870         * cselib.c (max_value_regs): New.
3871         (cselib_lookup, cselib_invalidate_regno): Initialize it when
3872         adding new entries to the REG_VALUES table and we are dealing with
3873         a hard register.
3874         (clear_table): Initialize it.
3875         (cselib_invalidate_regno): Use it to determine which hard
3876         registers to scan when mode is not VOIDmode.
3878 2002-05-20  Duraid Madina   <duraid@fl.net.au>
3880         * tradcpp.c (fixup_newlines): Use old-style function header.
3882 2002-05-20  Krister Walfridsson  <cato@df.lth.se>
3884         * reload1.c (reload_cse_simplify): Fix typo in rtx code check.
3886 2002-05-20  H.J. Lu  (hjl@gnu.org)
3888         Base on suggestions from Zhang Fuxin <fxzhang@ict.ac.cn>:
3890         * config/mips/mips.h (DFMODE_NAN): Defined.
3891         (SFMODE_NAN): Likewise.
3893 2002-05-20  Dale Johannesen  <dalej@apple.com>
3895         * combine.c (cant_combine_insn_p):  Back out my
3896         previous patch.
3898 2002-05-20  Kazu Hirata  <kazu@cs.umass.edu>
3900         * params.c: Fix formatting.
3901         * params.h: Likewise.
3902         * predict.c: Likewise.
3903         * prefix.c: Likewise.
3904         * print-rtl.c: Likewise.
3905         * print-tree.c: Likewise.
3906         * profile.c: Likewise.
3908 2002-05-20  H.J. Lu  (hjl@gnu.org)
3910         * gcc/config/mips/linux.h (SDB_DEBUGGING_INFO): Undefine.
3912 2002-05-20  Nick Clifton  <nickc@cambridge.redhat.com>
3914         * config/arm/arm-wince-pe.h (ASM_SPEC): Pass -mcpu and -march
3915         switches straight on to the assembler, do not abbreviate them.
3916         * config/arm/elf.h (ASM_SPEC): As above.
3917         * config/arm/semi.h (ASM_SPEC): As above.
3918         * config/arm/unknown-elf-oabi.h (ASM_SPEC): As above.
3919         * config/arm/xscale-coff.h (SUBTARGET_ASM_SPEC): Pass
3920         -mcpu=xscale on to the assembler by default.
3921         * config/arm/xscale-elf.h (SUBTARGET_ASM_SPEC): As above.
3923 2002-05-20  Richard Henderson  <rth@redhat.com>
3925         * cse.c (canon_hash): Reorder do_not_record test.  Always
3926         allow pic_offset_table_rtx.
3928 2002-05-19  Toon Moene  <toon@moene.indiv.nluug.nl>
3930         * optabs.c (expand_cmplxdiv_wide): Use complex_part_zero_p.
3931         (expand_binop): Ditto (3 times).
3933 2002-05-19  Mark Mitchell  <mitchell@doubledemon.codesourcery.com>
3935         * Makefile.in (distclean): Remove QMTest stuff.
3936         (QMTEST_PATH): New variable.
3937         (QMTESTFLAGS): Likewise.
3938         (QMTESTRUNFLAGS): Likewise.
3939         (QMTEST): Likewise.
3940         (QMTEST_GPP_TESTS): Likewise.
3941         (QMTEST_DIR): Likewise.
3942         (QMTEST_DIR/context): New target.
3943         (qmtest-g++): Likeise.
3944         (qmtest-gui): Likewise.
3945         (QMTEST_DIR/gpp-expected.qmr): Likewise.
3947 2002-05-19  Aldy Hernandez  <aldyh@redhat.com>
3949         * config/rs6000/rs6000.h (FUNCTION_VALUE): Only return vectors in
3950         an altivec register if TARGET_ALTIVEC.
3952         * config/rs600/rs6000.c (rs6000_emit_move): Change VECTOR_MODE_P
3953         to ALTIVEC_VECTOR_MODE.
3954         (rs6000_va_arg): Only vectors of type AltiVec are 16 byte aligned.
3955         (rs6000_va_arg): Vectors may go in registers if they are not
3956         altivec vectors.
3958 2002-05-19  Kazu Hirata  <kazu@cs.umass.edu>
3960         * protoize.c: Fix formatting.
3962 2002-05-19  Richard Henderson  <rth@redhat.com>
3964         * gensupport.c (init_include_reader): Merge into ...
3965         (process_include): ... here.  Simplify composite path creation.
3966         Plug memory leaks.  Fix file/line number tracking.  Do not
3967         process_define_cond_exec.  Return void.
3968         (process_rtx): Don't check process_include return value.
3970 2002-05-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3972         * basic_block.h (struct basic_block_def): Added prev_bb and next_bb
3973         fields.
3974         (FOR_BB_BETWEEN, FOR_ALL_BB, FOR_ALL_BB_REVERSE): New macros for
3975         traversing basic block chain.
3976         (create_basic_block_structure, create_basic_block): Declaration changed.
3977         (link_block, unlink_block): Declare.
3978         * cfg.c (entry_exit_blocks): Initialize new fields.
3979         (link_block, unlink_block): New.
3980         (expunge_block_nocompact): Unlink basic block.
3981         (dump_flow_info): Print prev_bb/next_bb fields.
3982         * cfgbuild.c (find_basic_blocks_1, find_basic_blocks): Modified.
3983         * cfgcleanup.c (merge_blocks_move_predecessor_nojumps): Modified.
3984         * cfglayout.c (fixup_reorder_chain, cfg_layout_duplicate_bb): Modified.
3985         * cfgrtl.c (create_basic_block_structure, create_basic_block,
3986         split_block, force_nonfallthru_and_redirect, split_edge): Modified.
3987         (verify_flow_info): Check that list agrees with numbering.
3989 2002-05-19  Neil Booth  <neil@daikokuya.demon.co.uk>
3991         * c-common.c (preprocessing_asm): New macro.
3992         * c-lex.h (builtin_define, builtin_assert): Use pfile.
3993 doc:
3994         * tm.texi: Update.
3995 config/alpha:
3996         * alpha.h (CPLUSPLUS_CPP_SPEC): Remove.
3997         (CPP_SPEC): Simplify.
3998         (TARGET_CPU_CPP_BUILTINS): Update.
3999         * freebsd.h (TARGET_OS_CPP_BUILTINS): New.
4000         (CPP_SPEC): Simplify.
4001         * linux.h (CPLUSPLUS_CPP_SPEC): Remove.
4002         (TARGET_OS_CPP_BUILTINS): Update.
4003         * osf.h (CPP_XFLOAT_SPEC): Kill.
4004         (TARGET_OS_CPP_BUILTINS): Update.
4005         (CPP_SUBTARGET_SPEC, SUBTARGET_EXTRA_SPECS): Simplify.
4006         * osf5.h (CPP_XFLOAT_SPEC): Kill.
4007         * vms.h (CPP_SUBTARGET_SPEC): Kill.
4008         (TARGET_OS_CPP_BUILTINS): Update.
4010 2002-05-19  Richard Henderson  <rth@redhat.com>
4012         * varasm.c (default_binds_local_p): Fix typo.
4014 2002-05-19  Marek Michalkiewicz  <marekm@amelek.gda.pl>
4016         * config/avr/avr.c (machine_dependent_reorg): Sign extend the
4017         CONST_INT operand to the correct mode after adding 1 to it.
4019 2002-05-19  Mark Mitchell  <mark@codesourcery.com>
4021         * config.gcc (powerpc-wrs-windiss*): New target.
4023 2002-05-19  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4025         * config/rs6000/rs6000.md (ashrdi3_no_power): New.
4026         (ashrdi3): Use it.
4028 2002-05-18  Mark Mitchell  <mark@codesourcery.com>
4030         * configure.in (AC_CHECK_FUNCS): Add checks for scandir and
4031         alphasort.
4032         * config.in: Regenerated.
4033         * configure: Regenerated.
4035 2002-05-19  Richard Henderson  <rth@redhat.com>
4037         * target-def.h (TARGET_BINDS_LOCAL_P): New.
4038         * target.h (struct gcc_target): Move boolean fields to the end.
4039         Add binds_local_p.
4040         * varasm.c (default_binds_local_p): New.
4041         * output.h: Declare it.
4043         * config/alpha/alpha.c (alpha_encode_section_info): Use the new hook.
4044         * config/cris/cris.c (cris_encode_section_info): Likewise.
4045         * config/i386/i386.c (i386_encode_section_info): Likewise.
4046         * config/ia64/ia64.c (ia64_encode_section_info): Likewise.
4047         * config/sh/sh.c (sh_encode_section_info): Likewise.
4049         * doc/tm.texi (TARGET_IN_SMALL_DATA_P): New.
4050         (TARGET_BINDS_LOCAL_P): New.
4052 2002-05-19  Richard Henderson  <rth@redhat.com>
4054         * system.h (BLOCK_PROFILER, BLOCK_PROFILER_CODE,
4055         FUNCTION_BLOCK_PROFILER, FUNCTION_BLOCK_PROFILER_EXIT,
4056         MACHINE_STATE_SAVE, MACHINE_STATE_RESTORE): Poison.
4058         * toplev.c (display_help): Kill -a -ax help.
4060         * config/1750a/1750a.h, config/alpha/alpha.h,
4061         config/clipper/clipper.h, config/dsp16xx/dsp16xx.h,
4062         config/h8300/h8300.h, config/i960/i960.h, config/m68k/tower-as.h,
4063         config/m88k/m88k.h, config/vax/vax.h, config/we32k/we32k.h:
4064         (FUNCTION_BLOCK_PROFILER, BLOCK_PROFILER): Kill.
4066         * libgcc2.c [L_bb] (BLOCK_PROFILER_CODE): Kill.
4067         * config/m68k/sun3.h (BLOCK_PROFILER_CODE): Kill.
4069         * config/i386/i386-protos.h (ix86_output_block_profiler): Kill.
4070         (ix86_output_function_block_profiler): Kill.
4071         * config/m68hc11/m68hc11.c (m68hc11_block_profiler): Kill.
4072         (m68hc11_function_block_profiler): Kill.
4073         * config/m68hc11/m68hc11-protos.h: Update.
4074         * config/m88k/m88k.c (output_block_profiler): Kill.
4075         (output_function_block_profiler): Kill.
4076         * config/m88k/m88k-protos.h: Update.
4078 2002-05-19  Richard Henderson  <rth@redhat.com>
4080         * system.h (STRIP_NAME_ENCODING): Poison it.
4081         * output.h (STRIP_NAME_ENCODING): Remove.
4082         (default_strip_name_encoding): Declare.
4083         * target-def.h (TARGET_STRIP_NAME_ENCODING): New.
4084         * target.h (strip_name_encoding): New.
4085         * varasm.c (default_strip_name_encoding): New.
4087         * dwarf2asm.c, varasm.c, config/darwin.c, config/darwin.h,
4088         config/alpha/alpha.c, config/arm/pe.c, config/avr/avr.c,
4089         config/cris/cris.c, config/i386/cygwin.h, config/i386/interix.c,
4090         config/i386/winnt.c, config/m32r/m32r.h, config/mcore/mcore-elf.h,
4091         config/mcore/mcore-pe.h, config/mcore/mcore.c, config/mcore/mcore.h,
4092         config/mips/mips.c, config/mn10200/mn10200.h, config/mn10300/mn10300.h,
4093         config/pa/pa.c, config/pa/pa.h, config/pa/som.h,
4094         config/rs6000/rs6000.c, config/rs6000/sysv4.h, config/rs6000/xcoff.h,
4095         config/v850/v850.h: Use the hook, not the macro.
4097         * config/darwin-protos.h, config/darwin.c, config/darwin.h,
4098         config/alpha/alpha.c, config/alpha/alpha.h, config/h8300/h8300.c,
4099         config/h8300/h8300.h, config/i386/cygwin.h, config/i386/i386-interix.h,
4100         config/i386/i386-protos.h, config/i386/win32.h, config/i386/winnt.c,
4101         config/ia64/ia64.c, config/ia64/ia64.h, config/m32r/m32r.c,
4102         config/m32r/m32r.h, config/mcore/mcore.c, config/mcore/mcore.h,
4103         config/pa/pa.c, config/rs6000/rs6000.c, config/rs6000/sysv4.h,
4104         config/rs6000/xcoff.h, config/sh/sh.c, config/sh/sh.h,
4105         config/v850/v850.c, config/v850/v850.h:
4106         Move STRIP_NAME_ENCODING to out-of-line function and add
4107         TARGET_STRIP_NAME_ENCODING.
4109         * config/arm/arm.c, config/arm/arm.h, config/mmix/mmix-protos.h,
4110         config/mmix/mmix.c, config/mmix/mmix.h: Replace STRIP_NAME_ENCODING
4111         with TARGET_STRIP_NAME_ENCODING referencing existing function;
4112         make function static.
4114         * xcoffout.c: Include target.h
4115         * Makefile.in (xcoffout.o): Update.
4117         * config/avr/avr.c (avr_encode_section_info): Correct prototype.
4118         * config/avr/avr.h (STRIP_NAME_ENCODING): Remove.
4119         * config/rs6000/rs6000.c (rs6000_xcoff_unique_section): Mark
4120         reloc argument unused.
4121         * config/sh/sh.c (TARGET_ENCODE_SECTION_INFO): New.
4123         * doc/tm.texi (TARGET_STRIP_NAME_ENCODING): Update from previous
4124         STRIP_NAME_ENCODING docs.
4126 2002-05-19  Andreas Jaeger  <aj@suse.de>
4128         * gengenrtl.c: Add prototype for excluded_rtx.
4130         * real.h: Add prototype for exact_real_truncate.
4132 2002-05-18  Richard Henderson  <rth@redhat.com>
4134         * system.h (ENCODE_SECTION_INFO): Poison it.
4135         * target-def.h (TARGET_ENCODE_SECTION_INFO): New.
4136         * target.h (encode_section_info): New.
4137         * varasm.c (make_decl_rtl, output_constant_def): Use it.
4138         * hooks.c (hook_tree_int_void): New.
4139         * hooks.h: Declare it.
4141         * config/darwin.h, config/alpha/alpha-protos.h, config/alpha/alpha.c,
4142         config/alpha/alpha.h, config/arm/pe.h, config/avr/avr-protos.h,
4143         config/avr/avr.c, config/avr/avr.h, config/c4x/c4x-protos.h,
4144         config/c4x/c4x.c, config/c4x/c4x.h, config/cris/cris-protos.h,
4145         config/cris/cris.c, config/cris/cris.h, config/i386/cygwin.h,
4146         config/i386/win32.h, config/ia64/ia64-protos.h, config/ia64/ia64.c,
4147         config/ia64/ia64.h, config/m32r/m32r-protos.h, config/m32r/m32r.c,
4148         config/m32r/m32r.h, config/m68hc11/m68hc11-protos.h,
4149         config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
4150         config/mcore/mcore-protos.h, config/mcore/mcore.c,
4151         config/mcore/mcore.h, config/mmix/mmix-protos.h, config/mmix/mmix.c,
4152         config/mmix/mmix.h, config/rs6000/rs6000-protos.h,
4153         config/rs6000/sysv4.h, config/stormy16/stormy16-protos.h,
4154         config/stormy16/stormy16.c, config/stormy16/stormy16.h:
4155         Replace ENCODE_SECTION_INFO with TARGET_ENCODE_SECTION_INFO
4156         referencing existing function.  Make function static.
4158         * config/a29k/a29k.c, config/a29k/a29k.h, config/arc/arc.c,
4159         config/arc/arc.h, config/arm/arm.c, config/arm/arm.h,
4160         config/h8300/h8300.c, config/h8300/h8300.h, config/i370/i370.c,
4161         config/i370/i370.h, config/i386/i386-interix.h, config/i386/i386.c,
4162         config/i386/i386.h, config/i386/interix.c, config/m88k/m88k.c,
4163         config/m88k/m88k.h, config/mips/mips.c, config/mips/mips.h,
4164         config/ns32k/ns32k.c, config/ns32k/ns32k.h, config/pa/pa.c,
4165         config/pa/pa.h, config/romp/romp.c, config/romp/romp.h,
4166         config/rs6000/linux64.h, config/rs6000/xcoff.h, config/s390/s390.c,
4167         config/s390/s390.h, config/sh/sh.c, config/sh/sh.h,
4168         config/sparc/sparc.c, config/sparc/sparc.h, config/v850/v850.c,
4169         config/v850/v850.h, config/vax/vax.c, config/vax/vms.h,
4170         config/xtensa/xtensa.c, config/xtensa/xtensa.h:
4171         Move ENCODE_SECTION_INFO to out-of-line function and add
4172         TARGET_ENCODE_SECTION_INFO.
4174         * config/darwin.h (ASM_DECLARE_FUNCTION_NAME): Use hook, not macro.
4175         (ASM_DECLARE_OBJECT_NAME, ASM_OUTPUT_ALIGNED_DECL_LOCAL): Likewise.
4177         * config/arm/pe.h (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Rename
4178         from SUBTARGET_*
4179         (switch_to_section): Replace in_rdata case with in_readonly_data.
4181         * config/h8300/h8300.c (h8300_encode_label): Make static.
4182         * config/h8300/h8300-protos.h: Update.
4184         * config/rs6000/rs6000.c (rs6000_elf_encode_section_info): Rename
4185         from rs6000_encode_section_info; make static.
4186         (rs6000_xcoff_encode_section_info): New.
4188         * config/v850/v850.c (v850_encode_data_area): Make static.
4189         * config/v850/v850-protos.h: Update.
4191         * config/vax/vax.c: Include flags.h.
4192         (vms_select_section): Fix typo.
4194         * doc/tm.texi (TARGET_ENCODE_SECTION_INFO): Update from previous
4195         ENCODE_SECTION_INFO docs.
4197 2002-05-18  Richard Henderson  <rth@redhat.com>
4199         * config/darwin.h (DARWIN_REGISTER_TARGET_PRAGMAS): Rename from
4200         REGISTER_TARGET_PRAGMAS.
4201         * config/rs6000/darwin.h (REGISTER_TARGET_PRAGMAS): Redefine.
4203         * config.gcc: Do not use rs6000-c.c on powerpc-darwin.
4205 2002-05-18  Richard Henderson  <rth@redhat.com>
4207         * system.h (SELECT_RTX_SECTION): Poison.
4208         * target-def.h (TARGET_ASM_SELECT_RTX_SECTION): New.
4209         * target.h (select_rtx_section): New.
4210         * varasm.c (output_constant_pool): Use it.
4211         (default_select_rtx_section, default_elf_select_rtx_section): New.
4212         * output.h: Declare them.
4214         * config/darwin.h (SELECT_RTX_SECTION): Move ...
4215         * config/darwin.c (machopic_select_rtx_section): ... here.
4216         * config/darwin-protos.h: Update.
4218         * config/nextstep.h (SELECT_RTX_SECTION): Move ...
4219         * config/nextstep.c (machopic_select_rtx_section): ... here.
4220         (nextstep_select_section): Rename variable to avoid macro clash.
4221         * config/nextstep-protos.h: Update.
4223         * config/elfos.h, config/svr3.h, config/arm/aof.h, config/c4x/c4x.h,
4224         config/i386/dgux.h, config/i386/osfrose.h, config/i386/sco5.h,
4225         config/i386/svr3gas.h, config/i860/paragon.h, config/ia64/aix.h,
4226         config/m32r/m32r.h, config/m68k/dpx2.h, config/m68k/lynx.h,
4227         config/m68k/m68k.h, config/m68k/tower-as.h, config/m88k/dgux.h,
4228         config/mcore/mcore-pe.h, config/mips/mips.h, config/mmix/mmix.h,
4229         config/pa/pa-linux.h, config/pa/pa.h, config/romp/romp.h,
4230         config/rs6000/lynx.h, config/rs6000/sysv4.h, config/s390/linux.h,
4231         config/sparc/sysv4.h, config/xtensa/elf.h, config/xtensa/linux.h
4232         (SELECT_RTX_SECTION): Remove.
4234         * config/darwin.h, config/elfos.h, config/nextstep.h,
4235         config/ia64/aix.h, config/ia64/sysv4.h, config/alpha/alpha.c,
4236         config/mips/mips.c, config/romp/romp.c, config/rs6000/sysv4.h,
4237         config/rs6000/xcoff.h, config/s390/s390.c, config/sparc/aout.h,
4238         config/sparc/lynx.h, config/xtensa/xtensa.c
4239         (TARGET_ASM_SELECT_RTX_SECTION): New.
4241         * config/alpha/elf.h (SELECT_RTX_SECTION): Move ...
4242         * config/alpha/alpha.c (alpha_elf_select_rtx_section): ... here.
4243         * config/ia64/sysv4.h (SELECT_RTX_SECTION): Move ...
4244         * config/ia64/ia64.c (ia64_select_rtx_section): ... here.
4245         (ia64_aix_select_rtx_section): New.
4246         * config/mips/iris6.h (READONLY_DATA_SECTION_ASM_OP): Undef before
4247         redefining.
4248         * config/mips/mips.c (mips_select_rtx_section): Make static.
4249         Support ELF SHF_MERGE features.
4250         * config/mips/mips-protos.h: Update.
4251         * config/rs6000/xcoff.h (SELECT_RTX_SECTION): Move ...
4252         * config/rs6000/rs6000.c (rs6000_xcoff_select_rtx_section): ... here.
4253         (rs6000_elf_select_rtx_section): Rename from rs6000_select_rtx_section;
4254         make static, fall back to default_elf_select_rtx_section.
4255         * config/rs6000/rs6000-protos.h: Update.
4256         * config/sparc/sparc.h (SELECT_RTX_SECTION): Move ...
4257         * config/sparc/sparc.c (sparc_aout_select_rtx_section): ... here.
4258         * config/sparc/sunos4.h (on_exit): Declare only if IN_LIBGCC2.
4259         * config/romp/romp.c (romp_select_rtx_section): New.
4260         * config/s390/s390.c (s390_select_rtx_section): New.
4261         * config/xtensa/xtensa.c: Include output.h.  Shuffle local function
4262         declarations before target macro definition.
4263         (xtensa_emit_call): Use static buffer.
4264         (xtensa_select_rtx_section): New.
4265         * config/xtensa/xtensa.h (MAX_INT_TYPE_SIZE): Remove.
4266         (IMPLICIT_FIX_EXPR, EASY_DIV_EXPR): Remove.
4267         (ASM_OUTPUT_POOL_PROLOGUE): Update call to resolve_unique_section.
4269         * doc/tm.texi (TARGET_ASM_SELECT_RTX_SECTION): Update from
4270         SELECT_RTX_SECTION docs.
4272 Sun May 19 00:24:23 CEST 2002  Jan Hubicka  <jh@suse.cz>
4274         * i386.md (movsi/movdi): Fix template.
4275         (sse2 patterns): Set attributes consistently.
4277         * i386.md (pushqi2, ashrqi_*): Fix constraint.
4279 2002-05-18  Toon Moene  <toon@moene.indiv.nluug.nl>
4281         * optabs.c (complex_part_zero_p): New.
4282         * (expand_cmplxdiv_straight): Use it.
4283         * (expand_cmplxdiv_wide): Ditto.
4284         * (expand_binop): Ditto.
4286 2002-05-18  Richard Henderson  <rth@redhat.com>
4288         * final.c (HAVE_READONLY_DATA_SECTION): New.
4289         (shorten_branches): Use it instead of ifdefs.
4290         * varasm.c (enum in_section): Add in_readonly_data.
4291         (text_section, data_section): Tidy.
4292         (readonly_data_section): Use READONLY_DATA_SECTION_ASM_OP if present.
4294         * config/darwin.h, config/nextstep.h, config/h8300/elf.h,
4295         config/i860/paragon.h, config/m68k/dpx2.h, config/m68k/hp320.h
4296         (READONLY_DATA_SECTION): Don't undef.
4298         * config/alpha/unicosmk.h, config/h8300/elf.h, config/i386/aix386ng.h,
4299         config/i860/paragon.h, config/m68k/dpx2.h, config/m68k/hp320.h,
4300         config/rs6000/lynx.h (READONLY_DATA_SECTION_ASM_OP): Undef.
4302         * config/elfos.h, config/svr3.h, config/alpha/alpha-interix.h,
4303         config/alpha/elf.h, config/c4x/c4x.h, config/i386/i386-interix.h,
4304         config/i386/sco5.h, config/i386/svr3gas.h, config/i860/sysv3.h,
4305         config/m88k/m88k.h, config/pa/pa64-hpux.h (USE_CONST_SECTION): Remove.
4307         * config/elfos.h, config/netware.h, config/alpha/alpha-interix.h,
4308         config/alpha/elf.h, config/alpha/vms.h, config/arc/arc.h,
4309         config/arm/coff.h, config/c4x/c4x.h, config/dsp16xx/dsp16xx.h,
4310         config/i386/dgux.h, config/i386/i386-interix.h, config/i386/sco5.h,
4311         config/ia64/hpux.h, config/m32r/m32r.h, config/m68k/tower-as.h,
4312         config/m88k/m88k.h, config/mcore/mcore-pe.h, config/mips/iris6.h,
4313         config/mips/mips.h, config/mmix/mmix.h, config/pa/pa64-hpux.h,
4314         config/sparc/sysv4.h (READONLY_DATA_SECTION_ASM_OP): Rename from
4315         CONST_SECTION_ASM_OP/READONLY_SECTION_ASM_OP/RDATA_SECTION_ASM_OP.
4317         * config/elfos.h, config/netware.h, config/1750a/1750a.h,
4318         config/a29k/a29k.h, config/alpha/alpha-interix.h, config/alpha/alpha.h,
4319         config/arm/coff.h, config/h8300/h8300.h, config/i386/aix386ng.h,
4320         config/i386/i386-interix.h, config/i386/osfrose.h, config/mmix/mmix.h,
4321         config/pa/pa64-hpux.h, config/sparc/litecoff.h
4322         (EXTRA_SECTIONS, EXTRA_SECTION_FUNCTIONS): Remove.
4324         * config/elfos.h, config/netware.h, config/svr3.h,
4325         config/alpha/alpha-interix.h, config/alpha/alpha.h, config/alpha/elf.h,
4326         config/arm/coff.h, config/c4x/c4x.h, config/dsp16xx/dsp16xx.h,
4327         config/h8300/h8300.h, config/i386/i386-interix.h,
4328         config/i386/osfrose.h, config/i386/svr3gas.h, config/mmix/mmix.h,
4329         config/pa/pa64-hpux.h (READONLY_DATA_SECTION): Remove.
4331         * config/elfos.h, config/netware.h, config/svr3.h,
4332         config/alpha/alpha-interix.h, config/alpha/alpha.h, config/alpha/elf.h,
4333         config/c4x/c4x.h, config/i386/aix386ng.h, config/i386/i386-interix.h,
4334         config/i386/sco5.h, config/i386/svr3gas.h, config/mmix/mmix.h,
4335         config/pa/pa64-hpux.h (CONST_SECTION_FUNCTION): Remove.
4337         * config/lynx.h, config/svr3.h, config/alpha/elf.h, config/alpha/vms.h,
4338         config/c4x/c4x.h, config/dsp16xx/dsp16xx.h, config/i386/sco5.h,
4339         config/i386/svr3gas.h, config/i860/sysv3.h, config/i860/sysv4.h,
4340         config/ia64/sysv4.h, config/m32r/m32r.h, config/m88k/m88k.h,
4341         config/mcore/mcore-elf.h, config/mcore/mcore-pe.h, config/mips/elf.h,
4342         config/mips/elf64.h, config/mips/iris6.h, config/mips/linux.h,
4343         config/mips/mips.h, config/mips/rtems64.h, config/mips/vxworks.h,
4344         config/rs6000/sysv4.h, config/v850/v850.h
4345         (EXTRA_SECTIONS): Remove in_const/in_rdata.
4346         (EXTRA_SECTION_FUNCTIONS): Remove accompanying function.
4348         * config/svr3.h, config/c4x/c4x.h, config/i386/dgux.h,
4349         config/i386/sco5.h, config/i386/svr3gas.h, config/ia64/aix.h,
4350         config/m88k/dgux.h, config/mcore/mcore-pe.h, config/mmix/mmix.h,
4351         config/sparc/sysv4.h (SELECT_RTX_SECTION): Use readonly_data_section.
4352         * config/alpha/alpha.c (alpha_start_function): Likewise.
4353         (alpha_write_linkage): Likewise.
4354         * config/m32r/m32r.c (m32r_select_section): Likewise.
4355         * config/m88k/m88k.c (m88k_select_section): Likewise.
4356         * config/mips/mips.c (mips_select_rtx_section): Likewise.
4357         * config/rs6000/rs6000.c (rs6000_select_rtx_section): Likewise.
4358         (rs6000_elf_select_section): Likewise.
4359         * config/v850/v850.c (v850_select_section): Likewise.
4361         * config/1750a/1750a.h, config/i860/sysv3.h
4362         (READONLY_DATA_SECTION_ASM_OP): New.
4363         READONLY_DATA_SECTION_ASM_OP.
4364         * config/i386/interix.c, config/i386/winnt.c
4365         (i386_pe_unique_section): Always use .rdata prefix.
4366         * config/pa/som.h (readonly_data): Always switch to read-only section.
4367         (READONLY_DATA_SECTION): Predicate on flag_pic.
4368         * config/we32k/we32k.h (READONLY_DATA_SECTION): Remove parenthesis.
4369         * doc/tm.texi (READONLY_DATA_SECTION_ASM_OP): New.
4370         (READONLY_DATA_SECTION): Update.
4372 2002-05-18  Jason Thorpe  <thorpej@wasabisystems.com>
4374         * c-common.c (c_common_post_options): Warn if -Wformat-zero-length
4375         is used without -Wformat.
4376         * c-common.h (warn_format_zero_length): Declare extern.
4377         * c-decl.c (warn_options): Add "format-zero-length".
4378         * c-format.c (warn_format_zero_length): Declare.
4379         (set_Wformat): Set warn_format_zero_length for -Wformat.
4380         (check_format_info): Only warn about zero-length formats if
4381         warn_format_zero_length is true.  Include the format type
4382         name in the warning message.
4383         * doc/invoke.texi: Document -Wformat-zero-length.
4384         * testsuite/gcc.dg/format/zero-length-1.c: New test.
4386 2002-05-18  Kazu Hirata  <kazu@cs.umass.edu>
4388         * timevar.c: Fix formatting.
4389         * tlink.c: Likewise.
4390         * toplev.c: Likewise.
4391         * tree-dump.c: Likewise.
4392         * tree-inline.c: Likewise.
4394 2002-05-18  Neil Booth  <neil@daikokuya.demon.co.uk>
4396         * cppinit.c (cpp_post_options): If preprocessed, turn off
4397         traditional.  If traditional, turn off column numbers.
4398         * cpplib.c (cpp_push_buffer): Lex from stage 3 if traditional.
4399         * cpptrad.c (handle_newline): Update line_base.
4400         (skip_comment): Handle -Wcomment.
4402 2002-05-17  Zack Weinberg  <zack@codesourcery.com>
4404         * cppinit.c (struct builtin): Remove unused fields.
4405         (CPLUS, BUILTIN, OPERATOR, O, builtin_array_end): Kill.
4406         (operator_array): New - was second half of builtin_array.
4407         (init_builtins): Simplify loop over builtin_array/operator_array.
4409 2002-05-18  Neil Booth  <neil@daikokuya.demon.co.uk>
4411         * defaults.h (UNIQUE_SECTION): Remove.
4412         * system.h (UNIQUE_SECTION, SELECT_SECTION): Poison.
4414 2002-05-17  Richard Henderson  <rth@redhat.com>
4416         * expr.c (init_expr_once): Don't use start/end_sequence.
4417         Use rtx_alloc instead of emit_insn.
4418         * toplev.c (lang_dependent_init): Run init_expr_once here ...
4419         (lang_independent_init): ... not here.
4421 2002-05-17  Jason Thorpe  <thorpej@wasabisystems.com>
4423         * config/sh/lib1funcs.asm (GLOBAL): Use __USER_LABEL_PREFIX__.
4425 2002-05-17  Marek Michalkiewicz  <marekm@amelek.gda.pl>
4427         * config/avr/avr.c (avr_regs_to_save): New function.  Also check
4428         for fixed registers, possibly used for global register variables.
4429         (initial_elimination_offset, avr_output_function_prologue,
4430         avr_output_function_epilogue):  Move common code to avr_regs_to_save.
4432 2002-05-17  Neil Booth  <neil@daikokuya.demon.co.uk>
4434         * Makefile.in: Update for cpptrad.c.
4435         * cpphash.h (struct cpp_buffer): New members for buffer
4436         overlays.
4437         (struct cpp_reader): New members for traditional output.
4438         (_cpp_read_logical_line, _cpp_overlay_buffer): New.
4439         * cppinit.c (cpp_create_reader): Set trad_line.
4440         (cpp_destroy): Free trad_out_base if used.
4441         (cpp_read_main_file): Overlay an empty buffer if traditional.
4442         (cpp_finish_options): Don't do builtins.
4443         (COMMAND_LINE_OPTIONS): Add -traditional-cpp.
4444         (cpp_handle_option): Handle it.
4445         * cpplex.c (continue_after_nul): New.
4446         (_cpp_lex_direct): Use handle_nul.
4447         * cpplib.h (struct cpp_options): New traditional option.
4448         * cpptrad.c: New file.
4450 2002-05-17  Neil Booth  <neil@daikokuya.demon.co.uk>
4452         * c-common.c (c_common_init_options): Use C89 for Objective-C,
4453         and set the options flag.
4454         * cppinit.c (lang_flags): Remove objc.
4455         (lang_defaults): Remove OBJC and OBJCXX.
4456         (set_lang): Update.
4457         (COMMAND_LINE_OPTIONS): Remove -+ and -lang-objc++.
4458         (cpp_handle_option): Remove -+ and -lang-objc++.
4459         For ObjC, just set a flag.
4460         (print_help): Update.
4461         * cpplib.h (enum c_lang): Remove CLK_OBJC and CLK_OBJCXX.
4463 2002-05-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4465         * doc/install.texi (Specific, mips-sgi-irix6): Document need to
4466         bootstrap with -mips3.
4468 2002-05-17  Kazu Hirata  <kazu@cs.umass.edu>
4470         * final.c: Fix formatting.
4471         * fix-header.c: Likewise.
4472         * flow.c: Likewise.
4473         * fold-const.c: Likewise.
4474         * function.c: Likewise.
4476 2002-05-17  David S. Miller  <davem@redhat.com>
4478         PR c/6689, PR optimization/6615
4479         * local-alloc.c (struct equivalence): Rename 'src' to 'src_p'
4480         and make it a pointer to rtx.  Update comments.
4481         (update_equiv_regs): When scanning for equivalences, record
4482         address of SET_SRC (set) in reg_equiv[].src_p.  Dereference
4483         it while making the equiv replacements.
4485 2002-05-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4487         * config/sparc/sparc.c (sparc_aout_select_section): Fixed typo.
4489 2002-05-17  kaz Kojima  <kkojima@rr.iij4u.or.jp>
4491         * config/sh/sh.h (ENCODE_SECTION_INFO): Consider MODULE_LOCAL_P
4492         when encoding visibility into SYMBOL_REF_FLAG.
4494 2002-05-17  Richard Sandiford  <rsandifo@redhat.com>
4496         * expr.c (force_operand): Fix reversed move.
4498 2002-05-17  Kurt Wall <kwall@kurtwerks.com>
4500         * doc/install.texi (Testing): Mention two common DejaGnu warnings
4501         that can be ignored.
4503 2002-05-16  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
4505         * doc/install.texi (Final install): Recommend to install into a
4506         "clean" target directory.
4508 2002-05-17  Richard Henderson  <rth@redhat.com>
4510         * config/ia64/ia64.md: Use braced strings instead of quoted strings
4511         for code blocks.  Tidy whitespace.
4513 2002-05-17  Richard Henderson  <rth@redhat.com>
4515         * hooks.c (hook_tree_bool_false): New.
4516         * hooks.h: Declare it.
4517         * target-def.h (TARGET_ASM_SELECT_SECTION): New.
4518         (TARGET_ASM_UNIQUE_SECTION, TARGET_IN_SMALL_DATA_P): New.
4519         * target.h (select_section, unique_section): New.
4520         (in_small_data_p): New.
4521         * varasm.c (resolve_unique_section): Use hooks instead of macros.
4522         (variable_section, output_constant_def_contents): Likewise.
4523         (default_select_section, default_unique_section): New.
4524         (categorize_decl_for_section, default_elf_select_section): New.
4525         * output.h: Declare them.
4527         * config/darwin.h (ALIAS_SECTION, try_section_alias): Remove.
4528         (TARGET_ASM_SELECT_SECTION): New.
4529         (SELECT_SECTION): Move ...
4530         * config/darwin.c (machopic_select_section): ... here.
4531         * config/darwin-protos.h: Update.
4533         * config/nextstep.h (TARGET_ASM_SELECT_SECTION): New.
4534         (SELECT_SECTION): Move ...
4535         * config/nextstep.c (nextstep_select_section): ... here.
4536         * config/nextstep-protos.h: Update.
4538         * config/elfos.h (UNIQUE_SECTION, SELECT_SECTION): Remove.
4539         (TARGET_ASM_SELECT_SECTION): New.
4540         * config/svr3.h (SELECT_SECTION): Remove.
4542         * config/alpha/alpha.c (unicosmk_unique_section): Make static.
4543         (TARGET_ASM_UNIQUE_SECTION) [UNICOS]: New.
4544         (TARGET_IN_SMALL_DATA_P, alpha_in_small_data_p): New.
4545         (alpha_encode_section_info): Use it.
4546         * config/alpha/alpha-protos.h: Update.
4547         * config/alpha/elf.h (DO_SELECT_SECTION): Remove.
4548         (SELECT_SECTION, UNIQUE_SECTION): Remove.
4549         (TARGET_ASM_SELECT_SECTION): New.
4550         * config/alpha/unicosmk.h (UNIQUE_SECTION): Remove.
4552         * config/arm/pe.h (UNIQUE_SECTION): Remove.
4553         (TARGET_ASM_UNIQUE_SECTION): New.
4555         * config/avr/avr.c (TARGET_ASM_UNIQUE_SECTION): New.
4556         (avr_unique_section): Rename from unique_section; make static.
4557         * config/avr/avr-protos.h: Update.
4558         * config/avr/avr.h (UNIQUE_SECTION): Remove.
4560         * config/c4x/c4x.h (SELECT_SECTION): Remove.
4562         * config/i386/cygwin.h (UNIQUE_SECTION): Remove.
4563         (TARGET_ASM_UNIQUE_SECTION): New.
4564         * config/i386/i386-interix.h: Likewise.
4565         * config/i386/win32.h: Likewise.
4566         * config/i386/djgpp.h (UNIQUE_SECTION): Remove.
4567         * config/i386/i386.c (ix86_asm_file_end): Use target hook not macro.
4568         * config/i386/sco5.h (SELECT_SECTION): Remove.
4569         (TARGET_ASM_SELECT_SECTION): New.
4570         * config/i386/svr3gas.h (SELECT_SECTION): Remove.
4572         * config/i860/paragon.h: Undef TARGET_ASM_SELECT_SECTION
4573         instead of SELECT_SECTION.
4574         * config/m68k/dpx2.h: Likewise.
4575         * config/rs6000/lynx.h: Likewise.
4577         * config/ia64/aix.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
4578         (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): New.
4579         * config/ia64/ia64.c (TARGET_IN_SMALL_DATA_P): New.
4580         (ia64_in_small_data_p): New.
4581         (ia64_encode_section_info): Use it.  Reorganize overlarge conditional.
4582         (ia64_aix_select_section, ia64_aix_unique_section): New.
4583         * config/ia64/sysv4.h (DO_SELECT_SECTION): Remove.
4584         (SELECT_SECTION, UNIQUE_SECTION): Remove.
4586         * config/m32r/m32r.h (SELECT_SECTION): Remove.
4587         (TARGET_ASM_SELECT_SECTION): New.
4588         * config/m32r/m32r.c (m32r_select_section): Take align argument.
4589         * config/m32r/m32r-protos.h: Update.
4591         * config/m88k/m88k.h (TARGET_ASM_SELECT_SECTION): New.
4592         (SELECT_SECTION): Move ...
4593         * config/m88k/m88k.c (m88k_select_section): ... here.
4595         * config/mcore/mcore-pe.h (SELECT_SECTION): Remove.
4596         * config/mcore/mcore.h (UNIQUE_SECTION): Remove.
4597         * config/mcore/mcore.c (TARGET_ASM_UNIQUE_SECTION): New.
4598         (mcore_unique_section): Make static.
4599         * config/mcore/mcore-protos.h: Update.
4601         * config/mips/elf.h (UNIQUE_SECTION): Remove.
4602         (TARGET_ASM_UNIQUE_SECTION): New.
4603         * config/mips/elf64.h: Likewise.
4604         * config/mips/iris6gld.h: Likewise.
4605         * config/mips/linux.h: Likewise.
4606         * config/mips/mips-protos.h: Update.
4607         * config/mips/mips.c (mips_select_section): Add align argument.
4608         * config/mips/mips.h (SELECT_SECTION): Remove.
4609         (TARGET_ASM_SELECT_SECTION): New.
4611         * config/mmix/mmix.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
4612         * config/mmix/mmix.c (mmix_select_section): Remove.
4613         (mmix_unique_section): Remove.
4614         * config/mmix/mmix-protos.h: Update.
4616         * config/pa/pa.h (TARGET_ASM_SELECT_SECTION): New.
4617         (SELECT_SECTION): Move ...
4618         * config/pa/pa.c (pa_select_section): ... here.
4619         * config/pa/pa64-hpux.h (UNIQUE_SECTION): Remove.
4621         * config/rs6000/rs6000.c (rs6000_elf_select_section): Rename
4622         from rs6000_select_section and make static.
4623         (rs6000_elf_unique_section): Similarly.
4624         (rs6000_xcoff_select_section): From xcoff.h.
4625         (rs6000_xcoff_unique_section): Likewise.
4626         * config/rs6000/rs6000-protos.h: Update.
4627         * config/rs6000/sysv4.h (SELECT_SECTION, UNIQUE_SECTION): Remove.
4628         (TARGET_ASM_SELECT_SECTION, TARGET_ASM_UNIQUE_SECTION): New.
4629         * config/rs6000/xcoff.h: Likewise.
4631         * config/sparc/aout.h (TARGET_ASM_SELECT_SECTION): New.
4632         (SELECT_SECTION): Move ...
4633         * config/sparc/sparc.c (sparc_aout_select_section): ... here.
4635         * config/v850/v850.h (SELECT_SECTION): Move ...
4636         * config/v850/v850.c (v850_select_section): ... here.
4637         (TARGET_ASM_SELECT_SECTION): New.
4639         * config/vax/vms.h (SELECT_SECTION): Move ...
4640         * config/vax/vax.c (vms_select_section): ... here.
4641         (TARGET_ASM_SELECT_SECTION): New.
4643         * doc/tm.texi: Update SELECT_SECTION and UNIQUE_SECTION docs
4644         for the target hooks.
4646 2002-05-17  Nick Clifton  <nickc@cambridge.redhat.com>
4648         * config/arm/arm.c (emit_multi_reg_push): Do not set
4649         RTX_FRAME_RELATED_P on the SEQUENCE.
4651 2002-05-16  Richard Henderson  <rth@redhat.com>
4653         * config/ia64/ia64.c (ia64_reorg): Rebuild bb_for_insn before
4654         splitting.  Use split_all_insns; update_life_info_in_dirty_blocks.
4656 2002-05-16  Richard Henderson  <rth@redhat.com>
4658         * config/alpha/unicosmk.h (TARGET_OS_CPP_BUILTINS): Fix typo.
4660         * config/ia64/ia64.c (saveable_obstack): Do not declare.
4662 2002-05-16  Richard Henderson  <rth@redhat.com>
4664         * basic-block.h, bb-reorder.c, cfg.c, cfganal.c, cfgbuild.c,
4665         cfgcleanup.c, cfglayout.c, cfgloop.c, cfgrtl.c, combine.c,
4666         conflict.c, df.c, df.h, dominance.c, final.c, flow.c, function.c,
4667         gcse.c, global.c, graph.c, haifa-sched.c, ifcvt.c, lcm.c,
4668         local-alloc.c, loop.c, predict.c, print-rtl.c, profile.c,
4669         recog.c, reg-stack.c, regclass.c, regmove.c, regrename.c,
4670         reload1.c, reorg.c, resource.c, sbitmap.c, sched-deps.c,
4671         sched-ebb.c, sched-rgn.c, sibcall.c, ssa-ccp.c, ssa-dce.c, ssa.c:
4672         Revert "Basic block renumbering removal", and two followup patches.
4674 2002-05-16  Jason Thorpe  <thorpej@wasabisystems.com>
4676         * lcm.c (optimize_mode_switching): Revert previous change.
4678 2002-05-16  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4680         * sched-rgn.c (schedule_insns): Initialize large_region_blocks
4681         with only extant block numbers.
4683 2002-05-16  Jason Thorpe  <thorpej@wasabisystems.com>
4685         * lcm.c (optimize_mode_switching): Fix typo.
4687 2002-05-16  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4689         * flow.c (calculate_global_regs_live): Queue blocks in program order.
4691 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4693         * doc/install.texi (Configuration): Document PWDCMD.
4695 2002-05-16  Dale Johannesen  <dalej@apple.com>
4697         * combine.c (cant_combine_insn_p):  Reenable combinations
4698         involving hard regs unless CLASS_LIKELY_SPILLED_P.
4700 2002-05-16  Neil Booth  <neil@daikokuya.demon.co.uk>
4702         * c-common.c (cb_register_builtins): Handle more built-ins
4703         here rather than in gcc.c specs.
4704         * gcc.c (cpp_unique_options): Move many built-ins to c-common.c.
4705         (cpp_options): Pass -O flags even when only preprocessing.
4706         * toplev.c (set_fast_math_flags): New prototype.
4707         (fast_math_flags_set_p): New.
4708         (set_no_fast_math_flags): Remove.
4709         (decode_f_option): Update.
4710         * toplev.h (set_fast_math_flags): Update.
4711         (fast_math_flags_set_p): New.
4712         (set_no_fast_math_flags): Remove.
4713 config:
4714         * c4x/c4x.c (c4x_override_options): Update.
4716 2002-05-16  Zack Weinberg  <zack@codesourcery.com>
4718         * c-common.c (STDC_0_IN_SYSTEM_HEADERS, REGISTER_PREFIX):
4719         Default-define here.
4720         (builtin_define_with_value): Can now wrap the expansion in
4721         quotation marks if such is wanted.
4722         (cb_register_builtins): Update calls to builtin_define_with_value.
4723         Define __REGISTER_PREFIX__, __USER_LABEL_PREFIX__, and __VERSION__
4724         here.
4725         (c_common_init): Set options->stdc_0_in_system_headers.
4726         * c-lex.h: Update prototype of builtin_define_with_value.
4727         * cppdefault.h: Remove default definitions of USER_LABEL_PREFIX
4728         and REGISTER_PREFIX.
4730         * cppinit.c (VERS, ULP, C, X): Kill.
4731         (builtin_array): Remove entries for __VERSION__,
4732         __USER_LABEL_PREFIX__, __REGISTER_PREFIX__, and
4733         __HAVE_BUILTIN_SETJMP__.  Make __STDC__ always a builtin, not
4734         a constant.
4735         (init_builtins): Kill off a bunch of now-dead code.
4736         (COMMAND_LINE_OPTIONS): Remove -fleading-underscore and
4737         -fno-leading-underscore.
4738         (cpp_handle_option): Remove code to set user_label_prefix.
4739         (cpp_post_options): Likewise.
4741         * cpplib.h (struct cpp_options): Remove user_label_prefix.
4742         (stdc_0_in_system_headers): New.
4743         * cppmacro.c (builtin_macro): Check CPP_OPTION (pfile,
4744         stdc_0_in_system_headers) too to decide the value of __STDC__.
4746         * tradcpp.c (user_label_prefix): Kill.
4747         (main): Remove code handling -f(no-)leading-underscore.
4748         (initialize_builtins): Don't define __REGISTER_PREFIX__
4749         or __USER_LABEL_PREFIX__.
4750         (install_value): Wrap compound statement in dummy loop so the
4751         macro works properly in an if statement.
4754 2002-05-16  Janis Johnson  <janis187@us.ibm.com>
4756         * loop.h (struct loop_info): Add member has_prefetch.
4757         * loop.c (PREFETCH_CONDITIONAL): Change default to 1.
4758         (prescan_loop): Initialize has_prefetch.
4759         (struct prefetch_info): Change prefetch_in_loop and
4760         prefetch_before_loop from bit fields to ints.
4761         (emit_prefetch_instructions): Several small fixes.
4762         (check_dbra_loop): Don't reverse loop that uses prefetch.
4764 2002-05-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4766         * Makefile.in: Allow for PWDCMD to override hardcoded pwd.
4767         * configure.in: Likewise.
4768         * fixinc/check.tpl: Likewise.
4769         * fixinc/fixinc.dgux: Likewise.
4770         * fixinc/fixinc.svr4: Likewise.
4771         * fixinc/fixinc.winnt: Likewise.
4772         * fixinc/fixincl.sh: Likewise.
4773         * fixproto: Likewise.
4774         * configure: Regenerate.
4776 2002-05-16  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4778         Basic block renumbering removal:
4779         * basic_block.h (struct basic_block_def): Renamed index to sindex,
4780         added prev_bb and next_bb fields.
4781         (n_basic_blocks): Renamed to num_basic_blocks.
4782         (last_basic_block): New, index of last basic block.
4783         (FOR_BB_BETWEEN, FOR_ALL_BB, FOR_ALL_BB_REVERSE): New macros for
4784         traversing basic block chain.
4785         (BLOCK_NUM): index -> sindex.
4786         (create_basic_block_structure, create_basic_block): Declaration changed.
4787         (debug_num2bb): Declare.
4788         (expunge_block_nocompact): Declaration removed.
4789         (link_block, unlink_block, compact_blocks): Declare.
4790         * bb-reorder.c (make_reorder_chain, make_reorder_chain_1): Modified.
4791         * cfg.c (entry_exit_blocks): Initialize new fields.
4792         (clear_edges, alloc_block, expunge_block, cached_make_edge,
4793         redirect_edge_pred, dump_flow_info, dump_edge_info,
4794         alloc_aux_for_blocks, clear_aux_for_blocks, alloc_aux_for_edges,
4795         free_aux_for_edges): Modified.
4796         (link_block, unlink_block, compact_blocks, debug_num2bb): New.
4797         (expunge_block_nocompact): Removed.
4798         * cfganal.c (can_fallthru, mark_dfs_back_edges, flow_call_edges_add,
4799         find_unreachable_blocks, create_edge_list, print_edge_list,
4800         verify_edge_list, flow_edge_list_print, remove_fake_successors,
4801         remove_fake_edges, flow_reverse_top_sort_order_compute,
4802         flow_depth_first_order_compute, flow_preorder_transversal_compute,
4803         flow_dfs_compute_reverse_init, flow_dfs_compute_reverse_add_bb,
4804         flow_dfs_compute_reverse_execute): Modified.
4805         * cfgbuild.c (make_edges, make_eh_edge, find_basic_blocks_1,
4806         find_basic_blocks, find_many_sub_basic_blocks, find_sub_basic_blocks):
4807         Modified.
4808         * cfgcleanup.c (try_simplify_condjump, try_forward_edges,
4809         merge_blocks_move_predecessor_nojumps,
4810         merge_blocks_move_successor_nojumps, merge_blocks,
4811         outgoing_edges_match, try_crossjump_to_edge, try_crossjump_bb,
4812         try_optimize_cfg, delete_unreachable_blocks, cleanup_cfg): Modified.
4813         * cfglayout.c (skip_insns_after_block, label_for_bb,
4814         record_effective_endpoints, scope_to_insns_finalize,
4815         fixup_reorder_chain, verify_insn_chain, cleanup_unconditional_jumps,
4816         fixup_fallthru_exit_predecessor, cfg_layout_redirect_edge,
4817         cfg_layout_duplicate_bb): Modified.
4818         * cfgloop.c (flow_loops_cfg_dump, flow_loop_dump, flow_loops_dump,
4819         flow_loop_entry_edges_find, flow_loop_exit_edges_find,
4820         flow_loop_nodes_find, flow_loop_pre_header_find, flow_loop_scan,
4821         flow_loops_find, flow_loop_outside_edge_p): Modified.
4822         * cfgrtl.c (create_basic_block_structure, create_basic_block,
4823         flow_delete_block, compute_bb_for_insn, split_block,
4824         try_redirect_by_replacing_jump, redirect_edge_and_branch,
4825         force_nonfallthru_and_redirect, tidy_fallthru_edge,
4826         back_edge_of_syntactic_loop_p, split_edge, commit_one_edge_insertion,
4827         commit_edge_insertions, commit_edge_insertions_watch_calls,
4828         dump_bb, print_rtl_with_bb, verify_flow_info, purge_dead_edges,
4829         purge_all_dead_edges): Modified.
4830         * combine.c (combine_instructions, set_nonzero_bits_and_sign_copies,
4831         try_combine, nonzero_bits, num_sign_bit_copies, get_last_value_validate,
4832         get_last_value, reg_dead_at_p, distribute_notes, distribute_links):
4833         Modified.
4834         * conflict.c (conflict_graph_compute): Modified.
4835         * df.c (FOR_ALL_BBS): Removed.
4836         (df_bitmaps_alloc, df_bitmaps_free, df_alloc, df_analyse_1,
4837         df_modified_p, df_analyse, df_refs_unlink, df_insn_modify,
4838         df_dump, hybrid_search_bitmap, iterative_dataflow_sbitmap): Modified.
4839         * df.h (DF_BB_INFO, DF_REF_BBNO): Modified.
4840         * dominance.c (init_dom_info, calc_dfs_tree_nonrec, calc_dfs_tree,
4841         calc_idoms, idoms_to_doms, calculate_dominance_info): Modified.
4842         * final.c (compute_alignments, final_scan_insn): Modified.
4843         * flow.c (verify_local_live_at_start, update_life_info,
4844         update_life_info_in_dirty_blocks, free_basic_block_vars,
4845         delete_noop_moves, calculate_global_regs_live,
4846         initialize_uninitialized_subregs, allocate_bb_life_data,
4847         regno_uninitialized, regno_clobbered_at_setjmp, mark_set_1,
4848         mark_used_reg, count_or_remove_death_notes): Modified.
4849         * function.c (thread_prologue_and_epilogue_insns): Modified.
4850         * gcse.c (struct null_pointer_info): Change typo of current_block
4851         to basic_block.
4852         (gcse_main, alloc_gcse_mem, compute_local_properties, compute_sets,
4853         oprs_unchanged_p, load_killed_in_block_p, record_last_reg_set_info,
4854         compute_hash_table, alloc_rd_mem, handle_rd_kill_set, compute_kill_rd,
4855         alloc_avail_expr_mem, expr_killed_p, compute_ae_kill,
4856         expr_reaches_here_p_work, expr_reaches_here_p, handle_avail_expr,
4857         classic_gcse, one_classic_gcse_pass, compute_transp, cprop,
4858         one_cprop_pass, compute_pre_data, pre_expr_reaches_here_p_work,
4859         pre_expr_reaches_here_p, insert_insn_end_bb, pre_edge_insert,
4860         pre_delete, one_pre_gcse_pass, compute_transpout,
4861         invalidate_nonnull_info, delete_null_pointer_checks_1,
4862         free_code_hoist_mem, compute_code_hoist_vbeinout,
4863         hoist_expr_reaches_here_p, hoist_code, one_code_hoisting_pass,
4864         compute_ld_motion_mems, store_ops_ok, find_moveable_store,
4865         compute_store_table, build_store_vectors, insert_insn_start_bb,
4866         insert_store, replace_store_insn, free_store_memory, store_motion):
4867         Modified.
4868         * global.c (global_alloc, global_conflicts, mark_elimination,
4869         build_insn_chain): Modified.
4870         * graph.c (print_rtl_graph_with_bb): Modified.
4871         * haifa-sched.c (sched_init): Modified.
4872         * ifcvt.c (SET_ORIG_INDEX, ORIG_INDEX): Removed.
4873         (find_if_block, find_cond_trap, find_if_case_1, find_if_case_2,
4874         if_convert): Modified.
4875         * lcm.c (compute_antinout_edge, compute_earliest, compute_laterin,
4876         compute_insert_delete, pre_edge_lcm, compute_available,
4877         compute_farthest, compute_nearerout, compute_rev_insert_delete,
4878         pre_edge_rev_lcm, make_preds_opaque, optimize_mode_switching):
4879         Modified.
4880         * local-alloc.c (alloc_qty, local_alloc, update_equiv_regs): Modified.
4881         * loop.c (loop_dump_aux): Modified.
4882         * predict.c (combine_predictions_for_insn, estimate_probability,
4883         last_basic_block_p, process_note_prediction, process_note_predictions,
4884         note_prediction_to_br_prob, propagate_freq, counts_to_freqs,
4885         expensive_function_p, estimate_bb_frequencies,
4886         compute_function_frequency): Modified.
4887         * print-rtl.c (print_rtx): Modified.
4888         * profile.c (GCOV_INDEX_TO_BB, BB_TO_GCOV_INDEX, instrument_edges,
4889         get_exec_counts, compute_branch_probabilities, compute_checksum,
4890         branch_prob, find_spanning_tree): Modified.
4891         * recog.c (split_all_insns, peephole2_optimize): Modified.
4892         * reg-stack.c (reg_to_stack, convert_regs_entry, compensate_edge,
4893         convert_regs_1, convert_regs_2, convert_regs): Modified.
4894         * regclass.c (scan_one_insn, regclass): Modified.
4895         * regmove.c (mark_flags_life_zones, regmove_optimize,
4896         combine_stack_adjustments): Modified.
4897         * regrename.c (regrename_optimize, copyprop_hardreg_forward): Modified.
4898         * reload1.c (reload, reload_combine, copy_eh_notes): Modified.
4899         * reorg.c (dbr_schedule): Modified.
4900         * resource.c (find_basic_block, init_resource_info): Modified.
4901         * sbitmap.c (sbitmap_intersection_of_succs,
4902         sbitmap_intersection_of_preds, sbitmap_union_of_succs,
4903         sbitmap_union_of_preds): Modified.
4904         * sched-deps.c (init_dependency_caches): Modified.
4905         * sched-ebb.c (schedule_ebbs): Modified.
4906         * sched-rgn.c (is_cfg_nonregular, build_control_flow, debug_regions,
4907         find_rgns, compute_trg_info, init_regions, schedule_insns): Modified.
4908         * sibcall.c (optimize_sibling_and_tail_recursive_call): Modified.
4909         * ssa-ccp.c (examine_flow_edges, optimize_unexecutable_edges,
4910         ssa_ccp_substitute_constants, ssa_ccp_df_delete_unreachable_insns,
4911         ssa_const_prop): Modified.
4912         * ssa-dce.c (set_control_dependent_block_to_edge_map_,
4913         find_control_dependence, find_pdom, ssa_eliminate_dead_code): Modified.
4914         * ssa.c (remove_phi_alternative, find_evaluations,
4915         compute_dominance_frontiers_1, compute_iterated_dominance_frontiers,
4916         insert_phi_node, rename_block, convert_to_ssa, eliminate_phi,
4917         make_regs_equivalent_over_bad_edges,
4918         make_equivalent_phi_alternatives_equival,
4919         compute_conservative_reg_partition,
4920         coalesce_regs_in_successor_phi_nodes, compute_coalesced_reg_partition,
4921         rename_equivalent_regs, convert_from_ssa, for_each_successor_phi):
4922         Modified.
4924 2002-05-16  Mark Mitchell  <mark@codesourcery.com>
4926         * cfgrtl.c (purge_dead_edges): Correct handling of EDGE_EH.
4928 2002-05-16  Nick Clifton  <nickc@cambridge.redhat.com>
4930         * config/arm/arm.c (arm_rtx_costs): Check for RTX being a
4931         SYMBOL_REF before calling CONSTANT_POOL_ADDRESS_P.
4932         (arm_adjust_cost): Check for RTX being a SYMBOL_REF before
4933         calling CONSTANT_POOL_ADDRESS_P.
4934         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Fix typo in code
4935         to decide whether to define __arm__ or __thumb.
4936         (THUMB_GO_IF_LEGITIMATE_ADDRESS): Check for RTX being a
4937         SYMBOL_REF before calling CONSTANT_POOL_ADDRESS_P.
4939 2002-05-16  Neil Booth  <neil@daikokuya.demon.co.uk>
4941         * config/arc/arc.h (CPP_PREDEFINES): Remove.
4942         (CPP_SPEC): Update.
4943         (TARGET_CPU_CPP_BUILTINS): New.
4945 2002-05-16  Neil Booth  <neil@daikokuya.demon.co.uk>
4947         * cpphash.h (cpp_macro): Move here, and make expansion a union.
4948         * cppmacro.c (cpp_macro): Remove.
4949         (enter_macro_context, replace_args, warn_of_redefinition,
4950         _cpp_create_definition, cpp_macro_definition): Update.
4952 2002-05-16  Jason Merrill  <jason@redhat.com>
4954         * config/mips/mips.c (mips_output_external): Don't do sdata
4955         optimization for a variable with DECL_COMDAT set.
4957 2002-05-15  Aldy Hernandez  <aldyh@redhat.com>
4959         * config/rs6000/altivec.h: Cleanups for tighter typechecking.
4960         Cleanups for accepting modifiers on pointers.
4961         Fix predicate typos.
4962         Allow long pointers as well as int pointers.
4964 2002-05-15  Richard Henderson  <rth@redhat.com>
4966         * varasm.c (merge_weak): Remove special case for extern and common.
4968 2002-05-15  Matt Hiller  <hiller@redhat.com>
4970         * testsuite/gcc.c-torture/compile/20000804-1.x: Don't return 1 if
4971         XFAILing.
4972         * testsuite/gcc.c-torture/compile/20001226-1.x: Ditto.
4973         * testsuite/gcc.c-torture/compile/920520-1.x: Ditto.
4974         * testsuite/gcc.c-torture/compile/mipscop-1.x: XFAIL for now.
4975         * testsuite/gcc.c-torture/compile/mipscop-2.x: Ditto.
4976         * testsuite/gcc.c-torture/compile/mipscop-3.x: Ditto.
4977         * testsuite/gcc.c-torture/compile/mipscop-4.x: Ditto.
4979 2002-05-15  Aldy Hernandez  <aldyh@redhat.com>
4981         * reload1.c (forget_old_reloads_1): Do not use subreg offset.
4983 2002-05-15  Aldy Hernandez  <aldyh@redhat.com>
4985         * config/rs6000/rs6000.md ("altivec_mtvscr"): Set VSCR register.
4986         ("altivec_mfvscr"): Read from VSCR.
4988         Add vscr sets for the following insns: altivec_vctuxs,
4989         altivec_vaddubs, altivec_vaddsbs, altivec_vadduhs,
4990         altivec_vaddshs, altivec_vadduws, altivec_vaddsws, altivec_vctsxs,
4991         altivec_vmhaddshs, altivec_vmhraddshs, altivec_vmsumuhs,
4992         altivec_vmsumshs, altivec_vpkuhss, altivec_vpkshss,
4993         altivec_vpkuwss, altivec_vpkswss, altivec_vpkuhus,
4994         altivec_vpkshus, altivec_vpkuwus, altivec_vpkswus,
4995         altivec_vsububs, altivec_vsubsbs, altivec_vsubuhs,
4996         altivec_vsubshs, altivec_vsubuws, altivec_vsubsws,
4997         altivec_vsum4ubs, altivec_vsum4sbs, altivec_vsum4shs,
4998         altivec_vsum2sws, altivec_vsumsws.
5000         * config/rs6000/rs6000.h: Add VSCR fixed register.
5001         (CALL_REALLY_USED_REGISTERS): Add vscr.
5002         (CALL_USED_REGISTERS): Same.
5003         (FIXED_REGISTERS): Same.
5004         (REG_ALLOC_ORDER): Same.
5005         (reg_class): Add VSCR_REGS.
5006         (REG_CLASS_NAMES): Same.
5007         (REG_CLASS_CONTENTS): Same.
5008         (VSCR_REGNO): New.
5009         (REGISTER_NAMES): Add vscr.
5010         (DEBUG_REGISTER_NAMES): Same.
5011         (ADDITIONAL_REGISTER_NAMES): Same.
5012         (FIRST_PSEUDO_REGISTER): Increment.
5013         (CONDITIONAL_REGISTER_USAGE): Set VSCR as a global register.
5015 2002-05-15  Jakub Jelinek  <jakub@redhat.com>
5017         * fold-const.c (fold): Fix a typo.
5019 2002-05-15  Eric Botcazou  <ebotcazou@multimania.com>
5021         * fold-const.c (fold) [LT_EXPR]: Move the transformation of a
5022         comparison against the highest or lowest integer value before
5023         the 'X >= CST to X > (CST - 1)' and 'X < CST to X <= (CST - 1)'
5024         transformation and that of an unsigned comparison against 0
5025         right after.
5027 2002-05-15  Richard Henderson  <rth@redhat.com>
5029         * varasm.c (merge_weak): Error for any weakening after definition.
5030         Adjust weakening after use warning to catch more cases.
5031         (assemble_alias): Set TREE_USED and TREE_ASM_WRITTEN consistently.
5032         * config/alpha/alpha.c (alpha_encode_section_info): Do not abort.
5034 Wed May 15 10:38:27 CEST 2002  Jan Hubicka  <jh@suse.cz>
5036         * invoke.texi (-malign-double): Re-add lost warning.
5038         * i386-protos.h (x86_output_mi_thunk): Declare.
5039         * unix.h (ASM_OUTPUT_MI_THUNK): Move offline to ...
5040         * i386.c (x86_output_mi_thunk): ... here; handle 64bits.
5042         * dwarf2out.c (output_call_frame_info): Do not skip unwind info
5043         when flag_asynchronous_unwind_tables is set.
5045         * flags.h (flag_reorder_functions): Declare.
5046         * function.c (prepare_function_start): Initialize frequnecy.
5047         * params.def (HOT_BB_COUNT_FRACTION, HOT_BB_FREQUENCY_FRACTION): New.
5048         * Makefile.in (predict.o): Add dependency on target.h and params.h
5049         * defaults.h (HOT_TEXT_SECTION_NAME,
5050         UNLIKELY_EXECUTED_TEXT_SECTION_NAME): New macros.
5051         * predict.c (choose_function_section): New function.
5052         (estimate_bb_frequencies): Use it.
5053         * toplev.c (flag_reorder_functions): New global variable.
5054         (lang_independent_options): New.
5055         (parse_options_and_default_flags): Set.
5056         * varasm.c (assemble_start_function): Bypass functdion alignment
5057         for never executed functions.
5058         * invoke.texi (-freorder-blocks, -freorder-functions): Document.
5059         (param hot-bb-count-fraction, hot-bb-frequency-fraction): New.
5060         * tm.texi (HOT_TEXT_SECTION_NAME, UNLIKELY_EXECUTED_TEXT_SECTION_NAME):
5061         Document.
5063         Thu Jan  3 21:52:09 CET 2002  Jan Hubicka  <jh@suse.cz>
5065         * predict.c: Inlude profile.h
5066         (MIN_COUNT): Rename to MIN_COUNT_FRACTION
5067         (maybe_hot_bb_p, probably_cold_bb_p, probably_never_executed_bb_p):
5068         Use the information about maximal counter in the program.
5070         Thu Dec 20 22:14:00 CET 2001  Jan Hubicka  <jh@suse.cz>
5072         * basic-block.h (maybe_hot_bb_p, probably_cold_bb_p,
5073         probably_never_executed_bb_p): New functions.
5074         * cfgcleanup.c (outgoing_edges_match): Use them.
5075         * predict.c (MIN_COUNT, MIN_FREQUENCY): New macros.
5076         (maybe_hot_bb_p, probably_cold_bb_p,
5077         probably_never_executed_bb_p): New functions.
5079         * function.h (function): Add new field function_frequency.
5080         * predict.c (compute_function_frequency): New function.
5081         (estimate_probability): Call it.
5083 2002-03-09  Jakub Jelinek  <jakub@redhat.com>
5085         PR optimization/5172, optimization/5200
5086         * gcse.c (gcse_main): Disable store_motion.
5088 2002-05-14  Zack Weinberg  <zack@codesourcery.com>
5090         * c-parse.in (MODIFIED_WCHAR_TYPE): New macro.
5091         (c_common_nodes_and_builtins): Use it.
5092         (builtin_define_with_value): New function.
5093         (cb_register_builtins): Define __SIZE_TYPE__,
5094         __PTRDIFF_TYPE__, __WCHAR_TYPE__, and __WINT_TYPE__ here,
5095         using builtin_define_with_value.  Use consistent notation when
5096         defining __GXX_WEAK__.
5097         (WCHAR_TYPE_SIZE): Don't redefine.
5098         (combine_strings): Don't use WCHAR_TYPE_SIZE.
5100         * cppdefault.h: Don't provide defaults for SIZE_TYPE,
5101         PTRDIFF_TYPE, WCHAR_TYPE, or WINT_TYPE.
5102         * cppinit.c (builtin_array): Remove entries for __SIZE_TYPE__ etc.
5103         * tradcpp.c (initialize_builtins): Likewise.
5104         * gcc.c (cpp_unique_options): Don't muck with __WCHAR_TYPE__.
5106         * c-lex.h (builtin_define_with_value): Prototype.
5107         * system.h: Poison NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_WCHAR_TYPE,
5108         NO_BUILTIN_PTRDIFF_TYPE, and NO_BUILTIN_WINT_TYPE.
5109         * doc/tm.texi: Remove mention of NO_BUILTIN_SIZE_TYPE etc.
5111         * config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
5112         config/ia64/ia64.h, config/mips/dec-osf1.h, config/mips/iris6.h,
5113         config/mips/linux.h, config/mips/mips.h, config/mips/netbsd.h,
5114         config/mips/osfrose.h, config/mips/sni-svr4.h, config/rs6000/aix51.h,
5115         config/s390/linux.h, config/sh/sh.h, config/sh/sh64.h,
5116         config/sparc/linux64.h, config/sparc/netbsd-elf.h,
5117         config/sparc/sol2-bi.h, config/sparc/sparc.h:
5118         Do not define NO_BUILTIN_SIZE_TYPE etc.  Remove all references
5119         to __SIZE_TYPE__ etc from all spec strings. When this makes
5120         extra specs empty, delete them.
5122 2002-05-14  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5124         * pa.c (override_options): Override TARGET_JUMP_IN_DELAY when scheduling
5125         for PA8000 or generating dwarf2 call frame information.
5126         (output_call): Remove DO_FRAME_NOTES check from return pointer
5127         optimization.
5128         (following_call): Return 0 when scheduling for PA8000 or generating
5129         dwarf2 call frame information.  Revise comment.
5131 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
5133 config/alpha:
5134         * alpha.h (TARGET_CPU_CPP_BUILTINS): Define __IEEE_FP
5135         and __IEEE_FP_INEXACT as appropriate.
5136         (CPLUSPLUS_CPP_SPEC): Don't define __cplusplus.
5137         (CPP_SPEC): Remove ieee defines.
5138         * freebsd.h, netbsd.h: Remove ieee defines and cpp_cpu.
5140 2002-05-14  Richard Henderson  <rth@redhat.com>
5142         * config/i386/i386.c (ix86_save_reg): Make regno unsigned.
5143         (ix86_safe_length, ix86_safe_length_prefix, ix86_safe_memory): Kill.
5145 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
5147         * arm/arm.h (TARGET_CPU_CPP_BUILTINS): Define.
5148         (CPP_SPEC): Update.
5149         (CPP_APCS_PC_SPEC, CPP_APCS_PC_DEFAULT_SPEC,
5150         CPP_FLOAT_SPEC, CPP_FLOAT_DEFAULT_SPEC, CPP_ENDIAN_SPEC,
5151         CPP_ENDIAN_DEFAULT_SPEC, CPP_INTERWORK_DEFAULT_SPEC,
5152         CPP_INTERWORK_SPEC, CPP_PREDEFINES): Remove.
5153         (EXTRA_SPECS): Update.
5154         * arm/conix-elf.h, arm/linux-elf.h, arm/netbsd.h, arm/riscix.h,
5155         arm/riscix1-1.h, arm/rtems-elf.h, arm/semiaof.h, arm/unknown-elf.h,
5156         arm/unknown-elf-oabi.h, arm/vxarm.h: Remove CPP_PREDEFINES and
5157         define TARGET_OS_CPP_BUILTINS if necessary.
5159 2002-05-14  Neil Booth  <neil@daikokuya.demon.co.uk>
5161         * gcc.c (cpp_options): Must pass -m* and -f* options
5162         to the front end even when only preprocessing.
5163         (cc1_options): Remove redundant -lang-c.
5164         * tradcpp.c (main): Ignore -m options.
5165 objc:
5166         * lang-specs.h: Similarly.
5168 2002-05-14  Vladimir Makarov  <vmakarov@redhat.com>
5170         * genautomata.c (transform_3): Add code for transformation
5171         `(A,B,...)+C -> A+C,B,...'.
5173 Tue May 14 12:48:22 CEST 2002  Jan Hubicka  <jh@suse.cz>
5175         * final.c (end_final): Do not output profile_arcs constructor, when
5176         no functions are instrumented.
5178 Tue May 14 12:38:30 CEST 2002  Jan Hubicka  <jh@suse.cz>
5180         * i386.md (testsi to testqi_zext_1 splitter): Fix typo.
5182 2002-05-14  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5184         * doc/install.texi: Remove special markup originally required for
5185         HTML generation with texi2html.
5187 2002-05-14  Andreas Schwab  <schwab@suse.de>
5189         * config/ia64/sysv4.h (DO_SELECT_SECTION): Factored out of
5190         SELECT_SECTION.
5191         (UNIQUE_SECTION): Define to get small data correctly.
5193         * varasm.c (resolve_unique_section): Add third parameter
5194         flag_function_or_data_sections and use it instead of
5195         flag_function_sections.
5196         (assemble_start_function): Pass flag_function_sections.
5197         (asm_emit_uninitialised): Pass flag_data_sections.
5198         (assemble_variable): Likewise.
5200 2002-05-14  Richard Henderson  <rth@redhat.com>
5202         * config/i386/i386.md: Use define_constants for unspec numbers.
5203         * config/i386/i386.c: Likewise.
5205 2002-05-13  Neil Booth  <neil@daikokuya.demon.co.uk>
5207         * doc/contrib.texi: Update my entry.
5209 2002-05-13  Mark Mitchell  <mark@codesourcery.com>
5211         * fixinc/inclhack.def (winidss_valist): Limit applicability.
5212         * fixinc/fixincl.x: Regenerated.
5213         * fixinc/tests/base/math.h: Update.
5214         * fixinc/tests/base/testing.h: Likewise.
5216 2002-05-13  Zack Weinberg  <zack@codesourcery.com>
5218         * genattr.c (gen_attr): Don't emit a comma after the last
5219         enumerator.
5221 2002-05-13  Richard Henderson  <rth@redhat.com>
5223         * cfgrtl.c (purge_dead_edges): Handle abnormal call edges created
5224         by non-local gotos.
5225         * recog.c (peephole2_optimize): Likewise.
5227 2002-05-13  Andris Pavenis  <pavenis@lanet.lv>
5229         * cppfiles.c (open_file): Change mode (DJGPP only) of redirected
5230         input to O_BINARY.
5232 2002-05-13  Jeffrey A Law  (law@redhat.com)
5234         * flow.c (invalidate_mems_from_autoinc): Rewrite to use for_each_rtx.
5235         Update prototype and callers.
5236         (propagate_one_insn): Stack pointer adjustments kill MEMs on
5237         the mem_set_list which reference the stack pointer, as do
5238         calls to constant functions as they may clobber outgoing
5239         argument space.
5241         * i386.c (ia32_multipass_dfa_lookahead): Prototype.
5243         * i386.c (TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD): Define.
5244         (ia32_multipass_dfa_lookahead): New function.
5246 2002-05-13  Neil Booth  <neil@daikokuya.demon.co.uk>
5248         * gcc.c (SWITCH_TAKES_ARG): Remove 'V'.
5249         (translate_options): Remove 'V'.
5250         (process_command): Similarly.
5251 doc:
5252         * invoke.texi: Remove documentation of 'V'.
5254 2002-05-13  Ulrich Weigand  <uweigand@de.ibm.com>
5256         * config/s390/linux.h: Revert 2002-04-22 changes.
5258 2002-05-13  Scott Marks <SMarks@mobile-mind.com>
5260         * config/fr30/fr30.md: Only allow splits of immediate loads
5261         if the destination is a register.
5263 2002-05-13  Neil Booth  <neil@daikokuya.demon.co.uk>
5265         * Makefile.in (c-common.o, cppinit.o): Update.
5266         * c-common.c: Include except.h.
5267         (cb_register_builtins): Handle __USING_SJLJ_EXCEPTIONS__.
5268         Call TARGET_CPU_CPP_BUILTINS and TARGET_OS_CPP_BUILTINS.
5269         * cppinit.c (__USING_SJLJ_EXCEPTIONS): Not here.
5270         * defaults.h (TARGET_OS_CPP_BUILTINS, TARGET_CPU_CPP_BUILTINS,
5271         CPP_PREDEFINES): Handle here.
5272 config:
5273         * alpha/alpha-interix.h, alpha/gnu.h, alpha/linux.h,
5274         alpha/netbsd.h, alpha/openbsd.h, alpha/osf.h, alpha/unicosmk.h,
5275         alpha/vms.h, alpha/vxworks.h: Remove CPP_PREDEFINES, define
5276         TARGET_OS_CPP_BUILTINS.
5277         * alpha/alpha.h (TARGET_CPU_CPP_BUILTINS): Define.
5278         (CPP_SPEC, EXTRA_SPECS): Update.
5279         (CPP_AM_BWX_SPEC, CPP_AM_MAX_SPEC, CPP_AM_FIX_SPEC,
5280         CPP_AM_CIX_SPEC, CPP_IM_EV4_SPEC, CPP_IM_EV5_SPEC,
5281         CPP_IM_EV6_SPEC, CPP_CPU_EV4_SPEC, CPP_CPU_EV5_SPEC,
5282         CPP_CPU_EV56_SPEC, CPP_CPU_PCA56_SPEC, CPP_CPU_EV6_SPEC,
5283         CPP_CPU_EV67_SPEC, CPP_CPU_DEFAULT_SPEC, CPP_CPU_SPEC): Remove.
5284 doc:
5285         * tm.texi (TARGET_REGISTER_CPP_BUILTINS): Remove.
5286         (TARGET_OS_CPP_BUILTINS, TARGET_CPU_CPP_BUILTINS): Define.
5288 2002-05-12  Zack Weinberg  <zack@codesourcery.com>
5290         * emit-rtl.c (global_rtl): Update comment.
5291         (const_double_htab, const_double_htab_hash,
5292         const_double_htab_hash, lookup_const_double): New.
5293         (const_int_htab_hash, const_int_htab_eq): Remove const
5294         qualifiers, which cause tons of warnings with RTL checking on.
5295         (gen_rtx_CONST_DOUBLE): Deleted.
5296         (const_double_from_real_value): New function - bears some
5297         resemblance to the former immed_real_const_1.
5298         (immed_double_const): Moved here from varasm.c and
5299         simplified.
5300         (gen_rtx_REG): Make REGNO unsigned to squelch warnings.
5301         (gen_rtx_SUBREG): Use gen_rtx_raw_SUBREG.
5302         (gen_rtx): Use immed_double_const.
5303         (init_emit_once): Initialize the const_double_htab.  Use
5304         REAL_VALUE_FROM_INT where possible.  Can now use
5305         CONST_DOUBLE_FROM_REAL_VALUE when setting up const_tiny_rtx.
5306         * varasm.c (struct varasm_status): Remove x_const_double_chain.
5307         (const_double_chain, immed_real_const, clear_const_double_mem): Delete.
5308         (immed_double_const, immed_real_const_1): Moved to emit-rtl.c.
5309         (init_varasm_status, mark_varasm_status): Don't touch
5310         x_const_double_chain.
5312         * output.h: Delete prototype for clear_const_double_mem.
5313         * real.h: Make REAL_VALUE_TYPE a macro again.  Remove leading
5314         '0' slot from all CONST_DOUBLE_FORMAT definitions.  Prototype
5315         const_double_from_real_value, not immed_real_const_1, and use
5316         it to define CONST_DOUBLE_FROM_REAL_VALUE.  Define new macro
5317         CONST_DOUBLE_ATOF.
5318         * rtl.h (CONST_DOUBLE_CHAIN): Kill.
5319         (CONST_DOUBLE_LOW, CONST_DOUBLE_HIGH): Adjust.
5320         (gen_rtx_CONST_DOUBLE, immed_real_const): Delete prototypes.
5321         (gen_rtx_REG): Second arg is unsigned.
5323         * gengenrtl.c (special_rtx): Take out CONST_DOUBLE.
5324         (excluded_rtx): New, return true for CONST_DOUBLE.
5325         (genmacro): Write nothing for excluded codes.
5326         * combine.c (combine_simplify_rtx): Use CONST_DOUBLE_FROM_REAL_VALUE.
5327         * expr.c (expand_expr): Likewise.
5328         * ggc-common.c (ggc_mark_rtx_children_1): Don't mark the
5329         CONST_DOUBLE_CHAIN.
5330         * toplev.c (rest_of_compilation): Don't call
5331         clear_const_double_mem.
5333         * config/rs6000/rs6000.c (rs6000_float_const): Delete.
5334         (rs6000_hash_constant): Remove CONST_DOUBLE special case.
5335         (toc_hash_eq): Remove CONST_DOUBLE and LABEL_REF special cases.
5336         * config/rs6000/rs6000-protos.h: Don't prototype rs6000_float_const.
5337         * config/c4x/c4x.md, config/rs6000/rs6000.md: Use CONST_DOUBLE_ATOF.
5338         * config/dsp16xx/dsp16xx.md, config/mips/mips.md,
5339         config/pa/pa.md: Use CONST_DOUBLE_FROM_REAL_VALUE.
5340         * config/sparc/sparc.md, config/sparc/sparc.c: Use immed_double_const.
5342 2002-05-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5344         * mips/iris6.h (CPLUSPLUS_CPP_SPEC): Define.
5346 2002-05-12  Tom Tromey  <tromey@redhat.com>
5348         * tree.h (copy_node): Don't mention TREE_PERMANENT.
5350 2002-05-12  Zack Weinberg  <zack@codesourcery.com>
5352         * gensupport.c (n_comma_elts): Moved here from genattrtab.c.
5353         (scan_comma_elt): New function.  Accepts whitespace in comma lists.
5354         * gensupport.h: Prototype new routines.
5355         * genattr.c (gen_attr): Use scan_comma_elt.  Avoid unnecessary
5356         use of printf.
5357         * genattrtab.c (n_comma_elts): Moved to gensupport.c.
5358         (next_comma_elt): Use scan_comma_elt.
5360         * config/i386/i386.md: Use new attribute notation to break up
5361         long lines in define_attr forms.
5363 2002-05-12  Richard Henderson  <rth@redhat.com>
5365         * expr.c (compress_float_constant): New.
5366         (emit_move_insn): Use it.
5367         (float_extend_from_mem): New.
5368         (init_expr_once): Initialize it.
5369         * real.c (exact_real_truncate): New.
5371         * config/i386/i386.h (CONST_COSTS): Assume CONST_DOUBLE gets
5372         dropped into memory; penalize for size.
5373         (RTX_COSTS): FLOAT_EXTEND is free.
5374         * config/i386/i386.md (extendsfdf2, extendsfxf2, extendsftf2,
5375         extenddfxf2, extenddftf2): Accept constants and drop them to memory.
5377 2002-05-12  Richard Henderson  <rth@redhat.com>
5379         * profile.h (profile_info): Add missing extern to declaration.
5380         * profile.c (profile_info): Define it.
5382 2002-05-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5384         * pa/pa32-regs.h (HARD_REGNO_MODE_OK): Revise sets of general registers
5385         used for DImode and TImode.
5387 2002-05-11  Neil Booth  <neil@daikokuya.demon.co.uk>
5389         * cpplex.c (_cpp_lex_direct): When in a directive at EOF
5390         fake a newline.
5392 2002-05-11  Zack Weinberg  <zack@codesourcery.com>
5394         * config/rs6000/rs6000.c (rs6000_default_long_calls,
5395         rs6000_longcall_switch, rs6000_set_default_type_attributes): New.
5396         (TARGET_SET_DEFAULT_TYPE_ATTRIBUTES): Set it.
5397         (rs6000_override_options): Handle -m(no-)longcall.
5398         (init_cumulative_args, output_mi_thunk): Check for both
5399         longcall and shortcall attributes on the function.
5400         (rs6000_attribute_table): Add "shortcall".
5401         (rs6000_handle_longcall_attribute): Update comment.
5402         (altivec_expand_unop_builtin, altivec_expand_binop_builtin,
5403         altivec_expand_ternop_builtin): Add default clauses to switches
5404         to silence warnings.
5406         * config/rs6000/rs6000.h: Declare rs6000_longcall_switch and
5407         rs6000_default_long_calls.  Define REGISTER_TARGET_PRAGMAS.
5408         (TARGET_OPTIONS): Add longcall and no-longcall.
5410         * config/rs6000/rs6000.md (call_nonlocal_sysv,
5411         call_value_nonlocal_sysv): Split by alternatives.  One pair
5412         accepts only SYMBOL_REFs and rejects if CALL_LONG is set in
5413         the call cookie.  The other pair accepts only LR/CTR and has
5414         no restriction.
5416         * config.gcc (rs6000-*-* | powerpc*-*-* trailer stanza):
5417         Set c_target_objs, cxx_target_objs; add t-rs6000-c-rule to
5418         tmake_file.
5419         * config/rs6000/rs6000-c.c: New file.
5420         * config/rs6000/t-rs6000-c-rule: New file.
5421         * config/rs6000/rs6000-protos.c: Add multiple-include guard.
5422         Prototype rs6000_pragma_longcall.
5424         * doc/extend.texi: Document shortcall attribute.
5425         * doc/invoke.texi: Document -mlongcall, -mno-longcall.
5427 2002-05-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5429         * reorg.c (dbr_schedule): Remove unnecessary test.
5431 Sat May 11 14:34:35 CEST 2002  Jan Hubicka  <jh@suse.cz>
5433         * i386.md (testsi to testqi spliters): New.
5435         2002-01-14  Josef Zlomek  <zlomek@matfyz.cz>
5437         cfg.c (dump_edge_info): added dumping of EDGE_CAN_FALLTHRU.
5439         Wed Jan  9 2002  Josef Zlomek  <zlomj9am@artax.karlin.mff.cuni.cz>
5441         * basic-block.h: New flag EDGE_CAN_FALLTHRU
5442         * cfganal.c (set_edge_can_fallthru_flag): New function; marks the edges
5443         that can be made fallthru.
5445         Mon Nov 12 16:25:53 CET 2001  Jan Hubicka  <jh@suse.cz>
5447         * cfglayout.c (cleanup_unconditional_jumps): New static function.
5448         (cfg_layout_initialize): Use it.
5450 2002-05-11  Marek Michalkiewicz  <marekm@amelek.gda.pl>
5452         * config/avr/avr.c (avr_mcu_types): Update supported devices.
5453         * config/avr/avr.h (CPP_SPEC, LINK_SPEC, CRT_BINUTILS_SPECS): Likewise.
5454         * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
5456 2002-05-11  Kazu Hirata  <kazu@cs.umass.edu>
5458         * dbxout.c: Fix formatting.
5459         * dependence.c: Likewise.
5460         * df.c: Likewise.
5461         * diagnostic.c: Likewise.
5462         * doloop.c: Likewise.
5463         * dominance.c: Likewise.
5464         * doschk.c: Likewise.
5465         * dwarf2asm.c: Likewise.
5466         * dwarf2out.c: Likewise.
5467         * dwarfout.c: Likewise.
5469 2002-05-10  Richard Henderson  <rth@redhat.com>
5471         * final.c (end_final): Tidy whitespace.  Don't honor flag_pack_struct.
5472         Convert integers constants as needed.  Replace "nwords" field with
5473         "sizeof_bb".
5474         (final): Save profile data if cfun->arc_profile, not profile_arc_flag.
5475         * function.h: Fix typo in comment.
5476         * libgcc2.c (struct bb): Replace "nwords" with "sizeof_bb".
5478 2002-05-10  Roger Sayle  <roger@eyesopen.com>
5480         * fold-const.c (build_range_check): Optimize (c>=1) && (c<=127)
5481         into the equivalent (signed char)c > 0.
5483 2002-05-10  Janis Johnson  <janis187@us.ibm.com>
5485         * loop.c: (PREFETCH_EXTREME_DIFFERENCE, PREFETCH_BEFORE_LOOP): New.
5486         (PREFETCH_CONDITIONAL): Renamed from PREFETCH_NOT_ALWAYS.
5487         (struct prefetch_info): Fix spelling of member bytes_accessed.
5488         (emit_prefetch_instructions): Make dump messages more regular;
5489         restructure code to add more dump messages; use new macros for
5490         heuristics. (There are no code generation changes in any of this).
5492 2002-05-10  David S. Miller  <davem@redhat.com>
5494         * rtl.h (INSN_ANNULLED_BRANCH_P): Accept INSN too, update comment.
5495         (struct rtx_def): Update unchanging flag comment.
5496         * doc/rtl.texi (INSN_ANNULLED_BRANCH_P): Update description.
5497         * reorg.c (delete_from_delay_list): INSN_ANNULLED_BRANCH_P needs
5498         to be handled to INSN too.
5499         (dbr_schedule): Likewise.
5500         * resource.c (next_insn_no_annul): Likewise.
5502         * cse.c (rtx_cost): Remove multiplication by power of 2 special
5503         casing.
5505 2002-05-14  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5507         * doc/install.texi (Specific, *-*-solaris2*): Update passus on
5508         setting CONFIG_SHELL to /bin/ksh and remove alternate trick to
5509         (possibly) work around broken /bin/sh.
5511 2002-05-10  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5513         * config/mips/t-iris6 (SHLIB_SLIBDIR_SUFFIXES): Use mabi=64 and
5514         . as N64/N32 libgcc_s.so subdirs.
5516 2002-05-10  David S. Miller  <davem@redhat.com>
5518         * config/sparc/sparc.md: Use define_constants for unspec numbers.
5520         * rtl.h (struct rtx_def): Document unchanging and in_struct flags
5521         more accurately.
5522         (INSN_ANNULLED_BRANCH_P): Only valid for JUMP_INSN and CALL_INSN, fix
5523         comment.
5524         (INSN_FROM_TARGET_P): Valid also for CALL_INSN.
5525         * doc/rtl.texi: Document these macros more accurately.
5526         * recog.c (whole file): Only mess with INSN_ANNULLED_BRANCH_P for
5527         JUMP_INSNs and CALL_INSNs.
5528         * resource.c (whole file): Only mess with INSN_ANNULLED_BRANCH_P
5529         or INSN_FROM_TARGET_P if the code is appropriate.
5531 2002-05-10  Marek Michalkiewicz  <marekm@amelek.gda.pl>
5533         * config/avr/avr.c (print_operand): Check that addr is a SYMBOL_REF
5534         before using SYMBOL_REF_FLAG (addr).
5536         * config/avr/avr-protos.h (avr_io_address_p): Declare.
5537         * config/avr/avr.c (io_address_p): Rename to avr_io_address_p.
5538         Make non-static.  Update all callers.
5539         * config/avr/avr.md (*cbi, *sbi, *sbix_branch, *sbix_branch_bit7):
5540         New insns to clear/set/test a single bit in I/O address space.
5542 2002-05-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
5544         * rtl.h (ENABLE_RTL_FLAG_CHECKING): Also check for gcc >= 2.7.
5546 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
5548         * Makefile.in: Update.
5549         * c-common.c (flag_iso, flag_undef, cb_register_builtins,
5550         builtin_define_std): New.
5551         (c_common_init): Register CPP builtins callback.
5552         * c-common.h (flag_iso, flag_undef): New.
5553         * c-decl.c (c_decode_option): Set flag_iso and flag_undef.
5554         * c-lex.c: Don't include target.h.
5555         (cb_register_builtins): Move to c-common.c.
5556         (init_c_lex): Don't register hook here.
5557         * c-lex.h (builtin_define, builtin_assert, builtin_define_std): New.
5558         (cpp_define, cpp_assert): Remove.
5559         * gcc.c (cc1_options): Pass -undef to front end.
5560         * target-def.h (TARGET_REGISTER_CPP_BUILTINS): Remove.
5561         (TARGET_INITIALIZER): Update.
5562         * target.h (struct cpp_reader): Don't predeclare.
5563         (struct gcc_target): Remove cpp builtin hook.
5564         * tree.c (default_register_cpp_builtins): Remove.
5565 doc:
5566         * tm.texi: Update.
5568 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
5570         * cppexp.c (_cpp_expand_op_stack): Set op_limit.
5572 2002-05-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5574         * config/mips/t-iris6 (SHLIB_SLIBDIR_SUFFIXES): Define.
5575         (SHLIB_LINK, SHLIB_INSTALL): Adjust.
5577 2002-05-09  Jakub Jelinek  <jakub@redhat.com>
5579         * config/sparc/t-linux64 (SHLIB_MAPFILES): Set.
5580         * config/sparc/libgcc-sparc-glibc.ver: New file.
5581         * config/cris/t-linux (SHLIB_MAPFILES): Remove.
5582         * mklibgcc.in: Preprocess SHLIB_MAPFILES with ml flags.
5584 2002-05-09  Jakub Jelinek  <jakub@redhat.com>
5586         PR target/6429
5587         * Makefile.in (libgcc.mk): Pass SHLIB_SLIBDIR_SUFFIXES to mklibgcc.
5588         * mklibgcc.in: If SHLIB_SLIBDIR_SUFFIXES is defined, put libgcc_s
5589         shared libraries into multilib dirs, with SONAME libgcc_s.so.1 for
5590         base multilibs.
5591         * config/t-slibgcc-elf-ver (SHLIB_LINK): Adjust for the above.
5592         * config/t-slibgcc-sld (SHLIB_LINK): Likewise.
5593         * config/sparc/t-linux64 (SHLIB_SLIBDIR_SUFFIXES): Define.
5594         * config/sparc/t-sol2-64 (SHLIB_SLIBDIR_SUFFIXES): Define.
5596 2002-05-09  Richard Henderson  <rth@redhat.com>
5598         * config/ia64/ia64.md: Use define_constants for unspec numbers.
5599         * config/ia64/ia64.c: Likewise.
5601 2002-05-09  Richard Sandiford  <rsandifo@redhat.com>
5603         * config/mips/mips.c (mips_add_large_offset_to_sp): Remove FILE arg.
5604         (save_restore_insns): Likewise.
5605         (mips_expand_prologue, mips_expand_epilogue): Update callers.
5606         (highpart_shift_operator): Attach ATTRIBUTE_UNUSED to mode argument.
5608 Thu May  9 11:50:09 2002  Jeffrey A Law  (law@redhat.com)
5610         * athlon.md, k6.md, pentium.md, ppro.md): New files.
5611         * i386.md: Move scheduling information into new files.
5613         * i386.md (type attribute): Add "rotate" for rotate insns.
5614         (rotate insns): Set type to "rotate".
5615         (various attributes and function units): Treat rotate like shift.
5616         (pent_pair attribute): Only rotates by one bit position are
5617         pairable.
5618         (sbb insns): Explicitly set pent_pair attribute on a couple
5619         that were missing it.
5621 Thu May  9 18:29:24 2002  J"orn Rennecke <joern.rennecke@superh.com>
5623         * sh.c (sh_builtin_saveregs): If starting with an odd fp register,
5624         make sure that buffer starts on odd word address.
5625         (sh_va_arg): Skip odd fp registers when reading a double precision
5626         value.
5628 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
5630         * tree.h (preserve_data, object_permanent_p, type_precision):
5631         Remove.
5633 2002-05-09  Neil Booth  <neil@daikokuya.demon.co.uk>
5635         * cpplib.c (cpp_init_internal_pragmas): Remove #pragma poison.
5636         * cppmacro.c (paste_all_tokens): Bad pastes are a hard error.
5637 doc:
5638         * cpp.texi: Update for removal of obsolete features.
5640 Thu May  9 07:46:18 2002  Jan Hubicka <jh@suse.cz>
5641                           Jeffrey A Law  (law@redhat.com)
5643         * i386.c (ia32_use_dfa_pipeline_interface): New function.  Use
5644         the DFA interface for Pentium processors.
5645         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): DEFINE.
5646         (attr_pent_pair, ix86_pent_find_pair): Remove.
5647         (ix86_sched_reorder_pentium): Remove.
5648         (ix86_sched_reorder): Remove reordering for Pentium.
5649         * i386.md (Pentium scheduling): Rewrite using DFA description.
5651 Thu May  9 14:55:39 CEST 2002  Jan Hubicka  <jh@suse.cz>
5653         * cfganal.c (can_fallthru): Fix fast path.
5654         * cfgrtl.c (verify_flow_info): Avoid crash on conditionals
5655         with edges to the next block.
5657 Thu May  9 14:52:45 CEST 2002  Jan Hubicka  <jh@suse.cz>
5658                                Pavel Nejedly  <bim@atrey.karlin.mff.cuni.cz>
5660         * final.c (end_final): Use C trees to output data structures for profiling.
5662         * Makefile.in (LIBGCC_DEPS): Added missing dependency on gcov-io.h
5663         (profile.o): New dependency profile.h
5664         (final.o): New dependency profile.h
5665         * profile.h: New file. New global structure profile_info.
5666         * final.h (count_edges_instrumented_now): Declare.
5667         (current_function_cfg_checksum): Declare.
5668         (function_list): New structure.
5669         (functions_head, functions_tail): New static variables.
5670         (end_final): Emits more data, removed some -ax stuff.
5671         (final): Stores function names and chcksums.
5672         * gcov-io.h (__write_gcov_string): New function.
5673         (__read_gcov_string): New function.
5674         * gcov.c (read_profile): New function.
5675         (create_program_flow_graph): Uses read_profile instead of reading
5676         da_file.
5677         (read_files): Removed da_file checking, it's done by read_profile now.
5678         * libgcc2.c (bb_function_info): New structure.
5679         (bb): New field in structure, removed some -ax stuff.
5680         (__bb_exit_func): Changed structure of da_file.
5681         * profile.c (count_edges_instrumented_now): New global variable.
5682         (current_function_cfg_checksum): New global variable.
5683         (max_counter_in_program): New global variable.
5684         (get_exec_counts): New function.
5685         (compute_checksum): New function.
5686         (instrument_edges): Sets count_edges_instrumented_now.
5687         (compute_branch_probabilities): Uses get_exec_counts instead of
5688         reading da_file.
5689         (branch_prob): Calls compute_checksum and writes extra data to bbg_file.
5690         (init_branch_prob): Removed da_file checking, done in get_exec_counts
5691         now.
5692         (end_branch_prob): Removed da_file checking, done in get_exec_counts
5693         now.
5694         * gcov.texi: Updated information about gcov file format.
5696 2002-05-09  Kazu Hirata  <kazu@cs.umass.edu>
5698         * sbitmap.c: Fix formatting.
5699         * scan.c: Likewise.
5700         * scan-decls.c: Likewise.
5701         * sched-deps.c: Likewise.
5702         * sched-ebb.c: Likewise.
5703         * sched-rgn.c: Likewise.
5704         * sched-vis.c: Likewise.
5705         * sdbout.c: Likewise.
5706         * sibcall.c: Likewise.
5707         * simplify-rtx.c: Likewise.
5708         * ssa.c: Likewise.
5709         * ssa-ccp.c: Likewise.
5710         * ssa-dce.c: Likewise.
5711         * stmt.c: Likewise.
5712         * stor-layout.c: Likewise.
5713         * stringpool.c: Likewise.
5715 2002-05-09  David S. Miller  <davem@redhat.com>
5717         * config/sparc/sol2.h (ASM_CPU_SPEC): Handle -mcpu=v9.
5719 2002-05-07  David S. Miller  <davem@redhat.com>
5721         * config/sparc/sparc.h (TARGET_BUGGY_QP_LIB): Define to zero.
5722         * config/sparc/sol2.h (TARGET_BUGGY_QP_LIB): Override to one.
5723         * config/sparc/sparc.c (emit_soft_tfmode_libcall): If the Qp
5724         library implementation clobbers the output before the inputs
5725         are fully consumed, use stack temporary for the output.
5727 2002-05-09  Jason Thorpe  <thorpej@wasabisystems.com>
5729         * config/netbsd.h (CPP_SPEC): Remove.
5730         * config/i386/netbsd-elf.h (CPP_SPEC): Define.
5731         * config/i386/netbsd.h (CPP_SPEC): Define.
5732         * config/ns32k/netbsd.h (CPP_SPEC): Define.
5733         * config/sparc/netbsd-elf.h (CPP_SPEC): Remove.
5734         * config/sparc/netbsd.h (CPP_SPEC): Define.
5735         * config/vax/netbsd.h (CPP_SPEC): Define.
5737 2002-05-08  Kazu Hirata  <kazu@cs.umass.edu>
5739         * read-rtl.c: Fix formatting.
5740         * real.c: Likewise.
5741         * recog.c: Likewise.
5742         * regclass.c: Likewise.
5743         * regmove.c: Likewise.
5744         * reg-stack.c: Likewise.
5745         * reload1.c: Likewise.
5746         * reload.c: Likewise.
5747         * resource.c: Likewise.
5748         * rtlanal.c: Likewise.
5749         * rtl.c: Likewise.
5750         * rtl-error.c: Likewise.
5752 2002-05-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5754         * pa/pa-64.h (MAX_WCHAR_TYPE_SIZE): Delete.
5755         * pa/pa.h (MAX_WCHAR_TYPE_SIZE): Delete.
5757 2002-05-08  Bernd Schmidt  <bernds@redhat.com>
5759         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Tweak previous change to
5760         use __SSE2__ macro instead.
5761         * config/i386/xmmintrin.h: Likewise.
5763 2002-05-08  Janis Johnson  <janis187@us.ibm.com>
5765         * rtl.h (RTL_FLAG_CHECK*): Add an argument for the macro name,
5766         and use it in all invocations of these macros.  Clean up comments.
5767         * rtl.c (rtl_check_failed_flag): Add an argument for the name
5768         of the flag access macro whose check failed.
5769         * doc/rtl.texi (Flags): Document additional flag uses.
5771 2002-05-08  Robert Spier <rspier@pobox.com>
5772             Neil Booth  <neil@daikokuya.demon.co.uk>
5774         PR preprocessor/6521
5775         * cppfiles.c (handle_missing_header): Don't do anything
5776         different for <> includes.
5777 doc:
5778         * cppopts.texi: Update documentation for -MG.
5780 2002-05-08  Neil Booth  <neil@daikokuya.demon.co.uk>
5782         * cpplex.c (cpp_interpret_charconst): Truncate as well as
5783         sign-extend.
5784 doc:
5785         * cpp.texi: Clarify multichar charconst valuation.
5787 2002-05-08  Mark Mitchell  <mark@codesourcery.com>
5789         * doc/invoke.texi: Document -mwindiss option.
5791 2002-05-08  Jason Merrill  <jason@redhat.com>
5793         * dwarf2out.c (output_call_frame_info): Don't emit a CIE with no FDEs.
5795         * dwarf2out.c (gen_type_die): Abort on broken recursion.
5797         PR c++/6381
5798         * dwarf2out.c (rtl_for_decl_location): Only expand INTEGER_CST and
5799         REAL_CST.
5801 2002-05-08  Nick Clifton  <nickc@cambridge.redhat.com>
5803         * config/arm/t-arm-elf (MULTILIB): Do not allow big-endian/
5804         little-endian multilibs to override arm/thumb multilibs.
5805         Do not build hardware floating point multilibs, nor apcs-26
5806         multilibs for the Thumb.
5808 2002-05-08  Mark Mitchell  <mark@codesourcery.com>
5810         PR c/6569.
5811         * varasm.c (mark_weak): New function.
5812         (merge_weak): Use it.  Do not call declare_weak.
5813         (declare_weak): Use merge_weak.
5815 Wed May  8 13:12:11 CEST 2002  Jan Hubicka  <jh@suse.cz>
5817         * cse.c (dead_libcall_p): Update counts.
5818         (delete_trivially_dead_insns): Update call of dead_libcall_p.
5820 Wed May  8 11:08:50 CEST 2002  Jan Hubicka  <jh@suse.cz>
5822         * cfglayout.c (function_tail_eff_head): Rename to ...
5823         (function_footer): ... this one.
5824         (unlink_insn_chain): New functions.
5825         (label_for_bb): Only call block_label and emit debug message.
5826         (record_effective_endpoints): Actually unlink the headers and footers.
5827         (fixup_reorder_cahin): Re-insert the unlinked sequences.
5828         (cfg_layout_duplicate_bb): Use duplicate_insn_chain.
5829         * cfglayout.h (struct reorder_block_def): New fields footer/header;
5830         remove eff_head/eff_end.
5831         * rtl.h (set_first_insn): Declare.
5832         * emit-rtl.c (set_first_insn): New function.
5834         * cfglayout.c (fixup_reorder_chain): Dump duplicated
5835         (cfg_layout_can_duplicate_bb_p, cfg_layout_rerirect_edge,
5836         cfg_layout_duplicate_bb): New global function.
5837         (duplicate_insn_chain): New static function.
5838         * cfglayout.h (cfg_layout_can_duplicate_bb_p, cfg_layout_rerirect_edge,
5839         cfg_layout_duplicate_bb): Declare.
5840         (struct reorder_block_def): Add "original" field.
5841         * emit-rtl.c (emit_copy_of_insn_after): New function.
5842         * rtl.h (emit_copy_of_insn_after): Declare.
5844         * cfglayout.c (fixup_fallthru_exit_predecessor): Kill.
5845         (fixup_reorder_chain): properly handle edges to exit block.
5847 Wed May  8 11:10:31 CEST 2002  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5848                                Jan Hubicka  <jh@suse.cz>
5850         * basic-block.h (note_prediction_to_br_prob): declare.
5851         * c-semantics.c: Inlucde predit.h
5852         (expand_stmt): predict GOTO_STMT as not taken.
5853         * cfgcleanup.c: (delete_unreachable_blocks): Make global.
5854         (cleanup_cfg): Do not free tail_recursion_list.
5855         * cfgrtl.c (can_delete_note_p): Delete NOTE_INSN_PREDICTION.
5856         (flow_delete_block): Kill predictions past end of basic block.
5857         * output.h (delete_unreachable_blocks): Declare.
5858         * predict.c (predicted_by_p, process_note_predictions,
5859         process_note_prediction, last_block_p): New function.
5860         (estimate_probability): Bypass loop on PRED_CONTINUE;
5861         do not handle noreturn heuristics; kill PRED_RETURN; add
5862         PRED_EARLY_RETURN.
5863         * predict.def (PRED_CONTINUE, PRED_EARLY_RETURN, PRED_GOTO,
5864         PRED_CONST_RETURN, PRED_NEGATIVE_RETURN, PRED_NULL_RETURN): New.
5865         * predict.h (IS_TAKEN): New constant.
5866         * print-rtl.c (print_rtx): Pretty print NOTE_INSN_PREDICTION.
5867         * rtl.c (NOTE_INSN_PREDICTION): New.
5868         * rtl.h (NOTE_PREDICTION, NOTE_PREDICTION_ALG, NOTE_PREDICTION_FLAGS):
5869         New macro.
5870         (insn_note): add NOTE_INSN_PREDICTION.
5871         * sibcall.c (optimize_sibling_and_tail_recursive_call): Do not build
5872         CFG; free tail_recursion_label_list.
5873         * stmt.c: Include predict.h;
5874         (return_prediction): New.
5875         (expand_value_return): Use it.
5876         * toplev.c: Lower NOTE_INSN_PREDICTION before sibcall.
5878 2002-05-08  Richard Sandiford  <rsandifo@redhat.com>
5880         * config/mips/mips.md: Name the unspecs with define_constant.
5881         (*HILO_delay): Rename to 'hilo_delay' (no star).
5882         (reload_indi): Replace gen_rtx_UNSPEC with gen_hilo_delay.
5883         (reload_outdi, reload_outsi): Likewise.
5885 2002-05-07  Kazu Hirata  <kazu@cs.umass.edu>
5887         * toplev.c: Fix formatting.
5889 2002-05-07  Janis Johnson  <janis187@us.ibm.com>
5891         * config.in (ENABLE_RTL_FLAG_CHECKING): New.
5892         * configure.in (ac_rtlflag_checking): New.
5893         * doc/install.texi (--enable-checking): Document RTL flag checking.
5895 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
5897         * c-common.c (c_common_init): Set options->unsigned_wchar.
5898         * cppinit.c (cpp_create_reader): Default unsigned_wchar,
5899         group target dependencies.
5900         (init_builtins, cpp_handle_option): Update.
5901         * cpplex.c (cpp_interpret_charconst): Update.
5902         * cpplib.h (struct cpp_options): Add unsigned_wchar, rename
5903         signed_char to unsigned_char, group target dependencies.
5904         * defaults.h (WCHAR_UNSIGNED): Remove.
5905         * system.h (WCHAR_UNSIGNED, MAX_CHAR_TYPE_SIZE): Poison.
5906 config:
5907         * freebsd.h, interix.h, alpha/freebsd.h, arm/freebsd.h,
5908         i386/386bsd.h, i386/beos-elf.h, i386/bsd386.h, i386/cygwin.h,
5909         i386/djgpp.h, i386/freebsd-aout.h, i386/i386-interix.h,
5910         i386/win32.h, ia64/freebsd.h, mips/netbsd.h, rs6000/freebsd.h,
5911         sh/elf.h, sh/sh.h, sparc/freebsd.h: Remove WCHAR_UNSIGNED.
5912 doc:
5913         * tm.texi: Remove MAX_CHAR_TYPE_SIZE.
5915 2002-05-07  Mark Mitchell  <mark@codesourcery.com>
5917         * fixinc/inclhack.def (windiss_math1): New fix.
5918         (windiss_math2): Likewise.
5919         (windiss_valist): Likewise.
5920         * fixinc/fixincl.x: Regenerated.
5922 2002-05-07  Andreas Jaeger  <aj@suse.de>
5924         * genautomata.c (output_internal_min_issue_delay_func): Add
5925         ATTRIBUTE_UNUSED to avoid warning with empty dfa.
5926         (output_internal_trans_func): Likewise.
5928 Tue May  7 10:06:22 2002  Jeffrey A Law  (law@redhat.com)
5930         * pa.c (hppa_profile_hook): Use force_reg to get the address
5931         of the profile hook into an appropriate pseudo register.
5933 2002-05-07  Mark Mitchell  <mark@codesourcery.com>
5935         * config/rs6000/sysv4.h (SUBTARGET_SWITCHES): Add -mwindiss.
5936         (LINK_START_SPEC): Handle it.
5937         (LINK_OS_SPEC): Likewise.
5938         (CPP_SPEC): Likewise.
5939         (STARTFILE_SPEC): Likewise.
5940         (LIB_SPEC): Likewise.
5941         (ENDFILE_SPEC): Likewise.  Do not assume crtsavres.o is used on
5942         all platforms.
5943         (CRTSAVRES_DEFAULT_SPEC): New macro.
5944         (LIB_WINDISS_SPEC): New macro.
5945         (CPP_OS_WINDISS_SPEC): Likewise.
5946         (STARTFILE_WINDISS_SPEC): Likewise.
5947         (ENDFILE_WINDISS_SPEC): Likewise.
5948         (LINK_START_WINDISS_SPEC): Likewise.
5949         (LINK_OS_WINDISS_SPEC): Likewise.
5950         * config/rs6000/windiss.h: New file.
5952 2002-05-07  Aldy Hernandez  <aldyh@redhat.com>
5954         * config/rs6000/rs6000.c (bdesc_2arg): Fix vmax typos.
5956 2002-05-06  David S. Miller  <davem@redhat.com>
5958         * config/sparc/sparc.md (shift insns): Do not mask off
5959         second operand, 'I' constraint and SHIFT_COUNT_TRUNCATED
5960         take care of it.
5962 2002-05-06  Richard Henderson  <rth@redhat.com>
5964         PR c++/6212
5965         * expr.c (highest_pow2_factor_for_type): New.
5966         (expand_assignment): Use it.
5968 2002-05-06  Aldy Hernandez  <aldyh@redhat.com>
5970         * config/rs6000/rs6000.md ("altivec_mtvscr"): Change to
5971         unspec_volatile.
5972         ("altivec_mfvscr"): Same.
5974 2002-05-06  Janis Johnson  <janis187@us.ibm.com>
5976         * rtl.h (struct rtx_def): Update comments.
5977         (RTL_FLAG_CHECK[12345678]): New.  (rtl_check_failed_flag): Declare.
5978         (RTL_FLAG): New.  (CLEAR_RTX_FLAGS): New.  (flag access macros): Use
5979         RTL_FLAG_CHECK macros with list of expected RTL codes.
5980         * rtl.c (copy_rtx, shallow_copy_rtx): Use RTX_FLAG macro.
5981         (rtl_check_failed_flag): New.
5982         * reload1.c (reload): Use REG macro before changing rtx to MEM.
5983         (reload_cse_noop_set_p): Check rtx code before using access macro.
5984         * config/ia64/ia64.c (process_for_unwind_directive): Check rtx code
5985         before using access macro.
5987 2002-05-06  Janis Johnson  <janis187@us.ibm.com>
5989         * doc/rtl.texi (Flags): Update to reflect current usage.
5991 2002-05-06  Roger Sayle  <roger@eyesopen.com>
5993         PR opt/3995
5994         * fold-const.c (sign_bit_p): New function.
5995         (fold) [EQ_EXPR]: Use this to convert (A & C) == 0 into A >= 0 and
5996         (A & C) != 0 into A < 0, when constant C is the sign bit of A's type.
5997         Reapply fold when converting (A & C) == C into (A & C) != 0.
5998         (fold_binary_op_with_conditional_arg): Fix typo in comment.
6000 2002-05-07  Neil Booth  <neil@daikokuya.demon.co.uk>
6002         * c-common.c (warn_multichar): New.
6003         (c_common_init): Set CPP's warn_multichar.
6004         * c-common.h (warn_multichar): New.
6005         * c-decl.c (warn_multichar): Remove.
6006         * c-lex.c (lex_charconst): Update.
6007         * c-tree.h (warn_multichar): Remove.
6008         * cppexp.c (eval_token): Sign-extend charconst value.
6009         * cppinit.c (cpp_create_reader): Set warn_multichar.
6010         * cpplex.c (cpp_interpret_charconst): Don't sign-extend
6011         each character.  Update prototype.  Sign-extend the result.
6012         * cpplib.h: Fix conditions.
6013         (struct cpp_options): Add new warning flag.
6014         (cpp_interpret_charconst): Update prototype.
6015 doc:
6016         * cpp.texi: Update documentation.
6018 2002-05-06  Vladimir Makarov  <vmakarov@redhat.com>
6020         * genautomata.c (form_the_same_automaton_unit_lists_from_regexp):
6021         Fix typo in usage of allof instead of unit.
6023 2002-05-06  Richard Henderson  <rth@redhat.com>
6025         * recog.c (if_test_bypass_p): Accept multiple set insns for OUT,
6026         and any jump or call for IN.
6028 2002-05-06  Bernd Schmidt  <bernds@redhat.com>
6030         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Define __SSE2_BUILTINS__ if
6031         -msse2.
6032         * config/i386/xmmintrin.h: Use it to conditionalize SSE2 support.
6034 2002-05-06  Roger Sayle  <roger@eyesopen.com>
6036         * fold-const.c (lshift-double): Cast the high word to an unsigned
6037         HOST_WIDE_INT when extracting sign bit to avoid compiler warning.
6038         (div_and_round_double): Cast carry to a signed HOST_WIDE_INT to
6039         avoid compiler warning.  (fold): Remove redundant code from
6040         BIT_AND_EXPR as integer operands are canonicalized to be arg1.
6042 2002-05-06  Jeff Law  <law@redhat.com>
6044         * pa-protos.h (hppa_fpstore_bypass_p): Declare.
6045         * pa.c (pa_adjust_cost): Remove all true dependency cost
6046         adjustments.  Also remove support for non-DFA scheduling.
6047         * pa.md (700, 7100, 7100lc, 7200, 7300): Use bypass mechanism
6048         to adjust true dependency costs.  Update various comments.
6049         (7100lc, 7200, 7300 scheduling): Simplify by combining the
6050         FP ALU & MPY units into a single unit.
6052 2002-05-06  Catherine Moore  <clm@redhat.com>
6054         * config/v850/v850.c (compute_register_save_size): Make sure
6055         to count all of the registers that will be saved.
6057 Mon May  6 18:03:11 CEST 2002  Jan Hubicka  <jh@suse.cz>
6059         * i386.c (q_regs_operand): Use ANY_QI_REGS_P.
6061 2002-05-06  David S. Miller  <davem@redhat.com>
6063         * config/sparc/sparc.c (emit_soft_tfmode_libcall): Do not
6064         allow result to overlap input operands in memory.
6066 2002-05-06  Neil Booth  <neil@daikokuya.demon.co.uk>
6068 doc:
6069         * cpp.texi: Update multichar charconst docs.
6071 2002-05-06  Neil Booth  <neil@daikokuya.demon.co.uk>
6073         * cpplex.c (cpp_interpret_charconst): Sign-extend each
6074         character.  Don't ignore excess characters.  Treat
6075         multicharacter character constants as signed.
6076         (cpp_parse_escape): Clarify diagnostic.
6078 2002-05-05  Jakub Jelinek  <jakub@redhat.com>
6080         * config/sparc/sparc.md (ashlsi3): If shift count is const1_rtx,
6081         use add instead of shift.
6082         (ashldi3_sp64): Likewise.
6083         (ashlsi3_const1, ashldi3_const1): Remove.
6084         * config/sparc/sparc.h (PREDICATE_CODES): Add const1_operand.
6085         * config/sparc/sparc.c (const1_operand): New.
6087 2002-05-05  Jason Thorpe  <thorpej@wasabisystems.com>
6089         * config.gcc (alpha*-*-netbsd*): Don't use crtstuff.
6091 2002-05-05  Jakub Jelinek  <jakub@redhat.com>
6093         PR target/6561
6094         * config/sparc/sparc.md (muldi3_v8plus): Handle %1 equal to %2.
6096 2002-05-05  Richard Henderson  <rth@redhat.com>
6098         * config/alpha/alpha.c (alpha_adjust_cost): Remove everything but
6099         memory latency adjustments.
6100         (alpha_variable_issue): Remove.
6101         (alpha_use_dfa_pipeline_interface): New.
6102         (alpha_multipass_dfa_lookahead): New.
6103         * config/alpha/alpha.md: Remove define_function_unit scheduling;
6104         include new dfa scheduling.
6105         (attr type): Add none.
6106         (blockage): Use it.
6107         * config/alpha/ev4.md: New.
6108         * config/alpha/ev5.md: New.
6109         * config/alpha/ev6.md: New.
6111 2002-05-05  David S. Miller  <davem@redhat.com>
6113         * recog.c (store_data_bypass_p): Handle CLOBBER inside PARALLEL.
6115 2002-05-05  Kazu Hirata  <kazu@cs.umass.edu>
6117         * cse.c: Fix formatting.
6118         * emit-rtl.c: Likewise.
6120 2002-05-05  Vladimir Makarov  <vmakarov@redhat.com>
6122         * genautomata.c (initiate_states): Add additional guard to
6123         initialize `units_array'.
6125 2002-05-05  Vladimir Makarov  <vmakarov@redhat.com>
6127         * genautomata.c (form_the_same_automaton_unit_lists_from_regexp,
6128         process_unit_to_form_the_same_automaton_unit_lists,
6129         form_the_same_automaton_unit_lists
6130         check_unit_distributions_to_automata): New prototypes and
6131         functions.
6132         (check_automata): Rename it into `check_automata_insn_issues'.
6133         (unit_decl): New fields `the_same_automaton_unit' and
6134         `the_same_automaton_message_reported_p'.
6135         (unit_decl_t): New typedef.
6136         (the_same_automaton_lists): New gloval variable.
6137         (unit_regexp, unit_set_el, units_array, units_cmp,
6138         output_get_cpu_unit_code_func): Use the typedef.
6139         (evaluate_max_reserv_cycles): Increment
6140         `description->max_insn_reserv_cycles'.
6141         (initiate_states): Don't increment `max_cycles_num'.
6142         (transform_insn_regexps): Move code around transformation of
6143         regexps from `generate'.
6144         (generate): Remove call of `transform_insn_regexps'.
6145         (expand_automata): Call `transform_insn_regexps' and
6146         `check_unit_distributions_to_automata'.  Check errors before
6147         `generate'.
6149         * config/sparc/ultra3.md (us3_a0, us3_a1): Move the units into
6150         automaton `ultrasparc3_1'.
6152 2002-05-05  Neil Booth  <neil@daikokuya.demon.co.uk>
6154         * c-common.c (c_common_init): Set up CPP arithmetic.
6155         * cppinit.c (cpp_create_reader): Default CPP arithmetic to
6156         something reasonable for the host.
6157         (sanity_checks): Add checks.
6158         (cpp_read_main_file): Call sanity_checks() from here...
6159         (cpp_post_options): ... not here.
6160         * cpplex.c (cpp_interpret_charconst): Get max_chars right.
6161         * cpplib.h (struct cpp_options): New member int_precision.
6163 2002-05-05  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6165         * doc/install.texi (powerpc-*-linux-gnu*): Update build requirements.
6167 2002-05-04  David S. Miller  <davem@redhat.com>
6169         * config/sparc/linux.h, config/sparc/linux64.h
6170         (HANDLE_PRAGMA_PACK_PUSH_POP): Don't define twice.
6172         * config/sparc/sparc.c (sparc_rtx_costs): Describe costs of
6173         more RTX codes.
6174         * config/sparc/sparc.h (RTX_COSTS_CASES): List those new codes.
6176         * recog.c (store_data_bypass_p): Handle out_insn being a PARALLEL
6177         of SETs.
6179 2002-05-05  Tim Josling  <tej@melbpc.org.au>
6181         * treelang; New directory for new sample language treelang.
6183 2002-05-04  Neil Booth  <neil@daikokuya.demon.co.uk>
6185         * Makefile.in (c-lex.o): Update.
6186         * c-lex.c: Include target.h.
6187         (cb_register_builtins): New.
6188         (init_c_lex): Set builtins callback.
6189         * c-lex.h (cpp_define, cpp_assert): New prototypes.
6190         * cppinit.c (init_builtins): Use callback, including for
6191         GXX_WEAK.
6192         * cpplib.h (struct cpp_callbacks): New member.
6193         * target-def.h (TARGET_REGISTER_CPP_BUILTINS): New.
6194         (TARGET_INITIALIZER): Update.
6195         * target.h (struct gcc_target): New hook.
6196         * tree.c (default_register_cpp_builtins): New.
6197         * tree.h (default_register_cpp_builtins): New.
6198 doc:
6199         * tm.texi (TARGET_REGISTER_CPP_BUILTINS): Document.
6201 2002-05-04  Neil Booth  <neil@daikokuya.demon.co.uk>
6203         * cppinit.c (MAX_WCHAR_TYPE_SIZE): Move to cpplib.h
6204         (cpp_post_options): Move sanity checks to...
6205         (sanity_checks): New.
6206         * cpplex.c (maybe_read_ucs): Fix prototype.
6207         (parse_string, cpp_parse_escape): Cast for %c format specifier.
6208         * cpplib.h (cppchar_t): Use unsigned long or unsigned long long
6209         if necessary.
6211 2002-05-04  Bernd Schmidt  <bernds@redhat.com>
6213         * config/i386/i386.c (bdesc_2arg): Add a couple of missing SSE2
6214         builtins.  Use V2DI patterns instead of TI for logical operations.
6215         (ix86_init_mmx_sse_builtins): Add a couple of missing SSE2 builtins.
6216         Correct definitions of psadbw, pmovmskb128, movntdq, cvtdq2ps.
6217         (ix86_expand_builtins): Change the pattern used for movntdq.
6218         * config/i386/i386.md (sse2_andv2di3, sse2_iorv2di3, sse2_xorv2di3,
6219         sse2_nandv2di3): New patterns.
6220         (sse2_anddf3, sse2_nanddf3, sse2_iordf3, sse2_xordf3): Correct modes
6221         on operands.
6222         (sse2_movntv2di): Renamed from sse2_movntti and modes adjusted.
6223         (cvtdq2pd): Correct mode on operand 1.
6224         (sse2_umulsidi3): Describe without unspec.
6225         (sse2_psadbw, mmx_psadbw): Describe with unspec; use more appropriate
6226         machine modes.
6227         (lshrv2di3): Renamed from sse2_lshrv2di3 and removed unspec.
6228         (ashlv2di3): Likewise, from sse2_ashlv2di3.
6229         (ashrv8hi3, ashrv4si3, lshrv8hi3, lshrv4si3, lshrv2di3, ashlv8hi3,
6230         ashlv4si3, ashlv2di3): Use SImode for shift count.
6231         (ashrv8hi3_ti, ashrv4si3_ti, lshrv8hi3_ti, lshrv4si3_ti, lshrv2di3_ti,
6232         lshrv4si3_ti, lshrv2di3_ti, ashlv8hi3_ti, ashlv4si3_ti, ashlv2di3_ti):
6233         New patterns.
6234         * config/i386/xmmintrin.h (__v2df, __v2di, __v4si, __v8hi, __v16qi):
6235         New typedefs.
6236         (__m128i, __m128d): New macros.
6237         (_mm_add_pd, _mm_add_sd, _mm_sub_pd, _mm_sub_sd, _mm_mul_pd,
6238         _mm_mul_sd, _mm_div_pd, _mm_div_sd, _mm_sqrt_pd, _mm_sqrt_sd,
6239         _mm_min_pd, _mm_min_sd, _mm_max_sd, _mm_max_pd, _mm_and_pd,
6240         _mm_andnot_pd, _mm_xor_pd, _mm_or_pd, _mm_cmpeq_pd, _mm_cmplt_pd,
6241         _mm_cmple_pd, _mm_cmpgt_pd, _mm_cmpge_pd, _mm_cmpneq_pd,
6242         _mm_cmpnlt_pd, _mm_cmpnle_pd, _mm_cmpngt_pd, _mm_cmpnge_pd,
6243         _mm_cmpord_pd, _mm_cmpunord_pd, _mm_cmpeq_sd, _mm_cmplt_sd,
6244         _mm_cmple_sd, _mm_cmpgt_sd, _mm_cmpge_sd, _mm_cmpneq_sd,
6245         _mm_cmpnlt_sd, _mm_cmpnle_sd, _mm_cmpngt_sd, _mm_cmpnge_sd,
6246         _mm_cmpord_sd, _mm_cmpunord_sd, _mm_comieq_sd, _mm_comilt_sd,
6247         _mm_comile_sd, _mm_comigt_sd, _mm_comige_sd, _mm_comineq_sd,
6248         _mm_ucomieq_sd, _mm_ucomieq_sd, _mm_ucomilt_sd, _mm_ucomile_sd,
6249         _mm_ucomigt_sd, _mm_ucomige_sd, _mm_ucomineq_sd, _mm_cvtepi32_pd,
6250         _mm_cvtepi32_ps, _mm_cvtpd_epi32, _mm_cvtpd_pi32, _mm_cvtpd_ps,
6251         _mm_cvttpd_epi32, _mm_cvttpd_pi32, _mm_cvtpi32_pd, _mm_cvtps_epi32,
6252         _mm_cvttps_epi32, _mm_cvtps_pd, _mm_cvtsd_si32, _mm_cvttsd_si32,
6253         _mm_cvtsd_ss, _mm_cvtsi32_sd, _mm_cvtss_sd, _mm_unpackhi_pd,
6254         _mm_unpacklo_pd, _mm_loadh_pd, _mm_storeh_pd, _mm_storel_pd,
6255         _mm_movemask_pd, _mm_packs_epi16, _mm_packs_epi32, _mm_packus_epi16,
6256         _mm_unpackhi_epi8, _mm_unpackhi_epi16, _mm_unpackhi_epi32,
6257         _mm_unpacklo_epi8, _mm_unpacklo_epi16, _mm_unpacklo_epi32,
6258         _mm_add_epi8, _mm_add_epi16, _mm_add_epi32, _mm_add_epi64,
6259         _mm_adds_epi8, _mm_adds_epi16, _mm_adds_epu8, _mm_adds_epu16,
6260         _mm_sub_epi8, _mm_sub_epi16, _mm_sub_epi32, _mm_sub_epi64,
6261         _mm_subs_epi8, _mm_subs_epi16, _mm_subs_epu8, _mm_subs_epu16,
6262         _mm_madd_epi16, _mm_mulhi_epi16, _mm_mullo_epi16, _mm_mul_pu16,
6263         _mm_mul_epu16, _mm_sll_epi16, _mm_sll_epi32, _mm_sll_epi64,
6264         _mm_sra_epi16, _mm_sra_epi32, _mm_srl_epi16, _mm_srl_epi32,
6265         _mm_srl_epi64, _mm_slli_epi16, _mm_slli_epi32, _mm_slli_epi64,
6266         _mm_srai_epi16, _mm_srai_epi32, _mm_srli_epi16, _mm_srli_epi32,
6267         _mm_srli_epi64, _mm_and_si128, _mm_andnot_si128, _mm_or_si128,
6268         _mm_xor_si128, _mm_cmpeq_epi8, _mm_cmpeq_epi16, _mm_cmpeq_epi32,
6269         _mm_cmpgt_epi8, _mm_cmpgt_epi16, _mm_cmpgt_epi32, _mm_max_epi16,
6270         _mm_max_epu8, _mm_min_epi16, _mm_min_epu8, _mm_movemask_epi8,
6271         _mm_mulhi_epu16, _mm_maskmoveu_si128, _mm_avg_epu8, _mm_avg_epu16,
6272         _mm_sad_epu8, _mm_stream_si32, _mm_stream_si128, _mm_stream_pd,
6273         _mm_movpi64_epi64, _mm_clflush, _mm_lfence, _mm_mfence): New
6274         functions.
6275         (_mm_shufflehi_epi16, _mm_shufflelo_epi16, _mm_shuffle_epi32,
6276         _mm_extract_epi16, _mm_insert_epi16, _mm_shuffle_pd): New macros.
6278 2002-05-04  Kazu Hirata  <kazu@cs.umass.edu>
6280         * dwarf2out.c: Fix formatting.
6281         * varasm.c: Likewise.
6283 2002-05-04  David Edelsohn  <edelsohn@gnu.org>
6285         PR c/6543
6286         * config/rs6000/rs6000.md (sCC pattern and splitter): Remove
6287         clobber and use result as temporary value.
6289 Sat May  4 13:20:54 CEST 2002  Jan Hubicka  <jh@suse.cz>
6291         * expr.c (force_operand): Use expand_simple_* to handle more
6292         cases.
6294 2002-05-04  Neil Booth  <neil@daikokuya.demon.co.uk>
6296         * c-lex.c (lex_string): Let cpp_parse_escape handles truncation
6297         and sign-extension.
6298         (lex_charconst): Update for change in prototype of
6299         cpp_interpret_charconst.  Extend from cppchar_t to HOST_WIDE_INT
6300         appropriately.
6301         * cpphash.h (BITS_PER_CPPCHAR_T): New.
6302         * cppinit.c (cpp_create_reader): Initialize them for no
6303         change in semantics.
6304         (cpp_post_options): Add sanity checks.
6305         * cpplex.c (cpp_parse_escape): Handle precision, sign-extension
6306         and truncation issues.  Calculate in type cppchar_t.
6307         (MAX_CHAR_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Remove.
6308         (cpp_interpret_charconst): Calculate in type cppchar_t.  Handle
6309         run-time dependent precision correctly.  Return whether the
6310         result is signed or not.
6311         * cpplib.c (dequote_string): Use cppchar_t; update.
6312         * cpplib.h (cppchar_signed_t): New.
6313         struct cpp_options): New precision members.
6314         (cpp_interpret_charconst, cpp_parse_escape): Update prototypes.
6315         * cppexp.c (eval_token): Update.
6317 2002-05-03  David S. Miller  <davem@redhat.com>
6319         * config/sparc/sparc-protos.h (sparc_rtx_costs): New.
6320         * config/sparc/sparc.c (sparc_rtx_costs): New function
6321         implementing RTX_COSTS and CONST_COSTS.
6322         * config/sparc/sparc.h (CONST_COSTS): Delete.
6323         (RTX_COSTS_CASES): Define.
6324         (RTX_COSTS): Expand RTX_COSTS_CASES and use sparc_rtx_costs to do
6325         the work.
6327         * config/sparc/sparc.md (DFA schedulers): Split out...
6328         * config/sparc/cypress.md, config/sparc/hypersparc.md,
6329         config/sparc/sparclet.md, config/sparc/supersparc.md,
6330         config/sparc/ultra1_2.md, config/sparc/ultra3.md: ... into here.
6332         * config/sparc/sparc.c (LEAF_REGISTERS): Do not do ifdef
6333         checks on it, always defined for Sparc.
6335         * config/sparc/sparc.h (REG_ALLOC_ORDER, REG_LEAF_ALLOC_ORDER):
6336         Tweak, and add more detailed comments.
6338 2002-05-03  Zack Weinberg  <zack@codesourcery.com>
6340         * Re-apply patch accidentally reverted with
6341         DFA scheduler merge: remove all rules and variables to slurp
6342         source files out of libiberty and rebuild them with HOST_CC.
6343         ($(HOST_PREFIX_1)varray.o): New rule.
6344         (genattrtab rule): Word wrap.
6346 2002-05-03  Jason Thorpe  <thorpej@wasabisystems.com>
6348         * config/i386/netbsd64.h (CPP_LP64_SPEC): Define.
6349         (CPP_SUBTARGET_SPEC): Define.
6350         (SUBTARGET_EXTRA_SPECS): Redefine, adding cpp_lp64 and
6351         cpp_subtarget specs.
6352         (CPP_SPEC): Redefine to include %(cpp_subtarget).
6354 2002-05-03  David S. Miller  <davem@redhat.com>
6356         * target-defs.h (TARGET_SCHED_CYCLE_DISPLAY): Delete.
6357         * target.h (struct gcc_target): Delete cycle_display member.
6359         * config/ia64/ia64.c (ia64_emit_insn_before): Put it back.
6360         (rtx_needs_barrier): Delete reference to cycle_display unspec.
6361         (ia64_sched_reorder2): Mention need for cycle display handling
6362         once such notes exist.
6364 2002-05-03  Richard Henderson  <rth@redhat.com>
6366         * real.c (etoasc): Strip most trailing zeros for clarity.
6367         * sched-vis.c: Include real.h.
6368         (print_value): Use REAL_VALUE_TO_DECIMAL as needed.
6369         * Makefile.in (sched-vis.o): Add real.h.
6371 2002-05-03  David S. Miller  <davem@redhat.com>
6373         * haifa-sched.c (rank_for_schedule): Revert 2002-05-02 change,
6374         no longer needed.
6376 2002-05-03  Aldy Hernandez  <aldyh@redhat.com>
6378         * config/rs6000/rs6000.c (altivec_expand_binop_builtin): Error out
6379         when we get an out of range literal.
6380         (altivec_expand_ternop_builtin): Same.
6381         (altivec_expand_unop_builtin): Same.
6382         (altivec_expand_builtin): Same, for dss.
6383         (altivec_expand_builtin): Use trees instead of rtl when
6384         determining literal argument validity.
6386 2002-05-03  David S. Miller  <davem@redhat.com>
6388         Delete cycle display scheduling hook.
6389         * config/ia64/ia64.c (ia64_cycle_display,
6390         TARGET_SCHED_CYCLE_DISPLAY, ia64_emit_insn_before): Delete.
6391         (ia64_sched_reorder2): Don't check for CODE_FOR_cycle_display
6392         and use emit_insn_before instead of ia64_emit_insn_before.
6393         * config/ia64/ia64.md (unspec usage): Delete cycle display.
6394         (cycle_display): Delete insn pattern.
6395         * config/sparc/sparc.md (unspec usage): Delete cycle display.
6396         (cycle_display): Delete insn pattern.
6397         * config/sparc/sparc.c (sparc_cycle_display,
6398         TARGET_SCHED_CYCLE_DISPLAY): Delete.
6399         * doc/md.texi (cycle_display): Don't mention.
6400         * doc/tm.texi (TARGET_SCHED_CYCLE_DISPLAY): Likewise.
6402 2002-05-03  Richard Henderson  <rth@redhat.com>
6404         * recog.c (store_data_bypass_p, if_test_bypass_p): New.
6405         * recog.h: Declare them.
6407         * config/sparc/sparc.c (ultrasparc_store_bypass_p): Remove.
6408         * config/sparc/sparc.md: Use store_data_bypass_p instead.
6409         * config/sparc/sparc-protos.h: Update.
6411 2002-05-03  Jason Thorpe  <thorpej@wasabisystems.com>
6413         * config/sparc/netbsd-elf.c (CPP_SUBTARGET_SPEC64): Remove
6414         -D__arch64__.  Add -D_LP64.
6415         (CPP_ARCH32_SPEC): Redefine to match the non-bi-arch version
6416         from sparc.h.
6417         (CPP_ARCH64_SPEC): Likewise.
6418         (NO_BUILTIN_PTRDIFF_TYPE): Undef.
6419         (NO_BUILTIN_SIZE_TYPE): Undef.
6421 2002-05-03  Vladimir Makarov  <vmakarov@redhat.com>
6423         * genautomata.c (min_issue_delay_pass_states): Change return type
6424         in the prototype.
6425         (min_issue_delay_pass_states): Change the algorithm.
6426         (min_issue_delay): Set up min_insn_issue_delay for the state.
6427         (output_min_issue_delay_table): Interchange the nested loops and
6428         and initiate min_insn_issue_delay for states.
6430 Fri May  3 22:59:15 CEST 2002  Jan Hubicka  <jh@suse.cz>
6432         * cfgcleanup.c (try_optimize_cfg):  Call merge_block only when
6433         jump is simplejump.
6435 Fri May  3 22:53:37 CEST 2002  Jan Hubicka  <jh@suse.cz>
6437         * i386.c  (expand_movstr, expand_clrstr): Fix inline-all-stringops
6438         sequence.
6440 2002-05-03  Richard Henderson  <rth@redhat.com>
6442         PR opt/6534
6443         * ifcvt.c (noce_try_store_flag, noce_try_store_flag_constants,
6444         noce_try_store_flag_inc, noce_try_store_flag_mask, noce_try_cmove,
6445         noce_try_cmove_arith, noce_try_minmax, noce_try_abs): Insert new
6446         code before JUMP, not EARLIEST.
6448 2002-05-03  Joseph S. Myers  <jsm28@cam.ac.uk>
6450         * c-format.c (check_format_info_main): Don't check for presence of
6451         parameter for * width until after operand number has been read,
6452         and only check for it if format parameters are available.
6453         Fixes PR c/6547.
6455 2002-05-03  Jason Thorpe  <thorpej@wasabisystems.com>
6457         * config/alpha/netbsd.h (CPP_PREDEFINES): Add -D_LP64.
6458         (LINK_SPEC): Undef before defining.
6460 2002-05-03  Jakub Jelinek  <jakub@redhat.com>
6462         PR preprocessor/6489
6463         * tradcpp.c (fixup_newlines): New.
6464         (main, finclude): Use it.
6466 2002-05-03  Richard Sandiford  <rsandifo@redhat.com>
6468         * config/mips/elf64.h (UNIQUE_SECTION): Use mips_unique_section.
6469         * config/mips/mips.c (mips_unique_section): Strip encoding from
6470         decl name.
6472 2002-05-03  Jakub Jelinek  <jakub@redhat.com>
6474         * config/i386/i386.c (ix86_expand_int_movcc): Truncate to proper
6475         mode.
6477 2002-05-03  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6479         * doc/install.texi (Installing): Mention GCC 3.1 buildstats.
6480         (Specific): Removed buildstats references.
6481         (Specific, hppa*-hp-hpux11): Adjust for GCC versions > 3.0.
6482         (Specific, sparc-sun-solaris2*): Update 64-bit hints for GCC 3.1.
6483         Accomodate Solaris versions beyond 8.
6484         (Specific, sparc-sun-solaris2.7): Update as path for GCC 3.1.
6485         (Specific, *-*-solaris2.8): Removed, obsolete.
6487 2002-05-03  Jakub Jelinek  <jakub@redhat.com>
6489         PR target/6542
6490         * config/sparc/sparc.h (leaf_reg_remap): Remove const.
6491         (CONDITIONAL_REGISTER_USAGE): For TARGET_FLAT make
6492         fill leaf_reg_remap with identity.
6493         * config/sparc/sparc.c (leaf_reg_remap): Remove const.
6495 2002-05-03  Kazu Hirata  <kazu@cs.umass.edu>
6497         * config/h8300/crti.asm: Remove trailing spaces.
6498         * config/h8300/h8300.c: Likewise.
6499         * config/h8300/lib1funcs.asm: Likewise.
6501 2002-05-02  Jason Merrill  <jason@redhat.com>
6503         * defaults.h (BOOL_TYPE_SIZE): Move default here from cp/decl.c.
6504         * c-decl.c (c_init_decl_processing): Use it.
6505         * config/rs6000/darwin.h (BOOL_TYPE_SIZE): Define to INT_TYPE_SIZE.
6506         * config/i960/i960.h (BOOL_TYPE_SIZE): Don't define.
6507         * config/mcore/mcore.h (BOOL_TYPE_SIZE): Don't define.
6509 2002-05-03  Kazu Hirata  <kazu@cs.umass.edu>
6511         * regrename.c: Fix formatting.
6512         * tree.c: Likewise.
6514 Fri May  3 13:34:43 CEST 2002  Jan Hubicka  <jh@suse.cz>
6516         * i386.md (attribute memory): Handle compares properly.
6518 Fri May  3 10:51:38 CEST 2002  Jan Hubicka  <jh@suse.cz>
6520         * i386.md (sse_clrsf, sse_clrsi): Set memory attribute
6521         to none.
6523 2002-05-02  Kazu Hirata  <kazu@cs.umass.edu>
6525         * function.c: Fix formatting.
6527 2002-05-02  Jan Hubicka  <jh@suse.cz>
6529         * haifa-sched.c (schedule_insn): Print table of instructions and
6530         reservations.
6531         (sched_block): Do not print ready list at verbosity level 1.
6532         * sched-vis.c (print_insn): Make global.
6533         * sched-ebb.c (ebb_print_insn): Rename from...
6534         (print_insn): ... this one.
6535         * sched-int.h (print_insn): Declare
6537 2002-05-02  Richard Henderson  <rth@redhat.com>
6539         * haifa-sched.c (rank_for_schedule): Skip past last_scheduled_insn
6540         emitted by cycle_display.
6542 2002-05-02  Loren J. Rittle  <ljrittle@acm.org>
6544         * doc/install.texi (*-*-freebsd*): Update to latest status.
6546 2002-05-02  Jakub Jelinek  <jakub@redhat.com>
6548         PR target/6540
6549         * config.gcc (sparc*-*-solaris2*): Set float_format to i128.
6550         * config/float-sparc.h: Assume 128-bit long double if
6551         __LONG_DOUBLE_128__ is defined.
6553 2002-05-02  Vladimir Makarov  <vmakarov@redhat.com>
6555         * genattrtab.c (write_function_unit_info): Add a dummy element
6556         when num_units == 0.
6558 2002-05-02 Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
6560         * predict.c: (propagate_freq, estimate_bb_frequencies): Use
6561         TYPE_MODE (double_type_node) instead of DFmode.
6563 Thu May  2 19:50:04 CEST 2002  Jan Hubicka  <jh@suse.cz>
6565         * cfgrtl.c (try_redirect_by_replacing_jump): Do not kill computed
6566         jumps post reload.
6567         * toplev.c (rest_of_compilation): Revert Richard's patch.
6569 2001-05-02  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6571         * pa/x-ada (ADA_CFLAGS): Rename to X_ADA_CFLAGS.
6573 2002-05-02  Catherine Moore  <clm@redhat.com>
6575         * config/v850/v850.h (TRAMPOLINE_TEMPLATE): Change r5 to r20.
6577 2002-05-02  Kazu Hirata  <kazu@hxi.com>
6579         * combine.c: Fix comment typos.
6580         * expr.c: Likewise.
6581         * genautomata.c: Likewise.
6582         * stmt.c: Likewise.
6583         * tree.h: Likewise.
6585 2002-05-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6587         * doc/install.texi: State GNAT version requirements.
6589 2002-05-02  Nick Clifton  <nickc@cambridge.redhat.com>
6591         * config/fr30/fr30.h (GO_IF_LEGITIMATE_ADDRESS): Accept any form
6592         of the frame pointer or arg pointer register which strict register
6593         checking is not enabled.
6595 2002-05-02  Aldy Hernandez  <aldyh@redhat.com>
6597         * gcc.dg/altivec-8.c: New.
6599         * config/rs6000/rs6000.c (rs6000_legitimate_address): Disallow
6600         PRE_INC and PRE_DEC for altivec modes.
6602 2002-05-01  Bruce Korb  <bkorb@gnu.org>
6604         * fixinc/check.tpl(set-writable): make sure the function exists first
6605         * fixinc/inclhack.def(alpha_assert): fix test_text
6606         * fixinc/tests/base/assert.h: add in missing result
6608 2002-05-01  Jeff Law  <law@redhat.com>
6610         * pa.h (EXTRA_CONSTRAINT): Don't accept PIC addresses for the
6611         'T' constraint.
6613 2002-05-01  Joel Brobecker  <brobecker@gnat.com>
6615         * dbxout.c (dbxout_type): Emit size information for range types,
6616         as well, but only when using GDB extensions.
6618 2002-05-01  Richard Henderson  <rth@redhat.com>
6620         * configure.in (HAVE_GAS_HIDDEN): Replace SPARC feature test with
6621         target-independent gnu binutils date test.
6623 2002-05-01  Richard Henderson  <rth@redhat.com>
6625         * cfgcleanup.c (merge_blocks_move_successor_nojumps): Emit dump
6626         info before expunging the block.
6628 2002-05-01  Jakub Jelinek  <jakub@redhat.com>
6630         * cppinit.c (cpp_handle_option) [-dM]: Don't set no_output here...
6631         (cpp_post_options): ...but here.  Disable -dD, -dN and -dI when
6632         -M -or -MM is in effect.
6634 2002-05-01  Zack Weinberg  <zack@codesourcery.com>
6636         * config.gcc: Correct test of --enable-obsolete.  Obsolete all
6637         A29k configurations.
6638         * doc/install.texi: Update to match.
6640 2002-05-01  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6642         PR bootstrap/6514
6643         * varasm.c (globalize_decl): Compare DECL_ASSEMBLER_NAME to check
6644         for duplicates. Always loop over whole list.
6646 Wed May  1 10:32:37 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6648         * reload.c (find_reloads, case 'p'): Set BADOP to 0.
6650 2002-05-01      Joel Sherrill <joel@OARcorp.com>
6652         * config/sparc/t-elf (sparc-rtems, sparc-elf): Build assembly
6653         support routines.
6655 2002-05-01      Joel Sherrill <joel@OARcorp.com>
6657         * config/arm/rtems-elf.h: Add #undef TARGET_VERSION to prevent warning.
6659 2002-05-01  David Edelsohn  <edelsohn@gnu.org>
6661         * rs6000.md (abssi2_nopower): Convert to define_insn_and_split.
6662         (nabs_nopower): Same.
6663         (floatdisf2): New pattern.
6664         (absdi2): Convert to define_insn_and_split.
6665         (nabsdi2): Same.
6666         (trunctfsf2): Same.
6667         (floatditf2): Same.
6668         (floatsitf2): Same.
6669         (fix_trunctfdi2): Same.
6670         (fix_trunctfsi2): Same.
6672 2002-05-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6674         * doc/install.texi: Update Texinfo version requirement
6675         documentation.
6677 2002-05-01  Jakub Jelinek  <jakub@redhat.com>
6679         PR target/6512, PR target/5628
6680         * config/sparc/sparc.md (movdf_insn_v9only_novis): Don't allow >= %f32
6681         when memory is not aligned.
6682         (movdf_insn_v9only_vis): Likewise.
6683         * config/sparc/sparc.h (SECONDARY_INPUT_RELOAD_CLASS): Request a FP_REGS
6684         temporary for EXTRA_FP_REGS DFmode load from unaligned memory.
6685         (SECONDARY_OUTPUT_RELOAD_CLASS): Similarly.
6687 2002-05-01  Aldy Hernandez  <aldyh@redhat.com>
6689         * gcc.dg/altivec-7.c: New.
6691         * config/rs6000/altivec.h: Cleanup.
6693 2002-04-30  Aldy Hernandez  <aldyh@redhat.com>
6695         * doc/invoke.texi (Option Summary): Add -mvrsave=.
6696         (RS/6000 and PowerPC Options): Document -mvrsave=.
6698         * config/rs6000/rs6000.c (rs6000_altivec_vrsave): New global.
6699         (rs6000_altivec_vrsave_string): Same.
6700         (rs6000_override_options): Call rs6000_parse_vrsave_option.
6701         (rs6000_parse_vrsave_option): New.
6702         (rs6000_stack_info): Only generate vrsave instructions when
6703         TARGET_ALTIVEC_VRSAVE.
6705         * config/rs6000/rs6000.h (TARGET_OPTIONS): Add -mvrsave= option.
6706         (rs6000_altivec_vrsave_string): Define extern.
6707         (rs6000_altivec_vrsave): Same.
6708         (TARGET_ALTIVEC_VRSAVE): New.
6710 2002-04-30  Richard Henderson  <rth@redhat.com>
6712         PR opt/6516
6713         * toplev.c (rest_of_compilation): Don't run cross-jump before
6714         bb-reorder.
6716 2002-04-30  Tom Rix  <trix@redhat.com>
6718         * regrename.c (build_def_use, copyprop_hardreg_forward_1): Sanity
6719         check which_alternative.
6721 2002-04-30  Kazu Hirata  <kazu@hxi.com>
6723         * cpplex.c: Fix comment formatting.
6724         * function.c: Likewise.
6725         * integrate.c: Likewise.
6726         * regrename.c: Likewise.
6727         * sibcall.c: Likewise.
6728         * simplify-rtx.c: Likewise.
6729         * tree-inline.c: Likewise.
6731 2002-04-30  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6733         * config.gcc (hppa1.1-*-pro*, hppa1.1-*-osf*, hppa1.1-*-rtems*,
6734         hppa1.0-*-osf*, hppa1.1-*-bsd*, hppa1.1-*-hpux10*, hppa2*-*-hpux10*,
6735         hppa1.0-*-hpux10*, hppa*64*-*-hpux11*, hppa1.1-*-hpux11*,
6736         hppa2*-*-hpux11*, hppa1.0-*-hpux11*, hppa*-*-lites*): Define xmake_file.
6737         * pa/t-linux, pa/t-pa, pa/t-pa64, t-pro (T_ADAFLAGS): Delete.
6738         * pa/x-ada: New file.  Define ADA_CFLAGS.
6740 2002-04-30  Hans-Peter Nilsson  <hp@bitrange.com>
6742         * config/mmix/mmix.h (MMIX_LAST_STACK_REGISTER_REGNUM): Renamed
6743         from MMIX_LAST_REGISTER_FILE_REGNUM.
6744         (NO_IMPLICIT_EXTERN_C): Remove cryptic obsolete comment.
6745         (struct machine_function): New member highest_saved_stack_register
6746         previously static variable in mmix.c.
6747         (MACHINE_DEPENDENT_REORG): Define.
6748         * config/mmix/mmix.c (highest_saved_stack_register): Deleted.
6749         (MMIX_OUTPUT_REGNO): New.
6750         (mmix_target_asm_function_prologue): Move calculation of last used
6751         saved-stack-register into...
6752         (mmix_machine_dependent_reorg): New function.  Update to also handle
6753         !TARGET_ABI_GNU.
6754         (mmix_print_operand): Apply MMIX_OUTPUT_REGNO when emitting
6755         register names, simplify somewhat by new variable regno.
6756         <case 'p'>: Remove fixed FIXME.  Always emit highest used saved
6757         register.
6758         (mmix_print_operand_address): Apply MMIX_OUTPUT_REGNO when
6759         emitting register names.
6760         (mmix_asm_output_reg_push, mmix_asm_output_reg_pop): Ditto.
6761         (mmix_dbx_register_number): Apply MMIX_OUTPUT_REGNO here too.
6762         Remove fixed FIXME.
6763         * config/mmix/mmix-protos.h (mmix_machine_dependent_reorg):
6764         Declare.
6766         * config/mmix/mmix.md ("divmoddi4"): Update head comment.
6768 2002-04-30  Richard Henderson  <rth@redhat.com>
6770         * config/sparc/sparc.c (emit_soft_tfmode_libcall,
6771         emit_soft_tfmode_binop, emit_soft_tfmode_unop, emit_soft_tfmode_cvt,
6772         emit_hard_tfmode_operation, emit_tfmode_binop, emit_tfmode_unop,
6773         emit_tfmode_cvt): New.
6774         * config/sparc/sparc.md (extendsftf2, extenddftf2, trunctfsf2,
6775         trunctfdf2, floatsitf2, floatunssitf2, floatditf2, floatunsditf2,
6776         fix_trunctfsi2, fixuns_trunctfsi2, fix_trunctfdi2, fixuns_trunctfdi2,
6777         addtf3, subtf3, multf3, divtf3, sqrttf2): Use them.
6778         * config/sparc/sparc-protos.h: Update.
6780 2002-04-30  Janis Johnson  <janis187@us.ibm.com>
6782         * install.texi (Final install): Add to the list of info to include
6783         in a report of a successful bootstrap, and add link to 3.1 list.
6785 Tue Apr 30 19:15:36 CEST 2002  Jan Hubicka  <jh@suse.cz>
6787         * i386.md (type): Add new SSE/MMX subtypes, remove usused fop1.
6788         (mode): Add vector modes
6789         (i387): Kill attribute.
6790         (unit): New attribute.
6791         (length_immediate): Grok new types.
6792         (prefix_data16, prefix_rep, prefix_0f): Fix for SSE/MMX.
6793         (modrm): Use "unit".
6794         (memory): Handle MMX/SSE properly.
6795         (scheduling descriptions): Kill uses of fop1.
6796         (sse, mmx, fp patterns): Set type and mode properly.
6798 Tue Apr 30 09:31:59 2002  Jeffrey A Law  (law@redhat.com)
6800         * pa.c (override_options): Default to PA8000 scheduling.
6801         * doc/invoke.texi (HP-PA options): Mention newly added 7300
6802         scheduling parameter.
6804         * pa.md (7100lc, 7200, 7300 scheduling): Slightly refine
6805         handling of double precision multiplies.
6807         * pa.md (7100lc, 7200, 7300 scheduling): Refine handling of
6808         fpdiv and fpsqrt instructions.
6809         (7200 & 7300 scheduling): Fix typo in handling of
6810         store-load and store-store penalties.
6812 2002-04-30  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
6814         * doc/contrib.texi (Contributors): Use MIPS instead of Mips and
6815         mips.  Add two missing commas.
6817 2002-04-30  Paolo Carlini  <pcarlini@unitus.it>
6819         * doc/contrib.texi (Contributors): Update Paolo Carlini's
6820         and Benjamin Kosnik's entries.
6822 2002-04-29  David S. Miller  <davem@redhat.com>
6824         * config/sparc/sparc.h (BRANCH_COST, PREFETCH_BLOCK,
6825         SIMULTANEOUS_PREFETCHES): Tune for UltraSPARC-III.
6826         * config/sparc/sparc.md (call + jmp 32-bit peepholes): Likewise.
6827         * config/sparc/sparc.c (sparc_initialize_trampoline): Likewise.
6829 2002-04-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
6831         * combine.c (find_split_point): Use gen_int_mode.
6833 2002-04-29  Vladimir Makarov  <vmakarov@redhat.com>
6835         Merging code from dfa-branch:
6837         2002-04-24  Vladimir Makarov  <vmakarov@redhat.com>
6839         * genautomata.c (output_reserv_sets): Fix typo.
6841         2002-04-23  Vladimir Makarov  <vmakarov@redhat.com>
6843         * genautomata.c (output_reserv_sets): Remove
6844         next_cycle_output_flag.
6846         Thu Apr 18 08:57:06 2002  Jeffrey A Law  (law@redhat.com)
6848         * sched-rgn.c (init_ready_list): Make the DFA code handle
6849         USE/CLOBBER insns in the same way as the traditional
6850         scheduler.
6851         (new_ready): Similarly..
6853         2002-04-17  Vladimir Makarov  <vmakarov@redhat.com>
6855         * haifa-sched.c (schedule_block): Change the DFA state only after
6856         issuing insn.
6858         Wed Apr 17 15:38:36 2002  Jeffrey A Law  (law@redhat.com)
6860         * pa.c (hppa_use_dfa_pipeline_interface): New function.
6861         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE): Define.
6862         (override_options): Add PA7300 scheduling support.
6863         (pa_adjust_cost): Update various comments.  Properly
6864         handle anti and output dependencies when using the
6865         DFA scheduler.
6866         (pa_issue_rate): Add PA7300 scheduling support.
6867         (pa_can_combine_p): Call extract_insn before calling
6868         constrain_operands (taken from mainline tree).
6869         * pa.h (enum processor_type): Add PROCESSOR_PA7300.
6870         * pa.md (cpu attr): Add 7300.  Rewrite pipeline
6871         descriptions using DFA descriptions.  Add PA7300
6872         scheduling support.
6874         2002-03-30  David S. Miller  <davem@redhat.com>
6876         Add UltraSPARC-III DFA scheduling support.
6877         * config/sparc/sparc.md (define_attr type): Add fpcrmove.
6878         Update FP conditional move on register insn patterns to use it, as
6879         appropriate.
6880         (define_attr cpu): Add ultrasparc3.
6881         (define_attr us3load_type): New, update integer load patterns to
6882         set it, as appropriate.
6883         (define_automaton): Add ultrasparc3_0 and ultrasparc3_1.
6884         (rest): Add UltraSPARC3 scheduling description.
6885         * config/sparc/sparc.h (TARGET_CPU_ultrasparc3): New.
6886         (PROCESSOR_ULTRASPARC3): New.
6887         ({ASM,CPP}_CPU64_DEFAULT_SPEC): Handle ultrasparc3.
6888         ({ASM,CPP}_CPU_SPEC): Likewise.
6889         (REGISTER_MOVE_COST): Likewise.
6890         (RTX_COSTS): Likewise.
6891         * config/sparc/sparc.c (sparc_override_options,
6892         sparc_initialize_trampoline, sparc64_initialize_trampoline,
6893         sparc_use_dfa_pipeline_interface, sparc_use_sched_lookahead,
6894         sparc_issue_rate): Likewise.
6895         * config/sparc/sol2.h: Likewise.
6896         * config/sparc/sol2-sld-64.h: Likewise.
6897         * config/sparc/linux64.h: Likewise.
6899         2002-03-22  Vladimir Makarov  <vmakarov@redhat.com>
6901         * doc/md.texi: Add comments about usage the latency time for the
6902         different dependencies and about case when two or more conditions
6903         in different define_insn_reservations returns TRUE for an insn.
6905         * doc/md.texi: Add reference for automaton based pipeline
6906         description.
6908         2002-03-04  Vladimir Makarov  <vmakarov@redhat.com>
6910         * doc/passes.texi: Add missed information about genattrtab.
6912         2002-03-01  Vladimir Makarov  <vmakarov@redhat.com>
6914         * genautomata.c (output_automata_list_transition_code): Check
6915         automata_list on NULL.
6917         2002-02-28  Vladimir Makarov  <vmakarov@redhat.com>
6919         * genautomata.c (output_insn_code_cases,
6920         output_automata_list_min_issue_delay_code,
6921         output_automata_list_transition_code,
6922         output_automata_list_state_alts_code): Comment the functions.
6924         2002-02-22  Vladimir Makarov  <vmakarov@redhat.com>
6926         * genautomata.c (automata_list_el_t): New typedef.
6927         (get_free_automata_list_el,free_automata_list_el,
6928         free_automata_list, automata_list_hash, automata_list_eq_p,
6929         initiate_automata_lists, automata_list_start, automata_list_add,
6930         automata_list_finish, finish_automata_lists,
6931         output_insn_code_cases, output_automata_list_min_issue_delay_code,
6932         output_automata_list_transition_code,
6933         output_automata_list_state_alts_code, add_automaton_state,
6934         form_important_insn_automata_lists): New functions and prototypes.
6935         (insn_reserv_decl): Add members important_automata_list and
6936         processed_p.
6937         (ainsn): Add members important_p.
6938         (automata_list_el): New structure.
6939         (first_free_automata_list_el, current_automata_list,
6940         automata_list_table): New global variables.
6941         (create_ainsns): Initiate member important_p.
6942         (output_internal_min_issue_delay_func): Generate the switch and
6943         call output_insn_code_cases.
6944         (output_internal_trans_func, output_internal_state_alts_func):
6945         Ditto.
6946         (generate): Call initiate_automata_lists.
6947         (automaton_states): New global variable.
6948         (expand_automata): Call form_important_insn_automata_lists.
6949         (write_automata): Call finish_automata_lists.
6951         2002-02-21  Vladimir Makarov  <vmakarov@redhat.com>
6953         * genautomata.c (add_excls, add_presence_absence): Check that
6954         cpu units in the sets belong the same automaton.
6956         * rtl.def (EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET): Add comment
6957         about that cpu units in the sets belong the same automaton.
6959         * doc/md.texi: Ditto.
6961         2001-12-20  Naveen Sharma  <naveens@noida.hcltech.com>
6962                     Nitin Gupta  <niting@noida.hcltech.com>
6964         * config/sh/sh.c (sh_use_dfa_interface): New function.
6966         (sh_issue_rate): New Function.
6967         TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE: define.
6968         TARGET_SCHED_ISSUE_RATE: define.
6970         * config/sh/sh.md: Add DFA based pipeline description for SH4.
6972         (define_attr insn_class): New attribute used for DFA
6973          scheduling.
6974         (define_insn cmpgtsi_t): Set attribute insn_class mt_group.
6975         (cmpgesi_t,cmpgtusi_t,cmpgeusi_t,cmpeqsi_t,
6976          cmpeqdi_t): Likewise.
6978         (add,addc1,addsi3,subc,subc1,*subsi3_internal,
6979          negc,negsi2,ashldi3_k,lshrdi3_k,ashrdi3_k): Set insn_class
6980          ex_group.
6981         (iorsi3,rotlsi3_1,rotlsi3_31,rotlsi3_16): Likewise.
6983         2001-10-03  Vladimir Makarov  <vmakarov@toke.toronto.redhat.com>
6985         * haifa-sched.c (queue_to_ready): Remove unnecessary condition for
6986         break.
6988         2001-10-03  Vladimir Makarov  <vmakarov@toke.toronto.redhat.com>
6990         * genautomata.c (DFA_INSN_CODES_LENGTH_VARIABLE_NAME): New macro.
6991         (output_dfa_insn_code_func): Expand dfa_insn_codes if it is
6992         necessary.
6993         (output_dfa_start_func): Initiate new variable insn_codes_length,
6994         (write_automata): Output definition of the new variable.
6996         2001-10-02  David S. Miller  <davem@redhat.com>
6998         * haifa-sched.c (advance_one_cycle): New function.
6999         (schedule_block): Use it.
7000         (queue_to_ready): Use it, and also make sure to advance the DFA
7001         state on all stall cycles, not just those where insn_queue links
7002         are found.
7004         2001-10-02  Richard Sandiford  <rsandifo@redhat.com>
7006         * haifa-sched.c (max_issue): Remove last_p argument.  Only return
7007         non-zero if the highest-priority instruction could be scheduled.
7008         (choose_ready): Remove last argument from max_issue call.
7010         2001-09-28  David S. Miller  <davem@redhat.com>
7012         * config/sparc/sparc.c (sparc_use_sched_lookahead): Use 4 for
7013         ultrasparc and 3 for other multi-issue sparcs.
7015         2001-09-27  David S. Miller  <davem@redhat.com>
7017         * config/sparc/sparc.md (cycle_display): New pattern.
7018         * config/sparc/sparc.c (sparc_cycle_display): New.
7019         (TARGET_SCHED_CYCLE_DISPLAY): Set it.
7021         2001-09-25  David S. Miller  <davem@redhat.com>
7023         Convert all of Sparc scheduling to DFA
7024         * config/sparc/sparc.md: Kill all define_function_unit
7025         directives and replace with DFA equivalent.
7026         * config/sparc/sparc.c (ultrasparc_adjust_cost,
7027         mark_ultrasparc_pipeline_state, ultra_cmove_results_ready_p,
7028         ultra_fpmode_conflict_exists, ultra_find_type,
7029         ultra_build_types_avail, ultra_flush_pipeline,
7030         ultra_rescan_pipeline_state, ultrasparc_sched_reorder,
7031         ultrasparc_variable_issue, ultrasparc_sched_init,
7032         sparc_variable_issue, sparc_sched_reorder, ultra_code_from_mask,
7033         ultra_schedule_insn, ultra_code_names, ultra_pipe_hist,
7034         ultra_cur_hist, ultra_cycles_elapsed): Kill.
7035         (sparc_use_dfa_pipeline_interface, sparc_use_sched_lookahead,
7036         ultrasparc_store_bypass_p): New.
7037         * config/sparc/sparc-protos.h (ultrasparc_store_bypass_p):
7038         Declare.
7040         2001-09-24  David S. Miller  <davem@redhat.com>
7042         * haifa-sched.c (ready_remove): Fix thinko, we want to copy around
7043         ready->vec[foo] not ready[foo].
7045         2001-09-07  Vladimir Makarov  <vmakarov@redhat.com>
7047         * doc/md.texi: Correct examples for define_insn_reservations
7048         `mult' and `div'.
7050         2001-09-07  Vladimir Makarov  <vmakarov@redhat.com>
7052         * genautomata.c (create_automata): Print message about creation of
7053         each automaton.
7054         (generate): Remove printing meease about creation of
7055         automata.
7057         2001-09-05  David S. Miller  <davem@redhat.com>
7059         * config/sparc/linux.h: Set CPLUSPLUS_CPP_SPEC.
7060         * config/sparc/linux64.h: Likewise.
7062         2001-08-31  Vladimir Makarov  <vmakarov@redhat.com>
7064         * haifa-sched.c (insn_cost, schedule_insn, queue_to_ready,
7065         schedule_block, sched_init, sched_finish): Add missed calls of
7066         use_dfa_pipeline_interface.
7068         * sched-rgn.c (init_ready_list, new_ready, debug_dependencies):
7069         Ditto.
7071         * sched-vis.c (get_visual_tbl_length): Ditto.
7073         2001-08-27  Richard Henderson  <rth@redhat.com>
7075         * genattr.c (main): Emit state_t even when not doing scheduling.
7077         2001-08-27  Richard Henderson  <rth@redhat.com>
7079         * genautomata.c (expand_automata): Always create a description.
7081         2001-08-27  Vladimir Makarov  <vmakarov@touchme.toronto.redhat.com>
7083         * rtl.def (DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT, EXCLUSION_SET,
7084         PRESENCE_SET, ABSENCE_SET, DEFINE_BYPASS, DEFINE_AUTOMATON,
7085         AUTOMATA_OPTION, DEFINE_RESERVATION, DEFINE_INSN_RESERVATION): New
7086         RTL constructions.
7088         * genattr.c (main): New variable num_insn_reservations.  Increase
7089         it if there is DEFINE_INSN_RESERVATION.  Output automaton based
7090         pipeline hazard recognizer interface.
7092         * genattrtab.h: New file.
7094         * genattrtab.c: Include genattrtab.h.
7095         (attr_printf, check_attr_test, make_internal_attr,
7096         make_numeric_value): Move protypes into genattrtab.h.  Define them
7097         as external.
7098         (num_dfa_decls): New global variable.
7099         (main): Process DEFINE_CPU_UNIT, DEFINE_QUERY_CPU_UNIT,
7100         DEFINE_BYPASS, EXCLUSION_SET, PRESENCE_SET, ABSENCE_SET,
7101         DEFINE_AUTOMATON, AUTOMATA_OPTION, DEFINE_RESERVATION,
7102         DEFINE_INSN_RESERVATION.  Call expand_automata and write_automata.
7104         * genautomata.c: New file.
7106         * rtl.h (LINK_COST_ZERO, LINK_COST_FREE): Remove them.
7108         * sched-int.h: (curr_state): Add the external definition for
7109         automaton pipeline interface.
7110         (haifa_insn_data): Add comments for members blockage and units.
7112         * target-def.h (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
7113         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
7114         TARGET_SCHED_DFA_PRE_CYCLE_INSN,
7115         TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
7116         TARGET_SCHED_DFA_POST_CYCLE_INSN,
7117         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
7118         TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): New
7119         macros.
7120         (TARGET_SCHED): Use the new macros.
7122         * target.h (use_dfa_pipeline_interface, init_dfa_pre_cycle_insn,
7123         dfa_pre_cycle_insn, init_dfa_post_cycle_insn, dfa_post_cycle_insn,
7124         first_cycle_multipass_dfa_lookahead, init_dfa_bubbles,
7125         dfa_bubble): New members in gcc_target.sched.
7127         * haifa-sched.c (insert_schedule_bubbles_p): New variable.
7128         (MAX_INSN_QUEUE_INDEX): New macro for automaton interface.
7129         (insn_queue): Redefine it as pointer to array.
7130         (NEXT_Q, NEXT_Q_AFTER): Use MAX_INSN_QUEUE_INDEX instead of
7131         INSN_QUEUE_SIZE.
7132         (max_insn_queue_index_macro_value): New variable.
7133         (curr_state, dfa_state_size, ready_try): New varaibles for
7134         automaton interface.
7135         (ready_element, ready_remove, max_issue): New function prototypes
7136         for automaton interface.
7137         (choose_ready): New function prototype.
7138         (insn_unit, blockage_range): Add comments.
7139         (unit_last_insn, unit_tick, unit_n_insns): Define them for case
7140         FUNCTION_UNITS_SIZE == 0.
7141         (insn_issue_delay, actual_hazard_this_instance, schedule_unit,
7142         actual_hazard, potential_hazard): Add comments.
7143         (insn_cost): Use cost -1 as undefined value.  Remove
7144         LINK_COST_ZERO and LINK_COST_FREE.  Add new code for automaton
7145         pipeline interface.
7146         (ready_element, ready_remove): New functions for automaton
7147         interface.
7148         (schedule_insn): Add new code for automaton pipeline interface.
7149         (queue_to_ready): Add new code for automaton pipeline interface.
7150         Use MAX_INSN_QUEUE_INDEX instead of INSN_QUEUE_SIZE.
7151         (debug_ready_list): Print newline when the queue is empty.
7152         (max_issue): New function for automaton pipeline interface.
7153         (choose_ready): New function.
7154         (schedule_block): Add new code for automaton pipeline interface.
7155         Print ready list before scheduling each insn.
7156         (sched_init): Add new code for automaton pipeline interface.
7157         Initiate insn cost by -1.
7158         (sched_finish): Free the current automaton state and finalize
7159         automaton pipeline interface.
7161         * sched-rgn.c: Include target.h.
7162         (init_ready_list, new_ready, debug_dependencies): Add new code for
7163         automaton pipeline interface.
7165         * sched-vis.c: Include target.h.
7166         (get_visual_tbl_length): Add code for automaton interface.
7167         (target_units, print_block_visualization):  Add comments.
7169         * Makefile.in (GETRUNTIME, HASHTAB, HOST_GETRUNTIME, HOST_HASHTAB,
7170         USE_HOST_GETRUNTIME, USE_HOST_HASHTAB, HOST_VARRAY): New variables.
7171         (sched-rgn.o, sched-vis.o): Add new dependency file target.h.
7172         (getruntime.o, genautomata.o): New entries.
7173         (genattrtab.o): Add new dependency file genattrtab.h.
7174         (genattrtab): Add new dependencies.  Link it with `libm.a'.
7175         (getruntime.o, hashtab.o): New entries for canadian cross.
7177         * doc/md.texi: Description of automaton based model.
7179         * doc/tm.texi (TARGET_SCHED_ISSUE_RATE, TARGET_SCHED_ADJUST_COST):
7180         Add comments.
7181         (TARGET_SCHED_USE_DFA_PIPELINE_INTERFACE,
7182         TARGET_SCHED_DFA_PRE_CYCLE_INSN,
7183         TARGET_SCHED_INIT_DFA_PRE_CYCLE_INSN,
7184         TARGET_SCHED_DFA_POST_CYCLE_INSN,
7185         TARGET_SCHED_INIT_DFA_POST_CYCLE_INSN,
7186         TARGET_SCHED_FIRST_CYCLE_MULTIPASS_DFA_LOOKAHEAD,
7187         TARGET_SCHED_INIT_DFA_BUBBLES, TARGET_SCHED_DFA_BUBBLE): The new
7188         hook descriptions.
7189         (TRADITIONAL_PIPELINE_INTERFACE, DFA_PIPELINE_INTERFACE,
7190         MAX_DFA_ISSUE_RATE): New macro descriptions.
7192         * doc/contrib.texi: Add dfa based scheduler contribution.
7194         * doc/gcc.texi: Add more information about genattrtab.
7196 Mon Apr 29 17:19:10 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
7198         * reload1.c (eliminate_regs, case SUBREG): Fix typo in
7199         adjust_address_nv call.
7201 2002-04-29  Janis Johnson  <janis187@us.ibm.com>
7203         * doc/install.texi (Testing): Provide additional information, and
7204         a stronger encouragement, for running the testsuites.
7206 2002-04-29  DJ Delorie  <dj@redhat.com>
7208         * config/mips/mips.c (mips_parse_cpu): Warn if the CPU name is
7209         given in upper case.
7211 2002-04-29  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7213         * fixinc/inclhack.def (solaris_widec): Include <wchar.h> in
7214         Solaris 2 <widec.h> if missing.
7215         * fixinc/fixincl.x: Regenerate.
7216         * fixinc/tests/base/widec.h: New file.
7218 2002-04-29  Nick Clifton  <nickc@cambridge.redhat.com>
7220         * toplev.c (f_options): Add "profile" switch so that
7221         -fno-profile can be used to disable -p.
7223 2002-04-29  Bernd Schmidt  <bernds@redhat.com>
7225         * c-common.c (type_for_mode): Add support for V2DFmode, V2DImode,
7226         UV2DImode.
7227         * tree.c (build_common_tree_nodes_2): Likewise.
7228         * tree.h (enum tree_index): Likewise.
7229         (V2DF_type_node, V2DI_type_node, unsigned_V2DI_type_node): Define.
7231         * config/i386/i386.c (bdesc_comi, bdesc_2arg, bdesc_1arg): Add SSE2
7232         entries.
7233         (init_mmx_sse_builtins): Initialize SSE2 builtins.
7234         (ix86_expand_builtin): Add support for SSE2 builtins.
7235         * config/i386/i386.h (VALID_SSE2_REG_MODE): New macro.
7236         (VALID_SSE_REG_MODE): Use it.
7237         (VECTOR_MODE_SUPPORTED_P): Allow SSE2 modes here as well.
7238         (enum ix86_builtins): Add SSE2 builtins.
7239         * config/i386/i386.md (movv2df_internal, movv2df, movv8hi_internal,
7240         movv8hi, movv16qi_internal, movv16qi, pushv2df, pushv8hi, pushv16qi,
7241         addv2df3, vmaddv2df3, subv2df3, vmsubv2df3, mulv2df3, vmmulv2df3,
7242         divv2df3, vmdivv2df3, smaxv2df3, vmsmaxv2df3, sminv2df3, vmsminv2df3,
7243         sse2_anddf3, sse2_nanddf3, sse2_iordf3, sse2_xordf3, sqrtv2df2,
7244         vmsqrtv2df2, maskcmpv2df3, maskncmpv2df3, vmmaskcmpv2df3,
7245         vmmaskncmpv2df3, sse2_comi, sse2_ucomi, sse2_movmskpd, sse2_pmovmskb,
7246         sse2_maskmovdqu, sse2_movntv2df, sse2_movntti, sse2_movntsi, cvtdq2ps,
7247         cvtps2dq, cvttps2dq, cvtdq2pd, cvtpd2dq, cvttpd2dq, cvtpd2pi,
7248         cvttpd2pi, cvtpi2pd, cvtsd2si, cvttsd2si, cvtsi2sd, cvtsd2ss,
7249         cvtss2sd, cvtpd2ps, cvtps2pd, addv16qi3, addv8hi3, addv4si3, addv2di3,
7250         ssaddv16qi3, ssaddv8hi3, usaddv16qi3, usaddv8hi3, subv16qi3, subv8hi3,
7251         subv4si3, subv2di3, sssubv16qi3, sssubv8hi3, ussubv16qi3, ussubv8hi3,
7252         mulv8hi3, smulv8hi3_highpart, umulv8hi3_highpart, sse2_umulsidi3,
7253         sse2_umulv2siv2di3, sse2_pmaddwd, sse2_clrti, sse2_uavgv16qi3,
7254         sse2_uavgv8hi3, sse2_psadbw, sse2_pinsrw, sse2_pextrw, sse2_pshufd,
7255         sse2_pshuflw, sse2_pshufhw, eqv16qi3, eqv8hi3, eqv4si3, gtv16qi3,
7256         gtv8hi3, gtv4si3, umaxv16qi3, smaxv8hi3, uminv16qi3, sminv8hi3,
7257         ashrv8hi3, ashrv4si3, lshrv8hi3, lshrv4si3, sse2_lshrv2di3,
7258         ashlv8hi3, ashlv4si3, sse2_ashlv2di3, sse2_ashlti3, sse2_lshrti3,
7259         sse2_unpckhpd, sse2_unpcklpd, sse2_packsswb, sse2_packssdw,
7260         sse2_packuswb, sse2_punpckhbw, sse2_punpckhwd, sse2_punpckhdq,
7261         sse2_punpcklbw, sse2_punpcklwd, sse2_punpckldq, sse2_movapd,
7262         sse2_movupd, sse2_movdqa, sse2_movdqu, sse2_movdq2q, sse2_movq2dq,
7263         sse2_movhpd, sse2_movlpd, sse2_loadsd, sse2_movsd, sse2_storesd,
7264         sse2_shufpd, sse2_clflush, sse2_mfence, mfence_insn, sse2_lfence,
7265         lfence_insn): New patterns.
7266         (sse2_andti3, sse2_nandti3, sse2_iorti3, sse2_xorti3): Renamed from
7267         sse_andti3_sse2, sse_nandti3_sse2, sse_iorti3_sse2, sse_xorti3_sse2.
7269 Mon Apr 29 17:03:24 CEST 2002  Jan Hubicka  <jh@suse.cz>
7271         * i386.md (sse_mov?fcc*): Revert patch of Mar 14th.
7273 2002-04-29  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
7275         * doc/contrib.texi (Contributors): Add Paolo Carlini and
7276         Janis Johnson.
7277         Update Richard Henderson, Jakub Jelinek, and Mark Mitchell.
7278         Refer to Objective-C instead of ObjC, SPARC instead of sparc,
7279         and CPU instead of cpu.
7281 Mon Apr 29 13:36:41 CEST 2002  Jan Hubicka  <jh@suse.cz>
7283         * toplev.c (flag_if_conversion, flag_if_conversion2): New static
7284         variables.
7285         (lang_independent_options): Add -fif-conversion, -fif-conversion2
7286         (rest_of_compilation): Do if conversion only when asked for.
7287         (parse_options_and_default_flags): Set new variables to 1 for -O1
7288         * invoke.texi (-fif-conversion, -fif-conversion2): Document.
7290 Mon Apr 29 13:02:50 CEST 2002  Jan Hubicka  <jh@suse.cz>
7292         * i386.c (dbx64_register_map): Fix typo.
7294 Mon Apr 29 12:18:35 CEST 2002  Jan Hubicka  <jh@suse.cz>
7296         * predict.c (real_zero, real_one, real_almost_one, real_br_prob_base,
7297         real_one_half, real_bb_freq_max): New static variables.
7298         (debug_profile_bbauxs): Kill.
7299         (process_note_predictions): Kill unused variable.
7300         (block_info_def, edge_info_def): Use REAL_VALUE_TYPE instead of
7301         volatile double.
7302         (propagate_freq): Use REAL_ARITHMETICS.
7303         (estimate_bb_frequencies): Likevise; init new static variables.
7304         * Makefile.in (predict.o): Add dependency on real.h
7306 2002-04-28  David S. Miller  <davem@redhat.com>
7308         PR target/6500
7309         * config/sparc/sparc.md (prefetch): Emit properly for 32-bit vs.
7310         64-bit TARGET_V9.  Do not use prefetch page, use prefetch for
7311         several {reads,writes} instead.
7312         * config/sparc/sparc.h (PREFETCH_BLOCK, SIMULTANEOUS_PREFETCHES):
7313         Define.
7315 2002-04-27  David S. Miller  <davem@redhat.com>
7317         PR target/6494
7318         * config/sparc/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Be mindful
7319         of the stack bias.
7321         * config/sparc/linux.h, config/sparc/linux64.h: Don't bother
7322         including signal.h and sys/ucontext.h, not needed.
7324 2002-04-29  Hans-Peter Nilsson  <hp@bitrange.com>
7326         * varasm.c (output_constant_def): Correct test for not calling
7327         ENCODE_SECTION_INFO for INTEGER_CST.
7329 2002-04-29  Neil Booth  <neil@daikokuya.demon.co.uk>
7331         * cppexp.c (lex): Move some code to _cpp_parse_expr, but
7332         keep most cases as function eval_token.
7333         (eval_token): New function.
7334         (_cpp_parse_expr): Read token here for improved diagnostics.
7335         Don't use op_as_text.  Detect bad ':' here.
7336         (reduce): Don't detect bad ':' here.
7337         (op_as_text): Remove.
7338         * cpphash.h (_cpp_test_assertion): Change prototype.
7339         * cpplib.c (_cpp_test_assertion): Change prototype.
7341 2002-04-28  Richard Henderson  <rth@redhat.com>
7343         PR c/5154
7344         * ggc-common.c (ggc_mark_rtx_children_1): Rename from...
7345         (ggc_mark_rtx_children): New.
7347 2002-04-28  Jakub Jelinek  <jakub@redhat.com>
7349         PR target/6496
7350         * config/sparc/sparc.md (call + jump 32-bit peepholes): Disable jump
7351         after call peepholes for UltraSPARC.
7352         (call + jump 64-bit peepholes): Remove.
7354 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7356         PR c/6497
7357         * config/rs6000/rs6000.md (sCC patterns): Remove clobber and use
7358         result as temporary value.
7360 2002-04-28  Jakub Jelinek  <jakub@redhat.com>
7362         PR c++/6396
7363         * toplev.c (rest_of_compilation): Only run regrename and copy
7364         propagation if optimizing.
7366 2002-04-28  Jakub Jelinek  <jakub@redhat.com>
7368         PR optimization/6475
7369         * reload1.c (alter_reg): Only call set_mem_expr if I is home pseudo
7370         register of REGNO_DECL (i).
7371         * Makefile.in (reload1.o): Add $(TREE_H).
7373 2002-04-28  Neil Booth  <neil@daikokuya.demon.co.uk>
7375         * cppexp.c (lex): Update to use state.skip_eval.
7376         (struct op): Remove prio and flags members.
7377         (FLAG_BITS, FLAG_MASK, PRIO_SHIFT, EXTRACT_PRIO, EXTRACT_FLAGS,
7378         SHORT_CIRCUIT, RIGHT_ASSOC, ..._PRIO, op_to_prio): Remove.
7379         (LEFT_ASSOC): New macro.
7380         (optab): New table of operator priorities and flags.
7381         (SHIFT): Update.
7382         (_cpp_parse_expr): Clean up logic.  Return bool.  Use a
7383         malloc-ed parser stack.
7384         (reduce): New; reduce the operator stack.
7385         (_cpp_expand_op_stack): Expand the operator stack as necessary.
7386         * cpphash.h (struct op): Predeclare.
7387         (struct cpp_reader): New members op_stack, op_limit.
7388         (struct lexer_state): New member skip_eval.
7389         (_cpp_parse_expr): Update.
7390         (_cpp_expand_op_stack): New.
7391         * cpplib.c (do_if): Update.
7392         * cppinit.c (cpp_create_reader): Create op stack.
7393         (cpp_destroy): And destroy it.
7394         * cpplib.h (CPP_LAST_CPP_OP): Correct.
7395         (TTYPE_TABLE): Correct.
7397 2002-04-28  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
7399         PR c/6343
7400         * c-decl.c (duplicate_decls): Call merge_weak.
7401         * c-pragma.c (apply_pragma_weak): Warn about misuse.
7402         * output.h (merge_weak): Prototype merge_weak.
7403         * varasm.c (merge_weak): New function.
7404         (declare_weak): Make sure we don't give an error on VAR_DECLs.
7405         Mark RTL with SYMBOL_REF_WEAK.
7407 2002-04-27  Kurt Garloff <garloff@suse.de>
7409         * tree-inline.c (inlinable_function_p): Improve heuristics
7410         by using a smoother function to cut down allowable inlinable size.
7411         * param.def: Add parameters max-inline-insns-single,
7412         max-inline-slope, min-inline-insns that determine the exact
7413         shape of the above function.
7414         * param.h: Likewise.
7416 2002-04-26  Richard Henderson  <rth@redhat.com>
7418         * c-parse.in (malloced_yyss, malloced_yyvs): New.
7419         (yyoverflow): Re-add.  Set them.
7420         (free_parser_stacks): New.
7421         * c-common.h: Declare it.
7422         * c-lex.c (c_common_parse_file): Call it.
7424 2002-04-26  Richard Henderson  <rth@redhat.com>
7426         * cfgrtl.c (tidy_fallthru_edge): Don't use next_real_insn
7427         for fallthru search.
7429 2002-04-26  Eric Christopher  <echristo@redhat.com>
7431         PR optimization/3700
7432         * config/mips/mips.c (mips_issue_rate): Define.  New function.
7433         (TARGET_SCHED_ISSUE_RATE): Use.
7435 2002-04-25  David S. Miller  <davem@redhat.com>
7437         PR target/6422
7438         * reorg.c (optimize_skip): Do not allow exception causing
7439         instructions to be considered for delay slots.
7440         (fill_simply_delay_slots, fill_slots_from_thread): Likewise.
7441         (relax_delay_slots): Do not try to consider exception causing
7442         instructions as redundant.
7444 2002-04-26  Richard Henderson  <rth@redhat.com>
7446         PR c/5225
7447         * c-typeck.c (build_unary_op) [CONVERT_EXPR]: Invoke non_lvalue.
7449 2002-04-26  Mark Mitchell  <mark@codesourcery.com>
7451         PR bootstrap/6445
7452         * config/i386/i386.md (untyped_call): Return the value in a float
7453         register if TARGET_FLOAT_RETURNS_IN_80387, not just if
7454         TARGET_80387.
7456 2002-04-26  Alexandre Oliva  <aoliva@redhat.com>
7458         * tree.c (tree_int_cst_lt): Compare constants whose types differ
7459         in unsigned-ness correctly.
7461 2002-04-26  John David Anglin  <dave@hiauly1.hia.nrc.ca>
7463         * pa.h (FUNCTION_OK_FOR_SIBCALL): Don't do sibcalls when using the
7464         portable runtime model.
7466 2002-04-26  Richard Henderson  <rth@redhat.com>
7468         * c-parse.in (yyoverflow): Revert.
7470 2002-04-26  David Edelsohn  <edelsohn@gnu.org>
7471             Richard Henderson  <rth@redhat.com>
7473         * config/rs6000/rs6000.md (sCC pattern): Remove clobber and use
7474         result as temporary value.
7476 2002-04-26  Richard Henderson  <rth@redhat.com>
7478         PR c/3581
7479         * c-common.c (fix_string_type): Split out of ...
7480         (combine_strings): ... here.  Take a varray, not a tree list.
7481         (c_expand_builtin_printf): Use fix_string_type.
7482         * c-common.h: Update decls.
7483         * c-parse.in (string): Remove.  Update all uses to use STRING
7484         instead, and not call combine_strings.
7485         (yylexstring): New.
7486         (_yylex): Use it.
7487         * c-typeck.c (simple_asm_stmt): Don't call combine_strings.
7488         (build_asm_stmt): Likewise.
7489         * objc/objc-act.c (my_build_string): Use fix_string_type.
7490         (build_objc_string_object): Build varray for combine_strings.
7492 2002-04-26  Bo Thorsen  <bo@suse.co.uk>
7494         * config/i386/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Define for
7495         x86-64.
7497 2002-04-26  Neil Booth  <neil@daikokuya.demon.co.uk>
7499         * cppexp.c (CPP_UMINUS, CPP_UPLUS): New.
7500         (HAVE_NO_R_OPERAND): Remove.
7501         (HAVE_VALUE): Remove.
7502         (op_to_prio): Update.
7503         (UNARY): Don't alter flags.
7504         (_cpp_parse_expr): want_value used to indicate whether
7505         a number or unary operator is expected next.  Distinguish
7506         unary and binary +/-.
7507         (op_as_text): Update for unary operators.
7509 2002-04-25  Richard Henderson  <rth@redhat.com>
7511         PR c/2161
7512         * c-parse.in (yyoverflow): New.
7514 2002-04-25  Richard Henderson  <rth@redhat.com>
7516         PR c/2098
7517         * c-common.c (shorten_compare): Simplfy conditions leading to
7518         the generation of a warning.
7520 2002-04-25  Richard Henderson  <rth@redhat.com>
7522         PR c/2035
7523         * expmed.c (extract_bit_field): Fall through to generic code rather
7524         than aborting on subreg special case.
7526 2002-04-25  David S. Miller  <davem@redhat.com>
7528         * config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Add back check
7529         for DECL being NULL.
7531 2002-04-25  Steve Christiansen  <smc@us.ibm.com>
7533         * doc/md.texi (Machine Constraints): Add IA-64 constraints.
7535 2002-04-25  Eric Botcazou  <ebotcazou@multimania.com>
7537         * c-decl.c (grokdeclarator): Remove outdated ??? note
7538         on invalid declaration of flexible array members.
7540 2002-04-25  Richard Henderson  <rth@redhat.com>
7542         * doc/invoke.texi: Document -gdwarf{,-2} vs debug level.
7544 2002-04-25  Ulrich Weigand  <uweigand@de.ibm.com>
7546         * config/s390/s390.c (s390_emit_epilogue): Always restore registers
7547         needed by the compiler, even if they are used as global regs.
7549 2002-04-25  Matt Hiller  <hiller@redhat.com>
7551         * mips.c (mips_class_max_nregs, mips_register_move_cost): New
7552         functions.
7553         * mips.h (CLASS_MAX_NREGS, REGISTER_MOVE_COST): Redefine as calls
7554         of the corresponding functions.
7555         * mips-protos.h (mips_class_max_nregs, mips_register_move_cost):
7556         New prototypes.
7558 2002-04-25  Matt Hiller  <hiller@redhat.com>
7560         * config/mips/mips.h (mips_sw_reg_names): Declare as extern.
7562         (ALL_COP_ADDITIONAL_REGISTER_NAMES): New macro.
7563         (FIRST_PSEUDO_REGISTER): Redefine considering coprocessor
7564         registers, adjust comment accordingly.
7565         (FIXED_REGISTERS, CALL_USED_REGISTERS, CALL_REALLY_USED_REGISTERS,
7566         reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS, REGISTER_NAMES,
7567         DEBUG_REGISTER_NAMES, REG_ALLOC_ORDER): Adjust to include entries
7568         for coprocessor registers.
7569         (ADDITIONAL_REGISTER_NAMES): Include
7570         ALL_COP_ADDITIONAL_REGISTER_NAMES.
7572         (COP0_REG_FIRST, COP0_REG_LAST, COP0_REG_NUM,
7573         COP2_REG_FIRST, COP2_REG_LAST, COP2_REG_NUM,
7574         COP3_REG_FIRST, COP3_REG_LAST, COP3_REG_NUM,
7575         COP0_REG_P, COP2_REG_P, COP3_REG_P, ALL_COP_REG_P,
7576         COPNUM_AS_CHAR_FROM_REGNUM, COP_REG_CLASS_P): New macros.
7578         (mips_char_to_class): Adjust comment to include coprocessor
7579         constraint letters.
7581         * config/mips/mips.c (coprocessor_operand, coprocessor2_operand):
7582         New functions.
7583         (mips_reg_names, mips_regno_to_class): Include coprocessor
7584         information.
7585         (mips_sw_reg_names): Ditto, make non-static.
7586         (mips_move_1word): Handle moves to and from coprocessor registers.
7587         (mips_move_2words): Handle moves to and from coprocessor
7588         registers.
7589         (mips_class_max_nregs, mips_register_move_cost): Handle
7590         coprocessor register classes.
7591         (override_options): Initialize mips_char_to_class and
7592         mips_hard_regno_mode_ok properly for coprocessor registers.
7594         * config/mips/mips.md (movdi_internal, movdi_internal2,
7595         movsi_internal1, movsi_internal2): Add constraint-sets for
7596         coprocessor registers.
7597         * testsuite/gcc.c-torture/mipscop-1.c: New testcase.
7598         * testsuite/gcc.c-torture/mipscop-1.x: Disable above if target
7599         isn't mips.
7600         * testsuite/gcc.c-torture/mipscop-2.c: New testcase.
7601         * testsuite/gcc.c-torture/mipscop-2.x: Disable above if target
7602         isn't mips.
7603         * testsuite/gcc.c-torture/mipscop-3.c: New testcase.
7604         * testsuite/gcc.c-torture/mipscop-3.x: Disable above if target
7605         isn't mips.
7606         * testsuite/gcc.c-torture/mipscop-4.c: New testcase.
7607         * testsuite/gcc.c-torture/mipscop-4.x: Disable above if target
7608         isn't mips.
7610         * doc/tm.texi: Document feature.
7612 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
7614         * integrate.c (function_attribute_inlinable_p): Simplify.
7615         Check the table pointer is not NULL.
7617 2002-04-25  Steven Bosscher  <S.Bosscher@student.tudelft.nl>
7619         * doc/c-tree.texi: Fix typo in introduction.
7621 2002-04-25  Neil Booth  <neil@daikokuya.demon.co.uk>
7623         * c-common.h (c_common_parse_file): Update.
7624         * c-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
7625         * c-lex.c (YYDEBUG): Get from c-lex.h.
7626         (c_common_parse_file): Update.
7627         * c-lex.h (YYDEBUG, yydebug): New.
7628         * c-parse.in (YYDEBUG): Get from c-lex.h.
7629         (c_set_yydebug): Remove.
7630         * c-tree.h (c_set_yydebug): Remove.
7631         * langhooks-def.h (lhd_do_nothing_i): New.
7632         (lhd_set_yydebug, LANG_HOOKS_SET_YYDEBUG): Remove.
7633         (LANG_HOOKS_PARSE_FILE, LANG_HOOKS_INITIALIZER): Update.
7634         * langhooks.c  (lhd_do_nothing_i): New.
7635         (lhd_set_yydebug): Remove.
7636         * langhooks.h (struct lang_hooks): Update.
7637         * toplev.c (set_yydebug): New.
7638         (compile_file): Update call to parse_file hook.
7639         (decode_d_option): Update.
7640 objc:
7641         * objc-lang.c (LANG_HOOKS_SET_YYDEBUG): Remove.
7643 Wed Apr 24 23:45:37 2002  J"orn Rennecke <joern.rennecke@superh.com>
7645         * loop.c (load_mems): Don't change the interface of called functions.
7647         * calls.c (expand_call): Take current_function_pretend_args_size
7648         into account when setting argblock for sibcalls.
7650 2002-04-24  Matt Hiller  <hiller@redhat.com>
7652         * cpplex.c: Remove conditional #undef of MULTIBYTE_CHARS.
7653         * c-lex.c: Ditto.
7655         * cpplex.c (skip_line_comment): Process comment one multibyte
7656         character at a time rather than one char at a time, if
7657         appropriate.
7658         (parse_string): Process string one multibyte character at a time
7659         rather than one char at a time, if appropriate.
7660         * c-lex.c (lex_string): Lex and copy multibyte strings
7661         appropriately.
7662         * cpplib.h (cppchar_t): Change to unsigned.
7664 2002-04-24  Richard Henderson  <rth@redhat.com>
7666         PR c/3467
7667         * c-decl.c (grokdeclarator): Don't pedwarn variable sized arrays
7668         for c99.
7670 Wed Apr 24 21:51:54 2002  J"orn Rennecke <joern.rennecke@superh.com>
7672         * sh.c (sh_va_arg): If argument was passed by reference,
7673         dereference the pointer.
7675         * sh.h (PIC_OFFSET_TABLE_REGNUM): Conditionalize on flag_pic.
7677         * sh.md (divsi3_i4_media): Use match_operand for input values
7678         rather than hard registers.
7679         (divsi3 - TARGET_SHMEDIA_FPU case): Don't ferry values
7680         unnecessarily through hard registers.  Keep copies of pseudo
7681         registers outside of the libcall sequence.
7683         * sh.md (casesi_shift_media): Add modes.
7685         * sh.h (RETURN_IN_MEMORY): Return variable size BLKmode
7686         values in memory.
7688 2002-04-24  Neil Booth  <neil@daikokuya.demon.co.uk>
7690         * attribs.c (c_common_attribute_table): Move table and handlers
7691         to c-common.c.
7692         (format_attribute_table, lang_attribute_table,
7693         lang_attribute_common): Remove.
7694         (init_attributes): Replace NULL pointers with pointers to the
7695         empty table.
7696         (handle_packed_attribute, handle_nocommon_attribute,
7697         handle_common_attribute, handle_noreturn_attribute,
7698         handle_noinline_attribute, handle_always_inline_attribute,
7699         handle_used_attribute, handle_unused_attribute,
7700         handle_const_attribute, handle_transparent_union_attribute,
7701         handle_constructor_attribute, handle_destructor_attribute,
7702         handle_mode_attribute, handle_section_attribute,
7703         handle_aligned_attribute, handle_weak_attribute,
7704         handle_alias_attribute, handle_visibility_attribute,
7705         handle_no_instrument_function_attribute, handle_malloc_attribute,
7706         handle_no_limit_stack_attribute, handle_pure_attribute,
7707         handle_deprecated_attribute, handle_vector_size_attribute,
7708         vector_size_helper): Move to c-common.c.
7709         * c-common.c (c_common_attribute_table,
7710         handle_packed_attribute, handle_nocommon_attribute,
7711         handle_common_attribute, handle_noreturn_attribute,
7712         handle_noinline_attribute, handle_always_inline_attribute,
7713         handle_used_attribute, handle_unused_attribute,
7714         handle_const_attribute, handle_transparent_union_attribute,
7715         handle_constructor_attribute, handle_destructor_attribute,
7716         handle_mode_attribute, handle_section_attribute,
7717         handle_aligned_attribute, handle_weak_attribute,
7718         handle_alias_attribute, handle_visibility_attribute,
7719         handle_no_instrument_function_attribute, handle_malloc_attribute,
7720         handle_no_limit_stack_attribute, handle_pure_attribute,
7721         handle_deprecated_attribute, handle_vector_size_attribute,
7722         vector_size_helper): Move from attribs.c.
7723         * c-common.h (c_common_attribute_table,
7724         c_common_format_attribute_table): New.
7725         * c-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
7726         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE): Redefine.
7727         * langhooks-def.h (LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE,
7728         LANG_HOOKS_COMMON_ATTRIBUTE_TABLE, LANG_HOOKS_ATTRIBUTE_TABLE): New.
7729         (LANG_HOOKS_INITIALIZER): Update.
7730         * langhooks.h (struct lang_hooks): 3 new attribute hooks.
7731         * target-def.h (TARGET_ATTRIBUTE_TABLE): Default to NULL.
7732         * target.h: Update comment.
7733         * tree.c (default_target_attribute_table): Remove.
7734         * tree.h (default_target_attribute_table, format_attribute_table,
7735         lang_attribute_table, lang_attribute_common): Remove.
7736 objc:
7737         * objc-lang.c (LANG_HOOKS_COMMON_ATTRIBUTE_TABLE,
7738         LANG_HOOKS_FORMAT_ATTRIBUTE_TABLE): Redefine.
7740 2002-04-24  Jason Merrill  <jason@redhat.com>
7742         * dwarf2.h (enum dwarf_attribute): Add DW_AT_GNU_vector.
7743         * dwarf2out.c (dwarf_attr_name): Support it.
7744         (gen_array_type_die): Emit it.
7745         (lookup_type_die): No special handling for VECTOR_TYPE.
7746         (gen_type_die): Hand VECTOR_TYPE off to gen_array_type_die.
7748 2002-04-24  Richard Henderson  <rth@redhat.com>
7750         * config/mips/mips.md (movdi_usd): Renumber.
7752 2002-04-24  David S. Miller  <davem@redhat.com>
7754         PR target/6420
7755         * config/sparc/sparc.h (FUNCTION_OK_FOR_SIBCALL): Return false if
7756         32-bit Sparc and current_function_returns_struct is true.
7758 Wed Apr 24 13:48:25 CEST 2002  Jan Hubicka  <jh@suse.cz>
7760         * loop.c (canonicalize_condition): Use gen_int_mode.
7762 2002-04-24  Aldy Hernandez  <aldyh@redhat.com>
7764         * config/rs6000/altivec.h: Cleanup file.  Add non individual
7765         variants.
7766         (vec_vaddubm): New.
7767         (vec_vadduhm): New.
7768         (vec_vadduwm): New.
7769         (vec_vaddfp): New.
7770         (vec_vaddcuw): New.
7771         (vec_vaddubs): New.
7772         (vec_vaddsbs): New.
7773         (vec_vadduhs): New.
7774         (vec_vadduws): New.
7775         (vec_vaddsws): New.
7776         (vec_vand): New.
7777         (vec_vandc): New.
7778         (vec_vavgub): New.
7779         (vec_vavgsb): New.
7780         (vec_vavguh): New.
7781         (vec_vavgsh): New.
7782         (vec_vavguw): New.
7783         (vec_vavgsw): New.
7784         (vec_vrfip): New.
7785         (vec_vcmpbfp): New.
7786         (vec_vcmpequb): New.
7787         (vec_vcmpequh): New.
7788         (vec_vcmpequw): New.
7789         (vec_vcmpeqfp): New.
7790         (vec_vcmpgefp): New.
7791         (vec_vcmpgtub): New.
7792         (vec_vcmpgtsb): New.
7793         (vec_vcmpgtuh): New.
7794         (vec_vcmpgtsh): New.
7795         (vec_vcmpgtuw): New.
7796         (vec_vcmpgtsw): New.
7797         (vec_vcmpgtfp): New.
7798         (vec_vcmpgefp): New.
7799         (vec_vcfux): New.
7800         (vec_vcfsx): New.
7801         (vec_vctsxs): New.
7802         (vec_vctuxs): New.
7803         (vec_vexptefp): New.
7804         (vec_vrfim): New.
7805         (vec_lvx): New.
7806         (vec_lvebx): New.
7807         (vec_lvehx): New.
7808         (vec_lde): Add vector float variant.
7809         (vec_lvewx): New.
7810         (vec_lvxl): New.
7811         (vec_vlogefp): New.
7812         (vec_vmaddfp): New.
7813         (vec_vmhaddshs): New.
7814         (vec_vmaxub): New.
7815         (vec_vmaxsb): New.
7816         (vec_vmaxuh): New.
7817         (vec_vmaxsh): New.
7818         (vec_vmaxuw): New.
7819         (vec_vmaxsw): New.
7820         (vec_vmaxsw): New.
7821         (vec_vmaxfp): New.
7822         (vec_vmrghb): New.
7823         (vec_vmrghh): New.
7824         (vec_vmrghw): New.
7825         (vec_vmrglb): New.
7826         (vec_vmrglh): New.
7827         (vec_vmrglw): New.
7828         (vec_vminub): New.
7829         (vec_vminsb): New.
7830         (vec_vminuh): New.
7831         (vec_vminsh): New.
7832         (vec_vminuw): New.
7833         (vec_vminsw): New.
7834         (vec_vminfp): New.
7835         (vec_vmladduhm): New.
7836         (vec_vmhraddshs): New.
7837         (vec_msumubm): New.
7838         (vec_vmsummbm): New.
7839         (vec_vmsumuhm): New.
7840         (vec_vmsumshm): New.
7841         (vec_vmsumuhs): New.
7842         (vec_vmsumshs): New.
7843         (vec_vmuleub): New.
7844         (vec_vmulesb): New.
7845         (vec_vmuleuh): New.
7846         (vec_vmulesh): New.
7847         (vec_vmuloub): New.
7848         (vec_mulosb): New.
7849         (vec_vmulouh): New.
7850         (vec_vmulosh): New.
7851         (vec_vnmsubfp): New.
7852         (vec_vnor): New.
7853         (vec_vor): New.
7854         (vec_vpkuhum): New.
7855         (vec_vpkuwum): New.
7856         (vec_vpkpx): New.
7857         (vec_vpkuhus): New.
7858         (vec_vpkshss): New.
7859         (vec_vpkuwus): New.
7860         (vec_vpkswss): New.
7861         (vec_vpkshus): New.
7862         (vec_vpkswus): New.
7863         (vec_vperm): New.
7864         (vec_vrefp): New.
7865         (vec_vrlb): New.
7866         (vec_vrlh): New.
7867         (vec_vrlw): New.
7868         (vec_vrfin): New.
7869         (vec_vrsqrtefp): New.
7870         (vec_vsel): New.
7871         (vec_vslb): New.
7872         (vec_vslh): New.
7873         (vec_vslw): New.
7874         (vec_vsldoi): New.
7875         (vec_vsl): New.
7876         (vec_vslo): New.
7877         (vec_vspltb): New.
7878         (vec_vsplth): New.
7879         (vec_vspltw): New.
7880         (vec_vspltisb): New.
7881         (vec_vspltish): New.
7882         (vec_vspltisw): New.
7883         (vec_vsrb): New.
7884         (vec_vsrh): New.
7885         (vec_vsrw): New.
7886         (vec_vsrab): New.
7887         (vec_vsrah): New.
7888         (vec_vsraw): New.
7889         (vec_vsr): New.
7890         (vec_vsro): New.
7891         (vec_stvx): New.
7892         (vec_stvebx): New.
7893         (vec_stvehx): New.
7894         (vec_stvewx): New.
7895         (vec_stvxl): New.
7896         (vec_vsububm): New.
7897         (vec_vsubuhm): New.
7898         (vec_vsubuwm): New.
7899         (vec_vsubfp): New.
7900         (vec_vsubcuw): New.
7901         (vec_vsububs): New.
7902         (vec_vsubsbs): New.
7903         (vec_vsubuhs): New.
7904         (vec_vsubshs): New.
7905         (vec_vsubuws): New.
7906         (vec_vsubsws): New.
7907         (vec_vsum4ubs): New.
7908         (vec_vsum4sbs): New.
7909         (vec_vsum4shs): New.
7910         (vec_vsum2sws): New.
7911         (vec_vsumsws): New.
7912         (vec_vrfiz): New.
7913         (vec_vupkhsb): New.
7914         (vec_vupkhpx): New.
7915         (vec_vupkhsh): New.
7916         (vec_vupklsb): New.
7917         (vec_vupklpx): New.
7918         (vec_vupklsh): New.
7919         (vec_vxor): New.
7921 2002-04-23  Eric Botcazou  <ebotcazou@multimania.com>
7923         PR c/5430
7924         * fold-const.c (split_tree): Add MINUS_LITP parameter; separate
7925         added literals from substracted literals.
7926         (associate_trees): Don't convert MINUS_EXPR into PLUS_EXPR.
7927         (fold) [associate]: Preserve MINUS_EXPR if needed.
7929 2002-04-23  Zack Weinberg  <zack@codesourcery.com>
7931         * doc/install.texi: Clarify which versions of alpha*-dec-osf*
7932         are obsoleted.
7934 2002-04-23  Tom Tromey  <tromey@redhat.com>
7936         * gcc.c: Added --resource.  For PR java/6314.
7938 2002-04-23  David O'Brien  <obrien@FreeBSD.org>
7940         * cp/g++spec.c: Use profiled libstdc++ and libm with -p/-pg.
7941         * config/freebsd.h (MATH_LIBRARY_PROFILE): Use the _p verions of
7942         these libraries.
7944 2002-04-23  David O'Brien  <obrien@FreeBSD.org>
7946         * config/freebsd.h(OBJECT_FORMAT_ELF): Define.
7948 Tue Apr 23 14:24:25 CEST 2002  Jan Hubicka  <jh@suse.cz>
7950         * i386.c (ix86_output_addr_diff_elt): Avoid x86_64 binutils bug
7951         workaround.
7952         (ix86_expand_int_movcc): Avoid x86_64 compilation chrash.
7953         (ix86_expand_clrstr): Fix typo.
7954         * loop.c (gen_load_of_final_value): New.
7955         (loop_givs_rescan, strength_reduce, check_dbra_loop):
7956         Use it.
7958 2002-04-23  Roger Sayle  <roger@eyesopen.com>
7960         * builtins.c (builtin_memset_gen_str): New function.
7961         (expand_builtin_memset): Optimize the case of constant length, but
7962         unknown value.
7964 2002-04-23  Aldy Hernandez  <aldyh@redhat.com>
7966         * config/rs6000/altivec.h (vec_step): Remove extraneous
7967         parentheses.
7968         (vec_ctu): Cast return.
7970 2002-04-23  Alan Modra  <amodra@bigpond.net.au>
7972         PR target/6413
7973         * function.h: (struct function): Add profile_label_no field.
7974         (current_function_profile_label_no): Define.
7975         * function.c: (profile_label_no): New static var.
7976         (expand_function_start): Increment it, and copy to
7977         current_function_profile_label_no.
7978         * output.h (profile_label_no): Delete.
7979         * final.c (profile_label_no): Delete.
7980         (profile_function): Use current_function_profile_label_no.
7981         (final_end_function): Don't increment profile_label_no here.
7982         * config/i386/i386.c (ix86_osf_output_function_prologue): Replace
7983         profile_label_no with current_function_profile_label_no.
7984         * config/pa/pa.c (current_function_number): Delete.
7985         (pa_output_function_prologue): Don't output profile label here.
7986         (hppa_profile_hook): Use label_no param rather than
7987         current_function_number.
7988         (FUNC_BEGIN_PROLOG_LABEL): Move to ..
7989         * config/pa/pa.h: .. here.
7990         (FUNCTION_PROFILER): Output profile label here.
7992 2002-04-22  Eric Christopher  <echristo@redhat.com>
7994         * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Revert
7995         patch of 2002-04-09 due to binutils issues.
7996         (FUNCTION_ARG_REGNO_P): Ensure even numbered float register.
7998 2002-04-22  Aldy Hernandez  <aldyh@redhat.com>
8000         * config/rs6000/rs6000.md ("*movv4si_internal"): Change 'm'
8001         constraint to 'o' for m=r and r=m alternatives.
8002         ("*movv8hi_internal1"): Same.
8003         ("*movv16qi_internal1"): Same.
8004         ("*movv4sf_internal1"): Same.
8006 2002-04-22  Janis Johnson  <janis187@us.ibm.com>
8008         * rtl.h (RTX_FLAG): New macro.
8009         * emit-rtl.c (copy_most_rtx): Use macros to access rtx flags.
8010         * final.c (alter_subreg): Use macro to access rtx flag.
8011         * integrate.c (copy_rtx_and_substitute): Use new access macro.
8012         * print-rtl.c (print_rtx): Use new access macro.
8014         * cse.c (insert): Check rtx code before accessing flag.
8016         * genattrtab.c (ATTR_IND_SIMPLIFIED_P, ATTR_CURR_SIMPLIFIED_P,
8017         ATTR_PERMANENT_P, ATTR_EQ_ATTR_P): New.
8018         (attr_hash_add_string, attr_rtx_1, attr_copy_rtx, check_attr_test,
8019         convert_const_symbol_ref, make_canonical, make_alternative_compare,
8020         evaluate_eq_attr, attr_rtx_cost, simplify_test_exp_in_temp,
8021         simplify_test_exp, optimize_attrs, simplify_by_exploding,
8022         find_and_mark_used_attributes, unmark_used_attributes,
8023         add_values_to_cover, simplify_with_current_value,
8024         simplify_with_current_value_aux, clear_struct_flag, walk_attr_value,
8025         copy_rtx_unchanging, main): Use new access macros.
8027 2002-04-22  Tom Rix  <trix@redhat.com>
8029         * expmed.c (init_expmed): Generate shifted constant once.
8031 2002-04-22  Zack Weinberg  <zack@codesourcery.com>
8033         * c-lex.c (lex_charconst): Call convert to get constant in
8034         proper type; don't just smash the type field.
8035         Fixes PR c/6300.
8037         * config.gcc: Add list of obsolete configurations.  Disallow
8038         building these without --enable-obsolete.
8039         * doc/install.texi: Document --enable-obsolete and obsoletion
8040         policy.  Mention obsoletion of individual targets in
8041         appropriate places.
8043 2002-04-22  Richard Henderson  <rth@redhat.com>
8045         * config/sparc/sol2-bi.h (ASM_DEBUG_SPEC): New.
8047 2002-04-22  Mark Mitchell  <mark@codesourcery.com>
8049         PR f/6138.
8050         * function.c (fixup_memory_subreg): Add promoted_mode parameter.
8051         (walk_fixup_memory_subreg): Likewise.
8052         (fixup_var_refs_insn): Adjust accordingly.
8053         (fixup_var_refs_1): Likewise.
8055 2002-04-22  Ulrich Weigand  <uweigand@de.ibm.com>
8057         * config/s390/linux.h: (LIBPATH_SPEC, LIBPATH_ARCH31_SPEC,
8058         LIBPATH_ARCH64_SPEC): Define.
8059         (EXTRA_SPECS): Add libpath, libpath_arch31, libpath_arch64.
8060         (STARTFILE_SPEC, ENDFILE_SPEC): Define; use libpath.
8061         (LINK_ARCH31_SPEC): Add libpath_arch31 to search path.
8062         (LINK_ARCH64_SPEC): Add libpath_arch64 to search path.
8064 2002-04-22      Joel Sherrill <joel@OARcorp.com>
8066         * gthr-rtems.h: Correct prototypes to remove warnings.
8068 2002-04-22  Richard Henderson  <rth@redhat.com>
8070         PR c/6344
8071         * alias.c (canon_true_dependence): Special case (mem:blk (scratch)).
8073         * gcse.c (free_insn_expr_list_list): New.
8074         (clear_modify_mem_tables): Use it.  Fix bit set usage.
8075         (canon_list_insert): Use EXPR_LISTs for expressions.
8076         (record_last_mem_set_info): Factor BLOCK_NUM (insn).
8078 2002-04-22  Neil Booth  <neil@daikokuya.demon.co.uk>
8080         * cppfiles.c (_cpp_pop_file_buffer): Return void.  Move
8081         file change and include code to _cpp_pop_buffer.
8082         * cpphash.h (struct pending_option): Predeclare.
8083         (struct cpp_reader): New member next_include_file.
8084         (_cpp_pop_file_buffer): Update.
8085         (_cpp_push_next_buffer): Update, rename.
8086         * cppinit.c (cpp_destroy): Free include chain and pending here.
8087         (cpp_finish_options): Simplify.
8088         (_cpp_push_next_buffer): Rename and clean up.
8089         * cpplib.c (cpp_pop_buffer): Move code from _cpp_pop_file_buffer.
8090         Clarify.
8091         * cppmacro.c (cpp_scan_nooutput): Set return_at_eof here.
8093 2002-04-22  Aldy Hernandez  <aldyh@redhat.com>
8095         * config/rs6000/altivec.h (vec_xor): Add variant for both args
8096         being vector signed int.
8097         (vec_andc): Same.
8098         (vec_xor): Add variant for both args being vector signed char.
8099         Remove redundant variant.
8100         (vec_andc): Same.
8102 2002-04-21  David S. Miller  <davem@redhat.com>
8104         * config/sparc/sparc.md (set then compare DI mode peephole2): Fix
8105         compare mode in output RTL.
8107 2002-04-22  David Edelsohn  <edelsohn@gnu.org>
8109         * config/rs6000/rs6000.c (rs6000_override_options): Correct
8110         style and formatting of previous patch.
8112 2002-04-22  Alan Modra  <amodra@bigpond.net.au>
8114         * config/rs6000/rs6000.c (rs6000_override_options): Always clear
8115         flag_pic for ABI_AIX.
8117 2002-04-21  Neil Booth  <neil@daikokuya.demon.co.uk>
8119         * cppexp.c (struct op, parse_number): Replace U_CHAR with uchar.
8120         * cppfiles.c (read_include_file): Similarly.
8121         * cpphash.h (DSC, U_CHAR, ustrcmp, ustrncmp, ustrlen,
8122         uxstrdup ustrchr, ufputs): Similarly.
8123         * cppinit.c (TRIGRAPH_MAP, cpp_destroy): Similarly.
8124         * cpplex.c (parse_slow, unescaped_terminator_p, save_comment,
8125         cpp_ideq, parse_identifier, parse_number): Similarly.
8126         * cpplib.c (struct directive, dequote_string, D, run_directive,
8127         cpp_push_buffer): Similarly.
8128         * cppmacro.c (new_string_token, builtin_macro, cpp_quote_string,
8129         _cpp_create_definition, check_trad_stringification,
8130         cpp_macro_definition): Similarly.
8132 2002-04-21  Neil Booth  <neil@daikokuya.demon.co.uk>
8134         * cppmacro.c (funlike_invocation_p): Don't step back
8135         over CPP_EOF.
8137 2002-04-21  David Edelsohn  <edelsohn@gnu.org>
8139         * config/rs6000/rs6000.c (output_profile_hook): Do not increment
8140         labelno.
8142 2002-04-20  Joseph S. Myers  <jsm28@cam.ac.uk>
8144         * doc/invoke.texi: Remove Chill references.
8145         * doc/gcc.texi: Update last modified date.
8147 2002-04-20  Kazu Hirata  <kazu@hxi.com>
8149         * config/h8300/lib1funcs.asm (___mulsi3): Remove unnecessary
8150         push and pop.  Replace add.l with add.w.
8152 2002-04-20  Toshiyasu Morita  <toshiyasu.morita@hsa.hitachi.com>
8154         * config/h8300/lib1funcs.asm (___mulsi3): Use hardware
8155         multiply instructions for H8/300H case.
8157 2002-04-20  Toshiyasu Morita  <toshiyasu.morita@hsa.hitachi.com>
8159         * config/h8300/lib1funcs.asm (___cmpsi2, ___ucmpsi2):
8160         Bum three instructions from each routine.
8162 2002-04-20  Neil Booth  <neil@daikokuya.demon.co.uk>
8164         * Makefile.in: Update.
8165         * decl.c (push_c_function_context, pop_c_function_context,
8166         mark_c_function_context): Rename for consistency.
8167         * c-objc-common.c (c_objc_common_init): Langhooks set elsewhere.
8168         * c-tree.h (push_c_function_context, pop_c_function_context,
8169         mark_c_function_context): Rename for consistency.
8170         * c-lang.c (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8171         LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK): Redefine.
8172         * function.c (init_lang_status, save_lang_status,
8173         restore_lang_status, mark_lang_status, free_lang_status):
8174         Move to langhooks.h.
8175         (push_function_context_to, pop_function_context_from,
8176         free_after_parsing, prepare_function_start, ggc_mark_struct_function):
8177         Update.
8178         * function.h (init_lang_status, save_lang_status,
8179         restore_lang_status, mark_lang_status, free_lang_status):
8180         Move to langhooks.h.
8181         * langhooks-def.h (LANG_HOOKS_FUNCTION_INIT,
8182         LANG_HOOKS_FUNCTION_FREE, LANG_HOOKS_FUNCTION_ENTER_NESTED,
8183         LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK,
8184         LANG_HOOKS_FUNCTION_INITIALIZER): New.
8185         (LANG_HOOKS_INITIALIZER): Update.
8186         (lhd_do_nothing_f): New.
8187         * langhooks.h (struct lang_hooks_for_functions): New.
8188         (struct lang_hooks): New hooks.
8189         * langhooks.c (lhd_do_nothing_f): New.
8190 objc:
8191         * objc-lang.c (LANG_HOOKS_FUNCTION_ENTER_NESTED,
8192         LANG_HOOKS_FUNCTION_LEAVE_NESTED, LANG_HOOKS_FUNCTION_MARK): Redefine.
8194 2002-04-19  David S. Miller  <davem@redhat.com>
8196         * config/sparc/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Define.
8197         * config/sparc/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Likewise.
8199 2002-04-19  Jakub Jelinek  <jakub@redhat.com>
8201         PR optimization/3756
8202         * config/i386/i386.c (ix86_expand_int_movcc): Optimize
8203         x = ((int) y < 0) ? cst1 : cst2.
8205 2002-04-19  Jakub Jelinek  <jakub@redhat.com>
8207         PR c/6358
8208         * function.c: Reapply patch for c/6358.
8209         (expand_function_end): Copy decl_rtl's mode, not
8210         current_function_return_rtx mode.
8212 2002-04-19  Joel Sherrill  <joel@OARcorp.com>
8214         * config/rtems.h (STARTFILE_SPEC, ENDFILE_SPEC): Fix for non-ELF
8215         targets.
8217 2002-04-19  Tom Tromey  <tromey@redhat.com>
8219         * doc/install.texi (Specific): Update status of Solaris 2.8.
8220         For PR libgcj/6158.
8222 2002-04-19  Andreas Schwab  <schwab@suse.de>
8224         * real.c: Allow sizeof (REAL_VALUE_TYPE) > 2*NE.
8225         (PUT_REAL): Restore old definition.
8227 2002-04-19  Dan Nicolaescu  <dann@godzilla.ics.uci.edu>
8228             Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8230         * doc/install.texi (Specific, sparc-sun-solaris2*): Mention that
8231         binutils 2.11.2 and higher generate smaller binaries than Sun's
8232         native tools.
8234 2002-04-19  Mark Mitchell  <mark@codesourcery.com>
8236         PR c++/6352
8237         * toplev.c (rest_of_compilation): Do not defer functions for which
8238         TREE_SYMBOL_REFERENCED has already been set.
8240 Fri Apr 19 15:53:03 CEST 2002  Jan Hubicka  <jh@suse.cz>
8242         * i386.md (movsi_1, movhi_1): Force reload to use more flexible
8243         alternative.
8245 2002-04-19  Neil Booth  <neil@daikokuya.demon.co.uk>
8247         * builtins.c: Include langhooks.h.
8248         (lang_type_promotes_to): Remove.
8249         (expand_builtin_va_arg): Use new hook.
8250         * c-common.c (c_common_nodes_and_builtins): Don't set hook.
8251         (simple_type_promotes_to): Move to c-typeck.c.
8252         * c-common.h (simple_type_promotes_to): Remove.
8253         * c-decl.c (duplicate_decls, grokdeclarator): Update.
8254         * c-format.c: Include langhooks.h.
8255         (check_format_types): Update.
8256         * c-tree.h (c_type_promotes_to): New.
8257         * c-typeck.c (c_type_promotes_to): Move from c-common.c.
8258         (type_lists_compatible_p): Update.
8259         * langhooks-def.h (lhd_type_promotes_to): New.
8260         (LANG_HOOKS_TYPE_PROMOTES_TO): New.
8261         (LANG_HOOKS_FOR_TYPES_INITIALIZER): Update.
8262         * langhooks.c (lhd_type_promotes_to): New.
8263         * langhooks.h (struct lang_hooks_for_types): New hook.
8264         * tree.h (lang_type_promotes_to): Remove.
8265 objc:
8266         * objc-lang.c (LANG_HOOKS_TYPE_PROMOTES_TO): Redefine.
8268 2002-04-18  Richard Henderson  <rth@redhat.com>
8270         * function.c: Revert patch for c/6358.
8272 2002-04-18  Richard Henderson  <rth@redhat.com>
8274         * ifcvt.c (find_cond_trap): Handle cases with no proper THEN or JOIN
8275         blocks.  Handle multiple references to the TRAP block.  Handle
8276         non-adjacent THEN and OTHER blocks.
8278 2002-04-18  Richard Henderson  <rth@redhat.com>
8280         * config/ia64/ia64.c (ia64_function_arg_pass_by_reference): Don't
8281         crash with no type for by-mode libcalls.
8283         * config/ia64/ia64.md (conditional_trap): Fix predicate polarity.
8285 2002-04-18  Bob Wilson  <bob.wilson@acm.org>
8287         * config/xtensa/lib2funcs.S (__xtensa_libgcc_window_spill,
8288         __xtensa_nonlocal_goto): Use a syscall instructions to flush
8289         the register windows.
8291 2002-04-18  Zack Weinberg  <zack@codesourcery.com>
8293         * real.h: Define REAL_VALUE_TYPE_SIZE as 96 or 160, as
8294         appropriate.  Document need for extended precision even when
8295         MAX_LONG_DOUBLE_TYPE_SIZE is smaller.  Define REAL_WIDTH here,
8296         based on REAL_VALUE_TYPE_SIZE.  Use REAL_WIDTH to size
8297         REAL_VALUE_TYPE.  Define CONST_DOUBLE_FORMAT here.  Use #error
8298         instead of relying on later syntax error when REAL_WIDTH > 5.
8299         * real.c: Define NE based only on whether or not we have a
8300         full 128-bit extended type (not INTEL_EXTENDED_IEEE_FORMAT).
8301         Require sizeof(REAL_VALUE_TYPE) == 2*NE.  Unconditionally
8302         define GET_REAL and PUT_REAL as simple memcpy operations; no
8303         need to byteswap or round.
8304         Use #error instead of #ifdef-ing out the entire file, for
8305         prompt error detection.
8307         * rtl.c, gengenrtl.c: No need to calculate CONST_DOUBLE_FORMAT here.
8309 2002-04-18  David S. Miller  <davem@redhat.com>
8311         * config/sparc/sparc.h (BRANCH_COST): Define.
8313         * fold-const.c (BRANCH_COST): Don't provide default here, expr.h
8314         does it.
8316 2002-04-18  Hans-Peter Nilsson  <hp@bitrange.com>
8318         * flow.c (update_life_info): Ignore return value of cleanup_cfg.
8319         Mask out PROP_SCAN_DEAD_CODE | PROP_KILL_DEAD_CODE in
8320         propagate_block calls after relaxation loop using new variable
8321         stabilized_prop_flags.
8323 2002-04-18  Richard Henderson  <rth@redhat.com>
8325         * config/ia64/ia64.c (ia64_function_arg_pass_by_reference): New.
8326         (ia64_va_arg): Expect variable sized types by reference.
8327         * config/ia64/ia64-protos.h: Update.
8328         * config/ia64/ia64.h (FUNCTION_ARG_PASS_BY_REFERENCE): Use
8329         ia64_function_arg_pass_by_reference.
8331 2002-04-18  Richard Henderson  <rth@redhat.com>
8333         * ifcvt.c: Include except.h.
8334         (block_has_only_trap): Break out from find_cond_trap.
8335         (find_cond_trap): Use it.  Always delete the trap block.
8336         (merge_if_block): Allow then block null.  Be less simplistic about
8337         what insns can end a block.
8338         * Makefile.in (ifcvt.o): Depend on except.h.
8340         * config/ia64/ia64.md (trap, conditional_trap): New.
8342 2002-04-18  Jakub Jelinek  <jakub@redhat.com>
8344         PR c/6358
8345         * function.c (assign_parms): Assign hard current_function_return_rtx
8346         register here...
8347         (expand_function_end): ...not here.
8349 2002-04-18  Neil Booth  <neil@daikokuya.demon.co.uk>
8351         * c-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
8352         * c-tree.h (c_incomplete_type_error): New.
8353         * c-typeck.c (require_complete_type, build_component_ref): Update.
8354         (incomplete_type_error): Rename.
8355         * langhooks-def.h (lhd_incomplete_type_error): New.
8356         (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): New.
8357         (LANG_HOOKS_FOR_TYPES_INITIALIZER): Update.
8358         * langhooks.c (lhd_incomplete_type_error): New.
8359         * langhooks.h (struct lang_hooks_for_types): New hook.
8360         * tree.c (size_in_bytes): Use new hook.
8361         * tree.h (incomplete_type_error): Remove.
8362 objc:
8363         * objc-lang.c (LANG_HOOKS_INCOMPLETE_TYPE_ERROR): Redefine.
8365 2002-04-18  Zack Weinberg  <zack@codesourcery.com>
8367         * config/arc/arc.md: Remove #if HOST_FLOAT_FORMAT !=
8368         TARGET_FLOAT_FORMAT blocks.
8370 2002-04-18  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
8372         * doc/install.texi (Downloading the source): Do not mention Chill
8373         any longer, but mention Ada.
8374         (Configuration): Do not mention Chill any longer.
8376 2002-04-18  Hans-Peter Nilsson  <hp@axis.com>
8378         * config/cris/cris.h (TARGET_VERSION): Remove local version number.
8380 Thu Apr 18 17:14:08 CEST 2002  Jan Hubicka  <jh@suse.cz>
8382         * i386.h (SSE_FLOAT_MODE_P): Fix bogus conflict resolution
8383         in last patch.
8385 2002-04-18  Jakub Jelinek  <jakub@redhat.com>
8387         * fold-const.c (fold): Use (*lang_hooks.types.unsigned_type)
8388         instead of unsigned_type.
8390 Thu Apr 18 15:49:12 CEST 2002  Jan Hubicka  <jh@suse.cz>
8392         * i386.h (SSE_FLOAT_MODE_P): Kill bogus TARGET_SSE_MATH check.
8393         * i386.md (sse_mov?fcc*): Swap operands for cases they will be swapped
8394         later.
8396 2002-04-18  Bernd Schmidt  <bernds@redhat.com>
8398         * attribs.c (vector_type_node_list): New static variable.
8399         (handle_vector_size_attribute): Use it to avoid generating a
8400         new type node each time we are called.
8402         * combine.c (subst): Avoid trying to make a vector mode subreg of
8403         an integer constant.
8404         (gen_lowpart_for_combine): Likewise.
8406 2002-04-18  Roger Sayle  <roger@eyesopen.com>
8407             Jakub Jelinek  <jakub@redhat.com>
8409         * fold-const.c (fold) [NOP_EXPR]: Convert (T)(x&c) into ((T)x&(T)c)
8410         for integer constant c (if x has unsigned type or sign bit is not
8411         set in c).  This folds the zero/sign extension into the bit-wise and
8412         operation.
8414 2002-04-18  Jakub Jelinek  <jakub@redhat.com>
8416         PR middle-end/6205
8417         * config/i386/i386.md (movsf_1): Use pxor only if TARGET_SSE2,
8418         otherwise xorps.
8420 2002-04-17  NIIBE Yutaka  <gniibe@m17n.org>
8422         * config/sh/elf.h: Undefine ASM_OUTPUT_CASE_LABEL.
8424 2002-04-17  Nick Clifton  <nickc@cambridge.redhat.com>
8426         * gcc.c (read_specs): Detect and fail if an attempt is made to
8427         rename a spec string to an already existing string.
8429 2002-04-17  Ulrich Weigand  <uweigand@de.ibm.com>
8431         * config/s390/s390.c (legitimize_pic_address): Do not generate
8432         illegal address constant without CONST.
8434 2002-04-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8436         * sparc/linux64.h (CC1_SPEC): Error for -m32 and -m64.
8437         * sparc/netbsd-elf.h (CC1_SPEC32, CC1_SPEC64): Likewise.
8439 2002-04-17  Ulrich Weigand  <uweigand@de.ibm.com>
8441         PR optimization/6305
8442         * config/s390/s390.c (s390_expand_plus_operand): Use find_replacement
8443         to make sure previous reloads are taken into account.  Generate
8444         better code if one operand is an in-range immediate constant.
8446 2002-04-16  Andrew Haley  <aph@cambridge.redhat.com>
8448         * doc/install.texi (Building): libgcj requires GNU make.
8450 2002-04-17  Jakub Jelinek  <jakub@redhat.com>
8452         PR bootstrap/6315
8453         * config/sparc/sparc.md (movtf reg<-reg split): Allow spliting
8454         even if hard quad and register is not floating.
8455         (movtf reg<-mem split): Disallow splitting if hard quad and
8456         register is floating.
8457         (movtf mem<-reg split): Likewise.
8458         * config/sparc/sparc.c (fp_register_operand): New predicate.
8459         * config/sparc/sparc.h (PREDICATE_CODES): Add fp_register_operand.
8461 2002-04-17  Zack Weinberg  <zack@codesourcery.com>
8463         * Makefile.in (PROTO_OBJS): Add cppdefault.o.
8464         (protoize.o): Take $(PREPROCESSOR_DEFINES) off command line.
8465         (unprotoize.o): Ditto.  Build from protoize.c.  Define
8466         UNPROTOIZE on command line.
8467         * protoize.c: Include cppdefault.h.  Delete include_defaults.
8468         (in_system_include_dir): Use cpp_include_defaults (defined in
8469         cppdefault.o).
8470         * unprotoize.c: Delete file.
8472 2002-04-17  Aldy Hernandez  <aldyh@redhat.com>
8474         * config/rs6000/altivec.h (vec_ld): Add array variants.
8475         (vec_lde): Same.
8476         (vec_ldl): Same.
8478 2002-04-17  Alan Matsuoka  <alanm@redhat.com>
8479             Aldy Hernandez <aldyh@redhat.com>
8481         * config/rs6000/altivec.h: Define __ALTIVEC__.
8482         (bool): New.
8483         (__pixel): New.
8484         (pixel): New.
8485         (vec_cfux): New.
8486         (vec_vmaddfp): New.
8487         (vec_vsldoi): New.
8488         Add parentheses to all macro arguments.
8490 2002-04-16  Richard Henderson  <rth@redhat.com>
8492         PR c++/6320
8493         * except.c (remove_eh_handler): Insert inner regions at beginning
8494         of sibling chain.  Refactor expressions.
8496 2002-04-16  Richard Henderson  <rth@redhat.com>
8498         * config/sparc/sol2-bi.h (AS_SPARC64_FLAG): New.
8499         * config/sparc/sol2-gas-bi.h: New file.
8500         * config.gcc (sparc*-solaris): Add it as needed.
8501         * configure.in (AS_SPARC64_FLAG): Remove check.
8502         * config.in, configure: Regenerate.
8504         * config/sparc/sol2-bi.h (CC1_SPEC): Error for -m32 and -m64.
8506 2002-04-16  Richard Henderson  <rth@redhat.com>
8508         * config/mips/mips.c (override_options): Don't override N32 for
8509         a 64-bit ISA.
8511         PR 6202
8512         * config/mips/mips.md (can_delay): Split out of existing define_delays.
8513         (HILO_delay): Set can_delay false.
8515 2002-04-16  Dale Johannesen <dalej@apple.com>
8517         * config/rs6000/rs6000.c (rs6000_output_function_prologue): Compute
8518         instruction addresses.
8519         (rs6000_output_function_epilogue): Likewise.
8521 2002-04-16  Paolo Carlini  <pcarlini@unitus.it>
8523         * c-parse.in (poplevel, compstmt_start,
8524         compstmt_primary_start): Add ending ';', in accordance
8525         with POSIX.
8527 2002-04-16  Richard Henderson  <rth@redhat.com>
8529         * config.gcc (sparcv9-solaris): Configure for 64-bit default.
8530         Adjust tm_file order to get TARGET_DEFAULT set properly.
8531         (sparc-solaris): Configure 2.[78] for 64-bit multilibs.
8532         * doc/install.texi (sparc-solaris): Update.
8534 2002-04-16  Dale Johannesen <dalej@apple.com>
8536         * config/rs6000/rs6000.c (rs6000_emit_cmove): Fail if modes of
8537         comparison operands do not match each other or if modes of
8538         conditions do not match result.
8540 2002-04-16  Hartmut Penner <hpenner@de.ibm.com>
8542         PR target/6305
8543         * config/s390/s390.md (mulsidi3): Set both subregs of the
8544         multiword register.
8546 2002-04-16  Aldy Hernandez  <aldyh@redhat.com>
8548         * config/rs6000/altivec.h (vec_addc): Type check.
8550 2002-04-16  Jakub Jelinek  <jakub@redhat.com>
8552         PR middle-end/6279
8553         * expr.c (store_expr): Don't copy if DECL_RTL (exp) == target.
8555         * expr.c (safe_from_p): Cleanup: use DECL_RTL_IF_SET.
8557 2002-04-15  Richard Henderson  <rth@redhat.com>
8559         * config/mips/abi64.h (SUBTARGET_CONDITIONAL_REGISTER_USAGE): Set
8560         call_really_used_regs too.
8562 2002-04-15  Richard Henderson  <rth@redhat.com>
8564         * config/alpha/gnu.h (CPP_PREDEFINES): Underscores for gnu_hurd.
8566 2002-04-15  David S. Miller  <davem@redhat.com>
8568         * rtlanal.c (note_stores): Don't present PARALLEL SET_DESTs
8569         as being CLOBBERed.
8571 2002-04-16  Jakub Jelinek  <jakub@redhat.com>
8573         PR c/6290
8574         * config/rs6000/rs6000.c (easy_vector_constant): Return 1 if the
8575         CONST_VECTOR is { 0, ... 0 }.
8577 2002-04-15  Loren J. Rittle  <ljrittle@acm.org>
8579         * doc/install.texi (Installing GCC: Configuration): Clarify
8580         the only supported ways to configure gcc.
8582 2002-04-15  Roland McGrath  <roland@frob.com>
8584         * config.gcc (alpha*-*-gnu*): New target configuration.
8585         * config/alpha/gnu.h: New file for it.
8586         * config/gnu.h (TARGET_MEM_FUNCTIONS): #undef before #define.
8588 2002-04-16  Mark Mitchell  <mark@codesourcery.com>
8590         * c-common.h (STMT_EXPR_NO_SCOPE): New macro.
8591         * c-common.c (c_expand_expr): Respect STMT_EXPR_NO_SCOPE.
8592         * tree.h (expand_start_stmt_expr): Update prototype.
8593         * stmt.c (expand_start_stmt_expr): Add has_scope parameter.
8594         * tree-inline.c (expand_call_inline): Set STMT_EXPR_NO_SCOPE
8595         on the STMT_EXPR created for the inline function.
8597 2002-04-15  Richard Henderson  <rth@redhat.com>
8599         * config/alpha/linux.h, config/arm/linux-elf.h, config/i370/linux.h,
8600         config/i386/linux-aout.h, config/i386/linux-oldld.h,
8601         config/i386/linux.h, config/i386/linux64.h, config/ia64/linux.h,
8602         config/m68k/linux-aout.h, config/m68k/linux.h, config/mips/linux.h,
8603         config/pa/pa-linux.h, config/pj/linux.h, config/s390/linux.h,
8604         config/sh/linux.h, config/sparc/linux-aout.h, config/sparc/linux.h,
8605         config/sparc/linux64.h, config/xtensa/linux.h (CPP_PREDEFINES):
8606         Define __gnu_linux__, not gnu_linux.
8607         * config/rs6000/sysv4.h (CPP_OS_GNU_SPEC): Likewise for gnu_hurd.
8609 2002-04-15  Mark Mitchell  <mark@codesourcery.com>
8611         Remove Chill front end.
8612         * gcc.c (default_compilers): Remove Chill entries.
8613         * ch: Remove directory.
8614         * doc/frontends.texi: Remove information about Chill.
8615         * doc/sourcebuild.texi: Likewise.
8616         * doc/standards.texi: Likewise.
8618 2002-04-15  Douglas B Rupp  <rupp@gnat.com>
8620         * config/alpha/vms.h (INCLUDE_DEFAULTS): Add /gnu/lib/gcc-lib/include.
8621         (LONGLONG_STANDALONE): Define.
8623 2002-04-15  David S. Miller  <davem@redhat.com>
8625         * config/sparc/sparc.c (sparc_emit_float_lib_cmp):
8626         Call emit_library_call with LCT_NORMAL.
8627         (sparc_initialize_trampoline): Use LCT_foo instead of
8628         magic constant in emit_library_call invocations.
8629         (sparc64_initialize_trampoline): Likewise.
8630         (sparc_profile_hook): Likewise.
8631         * config/sparc/sparc.md: Likewise.
8633         * config/sparc/sparc.c (sparc_extra_constraint_check):
8634         Fix type of argument 'c'.
8635         * config/sparc/sparc-protos.h (sparc_extra_constraint_check):
8636         Likewise.
8638 2002-04-15  Gabriel Dos Reis  <gdr@merlin.codesourcery.com>
8640         * diagnostic.h (output_buffer_state): Redefine.
8641         (output_format_decoder): New macro.
8642         (output_prefixing_rule): Likewise.
8643         (output_line_cutoff): Likewise.
8644         (diagnostic_format_decoder): Adjust.
8645         (diagnostic_prefixing_rule): Likewise.
8646         (diagnostic_line_cutoff): Likewise.
8647         (diagnostic_state): Likewise.
8648         (diagnostic_kind_count): Likewise.
8649         (diagnostic_buffer): Now a macro.
8651         * diagnostic.c (diagnostic_buffer): Remove definition.
8652         (output_is_line_wrapping): Adjust.
8653         (set_real_maximum_length): Likewise.
8654         (output_set_maximum_length): Likewise.
8655         (init_output_buffer): Likewise.
8656         (lhd_print_error_function): Likewise.
8657         (output_do_verbatim): Likewise.
8659 2002-04-14  Neil Booth  <neil@daikokuya.demon.co.uk>
8661         * cpperror.c (print_location): Don't print include chain
8662         if line == 0.
8663         (cpp_begin_message): Update to use DL_ macros.
8664         (cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
8665         cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
8666         cpp_notice, cpp_notice_from_errno): Remove.
8667         (cpp_error, cpp_error_with_line): Update to take a diagnostic
8668         level.
8669         (cpp_errno): New.
8670         * cppexp.c (CPP_ICE): Remove.
8671         (SYNTAX_ERROR, SYNTAX_ERROR2, parse_number, parse_defined,
8672         lex, integer_overflow, _cpp_parse_expr): Update.
8673         * cppfiles.c (read_include_file, find_include_file,
8674         handle_missing_header, _cpp_read_file, remap_filename): Update.
8675         * cpphash.h (enum error_type): Remove.
8676         (_cpp_begin_message): Update.
8677         * cppinit.c (append_include_chain, remove_dup_dirs, output_deps,
8678         cpp_handle_option, cpp_post_options): Update.
8679         * cpplex.c (trigraph_p, skip_escaped_newlines, skip_block_comment,
8680         skip_whitespace, parse_identifier, parse_slow, parse_string,
8681         _cpp_lex_direct, cpp_spell_token, maybe_read_ucs, cpp_parse_escape,
8682         cpp_interpret_charconst): Update.
8683         * cpplib.c (check_eol, directive_diagnostics, _cpp_handle_directive,
8684         lex_macro_node, do_undef, glue_header_name, parse_include,
8685         do_include_common, read_flag, do_line, do_linemarker, do_ident,
8686         cpp_register_pragma, do_pragma_once, do_pragma_system_header,
8687         do_pragma_poison, do_pragma_dependency, _cpp_do__Pragma, do_else,
8688         do_elif, do_endif, parse_answer, parse_assertion, do_assert,
8689         _cpp_pop_buffer, do_diagnostic): Update.
8690         * cpplib.h (DL_WARNING, DL_WARNING_SYSHDR, DL_PEDWARN, DL_ERROR,
8691         DL_FATAL, DL_ICE, DL_EXTRACT, DL_WARNING_P): New.
8692         (cpp_ice, cpp_fatal, cpp_error_from_errno, cpp_warning,
8693         cpp_warning_with_line, cpp_pedwarn, cpp_pedwarn_with_line,
8694         cpp_notice, cpp_notice_from_errno): Remove.
8695         (cpp_error, cpp_error_with_line): Update to take a diagnostic
8696         level.
8697         (cpp_errno): New.
8698         * cppmacro.c (builtin_macro, stringify_arg, paste_all_tokens,
8699         collect_args, enter_macro_context, save_parameter, parse_params,
8700         _cpp_create_definition, check_trad_stringification,
8701         cpp_macro_definition): Update.
8702         * cppmain.c (cpp_preprocess_file): Update.
8703         * fix-header.c (read_scan_file): Update.
8705 2002-04-14  Andreas Schwab  <schwab@suse.de>
8707         * config/ia64/linux.h (CPP_PREDEFINES): Fix missing backslash.
8709 2002-04-14  Jeroen Dobbelaere  <jeroen.dobbelaere@acunia.com>
8711         * config/arm/linux-elf.h (CPLUSPLUS_CPP_SPEC): Define.
8713 2002-04-13  Mark Mitchell  <mark@codesourcery.com>
8715         * config/i386/gnu.h (CPP_PREDEFINES): Define __gnu_hurd__,
8716         not gnu_hurd.
8718 2002-04-13  Hans-Peter Nilsson  <hp@axis.com>
8720         * config/cris/linux.h (CRIS_CPP_SUBTARGET_SPEC): Fix typo.
8722 2002-04-13      Joel Sherrill <joel@OARcorp.com>
8724         * config/sparc/t-elf: Enable v8 multilibs.  Impacts
8725         sparc-elf and sparc-rtems targets.
8727 2002-04-13  Mark Mitchell  <mark@codesourcery.com>
8729         * alpha/linux.h: Define __gnu_linux__ wherever __linux__ is
8730         defined, and __gnu_hurd__ wherever __GNU__ is defined.
8731         * arm/linux-elf.h: Likewise.
8732         * cris/aout.h: Likewise.
8733         * cris/linux.h: Likewise.
8734         * i370/linux.h: Likewise.
8735         * i386/gnu.h: Likewise.
8736         * i386/linux-aout.h: Likewise.
8737         * i386/linux-oldld.h: Likewise.
8738         * i386/linux.h: Likewise.
8739         * i386/linux64.h: Likewise.
8740         * ia64/linux.h: Likewise.
8741         * m68k/linux-aout.h: Likewise.
8742         * m68k/linux.h: Likewise.
8743         * mips/linux.h: Likewise.
8744         * pa/pa-linux.h: Likewise.
8745         * pj/linux.h: Likewise.
8746         * rs6000/sysv4.h: Likewise.
8747         * s390/linux.h: Likewise.
8748         * sh/linux.h: Likewise.
8749         * sparc/linux-aout.h: Likewise.
8750         * sparc/linux.h: Likewise.
8751         * sparc/linux64.h: Likewise.
8752         * xtensa/linux.h: Likewise.
8754 2002-04-13  Richard Sandiford  <rsandifo@redhat.com>
8756         * stmt.c (check_unique_operand_names): Expect operand names to
8757         be strings rather than identifiers.  Use simple_cst_equal to
8758         compare them.
8759         (resolve_operand_name_1): Make same identifier to string change here.
8760         * c-parse.in (asm_operand): Convert a named operand into a string.
8761         * cp/parse.y (asm_operand): Likewise.
8763 2002-04-13  Andreas Schwab  <schwab@suse.de>
8765         * config/ia64/ia64.h (CPP_SPEC): Include %(cpp_cpu).
8767 2002-04-12  Mark Mitchell  <mark@codesourcery.com>
8769         Revert these changes:
8771         2002-04-06  Mark Mitchell  <mark@codesourcery.com>
8773         PR c++/5571
8774         * stor-layout.c (layout_decl): Reset the RTL for the decl.
8776 2002-04-12  Richard Henderson  <rth@redhat.com>
8778         * config.gcc (sparcv9-*-solaris2): Default to 32-bit code.
8779         (sparc*-*-solaris): Clean up header files.
8780         * configure.in (AS_SPARC64_FLAG): Error out if can't find it
8781         and plan on generating 64-bit code.
8782         * toplev.c (decode_g_option): Remove LINKER_DOES_NOT_WORK_WITH_DWARF2.
8783         * config/sparc/sol2-64.h: Delete and reuse for default 64-bit code.
8784         * config/sparc/sol2-sld-64.h: Rename ...
8785         * config/sparc/sol2-bi.h: ... here.  Remove the bits that checked
8786         for AS_SPARC64_FLAG not defined.
8787         * config/sparc/sol2-gld-bi.h: New.
8788         * config/sparc/sol2-sld.h: Remove.
8789         * config/sparc/sol26-sld.h: New.
8790         * config/sparc/sol2.h: Tidy comments.
8791         * doc/install.texi: Document sparc-solaris configury changes.
8793 2002-04-12  Richard Henderson  <rth@redhat.com>
8795         * recog.c (offsettable_address_p): Match the logic in adjust_address.
8797         * config/sparc/sparc.h (LEGITIMIZE_RELOAD_ADDRESS): Handle TFmode
8798         in 64-bit mode only.  Use only for 32-bit or MEDLOW.
8800 2002-04-12  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8802         * config/alpha/osf.h (LINK_SPEC): Pass -S to silence ld warnings.
8804 Fri Apr 12 15:42:59 2002  Jeffrey A Law  (law@redhat.com)
8806         * pa.c (pa_can_combine_p): Call extract_insn before calling
8807         constrain_operands.
8809 2002-04-12  Douglas B Rupp  <rupp@gnat.com>
8811         * config/i386/i386-interix.h (EH_FRAME_IN_DATA_SECTION): Define.
8812         (TARGET_ASM_NAMED_SECTION, RETURN_IN_MEMORY) Define.
8813         (DEFAULT_PCC_STRUCT_RETURN): Define as 0.
8814         (CPP_PREDEFINES): Handle __declspec.
8815         * config/i386/t-interix (USER_H): Remove.
8817 2002-04-12  DJ Delorie  <dj@redhat.com>
8819         * integrate.c (compare_blocks): Make comparisons safe for when
8820         sizeof(int) < sizeof(char *).
8821         (find_block): Likewise.
8823 2002-04-12  Jan Hubicka  <jh@suse.cz>
8824             David Edelsohn  <edelsohn@gnu.org>
8826         * config/rs6000/rs6000.c (call_operand): Allow LINK and COUNT
8827         registers.
8828         (symbol_ref_operand): New.
8829         * config/rs6000/rs6000.h (PREDICATE_CODES): Add symbol_ref_operand.
8830         * config/rs6000/rs6000.md (call_nonlocal_aix): Use symbol_ref_operand.
8832 2002-04-12  Andreas Schwab  <schwab@suse.de>
8834         * config/ia64/ia64.h (ASM_SPEC): Moved from here ...
8835         * config/ia64/sysv4.h (ASM_SPEC): ... to here, so that it
8836         overrides the definition in config/svr4.h.
8838 2002-04-12      Eric Norum <eric.norum@usask.ca>
8840         * config/rtems.h, config/a29k/rtems.h, config/arm/rtems-elf.h,
8841         config/c4x/rtems.h, config/h8300/rtems.h, config/i386/rtems.h,
8842         config/i386/rtemself.h, config/i960/rtems.h, config/m68k/rtems.h,
8843         config/m68k/rtemself.h, config/mips/rtems.h, config/mips/rtems64.h,
8844         config/pa/rtems.h, config/rs6000/rtems.h, config/sh/rtems.h,
8845         config/sh/rtemself.h, config/sparc/rtems.h, config/sparc/rtemself.h,
8846         config/v850/rtems.h (*-rtems*): Cleanup pass to move common
8847         definitions to config/rtems.h and make the targets more similar.
8849 Fri Apr 12 08:06:54 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8851         * expr.c (expand_assigment): Remove duplicate conversions #ifdef
8852         POINTERS_EXTEND_UNSIGNED.
8853         (store_constructor, expand_expr, case COMPONENT_REF): Likewise.
8854         (store_expr): Use TYPE_MODE (sizetype), not ptr_mode.
8856         * emit-rtl.c (widen_memory_access): Don't do anything if MEMOFFSET
8857         not specified.
8859 Fri Apr 12 12:11:26 2002  J"orn Rennecke <joern.rennecke@superh.com>
8861         * sh.c (calc_live_regs, sh_pr_n_sets): Use of PR_MEDIA_REG / PR_REG
8862         depends on TARGET_SHMEDIA, not TARGET_SH5.
8864 2002-04-12  Hans-Peter Nilsson  <hp@bitrange.com>
8866         * function.c (fixup_var_refs_1) <SET, handling VAR in SET_SRC>:
8867         For paradoxical (subreg VAR), replace VAR, don't try the subreg.
8869 Fri Apr 12 10:51:38 2002  J"orn Rennecke <joern.rennecke@superh.com>
8871         * sh.c (broken_move): Constant 0. / 1. load is OK if there is
8872         no r0 clobber.
8874 2002-04-12  Andreas Schwab  <schwab@suse.de>
8876         * config/ia64/ia64.h (EXTRA_SPECS): Fix missing backslash.
8878 2002-04-12  Richard Henderson  <rth@redhat.com>
8880         PR bootstrap/4191
8881         * config/d30v/d30v.h (INIT_SECTION_ASM_OP): Don't undef.
8883         * flow.c (mark_used_reg): Manage reg_cond_dead properly for
8884         modes spanning multiple hard regs.
8886         * recog.c (peephole2_optimize): Rebuild jump labels as needed.
8888 2002-04-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
8890         * pa.c (pa_output_function_prologue): Don't accumulate the total
8891         number of code bytes when using TARGET_64BIT, or gas, SOM and not
8892         the portable runtime.
8893         (output_deferred_plabels): Handle 64bit plabels.
8894         (output_cbranch): Use $PIC_pcrel$0 for pc relative relocations when
8895         generating pic code using the GAS assembler for object formats that
8896         are not SOM (ie., ELF32 and ELF64).
8897         (output_millicode_call): Check attribute type if attribute length is 28.
8898         Likewise use $PIC_pcrel$0.  Only call get_attr_length and
8899         dbr_sequence_length once.
8900         (output_call): Likewise use $PIC_pcrel$0, and call get_attr_length and
8901         dbr_sequence_length once.
8902         * pa.h (TARGET_SOM): Define if not defined.
8903         * pa.md (pattern to load address of label): Likewise use $PIC_pcrel$0
8904         with GAS and not SOM.
8905         (jump, call_internal_reg, call_value_internal_reg): Likewise.
8906         * som.h (OBJ_SOM): Rename to TARGET_SOM.  Undefine before defining.
8908 2002-04-11  David O'Brien  <obrien@FreeBSD.org>
8910         * config/freebsd.h (NO_IMPLICIT_EXTERN_C, SCCS_DIRECTIVE): Give value.
8911         (DEFAULT_PCC_STRUCT_RETURN) Do not redefine.
8912         (USER_LABEL_PREFIX, HANDLE_SYSV_PRAGMA, IDENT_ASM_OP,
8913         DWARF2_DEBUGGING_INFO, DBX_DEBUGGING_INFO, PREFERRED_DEBUGGING_TYPE):
8914         elfos.h and dbxelf.h values are fine now.
8915         * config/i386/freebsd.h, config/alpha/freebsd.h
8916         (DEFAULT_PCC_STRUCT_RETURN): Define to 0.
8918 2002-04-11  David O'Brien  <obrien@FreeBSD.org>
8920         * config/ia64/aix.h (CPP_PREDEFINES): Do not define _LP64/__LP64__
8921         or set Acpu or Amachine.  Reformat.
8922         (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
8923         define.
8924         (LINK_SPEC): Do not need to undef.
8925         * config/ia64/elf.h (ASM_EXTRA_SPEC): Define.
8926         * config/ia64/freebsd.h (LINK_SPEC): Do not need to undef.
8927         (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
8928         define.
8929         * config/ia64/hpux.h (ASM_EXTRA_SPEC): Define.
8930         (ASM_SPEC): Do not define, use ASM_EXTRA_SPEC instead.
8931         (LINK_SPEC): Do not need to undef.
8932         (DONT_USE_BUILTIN_SETJMP): Do not define.
8933         * config/ia64/ia64.h (ASM_SPEC, ASM_EXTRA_SPEC): Add.
8934         (CPP_CPU_SPEC): Define _LP64, set Acpu and Amachine.  Remove -Dia64.
8935         (DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Define.
8936         Remove trailing spaces.
8937         * config/ia64/linux.h (CPP_PREDEFINES): Do not define _LP64/__LP64__,
8938         __ELF__, or set Acpu or Amachine.  Reformat.
8939         (ASM_SPEC, DONT_USE_BUILTIN_SETJMP, PROFILE_BEFORE_PROLOGUE): Do not
8940         define.
8942 2002-04-11  David O'Brien  <obrien@FreeBSD.org>
8944         * config.gcc (ia64-*-freebsd*): Fix ordering of tm_files to match
8945         all other *-*-freebsd* targets.
8947 2002-04-11  Richard Henderson  <rth@redhat.com>
8949         * config.gcc (alpha*-*-linux*ecoff): Detect and reject.
8951 2002-04-11  David O'Brien  <obrien@FreeBSD.org>
8953         * config.gcc (alpha*-*-openbsd, alpha64-dec-*vms,alpha*-dec-*vms):
8954         Include {cpu}/{cpu}.h thru tm_file.
8955         (alpha*-*-linux*ecoff): Remove target.
8956         * config/alpha/elf.h (CPP_SUBTARGET_SPEC): Define __ELF__.
8957         (LINK_SPEC): Remove, is not OS independent.
8958         * config/alpha/freebsd.h (CPP_SPEC): Do not define __ELF__.
8959         (LINK_SPEC): Do not need to #undef any longer.
8960         * config/alpha/linux-ecoff.h (LINK_SPEC): Do not need to #undef
8961         any longer.
8962         * config/alpha/linux-elf.h (SUB_CPP_PREDEFINES): Do not define
8963         __ELF__.
8964         (LINK_SPEC): Moved here from alpha/elf.h.
8965         * config/alpha/linux.h (CPP_PREDEFINES): No longer consumer of
8966         SUB_CPP_PREDEFINES.
8967         * config/alpha/linux-ecoff.h: Remove.
8968         * config/alpha/netbsd.h (CPP_PREDEFINES): Do not define __ELF__.
8969         (CPP_SPEC): Define _POSIX_SOURCE as needed.
8970         (CPP_SUBTARGET_SPEC): Do not define.
8971         (LINK_SPEC): Do not need to #undef any longer.
8972         * config/alpha/openbsd.h: Do not directly include alpha/alpha.h.
8973         * config/alpha/vms.h: Likewise.
8975 2002-04-11  Richard Sandiford  <rsandifo@redhat.com>
8977         * doc/extend.texi: Remove old claim that typedefs cannot have
8978         an alignment attribute.
8980 2002-04-11  Jakub Jelinek  <jakub@redhat.com>
8982         PR optimization/6177
8983         * expr.c (expand_expr) [COMPONENT_REF]: Handle op0 CONCAT if
8984         bitpos is 0 and bitsize CONCAT size.
8986 2002-04-11  Jakub Jelinek  <jakub@redhat.com>
8988         PR c/6223
8989         * combine.c (if_then_else_cond): Use trunc_int_for_mode on nz.
8991 2002-04-10  David O'Brien  <obrien@FreeBSD.org>
8993         * config/alpha/freebsd.h: Minor reformatting.
8994         (CPP_SPEC): Define ELF and add cpp_subtarget.
8995         (ASM_SPEC): No longer needed.
8997 2002-04-11  Richard Henderson  <rth@redhat.com>
8999         * config/sparc/sparc.md (movdi_insn_sp32): Add o/J alternative.
9000         (movdi_insn_sp32_v9): Likewise.  Only allow stx with aligned memory.
9001         (dimode mem/zero splitter): New.
9003 2002-04-11  Hans-Peter Nilsson  <hp@axis.com>
9005         * config/cris/cris.c (cris_override_options): Tweak error message
9006         for PIC not implemented.
9008         * config/cris/cris.h: Tweak comments related to parameter-passing.
9010         * t-cris (TARGET_LIBGCC2_CFLAGS): Don't -Dinhibit_libc here.
9012 2002-04-10  Richard Henderson  <rth@redhat.com>
9014         * except.c (add_ehl_entry): Allow duplicates after landing pad
9015         creation.
9017 2002-04-10  David Edelsohn  <edelsohn@gnu.org>
9019         * config/rs6000/t-aix43 (SHLIB_NM_FLAGS): Add -X32_64.
9021 2002-04-10  Toon Moene  <toon@moene.indiv.nluug.nl>
9023         * c-decl.c (c_init_decl_processing): Move generation of
9024         decls for g77_integer_type_node and friends from here ...
9025         * c-common.c (c_common_nodes_and_builtins): ... to here.
9027 2002-04-10  Ulrich Weigand  <uweigand@de.ibm.com>
9029         * reload1.c (choose_reload_regs): HARD_FRAME_POINTER_REGNUM
9030         is only used as frame pointer when frame_pointer_needed is true.
9032 2002-04-10  Richard Earnshaw  <rearnsha@arm.com>
9034         PR target/817
9035         * arm.md (arm_movdi): Adjust neg_pool_range attribute to allow
9036         for the fact that the pool entry uses two words.
9037         (movdf_hard_insn): Similarly.  Also, ADR instruction can span
9038         1k bytes.
9039         (movdf_soft_insn): Similarly.
9040         (movxf_hard_insn): Adjust neg_pool_range attribute to allow
9041         for the fact that the pool entry uses three words.
9043 2002-04-10  Richard Sandiford  <rsandifo@redhat.com>
9045         * config/mips/mips.c (mips_va_arg): When using the struct version
9046         of the EABI va_list, allow arguments in the register save area to
9047         take up less room than a stack argument.
9049 2002-04-10  Richard Henderson  <rth@redhat.com>
9051         * expr.c (expand_expr) [INTEGER_CST]: Don't force into registers
9052         if EXPAND_INITIALIZER.
9054 2002-04-09  Richard Henderson  <rth@redhat.com>
9056         * config/alpha/alpha.md (movdi_er_maybe_g): New.
9057         * config/alpha/alpha.c (alpha_expand_mov): Use it.
9059 2002-04-10  Alan Modra  <amodra@bigpond.net.au>
9061         PR optimization/6233
9062         * rtlanal.c (pure_call_p): New function.
9063         * rtl.h (pure_call_p): Declare.
9064         * loop.c (prescan_loop): Use it to set has_nonconst_call.
9065         * gcse.c (store_killed_in_insn): Use pure_call_p here too.
9067 2002-04-09  Eric Christopher  <echristo@redhat.com>
9069         * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Add additional
9070         information to .comm directive.
9072 2002-04-09  Richard Henderson  <rth@redhat.com>
9074         PR c/5078
9075         * expr.c (expand_expr) [INTEGER_CST]: Force overflows into registers.
9077 2002-04-09  Richard Henderson  <rth@redhat.com>
9079         * basic-block.h (flow_delete_block_noexpunge): Declare.
9080         (expunge_block_nocompact): Declare.
9081         * cfg.c (expunge_block_nocompact): Split out from ...
9082         (expunge_block): ... here.
9083         * cfgrtl.c (can_delete_label_p): Don't use exception_handler_labels.
9084         (flow_delete_block_noexpunge): Split out from ...
9085         (flow_delete_block): ... here.
9086         * cfgcleanup.c (delete_unreachable_blocks): Compact while
9087         removing dead blocks.
9088         * except.c (exception_handler_labels): Remove.
9089         (exception_handler_label_map): New.
9090         (struct eh_region): Add aka member.
9091         (mark_ehl_map_entry, mark_ehl_map, free_region): New.
9092         (ehl_hash, ehl_eq, ehl_free, add_ehl_entry): New.
9093         (for_each_eh_label, for_each_eh_label_1): New.
9094         (init_eh): Register exception_handler_label_map.
9095         (free_eh_status): Use free_region.
9096         (find_exception_handler_labels): Use the map, not the list.
9097         (remove_exception_handler_label): Likewise.
9098         (maybe_remove_eh_handler): Likewise.
9099         (remove_eh_handler): Use the region aka bitmap.
9100         * except.h (exception_handler_labels): Remove.
9101         (for_each_eh_label): Declare.
9102         * jump.c (rebuild_jump_labels): Don't check exception_handler_labels.
9103         * loop.c (invalidate_loops_containing_label): New.
9104         (find_and_verify_loops): Use it.  Use for_each_eh_label.
9105         * sched-rgn.c (is_cfg_nonregular): Use
9106         current_function_has_exception_handlers.
9108 2002-04-09  Richard Henderson  <rth@redhat.com>
9110         * sbitmap.c (sbitmap_union_of_diff, sbitmap_a_and_b, sbitmap_a_xor_b,
9111         sbitmap_a_or_b, sbitmap_a_or_b_and_c, sbitmap_a_and_b_or_c):
9112         Do not return changed status.
9113         (sbitmap_union_of_diff_cg, sbitmap_a_and_b_cg, sbitmap_a_xor_b_cg,
9114         sbitmap_a_or_b_cg, sbitmap_a_or_b_and_c_cg, sbitmap_a_and_b_or_c_cg):
9115         New functions that do return changed status.
9116         * sbitmap.h: Update decls.
9117         * gcse.c, lcm.c: Use _cg functions as needed.
9119 Tue Apr  9 19:15:57 2002  J"orn Rennecke <joern.rennecke@superh.com>
9121         * config.gcc (sh-*-elf*): Use sh/embed-elf.h instead of sh/elf.h.
9122         (sh64-*-elf*, sh-*-rtemself*): Likewise.
9123         * config/sh/embed_bb.c: New file.
9124         * config/sh/embed-elf.h: New file.
9125         * sh.h (CPP_SPEC): Supply __SIZE_TYPE__ and __PTRDIFF_TYPE__
9126         if -m[12345]* option is given.  Don't use subtarget_cpp_ptr_spec.
9127         (CPP_DEFAULT_CPU_SPEC): Add settings for __SIZE_TYPE__ and
9128         __PTRDIFF_TYPE__ .
9129         (SUBTARGET_CPP_PTR_SPEC): Don't define.
9130         (EXTRA_SPECS): Remove subtarget_cpp_ptr_spec.
9131         Add subtarget_asm_endian_spec.
9132         (ASM_SPEC): Use subtarget_asm_endian_spec.
9133         (SUBTARGET_ASM_ENDIAN_SPEC): Define.
9134         (RETURN_ADDR_RTX): Use PR_MEDIA_REG for TARGET_SH5.
9135         (WCHAR_UNSIGNED): Define.
9136         (SH_ELF_WCHAR_TYPE, SH_DBX_REGISTER_NUMBER): Define.
9137         (DBX_REGISTER_NUMBER): Use SH_DBX_REGISTER_NUMBER.
9138         (ALLOCATE_INITIAL_VALUE): Use PR_MEDIA_REG for TARGET_SH5.
9139         Fix value.
9140         * sh.c (calc_live_regs): Use PR_MEDIA_REG for TARGET_SH5.
9141         (sh_adjust_cost): Likewise.
9142         sh64.h (CPP_DEFAULT_CPU_SPEC): Add settings for __SIZE_TYPE__ and
9143         __PTRDIFF_TYPE__ .
9144         (SUBTARGET_CPP_PTR_SPEC, WCHAR_TYPE): Don't #undef/ #define.
9145         (WCHAR_TYPE_SIZE): Likewise.
9146         (ASM_SPEC): Use subtarget_asm_endian_spec.
9147         (SH_ELF_WCHAR_TYPE): #undef/ #define.
9148         (MAX_WCHAR_TYPE_SIZE): Don't #undef.
9149         * config/sh/elf.h (WCHAR_UNSIGNED): #undef .
9150         (MAX_WCHAR_TYPE_SIZE): Don't #define .
9151         (WCHAR_TYPE, WCHAR_TYPE_SIZE): #undef / #define .
9152         (USER_LABEL_PREFIX): Don't #undef /#define .
9153         (DBX_REGISTER_NUMBER): Use SH_DBX_REGISTER_NUMBER.
9154         * config/elf/linux.h (USER_LABEL_PREFIX): Don't #undef /#define .
9155         (SIZE_TYPE, PTRDIFF_TYPE, WCHAR_TYPE, WCHAR_TYPE_SIZE): Likewise.
9156         (ASM_SPEC): Likewise.
9157         (SUBTARGET_ASM_ENDIAN_SPEC): #undef / #define .
9158         (CC1_SPEC): don't supply -m3 for -m4*, -m5*.
9159         * t-sh: (LIB1ASMFUNCS): Use LIB1ASMFUNCS_CACHE.
9160         (LIB2FUNCS_EXTRA): Define.
9161         * t-sh64 (LIB2FUNCS_EXTRA): Define.
9162         * config/sh/t-linux (LIB1ASMFUNCS): Don't redefine.
9163         (LIB1ASMFUNCS_CACHE): Define.
9164         (LIB2FUNCS_EXTRA): Redefine empty.
9166 2002-04-08  Richard Henderson  <rth@redhat.com>
9168         * reorg.c (get_branch_condition): Use reversed_comparison_code.
9170 2002-04-09  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
9172         * config/m68hc11/larith.asm (__map_data_section): Fix condition
9173         and optimize for size.
9174         (__do_global_ctors): Fix pointer comparison.
9175         (__do_global_dtors): Likewise.
9177 2002-04-09  David S. Miller  <davem@redhat.com>
9179         * config/sparc/sparc.c (sparc_extra_constraint_check): New
9180         function, implementing EXTRA_CONSTRAINTS.  For memory constraints,
9181         allow reloading pseudos.
9182         * config/sparc/sparc.h (EXTRA_CONSTRAINTS): Use it.
9183         * config/sparc/sparc-protos.h: Declare it.
9185         * config/sparc/sparc.c (const64_is_2insns): Kill signed vs.
9186         unsigned comparison warning.
9187         (output_restore_regs): Mark leaf_function as unused.
9189 Tue Apr  9 09:35:45 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9191         * expr.c (is_aligning_offset): New function.
9192         (expand_expr, case COMPONENT_EXPR): Call it.
9194 2002-04-08  David S. Miller  <davem@redhat.com>
9196         PR target/6082
9197         * config/sparc/freebsd.h (SPARC_DEFAULT_CMODEL): Set to CM_MEDLOW
9199         Make init_priority work on Sparc when using GNU ld.
9200         * config/sparc/linux.h, config/sparc/linux64.h,
9201         config/sparc/netbsd-elf.h, config/sparc/freebsd.h
9202         (CTORS_SECTION_ASM_OP, DTORS_SECTION_ASM_OP): Undefine.
9203         * config/sparc/sol2-gld.h: New file to do the same.
9204         * config.gcc (sparc*-*-solaris2*): If gnu_ld=yes add
9205         sparc/sol2-gld.h to tm_file.
9207         PR optimization/4328
9208         * config/sparc/sparc.h (EXTRA_CONSTRAINT): Add new constraint 'W'.
9209         * doc/md.texi: Document it.
9210         * config/sparc/sparc.md (movdi_insn_sp64_novis,
9211         movdi_insn_sp64_vis, movdf_insn_sp32, movdf_insn_v9only_novis,
9212         movdf_insn_v9only_vis, movdf_insn_sp64_novis,
9213         movdf_insn_sp64_vis): Use it as MEM constraing with 'e' registers.
9214         * config/sparc/sparc.c (mem_min_alignment): Fix comment.
9216 2002-04-08  Andreas Jaeger  <aj@suse.de>
9218         * stmt.c (expand_asm_operands): Revert last patch from Richard
9219         Henderson.
9221 2002-04-08  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
9223         * doc/contrib.texi (Contributors): Add John David Anglin and Loren
9224         J. Rittle (the latter also to Testers).  Update David O'Brien's entry.
9226 2002-04-08  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
9228         * doc/contrib.texi (Contributors): Add David O'Brien.
9230 2002-04-08  Alan Modra  <amodra@bigpond.net.au>
9232         * configure.in (auto-build.h): Use target_alias and build_alias
9233         when running configure.
9234         (gcc_cv_as, gcc_cv_ld): Search install paths when build != host too.
9235         (gcc_cv_nm, gcc_cv_objdump): Set for build != host too.
9236         * configure: Regenerate.
9238 2002-04-07  David S. Miller  <davem@redhat.com>
9240         * config.gcc (sparc64-*-linux*): Add t-crtfm to tmake_file.
9242 2002-04-07  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9244         PR 5933
9245         * pa.h (ASM_OUTPUT_MI_THUNK): Use indirect jump to target function when
9246         generating 32-bit pic code.
9248 2002-04-06  Jason Thorpe  <thorpej@wasabisystems.com>
9250         * cppinit.c (cpp_create_reader): Initialize
9251         discard_comments_in_macro_exp.
9252         (COMMAND_LINE_OPTIONS): Add "-CC" option.
9253         (cpp_handle_option): Handle "-CC" option.
9254         * cpplex.c (save_comment): If saving a C++ comment in
9255         a directive, convert it to a C comment.
9256         (_cpp_lex_direct): Pass second comment start character to
9257         save_comment to indicate comment type.
9258         * cpplib.c (_cpp_handle_directive): If processing
9259         a "#define" directive and discard_comments_in_macro_exp
9260         is false,  re-enable saving of comments.
9261         (lex_macro_node): If discard_comments_in_macro_exp is false,
9262         discard any comments before the macro identifier.
9263         * cpplib.h (struct cpp_options): Add discard_comments_in_macro_exp
9264         member.
9265         * cppmacro.c (cpp_get_token): If expanding a macro while
9266         processing a directive, discard any comments we might encounter.
9267         (parse_params): If discard_comments_in_macro_exp is false,
9268         ignore comments in the macro parameter list.
9269         * gcc.c (cpp_unique_options): Add "-CC" option.
9270         (option_map): Map "--comments-in-macros" to "-CC".
9271         * doc/cppopts.texi: Document "-CC" option.
9272         * f/lang-specs.h: Add "-CC" option.
9273         * testsuite/gcc.dg/cpp/maccom1.c: New test.
9274         * testsuite/gcc.dg/cpp/maccom2.c: New test.
9275         * testsuite/gcc.dg/cpp/maccom3.c: New test.
9276         * testsuite/gcc.dg/cpp/maccom4.c: New test.
9277         * testsuite/gcc.dg/cpp/maccom5.c: New test.
9278         * testsuite/gcc.dg/cpp/maccom6.c: New test.
9280 2002-04-06  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9282         PR middle-end/6180
9283         * reorg.c (dbr_schedule): Don't reposition prologue and epilogue notes.
9285 2002-04-06  Mark Mitchell  <mark@codesourcery.com>
9287         PR c++/5571
9288         * stor-layout.c (layout_decl): Reset the RTL for the decl.
9290         PR opt/5120
9291         * sibcall.c (optimize_sibling_and_tail_recursive_call): Clear
9292         RTX_UNCHANGING_P for the functions arguments when a tail call
9293         is made.
9295 2002-04-06  Jason Merrill  <jason@redhat.com>
9297         * toplev.c (flag_no_inline, flag_really_no_inline): Default to 2.
9298         (parse_options_and_default_flags): Set them appropriately.
9299         * c-common.c (c_common_post_options): Don't set flag_really_no_inline.
9301 2002-04-06  Hans-Peter Nilsson  <hp@bitrange.com>
9303         * config/mmix/t-mmix (TARGET_LIBGCC2_CFLAGS): Don't -Dinhibit_libc
9304         here.
9306         * config/mmix/mmix.h (INITIAL_ELIMINATION_OFFSET): Remove spurious
9307         semicolon.
9309         * config/mmix/mmix.c (mmix_expand_builtin_va_arg): Variable-size
9310         types come in by-reference.  Fix typo in comment.
9312 2002-04-05  David S. Miller  <davem@redhat.com>
9314         * config/sparc/freebsd.h (ENDFILE_SPEC): Add crtfastmath bits.
9315         * config.gcc (sparc64-wrs-vxworks, sparc-*-chorusos,
9316         sparc-*-rtems*, sparclite-*-elf* sparc86x-*-elf*, sparc64-*-elf*,
9317         {sparc64,ultrasparc}-*-freebsd*): Add sparc/t-crtfm to tmake_file.
9319 2002-04-05  David S. Miller  <davem@redhat.com>
9321         * config/sparc/sparc.c (sparc_nonflat_function_epilogue): If we
9322         are not going to emit return instructions, emit at least a nop
9323         for the sake of sane backtraces.
9325 2002-04-05  Richard Henderson  <rth@redhat.com>
9327         * doc/rtl.texi (Regs and Memory): Document (mem:BLK (scratch)).
9329 2002-04-05  Jakub Jeilnek  <jakub@redhat.com>
9331         * mklibgcc.in: Use $tmpmapfile, not tmp-$@.
9333 2002-04-05  Alexandre Oliva  <aoliva@redhat.com>
9335         * config/mips/mips.h (ISA_HAS_BRANCHLIKELY, ISA_HAS_CONDMOVE,
9336         ISA_HAS_FP4, ISA_HAS_MADD_MSUB, ISA_HAS_NMADD_NMSUB,
9337         ISA_HAS_CLZ_CLO, ISA_HAS_DCLZ_DCLO): Disable if TARGET_MIPS16.
9339 2002-04-05  Andreas Schwab  <schwab@suse.de>
9341         * c-convert.c: Include c-common.h.
9342         * Makefile.in (c-convert.o): Updated.
9344 2002-04-05  Jakub Jelinek  <jakub@redhat.com>
9346         * mklibgcc.in: Use separate libgcc.map for each multilib.
9347         * Makefile.in (distclean): Don't remove libgcc.map here.
9349 2002-04-05  Jakub Jelinek  <jakub@redhat.com>
9351         * Makefile.in (s-mlib): Handle --disable-multilib by separate
9352         genmultilib invocation.
9354 2002-04-04  Richard Sandiford  <rsandifo@redhat.com>
9356         * config/mips/mips.h (CUMULATIVE_ARGS): Rename fp_regs to num_fprs
9357         to avoid clash with Irix header file sys/ucontext.h.  Rename gp_regs
9358         to num_gprs for symmetry.
9359         * config/mips/mips.c: Adjust accordingly.
9361 2002-04-04  Neil Booth  <neil@daikokuya.demon.co.uk>
9363         * c-common.c (truthvalue_conversion): Rename, update.
9364         * c-common.h (c_common_truthvalue_conversion): New.
9365         * c-convert.c (convert): Update.
9366         * c-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
9367         * c-parse.in (expr_no_commas, if_prefix, select_or_iter_stmt): Update.
9368         * c-typeck.c (build_binary_op, build_unary_op,
9369         build_conditional_expr): Update.
9370         * fold-const.c (constant_boolean_node, fold): Use langhook.
9371         * langhooks-def.h (LANGHOOK_INITIALIZER): Update.
9372         * langhooks.h (struct lang_hooks): New hook.
9373         * stmt.c (expand_decl_cleanup): Use langhook.
9374         * tree.h (truthvalue_conversion): Remove.
9375 objc:
9376         * objc-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Redefine.
9378 2002-04-05  Alan Modra  <amodra@bigpond.net.au>
9380         * config/rs6000/t-linux64 (EXTRA_MULTILIB_PARTS): Add crtsavres.o
9381         Add rules to make null object file.
9383 2002-04-04  Jim Blandy  <jimb@redhat.com>
9385         * cppmacro.c (cpp_macro_definition): Do not emit spaces after
9386         macro formal parameter names.
9388 2002-04-04  David S. Miller  <davem@redhat.com>
9390         * calls.c (store_one_arg): If ECF_SIBCALL, use tail_call_reg.
9392 2002-04-04  Richard Henderson  <rth@redhat.com>
9394         PR middle-end/5099
9395         * stmt.c (expand_asm_operands): Validate outputs vs asm_operand_ok.
9396         Support copies into and out of memory.  Don't accept allows_reg
9397         and allows_mem as gospel.
9399 2002-04-04  Richard Henderson  <rth@redhat.com>
9401         PR opt/6165
9402         * alias.c (true_dependence): Force (mem:blk (scratch)) to conflict.
9403         (write_dependence_p): Likewise.
9405 2002-04-04  Richard Henderson  <rth@redhat.com>
9407         * predict.c (estimate_bb_frequencies): Do frequency calculation
9408         with a volatile temporary.
9410 2002-04-04  Ulrich Weigand  <uweigand@de.ibm.com>
9412         * config/s390/linux.h (LOCAL_LABEL_PREFIX): Define.
9414 2002-04-04  Jakub Jelinek  <jakub@redhat.com>
9416         PR c++/6119
9417         * final.c (final_start_function): Don't bump profile_label_no here...
9418         (final_end_function): ...but here.
9420 2002-04-04  Jakub Jelinek  <jakub@redhat.com>
9422         * config/sparc/sparc.md (pic): New attribute.
9423         (do_builtin_setjmp_setup): Save %fp, %i7 and %l7 for TARGET_V9
9424         into stack slots.
9425         (split after do_builtin_setjmp_setup): New.
9427 2002-04-04  Jakub Jelinek  <jakub@redhat.com>
9429         PR fortran/6106
9430         * config/sparc/sparc.h (MIN_UNITS_PER_WORD): Backout 2001-01-01
9431         change.
9433 2002-04-04  Jakub Jelinek  <jakub@redhat.com>
9435         * config/sparc/sparc.c (sparc_va_arg): Adjust va_list by
9436         UNITS_PER_WORD for zero sized aggregates.
9438 2002-04-03  David S. Miller  <davem@redhat.com>
9440         * gcc.c (LINK_GCC_C_SEQUENCE_SPEC): No need for a new
9441         one-character spec for this, just use %(link_gcc_c_sequence).
9443 2002-04-03  David S. Miller  <davem@redhat.com>
9445         * config/sparc/crtfastmath.c (FPRS_NS): Delete bogus little-endian
9446         handling.
9448 2002-04-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9450         * pa-linux.h (INCOMING_RETURN_ADDR_RTX): Move.
9451         (DWARF_FRAME_RETURN_COLUMN): Move.
9452         (ASM_PREFERRED_EH_DATA_FORMAT): Define.
9453         (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX): Define.
9454         * pa.c (except.h, predict.h): Include.
9455         (FRP): Delete.
9456         (store_reg_modify, set_reg_plus_d): Revise prototypes.
9457         (output_ascii): Add cast.
9458         (store_reg_modify): Revise to add frame notes.
9459         (set_reg_plus_d): Likewise.
9460         (compute_frame_size): Include space for eh data registers in frame if
9461         the current function calls eh_return.
9462         (hppa_expand_prologue):  Ensure register %r2 is saved if the current
9463         function calls eh_return.  Save eh data registers if the current
9464         function calls eh_return.  Fix code to add frame notes.  Emit
9465         blockage to prevent insns with frame notes being scheduled in the
9466         delay slot of calls.
9467         (hppa_expand_epilogue): Restore eh data registers and do final stack
9468         adjustment if the current function calls eh_return.  Don't add frame
9469         notes.
9470         (output_call): Revise for change in length of call insn.  Don't do
9471         return pointer adjustment for an unconditional jump in the delay slot
9472         of a call when using frame notes.
9473         * pa.h (EH_RETURN_DATA_REGNO): Revise for TARGET_64BIT compatibility.
9474         (EH_RETURN_HANDLER_RTX): Use saved value on stack.
9475         (ARG_POINTER_CFA_OFFSET): Define.
9476         * pa.md (return_external_pic): New pattern.
9477         (prologue): Correct formatting.  Use return_external_pic if current
9478         function calls eh_return.
9479         (call_internal_symref, call_value_internal_symref,
9480         sibcall_internal_symref, sibcall_value_internal_symref): Change default
9481         lengths of short, long non-pic, and long pic calls to 8, 68, and 84,
9482         respectively.
9483         (exception_receiver): Use hppa_pic_save_rtx () to restore pic register.
9485         * configure.in ("assembler dwarf2 debug_line support"): Add hppa*-*-* to
9486         list of targets to check using "nop" insn.
9487         * configure: Rebuilt.
9489 2002-04-04  Alan Modra  <amodra@bigpond.net.au>
9491         * config/rs6000/t-linux64 (EXTRA_MULTILIB_PARTS): Define.
9493 2002-04-03  David S. Miller  <davem@redhat.com>
9495         * gcc.c (LINK_GCC_C_SEQUENCE_SPEC): New spec to override the gcc/c
9496         library sequence passed to the linker.
9497         (LINK_COMMAND_SPEC): Use it.
9498         * doc/tm.texi: Document it, and mention from LINK_COMMAND_SPEC as
9499         a macro a target can use to avoid overriding LINK_COMMAND_SPEC.
9500         * config/sparc/sparc.h (LINK_GCC_C_SEQUENCE_SPEC): Define.
9502 2002-04-03  Jason Merrill  <jason@redhat.com>
9504         * except.c (struct eh_status): Remove protect_list.
9505         (begin_protect_partials, end_protect_partials): Remove.
9506         (add_partial_entry): Remove.
9507         * except.h: Remove prototypes.
9509         * expr.c (expand_expr) [WITH_CLEANUP_EXPR, TARGET_EXPR]: Use
9510         expand_decl_cleanup_eh.
9512         PR c++/5636
9513         * tree.h (CLEANUP_EH_ONLY): New macro.
9514         * stmt.c (expand_decl_cleanup_eh): New fn.
9515         (expand_cleanups): Check CLEANUP_EH_ONLY.
9516         * c-semantics.c (genrtl_decl_cleanup): Just take the CLEANUP_STMT.
9517         Use expand_decl_cleanup_eh.
9518         (expand_stmt): Adjust.
9519         * c-common.h: Adjust prototype.
9521 2002-04-04  Hans-Peter Nilsson  <hp@axis.com>
9523         * config/cris/cris.c (cris_target_asm_function_prologue): Cast
9524         uses of PIC_OFFSET_TABLE_REGNUM to int to silence warnings.
9525         (cris_target_asm_function_epilogue): Ditto.
9526         (cris_initial_frame_pointer_offset): Ditto.
9527         (cris_simple_epilogue): Ditto.
9528         (cris_expand_builtin_va_arg): Variable-size types come in
9529         by-reference.
9531 2002-04-03  David S. Miller  <davem@redhat.com>
9533         * config/sparc/crtfastmath.c (FPRS_NS): Get it right for
9534         little-endian.
9535         (set_fast_math): Correct 'fsr' type.
9537 2002-04-03  Richard Henderson  <rth@redhat.com>
9539         PR opt/3569
9540         * langhooks.h (lang_hooks.decls.warn_unused_global): New.
9541         * toplev.c (check_global_declarations): Use it.
9542         * langhooks-def.h (lhd_warn_unused_global_decl): Declare.
9543         (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
9544         (LANG_HOOKS_DECLS): Add it.
9545         * langhooks.c (lhd_warn_unused_global_decl): New.
9546         * c-decl.c (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
9547         * c-objc-common.c (c_warn_unused_global_decl): New.
9548         * c-tree.h (c_warn_unused_global_decl): Declare.
9549         * objc/objc-lang.c (LANG_HOOKS_WARN_UNUSED_GLOBAL_DECL): New.
9551 2002-04-03  Neil Booth  <neil@daikokuya.demon.co.uk>
9553         * langhooks-def.h (lhd_set_decl_assembler_name,
9554         LANG_HOOKS_SET_DECL_ASSEMBLER_NAME): New.
9555         (LANG_HOOKS_INITIALIZER): Update.
9556         * langhooks.c (lhd_set_decl_assembler_name): New, from tree.c
9557         * langhooks.h (struct lang_hooks): New hook.
9558         * tree.c (set_decl_assembler_name): Move to langhooks.c.
9559         (lang_set_decl_assembler_name): Remove.
9560         (init_obstacks): Don't set hook.
9561         (decl_assembler_name): New function.
9562         * tree.h (DECL_ASSEMBLER_NAME): Turn into a function call.
9563         (decl_assembler_name): New.
9564         (lang_set_decl_assembler_name): Remove.
9566 2002-04-03  Jakub Jelinek  <jakub@redhat.com>
9568         * configure.in (HAVE_SPARC_UA_PCREL_HIDDEN): Test whether %r_disp32()
9569         works properly with .hidden symbols.
9570         * configure: Rebuilt.
9571         * config.in: Rebuilt.
9572         * config/sparc/sparc.h (ASM_PREFERRED_EH_DATA_FORMAT): Use
9573         DW_EH_PE_absptr for flag_pic && GLOBAL if %r_disp32() doesn't work
9574         properly with .hidden symbols.
9576 2002-04-03  Jakub Jelinek  <jakub@redhat.com>
9578         PR middle-end/6102
9579         * df.c (df_insn_refs_record): Use XEXP not SET_DEST to access
9580         USE argument.
9582 2002-04-03  Richard Henderson  <rth@redhat.com>
9584         PR opt/4120
9585         * sched-rgn.c (sets_likely_spilled): New.
9586         (sets_likely_spilled_1): New.
9587         (add_branch_dependences): Use it.
9589 2002-04-02  Richard Henderson  <rth@redhat.com>
9591         PR opt/4311
9592         * loop.h (LOOP_FIRST_PASS): New.
9593         * loop.c (strength_reduce): Mind it when deciding to unroll.
9594         * toplev.c (rest_of_compilation): Set it.
9596 2002-04-02  David S. Miller  <davem@redhat.com>
9598         * config/sparc/sparc.md (ldd peephole2s): Fix final arg to
9599         mems_ok_for_ldd_peep when the order of the loads being examined
9600         is reversed.
9601         * config/sparc/sparc.c (mems_ok_for_ldd_peep): Expand upon
9602         existing comment to increase comprehension of this situation.
9604 2002-04-02  Zack Weinberg  <zack@codesourcery.com>
9606         * config/sh/sh.md: Don't use union real_extract.
9608 2002-04-02  Richard Henderson  <rth@redhat.com>
9610         * libgcc2.c (__bb_exit_func): Revert 03-31 change.
9612 2002-04-02  David O'Brien  <obrien@FreeBSD.org>
9614         * config.gcc (i386-dg-dgux, i386-go32-msdos , i386-go32-rtems,
9615         i386-ibm-aix, i386-moss-msdos, i386-ncr-sysv4, i386-next-,
9616         i386-pc-msdosdjgpp, i386-sequent-bsd, i386-sequent-ptx1,
9617         i386-sequent-ptx2, i386-sequent-ptx4, i386-sun-sunos,
9618         i386-wrs-vxworks, i386-*-aout, i386-*-beoself, i386-*-bsd,
9619         i386-*-bsdi, i386-*-chorusos, i386-*-coff, i386-*-elf,
9620         i386-*-freebsd5, i386-*-freebsd-aout, i386-*-gnu, i386-*-interix,
9621         i386-*-interix3, i386-*-isc, i386-*-linux, i386-*-linuxaout,
9622         i386-*-linuxoldld, i386-*-lynxos, i386-*-mach, i386-*-mingw32,
9623         i386-*-netbsd, i386-*-netbsdelf, i386-*-netware, i386-*-openbsd,
9624         i386-*-osf1, i386-*-osfrose, i386-*-pe , i386-*-rtems,
9625         i386-*-rtemscoff, i386-*-sco3.2v5, i386-*-solaris2, i386-*-sysv,
9626         i386-*-sysv4, i386-*-sysv5, i386-*-udk, i386-*-uwin, i386-*-vsta,
9627         i386-*-win32, x86_64-*-freebsd5, x86_64-*-linux, x86_64-*-netbsd):
9628         Include as many configury headers via tm_file as possible.  This
9629         includes among others i386/unix.h, i386/bsd.h, i386/gas.h.
9630         * config/openbsd-oldgas.h: New file.
9631         * config/i386/386bsd.h, config/i386/aix386ng.h, config/i386/att.h,
9632         config/i386/bsd.h, config/i386/djgpp.h, config/i386/freebsd-aout.h,
9633         config/i386/gas.h, config/i386/gstabs.h, config/i386/i386-aout.h,
9634         config/i386/i386-coff.h, config/i386/i386-interix.h,
9635         config/i386/iscdbx.h, config/i386/linux-aout.h,
9636         config/i386/linux-oldld.h, config/i386/lynx-ng.h, config/i386/lynx.h,
9637         config/i386/mach.h, config/i386/netbsd.h, config/i386/next.h,
9638         config/i386/openbsd.h, config/i386/osfelf.h, config/i386/osfrose.h,
9639         config/i386/sco5.h, config/i386/seq-gas.h, config/i386/seq-sysv3.h,
9640         config/i386/seq2-sysv3.h, config/i386/sequent.h, config/i386/sun.h,
9641         config/i386/sun386.h, config/i386/svr3dbx.h, config/i386/svr3gas.h,
9642         config/i386/sysv3.h, config/i386/uwin.h, config/i386/vsta.h,
9643         config/i386/vxi386.h: Do not directly include configury headers.
9644         * config/i386/cygwin.h, config/i386/djgpp.h, config/i386/win32.h:
9645         Directly include configury headers that are no longer automatically
9646         included by the above headers.
9647         * config/i386/att.h, config/i386/bsd.h (TARGET_VERSION): Do not define.
9648         * config/i386/386bsd.h, config/i386/aix386ng.h, config/i386/cygwin.h,
9649         config/i386/djgpp.h, config/i386/i386-aout.h, config/i386/i386-coff.h,
9650         config/i386/lynx-ng.h, config/i386/lynx.h, config/i386/mach.h,
9651         config/i386/netbsd.h, config/i386/openbsd.h, config/i386/rtems.h,
9652         config/i386/seq-sysv3.h, config/i386/sequent.h, config/i386/svr3gas.h,
9653         config/i386/sysv3.h, config/i386/vsta.h, config/i386/vxi386.h
9654         (TARGET_VERSION): Define.
9655         * config/i386/beos-elf.h, config/i386/freebsd.h,
9656         config/i386/i386-interix.h, config/i386/i386elf.h, config/i386/linux.h,
9657         config/i386/linux64.h, config/i386/netbsd-elf.h, config/i386/netbsd64.h,
9658         config/i386/osfelf.h, config/i386/osfrose.h, config/i386/ptx4-i.h,
9659         config/i386/sco5.h, config/i386/sysv4.h
9660         (TARGET_VERSION): Do not need to protect.
9661         * config/i386/freebsd64.h (TARGET_VERSION): Fix style.
9662         * config/i386/386bsd.h, config/i386/cygwin.h, config/i386/djgpp.h,
9663         config/i386/freebsd-aout.h, config/i386/i386-aout.h,
9664         config/i386/i386-interix.h, config/i386/linux-aout.h,
9665         config/i386/linux-oldld.h, config/i386/mach.h, config/i386/netbsd.h,
9666         config/i386/openbsd.h, config/i386/vsta.h, config/i386/win32.h
9667         (YES_UNDERSCORES): Do not define - not needed.
9668         * config/i386/bsd.h, config/i386/gas.h (LPREFIX,
9669         ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL,
9670         USER_LABEL_PREFIX): Do not handle the "NO_UNDERSCORES" case.
9671         * config/i386/i386-coff.h, config/i386/lynx.h, config/i386/lynx-ng.h
9672         (LPREFIX, ASM_GENERATE_INTERNAL_LABEL, ASM_OUTPUT_INTERNAL_LABEL,
9673         USER_LABEL_PREFIX): Define. (handles the "NO_UNDERSCORES" case)
9674         * config/i386/isc.h: Preserve comment from config/i386/isccoff.h.
9675         * config/i386/isccoff.h, config/i386/v3gas.h: Remove.
9677 2002-04-02  Eric Botcazou  <ebotcazou@multimania.com>
9678             Richard Henderson  <rth@redhat.com>
9680         PR c/5484
9681         * function.c (assign_temp): Accept either type or decl argument.
9682         Detect variables whose size is too large to fit into an integer.
9683         * stmt.c (expand_decl): Pass the decl, not the type.
9685 2002-04-02  David O'Brien  <obrien@FreeBSD.org>
9687         * protoize.c: Match include directory usage with cppdefault.c.
9689 2002-04-03  Jeffrey A Law  (law@redhat.com)
9690             Hans-Peter Nilsson  <hp@bitrange.com>
9692         * combine.c (simplify_comparison): Avoid narrowing a comparison
9693         with a paradoxical subreg when doing so would drop signficant bits.
9695 2002-04-02  Steve Ellcey  <sje@cup.hp.com>
9697         * builtins.c (expand_builtin_prefetch): Force op0 pointer to Pmode
9698         if POINTERS_EXTEND_UNSIGNED is defined.
9700 2002-04-02  Richard Henderson  <rth@redhat.com>
9702         PR opt/3967
9703         * local-alloc.c (contains_replace_regs): LO_SUM may contain
9704         replace regs.
9706 2002-04-02  Richard Henderson  <rth@redhat.com>
9708         * doc/standards.texi: Document required freestanding libc entry points.
9710 2002-04-02  Alan Modra  <amodra@bigpond.net.au>
9712         * config/rs6000/rs6000.md (ctrdi*): Add FPR constraint and
9713         associated splitter.  Remove MQ constraint.
9714         (ctrdi_internal4): Correct CCmode clobber.
9716 2002-04-02  John David Anglin  <dave@hiauly1.hia.nrc.ca>
9718         * milli64.S ($$dyncall): New function.
9719         * t-linux (LIB1ASMFUNCS): Revise module list.
9720         (LIB1ASMSRC): Use pa/milli64.S.
9722 2002-04-02  Richard Henderson  <rth@redhat.com>
9724         * fixinc/inclhack.def (AAB_solaris_sys_varargs_h): Move and
9725         rename solaris_sys_varargs_h.
9727 Tue Apr  2 06:47:40 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9729         * stor-layout.c (layout_type, case ARRAY_TYPE): Give one-element array
9730         the same mode as its component.
9732 2002-04-02  Richard Henderson  <rth@redhat.com>
9734         PR opt/190
9735         * final.c (this_is_asm_operands): Export.
9736         * output.h (this_is_asm_operands): Declare.
9737         * config/i386/i386.c (print_operand): Error odd asm operands.
9739 2002-04-02  Richard Henderson  <rth@redhat.com>
9741         PR opt/420
9742         * config/m68k/m68k.md (dbcc peepholes): Match four forms of dbra.
9744 2002-04-01  Richard Henderson  <rth@redhat.com>
9746         PR target/1538
9747         * fixinc/inclhack.def (solaris_sys_varargs_h): New.
9748         * fixinc/fixincl.x: Rebuild.
9750 2002-04-01  Richard Henderson  <rth@redhat.com>
9752         * config/ia64/unwind-ia64.c: Include ia64intrin.h.
9753         (atomic_alloc, atomic_free): New.
9754         (SIZE, MASK_FOR, PTR_IN): New.
9755         (emergency_reg_state, emergency_reg_state_free): New.
9756         (emergency_labeled_state, emergency_labeled_state_free): New.
9757         (reg_state_alloced, labeled_state_alloced): New.
9758         (alloc_reg_state, free_reg_state): New.
9759         (alloc_label_state, free_label_state, free_label_states): New.
9760         (push, pop, dup_state_stack, free_state_stack): Use them.
9761         (desc_label_state): Likewise.
9762         (uw_frame_state_for): Free label states and state stack.
9763         (uw_update_reg_address): Eliminate warnings.
9765 2002-04-01  Vladimir Makarov  <vmakarov@redhat.com>
9767         * config/pa/pa-pro-end.h (ASM_OUTPUT_ALIGNED_COMMON,
9768         ASM_OUTPUT_ALIGNED_LOCAL): Redefine them.
9770 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
9772         * c-decl.c (grokdeclarator): Update.
9773         * c-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
9774         * c-tree.h (c_mark_addressable): New.
9775         * c-typeck.c (default_function_array_conversion, build_unary_op,
9776         build_array_ref, convert_for_assignment): Update.
9777         (mark_addressable): Rename.
9778         * calls.c (try_to_integrate, expand_call): Use langhook.
9779         * expr.c (expand_expr): Use langhook.
9780         * langhooks-def.h (LANG_HOOKS_INITIALIZER): Update.
9781         * langhooks.h (struct lang_hooks): New hook.
9782         * stmt.c (expand_asm_operands): Use langhook.
9783         * tree.h (mark_addressable): Remove.
9784 objc:
9785         * objc-lang.c (LANG_HOOKS_MARK_ADDRESSABLE): Redefine.
9787 2002-04-01  Bob Wilson  <bob.wilson@acm.org>
9789         * config/xtensa/xtensa.c (xtensa_va_arg): Fix compiler warning
9790         in previous change.
9792 2002-04-01  Bob Wilson  <bob.wilson@acm.org>
9794         * config/xtensa/xtensa.c (xtensa_va_arg): Fix to handle arguments
9795         for which MUST_PASS_IN_STACK is true (e.g., variable-sized types).
9797 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
9799         * c-common.c (unsigned_conversion_warning, convert_and_check,
9800         unsigned_type, signed_type, shorten_compare,
9801         c_common_get_alias_set, c_common_nodes_and_builtins): Use new hooks.
9802         (unsigned_type, signed_type, signed_or_unsigned_type): Rename.
9803         * c-common.h (unsigned_type, signed_type, signed_or_unsigned_type):
9804         New.
9805         * c-decl.c (grokdeclarator): Update.
9806         * c-format.c (check_format_types): Update.
9807         * c-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
9808         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
9809         * c-typeck.c (build_binary_op, convert_for_assignment): Update.
9810         * convert.c (convert_to_integer): Use new hooks.
9811         * expmed.c (make_tree): Use new hooks.
9812         * expr.c (store_expr): Use new hooks.
9813         * fold-const.c (operand_equal_for_comparison_p, build_range_check,
9814         all_ones_mask_p, unextend, fold): Use new hooks.
9815         * langhooks.h (struct lang_hooks_for_types): New hooks.
9816         * tree.h (signed_or_unsigned_type, signed_type,
9817         unsigned_type): Remove.
9818 objc:
9819         * objc-lang.c (LANG_HOOKS_SIGNED_TYPE, LANG_HOOKS_UNSIGNED_TYPE,
9820         LANG_HOOKS_SIGNED_OR_UNSIGNED_TYPE): New.
9822 2002-03-31  Richard Henderson  <rth@redhat.com>
9824         * config/ia64/unwind-ia64.c (alloc_spill_area): Fix offset.
9825         (desc_frgr_mem): Fix reference to f16-f31.
9827 2002-03-31  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9829         * rtl.h (RTL_CHECK1, RTL_CHECK2, RTL_CHECKC1, RTL_CHECKC2,
9830         RTVEC_ELT): Const-ify.
9831         * varray.h (VARRAY_CHECK): Const-ify.
9832         * ggc.h (ggc_mark_rtx, ggc_mark_tree, ggc_mark_nonnull_tree,
9833         ggc_mark_rtvec, ggc_mark): Const-ify.
9835 2002-04-01  Neil Booth  <neil@daikokuya.demon.co.uk>
9837         * diagnostic.c: Include langhooks-def.h.
9838         * Makefile.in (diagnostic.o): Update.
9840 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
9842         * c-common.c (c_unsafe_for_reeval): Rename.
9843         * c-common.h (c_unsafe_for_reeval): Rename.
9844         * c-decl.c (finish_incomplete_decl): Rename.
9845         (c_init_decl_processing): Don't set langhook.
9846         * c-lang.c (LANG_HOOKS_FINISH_INCOMPLETE_DECL,
9847         LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
9848         * c-objc-common.c (c_objc_common_init): Don't set langhook.
9849         * c-tree.h (finish_incomplete_decl): Rename.
9850         * langhooks-def.h (lhd_unsafe_for_reeval): New.
9851         (LANG_HOOKS_FINISH_INCOMPLETE_DECL, LANG_HOOKS_UNSAFE_FOR_REEVAL): New.
9852         (LANG_HOOKS_INITIALIZER): Update.
9853         * langhooks.c (lhd_unsafe_For_reeval): New.
9854         * langhooks.h (struct langhooks): New hooks.
9855         * toplev.c (incomplete_decl_finalize_hook): Remove.
9856         (wrapup_global_declarations): Update.
9857         * tree.c (lang_unsafe_for_reeval): Remove.
9858         (unsafe_for_reeval): Update.
9859         * tree.h (lang_unsafe_for_reeval, incomplete_decl_finalize_hook):
9860         Remove.
9861 objc:
9862         * objc-lang.c (LANG_HOOKS_FINISH_INCOMPLETE_DECL,
9863         LANG_HOOKS_UNSAFE_FOR_REEVAL): Redefine.
9865 2002-03-31  Neil Booth  <neil@daikokuya.demon.co.uk>
9867         * diagnostic.c (print_error_function): Remove.
9868         (default_print_error_function): Rename.
9869         (report_error_function): Update.
9870         * diagnostic.h (print_error_function): Remove.
9871         (default_print_error_function): Remove.
9872         * langhooks-def.h (struct diagnostic_context): Predeclare.
9873         (lhd_print_error_function, LANG_HOOKS_PRINT_ERROR_FUNCTION): New.
9874         (LANG_HOOKS_INITIALIZER): Update.
9875         * langhooks.h (struct diagnostic context): Predeclare.
9876         (struct lang_hooks): New hook.
9878 2002-03-31  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
9880         * config/rs6000/rs6000.h (RS6000_PIC_OFFSET_TABLE_REGNUM): New.
9881         (PIC_OFFSET_TABLE_REGNUM): Use it and return INVALID_REGNUM if
9882         !flag_pic.
9883         (CONDITIONAL_REGISTER_USAGE): Adjust accordingly.
9884         * config/rs6000/rs6000.h: Use RS6000_PIC_OFFSET_TABLE_REGNUM instead
9885         of PIC_OFFSET_TABLE_REGNUM thruout.
9886         * config/rs6000/rs6000.md: Likewise.
9887         * config/rs6000/darwin.h: Likewise.
9889 Sun Mar 31 14:43:24 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
9891         * emit-rtl.c (adjust_address_1, offset_address): Cast value to
9892         unsigned HOST_WIDE_INT, not unsigned int.
9894 2002-03-31  Jakub Jelinek  <jakub@redhat.com>
9896         PR middle-end/6096, middle-end/6098, middle-end/6099
9897         * reorg.c (emit_delay_sequence): Only increment LABEL_NUSES for
9898         CODE_LABELs.
9899         (fill_slots_from_thread): Likewise.
9901 2002-03-31  Jakub Jelinek  <jakub@redhat.com>
9903         * config/sparc/sparc.c (function_arg_record_value_1): Pass complex
9904         floating fields in float regs.
9905         (function_arg_record_value_2): Likewise.
9907 2002-03-31  Hans-Peter Nilsson  <hp@bitrange.com>
9909         * config/mmix/mmix.md (define_constants): Remove misleading
9910         FIXME.  Add MMIX_fp_rO_OFFSET.
9911         ("nonlocal_goto_receiver"): Don't have stack-frame address of
9912         saved rO as part of the pattern.  Remove FIXME.
9913         ("*nonlocal_goto_receiver_expanded"): Similar.  Generate address
9914         here, at output-time.
9916 2002-03-31  Jakub Jelinek  <jakub@redhat.com>
9918         PR middle-end/6100
9919         * config/sparc/sparc.c (output_cbranch): Use REG_BR_PROB, not
9920         REG_BR_PRED.
9921         (output_v9branch): Likewise.
9923 2002-03-31  Alexandre Oliva  <aoliva@redhat.com>
9925         * gcc.c: Revert previous patch for now.
9926         * config/i386/djgpp.h: Likewise.
9928 2002-03-31  Hans-Peter Nilsson  <hp@bitrange.com>
9930         * config/mmix/crti.asm (_init): Register _fini with atexit.
9931         * config/mmix/crtn.asm (_fini): Add omitted "POP 0,0".
9933 2002-03-31  Richard Henderson  <rth@redhat.com>
9935         PR target/3997
9936         * config/alpha/elf.h (ASM_OUTPUT_DEF): Tidy.
9937         (ASM_OUTPUT_DEF_FROM_DECLS): New.
9939 2002-03-31  Richard Henderson  <rth@redhat.com>
9941         * libgcc2.c (__bb_exit_func): Make static.
9943         * config/alpha/alpha.md (trap): New.
9945 2002-03-31  Richard Henderson  <rth@redhat.com>
9947         * builtins.c (expand_builtin_va_arg): Give warnings not errors for
9948         promoted argument types; build trap.
9949         (expand_builtin_trap): New.
9950         (expand_builtin): Use it.
9951         * stmt.c (expand_nl_goto_receivers): Likewise.
9952         * expr.h (expand_builtin_trap): Declare.
9953         * libfuncs.h (LTI_abort, abort_libfunc): New.
9954         * optabs.c (init_optabs): Init abort_libfunc.
9956 2002-03-31  Alexandre Oliva  <aoliva@redhat.com>
9958         * gcc.c (LIBGCC_SPEC): Folded %L and duplicate %G here...
9959         (LINK_COMMAND_SPEC): ... from here.
9960         (init_gcc_specs): Duplicate it here too, omitting
9961         shared_name in the second copy.
9962         (init_spec): Test for duplicate
9963         * config/i386/djgpp.h (LINK_COMMAND_SPEC): Remove `%L %G'.
9965 2002-03-30  David S. Miller  <davem@redhat.com>
9967         * config/sparc/linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
9968         * config/sparc/linux64.h (HANDLE_PRAGMA_PACK_PUSH_POP): Likewise.
9970 2002-03-30  Roger Sayle <roger@eyesopen.com>
9971             Richard Henderson  <rth@redhat.com>
9973         * regmove.c (combine_stack_adjustments_for_block): Avoid
9974         emitting a stack adjustment of zero bytes.  Let delete_insn
9975         update bb->head.
9977 2002-03-30  Richard Henderson  <rth@redhat.com>
9979         * config/sparc/sparc.c: Remove all references to TARGET_EPILOGUE.
9980         (sparc_emitting_epilogue): New.
9981         (leaf_label, output_return, sparc_return_peephole_ok): Remove.
9982         * config/sparc/sparc-protos.h: Update.
9983         * config/sparc/sparc.h (MASK_EPILOGUE, TARGET_EPILOGUE): Remove.
9984         (TARGET_SWITCHES): Update.
9985         * config/sparc/sparc.md (return): Remove.
9986         (return_*): Use sparc_emitting_epilogue, not !TARGET_EPILOGUE.
9987         * config/sparc/freebsd.h, config/sparc/linux64.h, config/sparc/lite.h,
9988         config/sparc/liteelf.h, config/sparc/netbsd-elf.h,
9989         config/sparc/sol2-sld-64.h, config/sparc/sol2.h,
9990         config/sparc/sp64-aout.h, config/sparc/sp64-elf.h,
9991         config/sparc/sp86x-aout.h, config/sparc/sp86x-elf.h,
9992         config/sparc/splet.h, config/sparc/vxsparc64.h (TARGET_DEFAULT):
9993         Remove MASK_EPILOGUE.
9994         * doc/invoke.texi: Update.
9996 2002-03-30  Daniel Berlin  <dan@dberlin.org>
9998         * dwarf2out.c (dwarf2out_define): Remove start_source_file call,
9999         CPP will start the file for us.
10001 2002-03-30  Richard Henderson  <rth@redhat.com>
10003         PR target/5446
10004         * config/ia64/ia64.c (group_barrier_needed_p): Special case
10005         prologue_allocate_stack.
10006         (ia64_single_set): Use insn codes for recognition of special
10007         cases, not rtl matching.
10008         * config/ia64/ia64.md (prologue_allocate_stack): Op 3 is in-out.
10010 Sat Mar 30 23:48:41 CET 2002  Jan Hubicka  <jh@suse.cz>
10012         * cfgbuild.c (find_basic_blocks_1): Clear aux for blocks.
10014 2002-03-30  Richard Henderson  <rth@redhat.com>
10016         PR target/6032
10017         * config/sparc/sparc.h (OVERRIDE_OPTIONS): Don't override -fpic
10018         or -fomit-frame-pointer with profiling.
10019         (SUBTARGET_OVERRIDE_OPTIONS): Remove.
10020         (FUNCTION_PROFILER): Do nothing.
10021         (PROFILE_HOOK): New.
10022         * config/sparc/sparc.c (sparc_override_options): Don't check
10023         code models for profiling.
10024         (sparc_function_profiler): Remove.
10025         (sparc_profile_hook): New.
10026         * config/sparc/sparc-protos.h: Update.
10028 2002-03-30  Jakub Jelinek  <jakub@redhat.com>
10030         PR optimization/6086
10031         * combine.c (combine_simplify_rtx): If simplify_rtx failed because
10032         of SUBREG of volatile MEM or because the MEM was mode dependent,
10033         return CLOBBER instead of unmodified SUBREG.
10035 Sat Mar 30 14:08:55 CET 2002  Jan Hubicka  <jh@suse.cz>
10037         * local-alloc.c (local_alloc): Avoid call of update_equiv_regs
10038         when not optimizing.
10040         * toplev.c (rest_of_compilation): Cann mark_constant_function
10041         only when optimizing.
10043         * flow.c (calculate_global_regs_live): Ensure that all AUX fields
10044         are NULL.
10046         * cfgcleanup.c (bb_flags): Add BB_NONTHREADABLE_BLOCK.
10047         (thread_jump): Set BB_NONTHREADABLE_BLOCK, check it.
10048         (try_optimize_cfg): clear all AUX fields.
10050         * i386.c (aligned_operand): Be prepared for SUBREGed registers.
10051         (ix86_decompose_address): Use REG_P instead of GET_CODE (...) == REG.
10052         (ix86_address_cost): Be prepared for SUBREGed registers.
10053         (legitimate_address_p): Accept SUBREGed registers.
10055 2002-03-29  Richard Henderson  <rth@redhat.com>
10057         PR target/5672
10058         * expr.c (expand_expr): Pass along EXPAND_INITIALIZER one more place.
10060 2002-03-29  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
10062         * config/rs6000/rs6000.c (rs6000_va_arg): Correctly set register count
10063         for aggregate and TFmode types.
10065 2002-03-29  Hans-Peter Nilsson  <hp@bitrange.com>
10067         * cfg.c (dump_flow_info): Guard against NULL regno_reg_rtx[i].
10069 2002-03-29  Richard Henderson  <rth@redhat.com>
10071         PR target/5886
10072         * config/ia64/aix.h (CPP_PREDEFINES): Add -D_LP64.
10073         * config/ia64/hpux.h, config/ia64/linux.h: Likewise.
10075 2002-03-29  Richard Henderson  <rth@redhat.com>
10077         PR target/6041
10078         * config/i386/i386.c (x86_arch_always_fancy_math_387): New.
10079         (override_options): Disable NO_FANCY_MATH_387 if the arch allows.
10080         * config/i386/i386.h (x86_arch_always_fancy_math_387): New.
10081         * config/i386/i386.md (sqrtxf2, sqrtextendsfxf2, sinxf2): Fix
10082         conditional.
10083         * docs/invoke.texi: Update -mno-fancy-math-387 docs.
10085 2002-03-29  Dale Johannesen <dalej@apple.com>
10087         * loop.c (combine_movables): Do allow combination of pseudos.
10089 2002-03-29  Loren J. Rittle  <ljrittle@acm.org>
10091         * config.gcc (*-*-freebsd*): Enable creation of libgcc_s.so.
10092         * config/t-slibgcc-elf-ver (SHLIB_LC): Add macro and use it.
10093         No functional change except ...
10094         * config/t-slibgcc-nolc-override (SHLIB_LC): Override it.  New file.
10095         * doc/install.texi (*-*-freebsd*): Document port configuration.
10097 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
10099         * Makefile.in (convert.o, calls.o, expmed.o): Update.
10100         * attribs.c (handle_mode_attribute, handle_vector_size_attribute):
10101         Use new hooks.
10102         * builtin-types.def (BT_PTRMODE): Update.
10103         * c-common.c (type_for_size): Rename c_common_type_for_size.
10104         (type_for_mode): Similarly.
10105         (shorten_compare, pointer_int_sum, c_common_nodes_and_builtins):
10106         Use new hook.
10107         * c-bommon.h (c_common_type_for_size, c_common_type_for_mode): New.
10108         * c-decl.c (finish_enum, build_enumerator): Use new hooks.
10109         * c-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIZE):
10110         Redefine.
10111         * c-typeck.c (common_type, comptypes, default_conversion):
10112         Use new hooks.
10113         * calls.c: Include langhooks.h.
10114         (emit_library_call_value_1): Use new hooks.  Avoid redundant
10115         calls.
10116         * convert.c: Include langhooks.h
10117         (convert_to_pointer, convert_to_integer): Use new hooks.
10118         * except.c (init_eh): Similarly.
10119         * expmed.c: Include langhooks.h.
10120         (expand_mult_add): Use new hooks.
10121         * expr.c (store_expr, store_constructor, expand_expr, do_jump,
10122         try_casesi): Similarly.
10123         * fold-const.c (optimize_bit_field_compare, make_range,
10124         decode_field_reference, fold_truthop, fold): Similarly.
10125         * function.c (assign_stack_local_1, assign_stack_temp_for_type,
10126         put_var_into_stack): Similarly.
10127         * langhooks-def.h (LANG_HOOKS_TYPE_FOR_MODE,
10128         LANG_HOOKS_TYPE_FOR_SIZE): New.
10129         (LANG_HOOKS_TYPES_INITIALIZER): Update.
10130         * langhooks.h (lang_hooks_for_types): New hooks.
10131         * stmt.c (expand_decl_cleanup, emit_case_nodes): Use new hooks.
10132         * tree.c (get_unwidened, get_narrower): Similarly.
10133         * tree.h (type_for_mode, type_for_size): Remove.
10134         * varasm.c (force_const_mem): Use new hooks.
10135         * utils2.c (nonbinary_modular_operation): Update.
10136 objc:
10137         * objc-act.c (handle_impent): Update.
10138         * objc-lang.c (LANG_HOOKS_TYPE_FOR_MODE, LANG_HOOKS_TYPE_FOR_SIaZE):
10139         Redefine.
10141 2002-03-29  Steve Ellcey  <sje@cup.hp.com>
10143         * config/ia64/ia64.md (*ptr_extend_plus_1, *ptr_extend_plus_2): New.
10144         * config/ia64/ia64.c (basereg_operand): New.
10145         * config/ia64/ia64-protos.h (basereg_operand): Declare.
10146         * config/ia64/ia64.h (PREDICATE_CODES): Add basereg_operand.
10148 2002-03-29  Hans-Peter Nilsson  <hp@bitrange.com>
10150         * config/mmix/mmix.c (mmix_target_asm_function_prologue): Correct
10151         unwind information when frame_pointer_needed.
10152         (mmix_assemble_integer): Tweak wording in comment.
10154 2002-03-29  Neil Booth  <neil@daikokuya.demon.co.uk>
10156         * Makefile.in (except.o): Update.
10157         * except.c: Include langhooks.h.
10158         (init_eh): Use langhook.
10159         * langhooks-def.h (LANG_HOOKS_MAKE_TYPE,
10160         LANG_HOOKS_FOR_TYPES_INITIALIZER): New.
10161         (LANG_HOOKS_INITIALIZER): Update.
10162         * langhooks.h (lang_hooks_for_types): New.
10163         (struct lang_hooks): Add it.
10164         * tree.c (make_lang_type_fn, make_lang_type): Remove.
10165         * tree.h (make_lang_type_fn, make_lang_type): Remove.
10166 config:
10167         * alpha/alpha.c: Include langhooks.h.
10168         (alpha_build_va_list): Use langhook.
10169         * d30v/d30v.c: Include langhooks.h.
10170         (d30v_build_va_list): Use langhook.
10171         * i386/i386.c: Include langhooks.h.
10172         (ix86_build_va_list): Use langhook.
10173         * rs6000/rs6000.c (rs6000_build_va_list): Use langhook.
10174         * s390/s390.c: Include langhooks.h.
10175         (s390_build_va_list): Use langhook.
10176         * stormy16/stormy16.c: Include langhooks.h.
10177         (stormy16_build_va_list): Use langhook.
10179 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
10181         PR c++/5964
10182         * config/sparc/sparc.md (empty_delay_slot, branch_type): New
10183         attributes.
10184         (length): Compute variable length for branches/calls/jumps here.
10185         (branch, inverted_branch, normal_fp_branch, inverted_fp_branch,
10186         normal_fpe_branch, inverted_fpe_branch): Remove length attribute,
10187         define branch_type attribute.
10188         (divsi3_sp32): Maximum length is 6 not 7.
10189         (call_address_struct_value_sp32, call_symbolic_struct_value_sp32,
10190         call_address_untyped_struct_value_sp32,
10191         call_symbolic_untyped_struct_value_sp32): Set length to 3 not 2.
10192         * config/sparc/sparc.c (empty_delay_slot): New function.
10193         * config/sparc/sparc.h (ADJUST_INSN_LENGTH): Remove.
10194         * config/sparc/sparc-protos.h (empty_delay_slot): Add prototype.
10196 2002-03-29  Jakub Jelinek  <jakub@redhat.com>
10198         * combine.c (set_nonzero_bits_and_sign_copies): Don't call
10199         nonzero_bits if not needed.
10200         (nonzero_bits) [XOR]: Likewise.
10201         (nonzero_bits) [REG]: Use reg_last_set_nonzero_bits even if
10202         reg_last_set_mode and mode are both MODE_INT, but not equal.
10203         (record_value_for_reg): Compute reg_last_set_nonzero_bits
10204         in nonzero_bits_mode for MODE_INT modes.
10206 2002-03-28  Richard Henderson  <rth@redhat.com>
10208         PR target/5715
10209         * config/alpha/osf.h (ASM_SPEC): Don't pass any special options
10210         to GAS.  Correct drift between alternatives.
10212 2002-03-28  Richard Henderson  <rth@redhat.com>
10214         PR target/6087
10215         * reload1.c (fixup_abnormal_edges): Move insn to edge via sequence.
10217 2002-03-28  Alexandre Oliva  <aoliva@redhat.com>
10219         * config/i386/freebsd.h (LINK_SPEC): Don't pass default
10220         emulation to the linker.
10222 2002-03-28  Loren J. Rittle  <ljrittle@acm.org>
10224         * config/alpha/freebsd.h (LINK_SPEC): Likewise.
10225         * config/sparc/freebsd.h (LINK_SPEC): Likewise.
10227 Thu Mar 28 16:35:31 2002  Jeffrey A Law  (law@redhat.com)
10229         * combine.c (simplify_and_const_int): Make sure to apply mask
10230         when force_to_mode returns a constant integer.  PR3311.
10232 2002-03-28  John David Anglin  <dave@hiauly1.hia.nrc.ca>
10234         * pa-linux.h (LOCAL_LABEL_PREFIX): Define.
10236 2002-03-28  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
10238         * doc/invoke.texi (Warning Options): Refer to C++ Dialect Options
10239         and Objective-C Dialect Options.
10241 2002-03-28  Richard Henderson  <rth@redhat.com>
10243         * config/alpha/alpha.c (alpha_emit_conditional_branch): TFmode NE
10244         comparison should be done vs !=0 not >0 return code.  Tidy cases.
10246 2002-03-28  Richard Henderson  <rth@redhat.com>
10248         * c-decl.c (finish_function): New arg can_defer_p.  Pass it
10249         on to c_expand_body.
10250         * c-tree.h (finish_function): Update decl.
10251         * c-objc-common.c, c-parse.in, objc/objc-act.c: Update calls.
10253 Thu Mar 28 19:13:36 CET 2002  Jan Hubicka  <jh@suse.cz>
10255         * ifcvt.c (if_convert): Clear aux_for_blocks early enought.
10257 Thu Mar 28 13:21:53 CET 2002  Jan Hubicka  <jh@suse.cz>
10259         * rtlanal.c: Include flags.h
10260         (may_trap_p): Do not mark FP operations if trapping
10261         if !flag_trapping_math
10262         * Makefile.in (rtlanal.o): Add dependency on flag.h
10263         * ifcvt.c (noce_operand_ok): Avoid the lameness.
10265 2002-03-27  Zack Weinberg  <zack@codesourcery.com>
10267         * mips.md: Use dconst1, not 1.0, as first argument of
10268         REAL_VALUE_LDEXP.  Don't use union real_extract.
10270 2002-03-28  Alan Modra  <amodra@bigpond.net.au>
10272         * configure.in (gcc_cv_as): Use $target_alias in directory searchs
10273         rather than $target.  Heed program_prefix and
10274         program_transform_name.  Search for gas in cross-compiler case too.
10275         "test -x" rather than "test -f".
10276         (gcc_cv_ld): Likewise.
10277         (gcc_cv_nm): Heed program_prefix and program_transform_name.
10278         (gcc_cv_objdump): Likewise.
10279         * configure: Regenerate.
10281 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
10283         * Makefile.in (attribs.o): Update.
10284         * attribs.c: Include langhooks.h.
10285         (decl_attributes): Use langhook.
10286         * c-decl.c (insert_default_attributes): Rename.
10287         * c-tree.h (c_insert_default_attributes): New.
10288         * langhooks-def.h (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES):New.
10289         (LANG_HOOKS_INITIALIZER): Update.
10290         * langhooks.h (struct lang_hooks): New hook.
10291         * tree.h (insert_default_attributes): Remove.
10292 objc:
10293         * objc-lang.c (LANG_HOOKS_INSERT_DEFAULT_ATTRIBUTES): Redefine.
10295 2002-03-27  Andreas Schwab  <schwab@suse.de>
10297         * config/i386/i386.c (classify_argument): Also check for
10298         QUAL_UNION_TYPE.
10300 2002-03-27  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10302         * doc/install.texi (alpha*-dec-osf*): Don't need --enable-libgcj
10303         any more.
10305 Wed Mar 27 23:19:30 CET 2002  Jan Hubicka  <jh@suse.cz>
10307         * i960.md (ret): Set PC.
10308         (nonlocal_goto): Fix expander.
10309         * builtins.c (epxand_builin_longjmp): Check that we've emitted
10310         some jump or call.
10312 Wed Mar 27 23:11:35 CET 2002  Jan Hubicka  <jh@suse.cz>
10314         * optabs.c (emit_no_conflict_block, emit_libcall_block): Avoid nesting
10315         of libcall regions.
10317 Wed Mar 27 22:54:14 CET 2002  Zdenek Dvorak <rakdver@atrey.karlin.mff.cuni.cz>
10319         * cfgrtl.c (merge_blocks_nomove): Use set_block_for_insn instead of
10320         assigning to BLOCK_FOR_INSN directly.
10322 Wed Mar 27 22:33:05 CET 2002  Jan Hubicka  <jh@suse.cz>
10324         * i386.c (ix86_output_addr_diff_elt): Remove binutils bug workaround.
10326 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
10328         * c-common.c (c_expand_expr): Fix prototype.
10329         * c-common.h (c_expand_expr): Always declare, update.
10330         * c-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
10331         * c-objc-common.c (c_objc_common_init): No global hook.
10332         * expr.c (expand_expr): Use langhook.
10333         * expr.h (enum expand_modifier): Conditionally declare.
10334         * langhooks-def.h (lhd_expand_expr, LANG_HOOKS_EXPAND_EXPR): New.
10335         (LANG_HOOKS_INITIALIZER): Update.
10336         * langhooks.c (lhd_expand_expr): New.
10337         * langhooks.h (struct lang_hooks): New hook.
10338         * toplev.c (lang_expand_expr_t, lang_expand_expr): Delete.
10339         (lang_independent_init): Don't default hook.
10340 objc:
10341         * objc-lang.c (LANG_HOOKS_EXPAND_EXPR): Redefine.
10343 2002-03-27  Richard Henderson  <rth@redhat.com>
10345         PR target/6054
10346         * config/ia64/ia64.c (ia64_expand_call): Use pic patterns for
10347         TARGET_CONST_GP.  Simplify conditions.
10349 2002-03-27  Richard Henderson  <rth@redhat.com>
10351         * config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
10352         config/sparc/netbsd-elf.h, config/sparc/pbd.h, config/sparc/sol2.h,
10353         config/sparc/vxsim.h (LOCAL_LABEL_PREFIX): Define.
10355 2002-03-27  Danny Smith  <dannysmith@users.sourceforge.net>
10357         * config/i386/cygwin.h (TARGET_DLL, TARGET_WIN32,
10358         TARGET_CYGWIN, TARGET_WINDOWS): Remove unused switches.
10359         (MASK_DLL, MASK_WIN32, MASK_CYGWIN, MASK_WINDOWS):
10360         Remove unnecessary masks.
10361         (MASK_NOP_FUN_DLLIMPORT): Use an unused an bit.
10362         (SUBTARGET_SWITCHES): Use empty masks for -mwin32, -mcygwin,
10363         -mwindows, -mdll switches and their negations.
10365 2002-03-27  Neil Booth  <neil@daikokuya.demon.co.uk>
10367         * gcc-common.c (lang_mark_false_label_stack): Remove.
10368         * ggc.h (lang_mark_false_label_stack): Similarly.
10370 2002-03-26  Vladimir Makarov  <vmakarov@redhat.com>
10372         * pa/pa-pro-end.h (CPP_PREDEFINES): Add -D__pro__.
10374         * pa/lib2funcs.asm: Don't use .SPACE and .SUBSPACE if __pro__
10375         or __rtems_ is defined.
10377 2002-03-26  Richard Henderson  <rth@redhat.com>
10379         * config/alpha/alpha.c (alpha_emit_set_const): Add a REG_EQUAL note
10380         if a non-trivial load was emitted.
10381         (alpha_emit_set_const_1): Remove obsolete extension.  Fix thinko
10382         in high+extra+low case.
10384 2002-03-26  Richard Henderson  <rth@redhat.com>
10386         * config.gcc (sparc*-solaris): Use float_format=sparc.
10388 2002-03-26  Richard Henderson  <rth@redhat.com>
10390         * config/sparc/sparc.h (MAX_WCHAR_TYPE_SIZE): Don't define.
10391         * config/sparc/linux-aout.h (MAX_WCHAR_TYPE_SIZE): Don't undef.
10392         * config/sparc/linux.h, config/sparc/linux64.h: Likewise.
10393         * config/sparc/sol2.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Redefine.
10394         (WINT_TYPE_SIZE): Fix at 32.
10396 2002-03-26  Richard Henderson  <rth@redhat.com>
10398         * toplev.c (rest_of_compilation): Delay emit_initial_value_sets
10399         until after eh landing pad generation.
10400         * config/alpha/alpha.c (alpha_gp_save_rtx): Use gen_mem_addressof.
10401         * config/alpha/alpha.md (exception_receiver_2): Only accept MEMs.
10403 2002-03-26  Richard Henderson  <rth@redhat.com>
10405         * expr.h (ADD_PARM_SIZE): One more convert for INC.
10407 2002-03-26  Phil Edwards  <pme@gcc.gnu.org>
10409         * gcc.c (cpp_options):  Preserve relative ordering of -pedantic
10410         and warning switches.
10411         (cc1_options):  Likewise.
10413 2002-03-26  Hans Boehm <Hans_Boehm@hp.com>
10415         * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR):
10416         Restore more of the signal context.  Set no_reg_stack_frame.
10417         * config/ia64/unwind-ia64.c (unw_state_record):
10418         Add no_reg_stack_frame, comments.
10419         (uw_frame_state_for): Initialize when field to UNW_WHEN_NEVER.
10420         (uw_update_context): Adjust bsp when unwinding from leaf,
10421         but not signal frame.
10423 2002-03-26  David Edelsohn  <edelsohn@gnu.org>
10425         * config/rs6000/aix51.h (WCHAR_TYPE): Define.
10427 2002-03-26  Bob Wilson  <bob.wilson@acm.org>
10429         * config/xtensa/xtensa.c (xtensa_va_arg): Handle variable-sized types.
10431 2002-03-26  Richard Earnshaw  <rearnsha@arm.com>
10433         PR target/5621
10434         * arm.md (define_asm_attributes): Reapply patch of Thu Sep 9, 1999:
10435         "Add a pool_range attribute", which was lost during the ARM/Thumb
10436         merge.
10438 2002-03-26  Bob Wilson  <bob.wilson@acm.org>
10440         * config/xtensa/xtensa.c (xtensa_valid_move): Allow move from
10441         a register into the MAC16 accumulator.
10443 2002-03-26  Andrew Cagney  <ac131313@redhat.com>
10445         * doc/invoke.texi (Option Summary): Mention -Wswitch-enum.
10446         (Warning Options): Document -Wswitch-enum.
10447         * toplev.c (W_options): Add -Wswitch-enum.  Update comment on
10448         -Wswitch.
10449         (warn_switch_enum): Define variables.
10450         * flags.h (warn_switch_enum): Declare variables.
10451         * stmt.c (expand_end_case_type): When warn_switch_enum /
10452         -Wswitch-enum, perform switch checks.
10453         Fix PR c/5044.
10455 2002-03-26  Richard Earnshaw  <rearnsha@arm.com>
10457         * arm.md (reload_mulsi3, reload_mulsi_compare0, reload_muladdsi)
10458         (reload_mulsi_compare0_scratch, reload_muladdsi_compare0)
10459         (reload_muladdsi_compare0_scratch): Delete.
10461 2002-03-26  Loren J. Rittle  <ljrittle@acm.org>
10463         * doc/install.texi (*-*-freebsd*): Update.
10465 2002-03-26  Richard Henderson  <rth@redhat.com>
10467         * expr.h (ADD_PARM_SIZE): Cast INC to ssizetype.
10468         (SUB_PARM_SIZE): Cast DEC to ssizetype.
10470         * config/alpha/alpha.c (alpha_va_arg): Read MUST_PASS_IN_STACK
10471         types from the normal argument frame.
10473         * config/sparc/sparc.c (function_arg_pass_by_reference): Pass
10474         variable sized objects by reference.
10475         (sparc_va_arg): Receive them by reference too.
10477 2002-03-26  Hartmut Penner  <hpenner@de.ibm.com>
10479         * config/s390/s390.c (s390_emit_epilogue): Change epilogue
10480         code to not restoring global registers.
10482 2002-03-26  Neil Booth  <neil@daikokuya.demon.co.uk>
10484         * Makefile.in (ggc-common.o): Update.
10485         * c-decl.c (lang_mark_tree): Rename c_mark_tree.
10486         * c-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
10487         * c-tree.h (c_mark_tree): New.
10488         * ggc-common.c: Include langhooks.h.
10489         (gcc_mark_trees): Use new langhook.
10490         * ggc-callbacks.c: Delete file.
10491         * ggc.h (lang_mark_tree): Remove.
10492         * langhooks-def.h (LANG_HOOKS_MARK_TREE): New.
10493         (LANG_HOOKS_INITIALIZER): Update.
10494         * langhooks.h (struct lang_hooks): New hook.
10495 objc:
10496         * objc-lang.c (LANG_HOOKS_MARK_TREE): Redefine.
10498 2002-03-25  Zack Weinberg  <zack@codesourcery.com>
10500         * doc/cpp.texi: Exclude entire Top node from printed manual.
10501         Move option index after directive index.  Insert page breaks
10502         before GFDL and concept index.  Index environment variables
10503         with command line options.
10504         * doc/cppenv.texi: Use @vtable for environment variable list.
10505         Add paragraph explaining semantics of empty elements in path
10506         variables.  Exclude a cross-reference to Fishkill from the
10507         manpage.  Remove an unnecessary cross-reference of the entry
10508         right above the referer.  Don't use @anchor in text that goes
10509         into manpage.
10510         * doc/cppopts.texi: Cross-reference the environment variables
10511         section, not the specific environment variable, for consistency.
10513 2002-03-25  Richard Henderson  <rth@redhat.com>
10515         * recog.c (peephole2_optimize): Distribute EH_REGION -1 notes
10516         anywhere in the block.  Don't refer to insns that have been
10517         removed from the chain.  Iterate backward through the new insns.
10518         Don't refer to edges that have been removed.
10520 2002-03-26  Alan Modra  <amodra@bigpond.net.au>
10522         * combine.c (simplify_comparison <ASHIFTRT, LSHIFTRT>): Correct
10523         test for overflow of constant.
10525 2002-03-25  Richard Earnshaw  <rearnsha@arm.com>
10527         PR target/2623
10528         * arm.md (loadhi_preinc, loadhi_predec, loadhi_shiftpreinc)
10529         (loadhi_shiftpredec, loadhi-with-writeback peephole): Don't use
10530         these patterns on arm_archv4.
10532 2002-03-25  Danny Smith  <dannysmith@sourceforge.users.net>
10534         * config/i386/mingw32.h (WINT_TYPE): Define as "short unsigned
10535         int".
10537 2002-03-25  Zack Weinberg  <zack@codesourcery.com>
10539         * toplev.c: Don't include setjmp.h.  Kill float_handler_set,
10540         float_handled, float_handler, float_signal, set_float_handler,
10541         and do_float_handler.  Set handler for SIGFPE to crash_signal.
10542         * toplev.h: Don't prototype do_float_handler.
10544         * c-lex.c: Fold parse_float into lex_number.  Make warning
10545         about portability of hex float constants more informative, and
10546         don't issue it on top of a syntax error.
10547         * fold-const.c: Fold const_binop_1 and fold_convert_1 into
10548         their callers.
10549         * real.h: Define REAL_VALUE_ABS here...
10550         * simplify-rtx.c: ... not here.  Fold check_fold_consts,
10551         simplify_unary_real, simplify_binary_real, and
10552         simplify_binary_is2orm1 into their callers.
10553         * tree.c: Fold build_real_from_int_cst_1 into caller.
10555         * doc/tm.texi: Document REAL_VALUE_ABS and REAL_VALUE_NEGATIVE.
10557         * tsystem.h: Include float.h here...
10558         * libgcc2.c: ... not here.
10560 2002-03-25  Nick Clifton  <nickc@cambridge.redhat.com>
10562         Fixes for: PR bootstrap/3591, target/5676
10563         * config/mcore/mcore.h (CC1_SPEC): Define only if not already
10564         defined.  Do not disable exceptions or rtti.
10565         * config/mcore/mcore-pe.h (CC1_SPEC): Define before including
10566         mcore.h.  Disable exceptions and rtti, since they are not
10567         supported by EPOC.
10569 2002-03-25  Neil Booth  <neil@daikokuya.demon.co.uk>
10571         * c-decl.c (maybe_build_cleanup): Remove.
10572         * expr.c (expand_expr): Use langhook.
10573         * langhooks-def.h (lhd_return_null_tree,
10574         LANG_HOOKS_MAYBE_BUILD_CLEANUP): New.
10575         (LANGHOOKS_INITIALIZER): Update.
10576         * langhooks.c (lhd_return_null_tree): New.
10577         * langhooks.h (struct lang_hooks): New hook.
10578         * tree-inline.c (initialize_inlined_parameters): Use langhook.
10579         * tree.h (maybe_build_cleanup): Remove.
10581 2002-03-25  Jakub Jelinek  <jakub@redhat.com>
10583         * regrename.c (build_def_use): Move recog_memoized
10584         before extract_insn.
10586 2002-03-25  Jakub Jelinek  <jakub@redhat.com>
10588         PR target/6043
10589         * expr.c (emit_group_store): Handle storing into CONCAT.
10591 2002-03-25  Jakub Jelinek  <jakub@redhat.com>
10593         * regrename.c (build_def_use): Share RTL between MATCH_OPERATOR and
10594         corresponding MATCH_DUP.
10596 2002-03-24  Richard Henderson  <rth@redhat.com>
10598         * unroll.c (unroll_loop): Zero label_map.
10600         * gcse.c: Include except.h.
10601         * Makefile.in (gcse.o): Update.
10603 2002-03-24  Richard Henderson  <rth@redhat.com>
10605         * varasm.c (asm_emit_uninitialised): Revert 2002-03-14 change.
10606         Do resolve_unique_section before shared data clause.
10608 2002-03-24  Richard Henderson  <rth@redhat.com>
10610         * config/alpha/elf.h (STARTFILE_SPEC): Use crtbeginT with -static.
10612 2002-03-24  Richard Henderson  <rth@redhat.com>
10614         * recog.c (peephole2_optimize): Split blocks when EH insns are
10615         generated in the middle of a block.  Do global life update if
10616         zapped EH edges.
10618 2002-03-24  Richard Henderson  <rth@redhat.com>
10620         * mips.c (mips_function_value): Only promote_mode for non-libcalls.
10622 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
10624         preprocessor/3951
10625         * gcc.c (cpp_options): Pass -MD through as -MD not -M -MF.
10626         * cppinit.c (cpp_handle_option): Set no_ouput if -MD or -MMD.
10627         (init_dependency_output): Don't make no_output decision here.
10629 2002-03-24  Andrew Cagney  <ac131313@redhat.com>
10631         * stmt.c (check_for_full_enumeration_handling): Remove tests of
10632         warn_switch.  Update description.
10633         (expand_end_case_type): Call check_for_full_enumeration_handling
10634         when warn_switch.
10636 2002-03-24  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
10638         * config/m68hc11/m68hc11.c (m68hc11_autoinc_compatible_p): New function.
10639         (m68hc11_split_move): Call it to see if the source and destination
10640         operands use the same direction auto inc/dec mode, otherwise make the
10641         source an offsetable memory operand and generate an add.
10643 2002-03-24  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
10645         * config/m68hc11/m68hc11.md ("*subsi3_zero_extendhi"): Allow address
10646         register for operand 2.
10647         ("*subsi3_zero_extendqi"): Likewise.
10648         ("*iorhi3_gen"): Do the operation on the upper bits and then lower
10649         bits so that it is compatible with a pop.
10650         ("*andhi3_gen"): Likewise.
10651         ("xorhi3"): Likewise.
10653 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
10655         * cppinit.c (cpp_handle_option): Set warn_endif_labels if
10656         -pedantic here...
10657         (cpp_post_options): ... not here.
10659 2002-03-24  Neil Booth  <neil@daikokuya.demon.co.uk>
10660             Aldy Hernandez  <aldyh@redhat.com>
10662         Removal of separate preprocessor cpp0.
10664         * Makefile.in (GCC_PASSES, STAGESTUFF, LIBCPP_OBJS,
10665         cpp0, install-common): Update.
10666         * c-common.c (flag_preprocess_only): New.
10667         (c_common_init): Preprocess for -E.
10668         * c-common.h (flag_preprocess_only): New.
10669         * c-decl.c (c_decode_option): Handle -E and -std=c++98.
10670         * c-objc-common.c (c_init_decl_processing): Exit quickly
10671         for NULL return from c_common_init.
10672         * cpplib.h (cpp_preprocess_file): New.
10673         * cppmain.c (main, general_init, pfile, progname): Remove.
10674         (do_preprocessing): Rename cpp_preprocess_file, don't call
10675         cpp_finish.  Don't close stdout here.
10676         (setup_callbacks): Update prototype.
10677         * gcc.c (trad_capable_cpp, cpp_unique_options, default_compilers):
10678         Update.
10679         * tradcpp.c (main): Ignore -quiet.
10680 objc:
10681         * lang-specs.h (default_compilers): Preprocess with cc1obj.
10683 2002-03-24  Richard Henderson  <rth@redhat.com>
10685         PR optimization/5742
10686         * machmode.def: Add inner mode field to complex modes.
10687         * config/mips/mips.c (mips_function_value): Always define.  Add
10688         new argument to handle libcalls.
10689         * config/mips/mips.h (LIBCALL_VALUE): Use mips_function_value.
10690         (FUNCTION_VALUE): Likewise.
10691         * config/mips/abi64.h (FUNCTION_VALUE): Remove.
10692         * config/mips/mips-protos.h: Update.
10694 2002-03-23  Richard Henderson  <rth@redhat.com>
10696         * config/sparc/sparc.c (sparc_emit_floatunsdi): New.
10697         * config/sparc/sparc-protos.h: Update.
10698         * config/sparc/sparc.md (floatunsdisf2, floatunsdidf2): New.
10700 2002-03-23  Richard Henderson  <rth@redhat.com>
10702         * config/sparc/gmon-sol2.c (internal_mcount): Assume either
10703         _start or _init begins the text segment.
10705 2002-03-23  David Edelsohn  <edelsohn@gnu.org>
10707         * config/rs6000/rs6000.h (RETURN_IN_MEMORY):  Cast to HOST_WIDE_INT
10708         not HOST_WIDEST_INT.
10709         (RS6000_ARG_SIZE): Remove unsigned cast of int_size_in_bytes.
10711 2002-03-23  Richard Earnshaw  <rearnsha@arm.com>
10713         PR java/5489
10714         * arm.md (return, sibcall_epilogue): Pass const_true_rtx as the
10715         operand argument to output_return_instruction.
10716         * arm.c (arm_print_operand, case 'd'): If the operand is
10717         const_true_rtx then just return.
10718         (arm_print_operand, case 'D'): If the operand is const_true_rtx
10719         then abort.
10721 2002-03-23  Andrew Cagney  <ac131313@redhat.com>
10723         * doc/invoke.texi (Option Summary): Mention -Wswitch-default.
10724         (Warning Options): Document -Wswitch-default.
10725         * toplev.c (W_options): Add -Wswitch-default.  Update comment on
10726         -Wswitch.
10727         (warn_switch_default): Define variable.
10728         (warn_switch): Update comment.
10729         * flags.h (warn_switch_default): Declare variable.
10730         (warn_switch): Update comment.
10731         * stmt.c (expand_end_case): Check for and, when
10732         warn_switch_no_default, warn of a missing default case.
10734 2002-03-23  Alan Modra  <amodra@bigpond.net.au>
10736         * real.h (N): Special case 128 bit doubles.
10738         * combine.c (simplify_comparison): When widening modes, ignore
10739         sign extension on CONST_INTs.
10741 2002-03-22  Bob Wilson  <bob.wilson@acm.org>
10743         * config/xtensa/xtensa.c (print_operand): Fix incorrect mode
10744         passed to adjust_address.  Fix comment formatting.
10747 2002-03-22  Zack Weinberg  <zack@codesourcery.com>
10749         * real.h: Don't define REAL_INFINITY or REAL_IS_NOT_DOUBLE.
10750         Always make REAL_VALUE_TYPE a struct containing an array of
10751         HOST_WIDE_INT, not a double.  Tidy up the code deciding how
10752         big it is.  Don't declare or use union real_extract.
10754         * emit-rtl.c (init_emit_once), varasm.c (immed_real_const_1,
10755         decode_rtx_const, output_constant_pool), config/a29k/a29k.c
10756         (print_operand), config/arm/arm.c (output_move_double),
10757         config/arm/arm.md (consttable_4, consttable_8),
10758         config/romp/romp.c (output_fpops), config/s390/s390.h
10759         (ASM_OUTPUT_SPECIAL_POOL_ENTRY), config/xtensa/xtensa.c
10760         (xtensa_output_literal): Don't use union real_extract.
10762         * config/dsp16xx/dsp16xx.c (print_operand), config/i860/i860.c
10763         (sfmode_constant_to_ulong), config/ns32k/merlin.h
10764         (PRINT_OPERAND), config/ns32k/ns32k.c (print_operand),
10765         config/pdp11/pdp11.h (PRINT_OPERAND), config/we32k/we32k.h
10766         (PRINT_OPERAND): Don't use local version of union
10767         real_extract.
10769         * config/convex/convex.c (check_float_value), config/vax/vax.c
10770         (vax_float_literal), config/m88k/m88k.md (divdf3),
10771         config/dsp16xx/dsp16xx.md (fixuns_trunchfhi2),
10772         config/pdp11/pdp11.c (output_move_quad): Don't do host
10773         arithmetic on target floating point quantities.
10775         * config/a29k/a29k.md, config/dsp16xx/dsp16xx.c
10776         (output_dsp16xx_float_const): Don't test HOST_FLOAT_FORMAT.
10778         * fold-const.c (fold), simplify-rtx.c (simplify_binary_real):
10779         Use MODE_HAS_INFINITIES rather than #ifdef REAL_INFINITY.
10781         * real.c (earith): Test INFINITY rather than REAL_INFINITY;
10782         NANS implies INFINITY, so can drop #ifdef NANS inside #ifndef
10783         INFINITY.
10784         * print-rtl.c (print_rtx): Disable code which needs
10785         floating-point emulator.
10786         * libgcc2.c: Include float.h and use DBL_MANT_DIG,
10787         FLT_MANT_DIG, to define DF_SIZE and SF_SIZE, rather than
10788         depending on HOST_FLOAT_FORMAT to be defined properly.
10790         * config/1750a/1750a.c (get_double, float_label): Delete.
10791         (print_operand): Delete huge commented-out chunk.  Use
10792         REAL_VALUE_TO_DECIMAL.
10793         * config/1750a/1750a-protos.h: Delete prototypes of deleted
10794         functions.
10795         * config/convex/convex.h: Always set TARGET_FLOAT_FORMAT to
10796         IEEE_FLOAT_FORMAT.
10797         * config/i370/i370.h (PRINT_OPERAND [TARGET_HLASM version]):
10798         Use REAL_VALUE_TO_DECIMAL as ELF version does.
10799         * config/m88k/m88k.c (real_power_of_2_operand,
10800         legitimize_operand): Take the REAL_VALUE_TYPE and/or union
10801         real_extract out of the union; run the input through
10802         REAL_VALUE_TO_TARGET_DOUBLE, then plug the pair of longwords
10803         from that into the union.
10804         * config/pdp11/pdp11.c (output_move_double): Rearrange
10805         parentheses to make automatic indenter happy.
10807         * doc/tm.texi (Cross-compilation): Rename node to "Floating
10808         Point" and rewrite to describe current situation.  Also adjust
10809         documentation of REAL_VALUE_TO_TARGET_SINGLE and friends to
10810         match code.
10811         * doc/rtl.texi: Adjust cross reference.
10813 2002-03-22  Bob Wilson  <bob.wilson@acm.org>
10815         * config/xtensa/xtensa-protos.h (non_acc_reg_operand): Remove.
10816         (xtensa_valid_move, xtensa_preferred_reload_class): Define.
10817         * config/xtensa/xtensa.c (non_acc_reg_operand): Remove.
10818         (xtensa_valid_move, xtensa_preferred_reload_class): Define to
10819         prevent use of sp as a reload register.
10820         (xtensa_emit_move_sequence): Use xtensa_valid_move instead of
10821         non_acc_reg_operand.
10822         * config/xtensa/xtensa.h (PREDICATE_CODES): Remove non_acc_reg_operand.
10823         (PREFERRED_RELOAD_CLASS): Move code to xtensa_preferred_reload_class.
10824         * config/xtensa/xtensa.md (movsi_internal, movhi_internal,
10825         movqi_internal): Use xtensa_valid_move instead of non_acc_reg_operand.
10827 2002-03-22  Neil Booth  <neil@daikokuya.demon.co.uk>
10829         * cpphash.h (struct cpp_reader): Remove mls_line and mls_col.
10830         * cpplex.c (unterminated): Delete.
10831         (parse_string): No string literal may extend over multiple
10832         lines.  Suppress the error when preprocessing assembly.
10833         * cppmain.c (scan_translation_unit): Strings are single-line.
10835         * doc/cpp.texi: Update to match.
10837 2002-03-22  Jakub Jelinek  <jakub@redhat.com>
10839         PR optimization/5854
10840         * config/m68hc11/m68hc11.h (CONST_OK_FOR_LETTER_VALUE_P): Use K for 0.
10841         Shut up warnings.
10842         (CONST_DOUBLE_OK_FOR_LETTER_P): Use G for 0.0.
10843         (EXTRA_CONSTRAINT): Use S for non-push memory operand.
10844         * config/m68hc11/m68hc11.c (m68hc11_split_move): Handle setting from
10845         const0 if scratch register was not allocated.
10846         (m68hc11_reload_operands, m68hc11_gen_lowpart, m68hc11_gen_highpart,
10847         m68hc11_z_replacement): Replace gen_rtx (CONST_INT, VOIDmode, ...)
10848         with GEN_INT (...).
10849         (m68hc11_reorg): Compute BLOCK_FOR_INSN before reload_cse_regs.
10850         * config/m68hc11/m68hc11.md: Replace gen_rtx (CONST_INT, VOIDmode, ...)
10851         with GEN_INT (...) everywhere.  Remove constraints in define_split
10852         patterns.
10853         (movdi_internal, movdf_internal, movsi_internal, movsf_internal): Don't
10854         require scratch register for setting 0 into regs/non-pushable memory.
10856 2002-03-22  Alexandre Oliva  <aoliva@redhat.com>
10858         * config/mips/mips.h (MASK_RETURN_ADDR): Define.
10859         (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define.
10861 2002-03-22  Phil Edwards  <pme@gcc.gnu.org>
10863         * cpplib.h (struct cpp_options):  New member, warn_endif_labels.
10864         * cppinit.c (cpp_create_reader):  On by default.
10865         (cpp_handle_option):  Handle -W[no-]endif-labels.
10866         (cpp_post_options):  Also enable if -pedantic.
10867         * cpplib.c (do_else):  Use it.
10868         (do_endif):  Likewise.
10869         * doc/cppopts.texi:  Document new option.
10870         * doc/invoke.texi:  Document new option.
10872 2002-03-22  Lars Brinkhoff  <lars@nocrew.org>
10874         * config/i386/i386.c, config/i386/i386.md: Change all occurences
10875         of GEN_INT (trunc_int_for_mode (...)) to gen_int_mode (...).
10877 2002-03-22  Alexandre Oliva  <aoliva@redhat.com>
10879         * flow.c (calculate_global_regs_live): Clear aux fields of
10880         ENTRY and EXIT.
10882 2002-03-22  Jakub Jelinek  <jakub@redhat.com>
10884         * config/v850/v850.c (v850_reorg): Only call alter_subreg on
10885         REG or MEM subregs, pass rtx * instead of rtx to it.
10886         * config/i860/i860.c (output_delayed_branch, output_delay_insn): Pass
10887         rtx * instead of rtx to alter_subreg.
10888         * config/m32r/m32r.c (gen_split_move_double): Likewise.
10889         * config/pj/pj.c (pj_output_rval): Likewise.
10891 2002-03-22  Richard Henderson  <rth@redhat.com>
10893         PR target/3177
10894         * config/ia64/ia64.h (CUMULATIVE_ARGS): Add int_regs.
10895         (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Update.
10896         * config/ia64/ia64.c (ia64_function_arg_advance): Set int_regs.
10897         (ia64_expand_prologue): Look at int_regs, not words, for number
10898         of incomming int regs.
10900 2002-03-22  Andrew MacLeod  <amacleod@redhat.com>
10902         * expr.c (expand_expr): A RESULT_DECL is part of a call.
10904 Fri Mar 22 16:30:42 CET 2002  Jan Hubicka  <jh@suse.cz>
10906         * toplev.c (flag_loop_optimize, flag_crossjumping):
10907         New static variables.
10908         (rest_of_compilation): Conditionalize crossjumping and
10909         loop optimizer.
10910         (parse_options_and_default_flags): Default loop_optimize and
10911         crossjumping.
10912         (lang_independent_options): Add -fcrossjumping and -floop-optimize
10913         * invoke.texi (crossjumping, loop-optimize): Document.
10915 2002-03-22  Richard Sandiford  <rsandifo@redhat.com>
10917         * real.c (eiisneg): Move outside #ifdef NANS.
10919 Fri Mar 22 12:08:36 CET 2002  Jan Hubicka  <jh@suse.cz>
10921         * cfgcleanup.c (outgoing_edges_math): Fix condition; relax
10922         frequencies match; avoid match on different loop depths.
10923         (try_crossjump_to_bb): Kill tests that no longer brings time
10924         savings.
10925         * cfgrtl.c (force_nonfallthru_and_redirect): Fix loop_depth
10926         updating code.
10927         (split_edge): Likewise.
10929         * flow.c (update_life_info_in_dirty_blocks): Fix uninitialized
10930         variable.
10932         * Makefile.in (cfgrtl): Add insn-config.h depenendency.
10933         * cfgrtl.c: Include insn-config.h
10934         (split_block) Dirtify block in presence of conditional execution
10936 2002-03-22  Richard Sandiford  <rsandifo@redhat.com>
10938         * config/mips/abi64.h (SETUP_INCOMING_VARARGS): Undefine.
10939         * config/mips/mips-protos.h (mips_setup_incoming_varargs): Declare.
10940         (function_arg): Constify CUMULATIVE_ARGS.
10941         (function_arg_partial_nregs, function_arg_pass_by_reference): Likewise.
10942         * config/mips/mips.h (UNITS_PER_FPVALUE): Zero when TARGET_SOFT_FLOAT.
10943         (UNITS_PER_DOUBLE): New macro.
10944         (SETUP_INCOMING_VARARGS): Define.  Use mips_setup_incoming_varargs.
10945         (CUMULATIVE_ARGS): Reformat.  Remove num_adjusts workaround and
10946         last_arg_fp field.  Replace arg_words and fp_arg_words with gp_regs,
10947         fp_regs and stack_words.
10948         (EABI_FLOAT_VARARGS_P): New macro.
10949         * config/mips/mips.c (struct mips_arg_info): New.
10950         (mips_arg_info): New function.
10951         (function_arg_advance): Use it.  Add adjustment instructions here
10952         rather than in function_arg.
10953         (function_arg): Constify CUMULATIVE_ARGS.  Use mips_arg_info.  Check
10954         for VOIDmode at the beginning of the function.
10955         (function_partial_nregs): Constify CUMULATIVE_ARGS.  Use mips_arg_info.
10956         (function_arg_pass_by_reference): Likewise.
10957         (mips_setup_incoming_varags): New, largely based on old abi64.h code.
10958         (mips_build_va_list): Test EABI_FLOAT_VARARGS_P.
10959         (mips_va_start): Likewise.  Use the new stack_words field of
10960         CUMULATIVE_ARGS to set up overflow area.  Reformat.
10961         (mips_va_arg): Test EABI_FLOAT_VARARGS_P.  Unify EABI handling of
10962         doubles and other types, aligning the overflow pointer for non-doubles
10963         too.  Remove some code duplication.  Replace hard-coded constants.
10965 2002-03-22  Richard Sandiford  <rsandifo@redhat.com>
10967         * config/mips/mips.h (FUNCTION_ARG_REGNO_P): Simplify.
10968         (CLASS_UNITS): Undefine.
10969         (CLASS_MAX_NREGS): Use FP_INC.
10970         * config/mips/mips.c (compute_frame_size): Likewise.
10971         (override_options): Use FP_INC and UNITS_PER_FPVALUE.
10973 2002-03-22  Neil Booth  <neil@daikokuya.demon.co.uk>
10975         * cpplex.c (parse_identifier_slow): Rename parse_slow, adjust
10976         prototype, and handle lexing numbers and identifiers.
10977         (parse_identifier): Update to new form of parse_slow.
10978         (parse_number): Fast path only, use parse_slow otherwise.
10979         (_cpp_lex_direct): Update calls to parse_number.
10981 2002-03-21  DJ Delorie  <dj@redhat.com>
10983         * bb-reorder.c (make_reorder_chain_1): Protect against
10984         when redundant edges are omitted.
10985         * predict.c (dump_prediction): Likewise.
10987 2002-03-21  Richard Henderson  <rth@redhat.com>
10989         PR target/5996
10990         * fixinc/inclhack.def (solaris_stdio_tag): New.
10991         * fixinc/fixincl.x: Regenerate.
10993 2002-03-21  Eric Botcazou <ebotcazou@multimania.com>
10995         PR c/5597
10996         * c-typeck.c (process_init_element): Flag non-static
10997         initialization of a flexible array member as illegal.
10999 2002-03-22  Alan Modra  <amodra@bigpond.net.au>
11001         * config/rs6000/t-linux64: New.
11002         * config.gcc (powerpc64-*-linux* <tmake_file>): Drop t-ppcos and
11003         t-ppccomm.  Use t-rs6000 and t-linux64.
11004         (powerpc64-*-gnu* <tmake_file>): Likewise.
11005         * mklibgcc.in (SHLIB_MKMAP_OPTS): New variable.
11006         * mkmap-symver.awk (dotsyms): If set, output .foo as well as foo.
11007         * Makefile.in (SHLIB_MKMAP_OPTS): Pass to mklibgcc.
11009 2002-03-21  Aldy Hernandez  <aldyh@redhat.com>
11011         * langhooks.c (lhd_tree_inlining_cannot_inline_tree_fn): Check
11012         flag_really_no_inline instead of optimize == 0.
11014         * c-objc-common.c (c_cannot_inline_tree_fn): Same.
11016         * cp/tree.c (cp_cannot_inline_tree_fn): Same.
11018         * flags.h (flag_really_no_inline): New.
11020         * c-common.c (c_common_post_options): Initialize
11021         flag_really_no_inline.
11023         * toplev.c (flag_really_no_inline): New.
11025 2002-03-21  Jakub Jelinek  <jakub@redhat.com>
11027         * config/avr/avr.md (length): Fix length computation for
11028         conditional branches.
11030 2002-03-21  Neil Booth  <neil@daikokuya.demon.co.uk>
11032         * Makefile.in (fold-const.o, stor-layout.o, stmt.o,
11033         sdbout.o, profile.o): Update.
11034         * c-common.c (c_common_nodes_and_builtins): Use pushdecl
11035         langhook.
11036         * c-common.h (gettags): Move here from tree.h.
11037         * c-tree.h (pushdecl, pushlevel, poplevel, set_block,
11038         insert_block, getdecls, kept_level_p, global_bindings_p): New.
11039         * dbxout.c (dbxout_init): Use getdecls langhook.
11040         * expr.c (expand_expr): Use insert_block langhook.
11041         * fold-const.c: Include langhooks.h.
11042         (fold_range_test, fold_binary_op_with_conditional_arg,
11043         fold): Use global_bindings_p langhook.
11044         * integrate.c (expand_inline_function): Use insert_block langhook.
11045         * langhooks-def.h (LANG_HOOKS_DECLS, LANG_HOOKS_PUSHLEVEL,
11046         LANG_HOOKS_POPLEVEL, LANG_HOOKS_GLOBAL_BINDINGS_P,
11047         LANG_HOOKS_INSERT_BLOCK, LANG_HOOKS_SET_BLOCK, LANG_HOOKS_PUSHDECL,
11048         LANG_HOOKS_GETDECLS): New.
11049         (LANG_HOOKS_INITIALIZER): Update.
11050         * langhooks.c (lhd_clear_binding_stack): Use global_bindings_p
11051         langhook.
11052         * langhooks.h (struct lang_hooks_for_decls): New.
11053         (struct lang_hooks): Update.
11054         * profile.c: Include langhooks.h.
11055         (output_func_start_profiler): Use new langhooks.
11056         * sdbout.c: Include langhooks.h.
11057         (sdbout_init, sdbout_finish): Use getdecls langhook.
11058         * stmt.c: Include langhooks.h.
11059         (expand_fixup, fixup_gotos): Use new langhooks.
11060         * stor-layout.c: Include langhooks.h.
11061         (variable_size): Use global_bindings_p langhook.
11062         * toplev.c (compile_file): Use getdecls langhook.
11063         * tree-inline.c (remap_block): Use insert_block langhook.
11064         * tree.h (pushdecl, pushlevel, poplevel, set_block, gettags,
11065         insert_block, getdecls, kept_level_p, global_bindings_p): Remove.
11067 2002-03-21  Richard Henderson  <rth@redhat.com>
11069         * config/rs6000/rs6000.c (rs6000_select_rtx_section): Put symbolic
11070         constants in .data when -fpic.
11072 2002-03-21  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11074         * doc/contrib.texi (Contributors): Use GNU/Linux instead of Linux
11075         where appropriate.
11077 2002-03-21  Tom Tromey  <tromey@redhat.com>
11079         * config/i386/sol2.h (ASM_QUAD): Undef.  Fixes PR bootstrap/5948.
11081 Thu Mar 21 09:50:48 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11083         * config/ia64/ia64.c (hfa_element_mode, case ARRAY_TYPE): Recurse.
11085         * expr.c (emit_group_store): Don't copy const0_rtx to a CONCAT.
11087 2002-03-21  Eric Botcazou <ebotcazou@multimania.com>
11088             Richard Henderson  <rth@redhat.com>
11090         PR c/5354
11091         * c-common.c (c_expand_expr): Preserve result of a statement
11092         expression if needed.
11094 2002-03-21  Jakub Jelinek  <jakub@redhat.com>
11096         PR bootstrap/4195
11097         * genrecog.c (maybe_both_true_mode): Remove.
11098         (maybe_both_true_2, write_switch): Revert 2001-07-17 changes.
11099         * machmode.def (Pmode): Likewise.
11101 Thu Mar 21 01:55:06 EST 2002  John Wehle  (john@feith.com)
11103         * alias.c: (nonlocal_mentioned_p): Use for_each_rtx.
11104         (nonlocal_mentioned_p_1): New function.
11105         (nonlocal_referenced_p, nonlocal_referenced_p_1): Likewise.
11106         (nonlocal_set_p, nonlocal_set_p_1): Likewise.
11107         (mark_constant_function): Recognize pure functions.
11108         * rtl.h (global_reg_mentioned_p): New prototype.
11109         * rtlanal.c (global_reg_mentioned_p,
11110         global_reg_mentioned_p_1): New function.
11112 2002-03-21  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
11114         * fixinc/inclhack.def (alpha_assert): Fix assert macro in Tru64
11115         UNIX assert.h.
11116         * fixinc/fixincl.x: Regenerate.
11118 2002-03-20  Jason Merrill  <jason@redhat.com>
11120         * config/i386/cygwin.h (DWARF2_UNWIND_INFO): Define to 0.
11122 2002-03-20  Michael Meissner  <meissner@redhat.com>
11124         * doc/invoke.texi (Optimize Options): Document that -O2 sets
11125         -fstrict-aliasing.
11127 2002-03-20  Bob Wilson  <bob.wilson@acm.org>
11129         * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Emit a
11130         ".literal_position" directive before the constant pool.
11132 2002-03-20  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
11134         * doc/contrib.texi (Contributors): Update Geoffrey Keating.
11135         Add Craig Rodrigues.
11136         Add Brad Lucier to testers.
11138 2002-03-20  Jakub Jelinek  <jakub@redhat.com>
11140         PR target/4792
11141         * config/arc/arc.md (movsicc, movdicc, movsfcc, movdfcc): Add mode
11142         to if_then_else.
11143         (movsicc_insn, movdicc_insn, movsfcc_insn, movdfcc_insn): Likewise.
11144         * config/arc/arc.c (arc_final_prescan_insn): Use extract_insn_cached
11145         instead of insn_extract.
11147 2002-03-20  Jakub Jelinek  <jakub@redhat.com>
11149         PR bootstrap/4192
11150         * config/fr30/fr30.md (jump): Remove clobber of fixed register.
11152         * genemit.c (output_added_clobbers_hard_reg_p): Only output return
11153         stmt if some case has been output.
11155 2002-03-20  Jakub Jelinek  <jakub@redhat.com>
11157         PR c/5972
11158         * config/i386/i386.md (movdicc_c_rex64, movsicc_noc, movhicc_noc,
11159         movsfcc_1, movdfcc_1): Add %O2.
11160         * config/i386/i386.c (print_operand): Handle %ON.
11161         Print . before float condition codes in Sun as cmov syntax.
11162         * config/i386/sol2.h (CMOV_SUN_AS_SYNTAX): Define for Sun as.
11163         * config.gcc (i[34567]86-*-solaris2*): Remove comment which is
11164         no longer true.
11166 2002-03-20  Philip Blundell  <pb@nexus.co.uk>
11168         * config/arm/arm.c (arm_output_epilogue): Don't generate separate
11169         return instruction if PC was popped.
11171 2002-03-20  Bob Wilson  <bob.wilson@acm.org>
11173         * config/xtensa/xtensa.md: Remove unused type attributes.
11174         (adddi_carry, subddi_carry): Change type attribute to "multi".
11176 2002-03-19  Dale Johannesen  <dalej@apple.com>
11178         PR optimization/5999, middle-end/5731
11179         * expr.c (expand_expr) [RDIV_EXPR]: Only convert real divisions into
11180         multiplications by reciprocals.
11182 2002-03-20  Neil Booth  <neil@daikokuya.demon.co.uk>
11184         * Makefile.in: Update.
11185         * c-common.c: Include langhooks.h.
11186         (inline_forbidden_p): Use new hook.
11187         * diagnostic.c: Include langhooks.h.
11188         (format_with_decl, announce_function,
11189         default_print_error_function): Use new hook.
11190         * dwarf2out.c (dwarf2_name): Use new hook.
11191         * function.c: Include langhooks.h.
11192         (init_function_start): Use new hook.
11193         * langhooks-def.h (lhd_decl_printable_name): New.
11194         (LANGHOOKS_DECL_PRINTABLE_NAME): New.
11195         (LANGHOOKS_INITIALIZER): Update.
11196         * langhooks.c (lhd_decl_printable_name): New.
11197         * langhooks.h (struct lang_hooks): New hook.
11198         * toplev.c (decl_name, decl_printable_name): Remove.
11199         (open_dump_file): Use new hook.
11200         (process_options): Remove old hook.
11201         * tree.h (decl_printable_name): Remove.
11202 objc:
11203         * objc-act.c (objc_init): Remove old hook.
11204         (objc_printable_name): Export.
11205         * objc-act.h (objc_printable_name): New.
11206         * objc-lang.c (LANG_HOOKS_DECL_PRINTABLE_NAME): Redefine.
11208 2002-03-19  Jim Blandy  <jimb@redhat.com>
11210         * c-lex.c (cb_file_change): Pass the #inclusion's line number to
11211         the start_source_file debug hook, not the current line number.
11213 2002-03-19  Richard Henderson  <rth@redhat.com>
11215         * flow.c (EH_USES): Provide default.
11216         (calculate_global_regs_live): Use it for EH edges and noreturn calls.
11217         * doc/tm.texi (EH_USES): New.
11219         * config/ia64/ia64.c (ia64_eh_uses): New.
11220         * config/ia64/ia64-protos.h: Update.
11221         * config/ia64/ia64.h (EH_USES): New.
11223 2002-03-19  Richard Henderson  <rth@redhat.com>
11225         * varasm.c (output_constant_def): Fix stupid typo.
11227 2002-03-19  Richard Henderson  <rth@redhat.com>
11229         PR 5879
11230         * except.c (current_function_has_exception_handlers): New.
11231         * except.h: Declare it.
11232         * sibcall.c (optimize_sibling_and_tail_recursive_call): Use it.
11233         Combine tests that disable all sibcalls for the function.
11235 2002-03-19  Olivier Hainque  <hainque@act-europe.fr>
11237         * varasm.c (output_constant_def): Don't call ENCODE_SECTION_INFO
11238         for INTEGER_CST.
11240 2002-03-19  Richard Henderson  <rth@redhat.com>
11242         PR 5977, 5991
11243         * config/ia64/ia64.c: Revert 2002-03-01 patch.
11244         * config/ia64/ia64.h (INIT_EXPANDERS): New.
11246 2002-03-19  Jim Blandy  <jimb@redhat.com>
11248         * cppmacro.c (cpp_macro_definition): Emit a space after the macro
11249         name, even if the replacement list contains no tokens, as required
11250         by Dwarf.
11252 2002-03-19  Jason Merrill  <jason@redhat.com>
11254         * varasm.c (globalize_decl): Get the name from the RTL, not
11255         DECL_ASSEMBLER_NAME.
11257         * Makefile.in (LIBGCC2_DEBUG_CFLAGS): Set to -g.
11259 2002-03-19  Bob Wilson  <bob.wilson@acm.org>
11261         * config/xtensa/xtensa.md (adddi3, adddi_carry, subdi3,
11262         subdi_carry): Define.
11264 2002-03-19  David Edelsohn  <edelsohn@gnu.org>
11266         * config/rs6000/rs6000.c (rs6000_override_options): Only warn
11267         about -fpic/-fPIC if extra_warnings set.
11269 2002-03-19  David Edelsohn  <edelsohn@gnu.org>
11271         * expr.c (expand_expr): Sign-extend CONST_INT generated from
11272         TREE_STRING_POINTER.
11273         * fold-const.c (fold): Delete #if 0 ARRAY_REF case.
11275 Tue Mar 19 14:12:32 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11277         * config/sparc/sparc.h (CAN_ELMINIATE): Can only eliminate FP
11278         in favor of SP if FRAME_POINTER_REQUIRED is false.
11280 2002-03-19  Lars Brinkhoff  <lars@nocrew.org>
11282         * emit-rtl.c (gen_int_mode): New function.
11283         * rtl.h: Prototype for it.
11284         * combine.c (make_extraction, simplify_comparison), expmed.c
11285         (store_bit_field, expand_mult_highpart, expand_divmod), expr.c
11286         (convert_modes, store_field), optabs.c (expand_fix),
11287         simplify-rtx.c (neg_const_int, simplify_unary_real),
11289         * config/rs6000/rs6000.c, config/rs6000/rs6000.md:
11290         Use it instead of GEN_INT (trunc_int_for_mode (...)).
11292 2002-03-19  Jakub Jelinek  <jakub@redhat.com>
11294         PR c/5656
11295         * langhooks.h (struct lang_hooks_for_tree_inlining): Add
11296         convert_parm_for_inlining.
11297         * c-lang.c (LANG_HOOKS_TREE_INLINING_CONVERT_PARM_FOR_INLINING):
11298         Define.
11299         * langhooks-def.h: Likewise.
11300         * objc/objc-lang.c: Likewise.
11301         * langhooks.c (lhd_tree_inlining_convert_parm_for_inlining): New
11302         function.
11303         * tree-inline.c (initialize_inlined_parameters):
11304         Call convert_parm_for_inlining lang hook if needed.
11305         * c-typeck.c (c_convert_parm_for_inlining): New function.
11306         * c-tree.h (c_convert_parm_for_inlining): Add prototype.
11308 2002-03-18  Mark Mitchell  <mark@codesourcery.com>
11310         * calls.c (precompute_arguments): Do not assume that temporaries
11311         can be destroyed after expanding the argument.
11312         (expand_call): Likewise.
11314 2002-03-15  Eric Christopher  <echristo@redhat.com>
11316         * config/mips/mips.md (movdf_internal2): Add two new move constraints.
11317         Fix register preference on last change.
11318         * config/mips/mips.c (mips_return_in_memory): New function.
11319         * config/mips/mips.h (RETURN_IN_MEMORY): Use.
11320         * config/mips/mips-protos.h: Declare.
11321         * config/mips/abi64.h (RETURN_IN_MEMORY): Remove. Add to above.
11322         * config/mips/elf64.h: Add #ifndef/#endif brackets around defaults.
11324 2002-03-18  Alexandre Oliva  <aoliva@redhat.com>
11326         * config/mips/mips.md (andsi3) [TARGET_MIPS16]: Force operand 1 to
11327         a register too.
11328         (anddi3, iorsi3): Likewise.
11330         * config/mips/mips.h (ENCODE_SECTION_INFO) [TARGET_MIPS16]: Don't
11331         use %gprel for symbols that are going to be placed in linkonce
11332         sections.
11334         * config/mips/mips.h (ELIMINABLE_REGS): Can't eliminate
11335         RETURN_ADDRESS_POINTER_REGNUM to $ra.
11336         (CAN_ELIMINATE): Only eliminate it to $sp if a frame pointer is
11337         not needed.  Disregard leaf_function_p().
11338         (INITIAL_ELIMINATION_OFFSET): Adjust for elimination of rap to
11339         mips16 frame pointer.
11340         * config/mips/mips.md (store ra): Only to small SP offsets.
11341         2001-08-22  Graham Stott  <grahams@redhat.com>
11342         * config/mips/mips.h (RETURN_ADDR_RTX): For a leaf function
11343         return a REG rtx for the return address register.
11345 2002-03-18  Bob Wilson  <bob.wilson@acm.org>
11347         * config/xtensa/xtensa.h (GO_IF_MODE_DEPENDENT_ADDRESS): Treat
11348         constant-pool addresses as "mode-dependent".
11349         (GO_IF_LEGITIMATE_ADDRESS): Rename macro arguments.
11351 2002-03-18  Jakub Jelinek  <jakub@redhat.com>
11353         PR target/5740
11354         * expr.c (emit_group_load): Use extract_bit_field if
11355         needed for CONCAT arguments.
11357 2002-03-18  Richard Earnshaw  <rearnsha@arm.com>
11359         PR target/4863
11360         * arm.md (tablejump): Make this a define_expand.  For PIC add the
11361         offset to the base of the table.
11362         (thumb_tablejump): Matcher for Thumb tablejump insn.
11363         * config/arm/aout.h (ASM_OUTPUT_ADDR_DIFF_ELT): Output thumb entries
11364         as the difference of two labels.
11365         * config/arm/aof.h (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
11366         * config/arm/elf.h (JUMP_TABLES_IN_TEXT_SECTION): Only put ARM jump
11367         tables in the code.
11368         * config/arm/coff.h (JUMP_TABLES_IN_TEXT_SECTION): Likewise.
11369         * arm.c (get_jump_table_size): If the table is not in the text
11370         section, return zero.
11372 2002-03-18  Bernd Schmidt  <bernds@redhat.com>
11374         * config/arm/arm.c (arm_gen_movstrqi): Use gen_lowpart instead
11375         of gen_rtx_SUBREG.
11376         (arm_reload_out_hi): Use gen_lowpart instead of
11377         gen_rtx_SUBREG to access QImode components.
11378         * config/arm/arm.md: Disable zero_extend split for QImode
11379         subregs in BIG_ENDIAN mode.
11380         (storehi_bigend): Match use of least significant byte.
11381         (storeinthi): Remove extraneous SUBREG.
11382         Add missing construction of operands[2].
11383         (movhi): Use gen_lowpart in place of gen_rtx_SUBREG.
11384         (movqi): Use gen_lowpart in place of gen_rtx_SUBREG.
11385         Replace gen_rtx (SUBREG) with gen_rtx_SUBREG.
11387 2002-03-18  Aldy Hernandez  <aldyh@redhat.com>
11389         * config/rs6000/rs6000.h (PREDICATE_CODES): Add PARALLEL to
11390         any_operand.
11392 2002-03-17  Richard Henderson  <rth@redhat.com>
11394         * config/alpha/alpha.c (alpha_emit_set_const_1): Build add insns
11395         explicitly.
11397 2002-03-17  Hans-Peter Nilsson  <hp@bitrange.com>
11399         * config/mmix/mmix.md ("fixuns_truncdfdi2"): Use (unsigned_fix:DI
11400         (unsigned_fix:DF op1)), not (unsigned_fix:DI (fix:DF op1)).
11402 2002-03-17  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11404         * ifcvt.c (dead_or_predicable): Fix uninitialized variable.
11406         * predict.c (estimate_bb_frequencies): Delete unused variables.
11408 2002-03-17  Richard Henderson  <rth@redhat.com>
11410         * config/ia64/ia64.c (ia64_attribute_table): Move before
11411         targetm definition.  Make static.
11413 2002-03-17  Neil Booth  <neil@daikokuya.demon.co.uk>
11415         * c-common.h (yyparse, c_common_parse_file): New.
11416         * c-lang.c: Include c-common.h.
11417         (LANG_HOOKS_PARSE_FILE): Redefine.
11418         * c-lex.c: Include c-common.h.
11419         (yyparse): Rename c_common_parse_file.  Call yyparse.
11420         * c-parse.in (yyparse): Remove macro.
11421         * c-tree.h (yyparse_1): Remove.
11422         * langhooks-def.h (LANG_HOOKS_PARSE_FILE): New.
11423         (LANG_HOOKS_INITIALIZER): Update.
11424         * langhooks.h (struct lang_hoooks): New hook parse_file.
11425         * toplev.c (compile_file): Use parse_file hook.
11426         * tree.h (yyparse): Remove.
11427         * objc/objc-lang.c (LANG_HOOKS_PARSE_FILE): Redefine.
11429 2002-03-17  Hans-Peter Nilsson  <hp@bitrange.com>
11431         * config/mmix/mmix.md ("truncdfsf2"): Correct operator is
11432         float_truncate, not fix.
11433         ("*truncdfsf2_real"): Ditto.
11434         ("*nonlocal_goto_receiver_expanded"): Fix output template formatting.
11436         * config/mmix/mmix.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Don't define.
11438 2002-03-16  Alexandre Oliva  <aoliva@redhat.com>
11440         * config/mips/mips.h (CAN_ELIMINATE): Don't eliminate rap to $fp
11441         (s8), but rather HARD_FRAME_POINTER_REGNUM.  Add parentheses
11442         where appropriate.  Make the second reference to
11443         leaf_function_p a function call, as intended.  Reindented.
11445         * config/mips/mips.h (ISA_HAS_COND_TRAP): Not available on MIPS16.
11446         * config/mips/mips.md (trap) [TARGET_MIPS16]: Emit `break 0'.
11448         * config/mips/mips.md (addsi3, adddi3): Use scratch register to
11449         add register to non-constant into sp.
11451         * config/mips/mips-protos.h (embedded_pic_fnaddr_reg): New.
11452         * config/mips/mips.h (embedded_pic_fnaddr_rtx): Lose.
11453         (mips16_gp_pseudo_rtx): Lose.
11454         (INIT_EXPANDERS): Deleted.
11455         * config/mips/mips.c (mips_init_machine_status): New.
11456         (mips_free_machine_status): New.
11457         (mips_mark_machine_status): New.
11458         (override_options): Set them.
11459         (embedded_pic_fnaddr_rtx, mips16_gp_pseudo_rtx): Moved to...
11460         (struct machine_function): ... new.  Replaced all references.
11461         (mips_add_gc_roots): Don't mark them.
11462         (embedded_pic_fnaddr_reg): New, extracted from...
11463         (embedded_pic_offset): ... here.
11464         * config/mips/mips.md (movdi): Call embedded_pic_fnaddr_reg.
11465         (movsi): Likewise.
11467 2002-03-16  Neil Booth  <neil@daikokuya.demon.co.uk>
11469         * cppinit.c: Revert -MD removal.
11471 2002-03-16  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11473         * config/m68hc11/m68hc11.c (m68hc11_override_options): Don't use
11474         soft registers by default for 68HC12.
11475         (m68hc11_conditional_register_usage): Don't use Z register for 68HC12
11476         when compiling with -fomit-frame-pointer.
11477         (expand_prologue): Use push/pop to allocate 4-bytes of locals on 68HC12.
11478         (expand_epilogue): Likewise.
11479         (m68hc11_gen_rotate): Use exg when rotating by 8.
11481 2002-03-16  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11483         * config/m68hc11/m68hc11-protos.h (ix_reg): Declare.
11484         * config/m68hc11/m68hc11.md ("addsi3"): Use general_operand for sources.
11485         (splits): Remove unused add splits.
11486         ("*addhi3_68hc12"): Tune constraints.
11487         ("addhi_sp"): Try to use X instead of Y in all cases and if the
11488         constant fits in 8-bits and D is dead use abx/aby instructions.
11489         ("*addhi3"): Remove extern declaration of ix_reg.
11490         ("*subsi3"): Optimize and provide new split.
11491         ("subhi3"): Cleanup.
11492         ("*subhi3_sp"): Avoid saving X if we know it is dead.
11493         (arith splits): For 68hc12 save the address register on the stack
11494         and do the arithmetic operation with a pop.
11496 2002-03-16  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11498         * config/m68hc11/m68hc11.md ("*movqi_68hc12"): Fix constraints, avoid
11499         allocating QImode in address registers.
11500         ("*movqi_m68hc11"): Likewise.
11502 Sat Mar 16 12:57:28 CET 2002  Jan HUbicka  <jh@suse.cz>
11504         * cfgcleanup.c (cleanup_cfg): Fix updating of liveness.
11506 2002-03-16  Neil Booth  <neil@daikokuya.demon.co.uk>
11508         * cppinit.c (print_help): Display -MD and -MMD.
11509         Don't display usage string.  Update assertion syntax and
11510         typo.
11511         (COMMAND_LINE_OPTIONS): Remove OPT_MD, OPT_MMD.
11512         (cpp_handle_option): Update.
11514 2002-03-15  Chris Demetriou  <cgd@broadcom.com>
11516         * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Provide an
11517         MEABI case for each definition of SUBTARGET_CPP_SIZE_SPEC,
11518         and define it so that regardless of target CPU size,
11519         __SIZE_TYPE__ and __PTRDIFF_TYPE__ are defined in terms
11520         of "int" rather than "long."
11522 2002-03-15  Richard Henderson  <rth@redhat.com>
11524         * config/alpha/alpha.c (alpha_va_arg): Manipulate the type
11525         size as a tree.
11527 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11529         * config/m68hc11/m68hc11.md ("tstqi_1"): Try to use ldab instead of tst.
11530         ("tstqi" split): Avoid using memory for tstqi on address register.
11531         (splits): Remove constraints.
11532         ("cmphi_1_hc12"): New from "cmphi_1" and tuned for 68HC12.
11533         ("cmpdf", "cmpsf"): Remove since not used.
11534         ("*tbeq", "*tbne", "*tbeq8", "*tbne8"): Also look in cc_status.value2.
11535         (peephole2): New peepholes to optimize tstqi and pre inc/dec addressing.
11537 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11539         * config/m68hc11/m68hc11.md ("negsi2"): Optimize inline case.
11540         ("neghi2"): Tighten constraints.
11541         ("one_cmplsi2"): Optimize and simplify split.
11542         * config/m68hc11/larith.asm (__negsi2): Likewise for library.
11544 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11546         * config/m68hc11/m68hc11.md ("logicalsi3_zexthi"): Fix constraints
11547         and split of AND operation to clear the upper bits.
11548         ("*logicalsi3_zextqi"): Likewise.
11549         ("*logicallhi3_zexthi_ashift8"): Likewise.
11550         ("*logicalsi3_silshr16"): Likewise.
11551         ("logicalsi3_silshl16"): Likewise.
11552         ("anddi3", "iordi3", "xordi3" splits): Remove constraints.
11554 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11556         * config/m68hc11/m68hc11.c (m68hc11_symbolic_p): New function.
11557         (m68hc11_indirect_p): New function.
11558         (m68hc11_override_options): Must set MASK_NO_DIRECT_MODE for 68HC12.
11559         (m68hc11_gen_highpart): Use TARGET_NO_DIRECT_MODE instead of
11560         TARGET_M6812.
11561         (asm_print_register): Likewise.
11562         * config/m68hc11/m68hc11-protos.h (m68hc11_symbolic_p): Declare.
11563         (m68hc11_indirect_p): Declare.
11564         * config/m68hc11/m68hc11.h (EXTRA_CONSTRAINT): New constraint 'R', 'Q'.
11565         (TARGET_NO_DIRECT_MODE, TARGET_RELAX): New.
11566         (TARGET_SWITCHES): New option -mrelax.
11567         * config/m68hc11/m68hc11.md ("andsi3"): Allow soft register for
11568         destination.
11569         ("iorsi3", "xorsi3"): Likewise.
11570         ("andhi3", "andqi3", "iorhi3", "iorqi3"): Use a define_expand.
11571         ("*andhi3_mem"): New to handle destination in memory with bclr
11572         and a scratch register.
11573         ("*andqi3_mem", "*iorhi3_mem", "*iorqi3_mem"): Likewise.
11574         ("*andhi3_const"): New when operand2 is constant.
11575         ("*andqi3_const", "*iorhi3_const", "*iorqi3_const"): Likewise.
11576         ("*andhi3_gen"): Cleanup of the old "andhi3".
11577         ("*andqi3_gen", "*iorhi3_gen", "*iorqi3_gen"): Likewise.
11578         ("xorqi3"): Update constraints.
11580 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11582         * config/m68hc11/m68hc11.c (m68hc11_small_indexed_indirect_p): Look
11583         for reg_equiv_memory_loc when the operand is a register that does
11584         not get a hard register (stack location).
11585         (tst_operand): After reload, accept all memory operand.
11586         (symbolic_memory_operand): Fix detection of symbolic references.
11587         * config/m68hc11/m68hc11.h (VALID_CONSTANT_OFFSET_P): For 68HC12
11588         accept symbols and any constant.
11590 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11592         * config/m68hc11/m68hc11.c (emit_move_after_reload): Add a REG_INC
11593         note on the insn that sets the soft frame register.
11594         (must_parenthesize): ix and iy are also reserved names.
11595         (print_operand_address): One more place where parenthesis are required
11596         to avoid confusion with register names.
11597         (m68hc11_gen_movhi): Allow push of stack pointer.
11598         (m68hc11_check_z_replacement): Fix handling of parallel with a
11599         clobber.
11600         (m68hc11_z_replacement): Must update the REG_INC notes to tell what
11601         the replacement register is.
11602         * config/m68hc11/m68hc11.h (REG_CLASS_CONTENTS): Switch Z_REGS
11603         and D8_REGS classes.
11604         (MODES_TIEABLE_P): All modes are tieable except QImode.
11606 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11608         * config/m68hc11/larith.asm (___adddi3): Optimize saving of result.
11609         (___subdi3): Likewise.
11610         (__mulsi3, __mulhi32): Avoid using _.tmp scratch location.
11611         (__map_data_section): Optimize 68hc11 case.
11613 2002-03-15  Stephane Carrez  <Stephane.Carrez@worldnet.fr>
11615         * config/m68hc11/m68hc11.c (m6812_cost): Make cost of add higher
11616         than a shift to avoid adding a register with itself.
11617         (m68hc11_memory_move_cost): Take into account NO_REGS.
11618         (m68hc11_register_move_cost): Update and use memory move cost
11619         for soft registers.
11620         (m68hc11_address_cost): Make cost of valid offset not 0 so that
11621         it gives more opportunities to cse to optimize.
11622         * config/m68hc11/m68hc11.h (REGISTER_MOVE_COST): Pass the mode.
11623         * config/m68hc11/m68hc11-protos.h (m68hc11_register_move_cost): Update.
11625 2002-03-15  Mark Mitchell  <mark@codesourcery.com>
11627         * c-common.c (statement_code_p): Handle CLEANUP_STMT.
11628         * c-common.def (CLEANUP_STMT): New tree node.
11629         * c-common.h (CLEANUP_DECL): New macro.
11630         (CLEANUP_EXPR): Likewise.
11631         * c-semantics.c (expand_stmt): Handle CLEANUP_STMT.
11632         * expr.c (expand_expr): Tidy.
11633         * tree-dump.c (dequeue_and_dump): Handle CLEANUP_STMT.
11634         * tree-inline.c (initialize_inlined_parameters): Clean up
11635         new local variables.
11637 2002-03-15  Jakub Jelinek  <jakub@redhat.com>
11639         PR bootstrap/4128
11640         * config/sparc/sparc.c (gen_v9_scc): Move early clobber test
11641         before movrXX only, use reg_overlap_mentioned_p.
11642         Only special case NE if just one insn can be generated.
11644 2002-03-15  Jason Merrill  <jason@redhat.com>
11646         * varasm.c (assemble_variable): Call resolve_unique_section before
11647         checking DECL_SECTION_NAME.  Use zeros for a decl with DECL_INITIAL
11648         of error_mark_node.
11650 2002-03-15  Richard Earnshaw  <rearnsha@arm.com>
11652         PR target/5170
11653         * arm.md (split pattern for thumb shiftable immediates): Add comment
11654         explaining non-obvious test.
11656 2002-03-15  Richard Earnshaw  <rearnsha@arm.com>
11658         PR target/5712
11659         * arm.md (movaddr, movaddr_insn): Delete.
11661 2002-03-15  Jason Merrill  <jason@redhat.com>
11663         * toplev.c (wrapup_global_declarations): Clarify variable handling.
11664         -fkeep-static-consts doesn't apply to comdats.
11666 2002-03-14  Richard Henderson  <rth@redhat.com>
11668         * c-decl.c: Include c-pragma.h.
11669         (start_decl, start_function): Invoke maybe_apply_pragma_weak.
11670         (finish_function): Tidy.
11671         * c-pragma.c: Include c-common.h.
11672         (pending_weaks, apply_pragma_weak, maybe_apply_pragma_weak): New.
11673         (handle_pragma_weak): Use them.
11674         (init_pragma): Register pending_weaks.
11675         * c-pragma.h (maybe_apply_pragma_weak): Declare.
11676         * print-tree.c (print_node): Print DECL_WEAK.
11677         * varasm.c (mark_weak_decls): Remove.
11678         (remove_from_pending_weak_list): Remove.
11679         (add_weak): Remove.
11680         (asm_emit_uninitialised): Call globalize_decl for weak commons.
11681         (weak_decls): Make a tree_list.
11682         (declare_weak): Cons weak_decls directly.
11683         (globalize_decl): Remove weak_decls elements directly.
11684         (weak_finish): Simplify weak_decls walk.  Don't weaken unused
11685         symbols.  Don't pretend to handle aliases.
11686         (init_varasm_once): Update weak_decls registry.
11687         * Makefile.in: Update dependencies.
11689 2002-03-14  Richard Henderson  <rth@redhat.com>
11691         PR target/5312
11692         * config/ia64/ia64.c: Include tm_p.h last.
11693         (gen_nop_type): Remove duplicate definition.
11694         (cycle_end_fill_slots): Set sched_data for second L slot.
11695         (maybe_rotate): Call cycle_end_fill_slots to fill in nop slots.
11696         (nop_cycles_until): Fix typos.
11698 2002-03-15  Jakub Jelinek  <jakub@redhat.com>
11700         PR optimization/5891
11701         * unroll.c (copy_loop_body) [CALL_INSN]: Copy SIBLING_CALL_P flag.
11703 2002-03-14  David Mosberger <davidm@hpl.hp.com>, Hans Boehm <Hans_Boehm@hp.com>
11705         * config/ia64/unwind-ia64.c: Handle copy_state and label_state
11706           descriptors correctly.
11708 2002-03-14  Michael Meissner  <meissner@redhat.com>
11710         * params.def (PARAM_MAX_UNROLLED_INSNS): New macro, default to
11711         100, allowing MAX_UNROLLED_INSNS to be overridden.
11713         * params.h (MAX_UNROLLED_INSNS): Define so it can be overridden by
11714         --param.
11716         * unroll.c (params.h): Include.
11717         (MAX_UNROLLED_INSNS): Delete, now in params.h.
11719         * doc/invoke.texi (--param max-unroll-insns): Document.
11721         * Makefile.in (unroll.o): Add $(PARAMS_H) dependency.
11723 2002-03-14  Richard Earnshaw  <rearnsha@arm.com>
11725         * arm.md: Fix warnings about constraints in peepholes and splits.
11727 2002-03-14  Zack Weinberg  <zack@codesourcery.com>
11729         * cpphash.h (struct lexer_state): Remove line_extension member.
11730         * cpplib.c (dequote_string, do_linemarker): New functions.
11731         (linemarker_dir): New data object.
11732         (DIRECTIVE_TABLE): No longer need to interpret #line in
11733         preprocessed source.  Delete obsolete comment about return
11734         values of handlers.
11735         (end_directive, directive_diagnostics, _cpp_handle_directive):
11736         Don't muck with line_extension.
11737         (directive_diagnostics): No need to issue warnings for
11738         linemarkers here.
11739         (_cpp_handle_directive): Issue warnings for linemarkers here,
11740         when appropriate.  Dispatch linemarkers to do_linemarker, not
11741         do_line.
11742         (do_line): Code to handle linemarkers split out to do_linemarker.
11743         Convert escape sequences in filename argument, both places.
11745         * cppmacro.c (quote_string): Rename cpp_quote_string and
11746         export.  All callers changed.
11747         * cpplib.h (cpp_quote_string): Prototype.
11748         * cppmain.c (print_line): Call cpp_quote_string on to_file
11749         before printing it.
11751         * doc/cpp.texi: Document that escapes are now interpreted in
11752         #line and in linemarkers, and that non-printing characters are
11753         converted to octal escapes when linemarkers are generated.
11755 Thu Mar 14 19:04:29 CET 2002  Jan Hubicka  <jh@suse.cz>
11757         * emit-rtl.c (try_split): Use delete_insns.
11758         * recog.c (split_all_insns): Fix terminating condition.
11760 2002-03-14  Richard Earnshaw  <rearnsha@arm.com>
11761             Jeroen Dobbelaere  <jeroen.dobbelaere@acunia.com>
11763         PR target/5828
11764         * arm.c (arm_output_epilogue): Fix floating-point register save
11765         adjustment when using a frame pointer.
11767 2002-03-14  Richard Sandiford  <rsandifo@redhat.com>
11769         * config/mips/mips.h (FP_INC, UNITS_PER_FPVALUE): New macros.
11770         * config/mips/mips.c (compute_frame_size): Retrofit them here.
11771         (save_restore_insns, mips_expand_epilogue): And here.
11772         (build_mips16_call_stub): And here.
11773         (mips_function_value): Use the new macros to decide whether a single
11774         or complex float can be returned in floating-point registers.  Return
11775         a parallel rtx in the complex case.
11777 Thu Mar 14 11:03:12 CET 2002  Jan Hubicka  <jh@suse.cz>
11779         * toplev.c (rest_of_compilation): Add CLEANUP_UPDATE_LIFE to cfg_cleanup
11780         call after liveness analysis.
11782         * recog.c (split_insn): Use delete_insn_and_edges.
11784         * cfgrtl.c (verify_flow_info): Be permisive about non-any_condjump
11785         instructions to have branch prediction notes.
11786         * ia64reorg.c (ia64_reorg): Do not rebuild CFG.
11788 2002-03-14  Geoffrey Keating  <geoffk@redhat.com>
11790         * configure.in: Don't pass -Wno-long-long to a ADA compiler
11791         that doesn't support it.
11792         * configure: Regenerate.
11794 2002-03-13  Jakub Jelinek  <jakub@redhat.com>
11796         PR target/5626
11797         * config/sparc/sparc.md (normal_branch, inverted_branch,
11798         normal_fp_branch, inverted_fp_branch, normal_fpe_branch,
11799         inverted_fp_branch): Adjust calls to output_cbranch.
11800         Set length attribute.
11801         (normal_int_branch_sp64, inverted_int_branch_sp64): Adjust calls to
11802         output_v9branch.  Set length attribute.
11803         * config/sparc/sparc.c (fcc0_reg_operand, noov_compare64_op): New
11804         predicates.
11805         (noov_compare_op): Handle CCX_NOOVmode the same way as CC_NOOVmode.
11806         (output_cbranch): Likewise.  Handle far branches.
11807         (output_v9branch): Handle far branches.
11808         * config/sparc/sparc-protos.h (output_cbranch, output_v9branch):
11809         Adjust prototypes.
11810         * config/sparc/sparc.h (PREDICATE_CODES): Add fcc0_reg_operand and
11811         noov_compare64_op predicates.
11813 2002-03-13  Jason Merrill  <jason@redhat.com>
11815         * gthr-posix.h (__gthread_active_p): Move __gthread_active_ptr
11816         into the function and constify it.
11817         * gthr-dce.h, gthr-solaris.h: Likewise.
11819 2002-03-13  David Edelsohn  <edelsohn@gnu.org>
11821         * config/rs6000/rs6000.h (PAD_VARARGS_DOWN): Define.
11822         * config/rs6000/rs6000.c (rs6000_va_arg): Use
11823         std_expand_builtin_va_arg if not ABI_V4.
11825 2002-03-13  Jason Merrill  <jason@redhat.com>
11827         * varasm.c (globalize_decl): New fn.
11828         (assemble_start_function): Use it.
11829         (asm_emit_uninitialized): Use it.
11830         (assemble_alias): Use it.
11831         (assemble_variable): Use it.
11833 2002-03-13  Hans-Peter Nilsson  <hp@axis.com>
11835         * config/cris/cris.c (cris_target_asm_function_prologue): Revert
11836         2002-03-12 internal visibility change.
11837         (cris_encode_section_info): Consider MODULE_LOCAL_P when encoding
11838         visibility into SYMBOL_REF_FLAG.
11840 2002-03-13  Ulrich Weigand  <uweigand@de.ibm.com>
11842         * expr.c (expand_expr, case NE_EXPR): Do not call copy_to_reg with
11843         VOIDmode operand.  Add compile-time optimization for constant results.
11845 2002-03-12  Jason Merrill  <jason@redhat.com>
11847         * c-typeck.c (convert_for_assignment): Don't allow conversions
11848         between pointers and references.  Only allow lvalues to convert to
11849         reference.
11851 2002-03-13  Hartmut Penner  <hpenner@de.ibm.com>
11853         * config/s390/s390.h (PROFILE_BEFORE_PROLOGUE): Emit profile code
11854         before prologue, to avoid scheduling problems.
11856 2002-03-13  Jakub Jelinek  <jakub@redhat.com>
11858         * config/sparc/sparc.h (INITIAL_FRAME_POINTER_OFFSET): Remove.
11859         (ELIMINABLE_REGS): Add sfp->sp.
11860         (INITIAL_ELIMINATION_OFFSET): Compute sfp->sp offset too.
11862 2002-03-13  Jakub Jelinek  <jakub@redhat.com>
11864         PR optimization/5892
11865         * config/ia64/ia64.c (rotate_one_bundle): Update current packet.
11867 2002-03-13  Jakub Jelinek  <jakub@redhat.com>
11869         * loop.c (basic_induction_var): Don't call convert_modes if mode
11870         classes are different.
11872 2002-03-12  Richard Henderson  <rth@redhat.com>
11874         PR optimization/5901
11875         * function.c (reposition_prologue_and_epilogue_notes): Position
11876         the markers after/before the last/first insn not deleted.
11878 2002-03-12  Richard Henderson  <rth@redhat.com>
11880         PR optimization/5878
11881         * config/arc/arc.h, config/cris/cris.h, config/i386/i386.h,
11882         config/m68k/m68k.h, config/s390/s390.h, config/sparc/sparc.h
11883         (PIC_OFFSET_TABLE_REGNUM): Conditionalize on flag_pic.
11885         * config/arm/arm.h config/i386/i386.h, config/m68k/m68k.h,
11886         config/sparc/sparc.h (CONDITIONAL_REGISTER_USAGE): Set
11887         PIC_OFFSET_TABLE_REGNUM based on INVALID_REGNUM not flag_pic.
11889         * config/arc/arc.h (CONDITIONAL_REGISTER_USAGE): New.
11890         * config/arm/arm.c (arm_pic_register): Init to INVALID_REGNUM.
11891         (arm_override_options): Set arm_pic_register if TARGET_APCS_STACK
11892         also.  Don't set it if not flag_pic.
11893         * config/i386/i386.c (ix86_save_reg): Trust PIC_OFFSET_TABLE_REGNUM
11894         to be INVALID_REGNUM when not used.
11896 2002-03-13  Aldy Hernandez  <aldyh@redhat.com>
11898         * expmed.c (store_bit_field): Reset alias set for memory.
11899         (extract_bit_field): Same.
11901 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
11903         * c-common.c (c_tree_code_type, c_tree_code_length,
11904         c_tree_code_name, add_c_tree_codes): Delete.
11905         * c-common.h (add_c_tree_codes): Delete.
11906         * c-lang.c (tree_code_type, tree_code_length, tree_code_name):
11907         Define.
11908         * c-objc-common.c (c_objc_common_init): Don't call
11909         add_c_tree_codes, instead set lang_unsafe_for_reeval.
11910         * objc/objc-act.c (objc_tree_code_type, objc_tree_code_length,
11911         objc_tree_code_name, add_objc_tree_codes): Delete.
11912         (objc_init): Don't call add_objc_tree_codes.
11913         * objc/objc-lang.c (tree_code_type, tree_code_length,
11914         tree_code_name): Define.
11915         * toplev.c (lang_independent_init): Don't set
11916         tree_code_length[IDENTIFIER_NODE].
11917         * tree.c (tree_code_type, tree_code_length, tree_code_name):
11918         Delete definitions, moved to language front-ends.
11919         * tree.def (IDENTIFIER_NODE): Hardwire the length.
11920         * tree.h (tree_code_type, tree_code_length, tree_code_name):
11921         Const-ify.
11922         (tree_code_length): Change type to unsigned char.
11924 2002-03-12  Richard Henderson  <rth@redhat.com>
11926         * config/i386/i386.c (ix86_expand_prologue): Revert 2002-03-03
11927         internal visibility change.
11929 2002-03-12  Bob Wilson  <bob.wilson@acm.org>
11931         * config/xtensa/xtensa.c (xtensa_expand_block_move): Use
11932         validize_mem() instead of change_address to avoid clobbering
11933         memory attributes.
11935 2002-03-12  Neil Booth  <neil@daikokuya.demon.co.uk>
11937         * c-lex.h (position_after_whitespace): Remove.
11939 2002-03-12  Jakub Jelinek  <jakub@redhat.com>
11941         * c-lex.c (cb_ident, c_lex): Remove unnecessary cast.
11942         (lex_string): Use unsigned char pointers.
11944 2002-03-12  Ulrich Weigand  <uweigand@de.ibm.com>
11946         * reload1.c (reload): Ignore MEM REG_EQUIV notes if the equivalent
11947         is not a valid memory_operand.
11949 2002-03-12  Bob Wilson  <bob.wilson@acm.org>
11951         * config/xtensa/xtensa-config.h: Define XCHAL_HAVE_LOOPS.
11952         * config/xtensa/lib1funcs.asm: Fix copyright to include
11953         special case for libgcc files.
11954         (__udivsi3): Avoid loop instructions when XCHAL_HAVE_LOOPS is 0.
11955         (__divsi3): Likewise.
11956         (__umodsi3): Likewise.
11957         (__modsi3): Likewise.
11958         * config/xtensa/lib2funcs.S: Fix copyright to include
11959         special case for libgcc files.
11961 2002-03-12  Tom Rix  <trix@redhat.com>
11963         * collect2.c (resolve_lib_name): Move outside of
11964         OBJECT_FORMAT_COFF ifdef.
11965         (ignore_library): Same.
11967 2002-03-12  Bob Wilson  <bob.wilson@acm.org>
11969         * config/xtensa/t-xtensa (CRTSTUFF_T_CFLAGS_S): Define.
11971 2002-03-12  Bob Wilson  <bob.wilson@acm.org>
11973         * config/xtensa/xtensa.h (ASM_OUTPUT_POOL_PROLOGUE): Switch
11974         to function_section before writing out the constant pool.
11976 2002-03-12  David Edelsohn  <edelsohn@gnu.org>
11978         * config/rs6000/rs6000.h (PREDICATE_CODES): Add any_operand and
11979         zero_constant.
11980         * config/rs6000/rs6000.c (easy_fp_constant): Fix formatting.
11982 2002-03-12  Alan Modra  <amodra@bigpond.net.au>
11984         * config/rs6000/rs6000.md (addsi3): Optimize sign extension.
11985         (adddi3): Likewise.
11986         (movdf): Likewise.
11987         (movdi): Likewise.
11988         (cmpsi splitter): Likewise.
11989         (modsi3): Fail if <= 0.
11990         * config/rs6000/rs6000.c (reg_or_add_cint64_operand): Remove
11991         redundant test when HOST_BITS_PER_WIDE_INT != 32.
11992         (reg_or_sub_cint64_operand): Likewise.
11993         (num_insns_constant_wide): Optimize sign extension.
11994         (rs6000_legitimize_address): Likewise.
11996 2002-03-12  Andrew MacLeod  <amacleod@redhat.com>
11998         * config/sparc/linux.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
11999         * config/sparc/linux64.h (HANDLE_PRAGMA_PACK_PUSH_POP): Define.
12001 2002-03-12  Andrew MacLeod  <amacleod@redhat.com>
12003         * config/sparc/sparc.h (RETURN_ADDR_RTX): Include v9 stack bias in
12004         address calculation.
12006 2002-03-12  Ulrich Weigand  <uweigand@de.ibm.com>
12008         * config/s390/s390.md (reload_insi, reload_indi): Change mode of
12009         scratch register to DImode / TImode.
12010         config/s390/s390.c (s390_expand_plus_operand): Make sure scratch
12011         register used does not overlap the target.
12013 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12015         * Makefile.in (debug.o): Depend on debug.h.
12016         * dbxout.c (dbx_debug_hooks, xcoff_debug_hooks): Const-ify.
12017         * debug.c (do_nothing_debug_hooks): Likewise.
12018         * debug.h (debug_hooks, do_nothing_debug_hooks, dbx_debug_hooks,
12019         sdb_debug_hooks, xcoff_debug_hooks, dwarf_debug_hooks,
12020         dwarf2_debug_hooks, vmsdbg_debug_hooks): Likewise.
12021         * dwarf2out.c (dwarf2_debug_hooks): Likewise.
12022         * dwarfout.c (dwarf_debug_hooks): Likewise.
12023         * integrate.c (output_inline_function): Likewise.
12024         * objc/objc-act.c (synth_module_prologue): Likewise.
12025         * sdbout.c (sdb_debug_hooks): Likewise.
12026         * toplev.c (debug_hooks): Likewise.
12027         * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
12029 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12031         * 1750a.h, a29k.h, arc.h, arm.h, c4x.h, clipper.h, cris.h, d30v.h,
12032         dsp16xx.h, fr30.h, h8300.h, i370.h, i386.h, i860.h, i960.h,
12033         m32r.h, m68hc11.h, m68k.h, m88k.h, mcore.h, mmix.h, mn10300.h,
12034         ns32k.h, pa.h, pdp11.h, pj.h, romp.h, s390.h, stormy16.h,
12035         v850.h, vax.h, we32k.h, xtensa.h (POINTER_SIZE): Delete.
12036         * defaults.h (POINTER_SIZE): Define.
12037         * doc/tm.texi (POINTER_SIZE): Document default.
12039 2002-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12041         * mn10200.h (PTRDIFF_TYPE): Change it to a signed type.
12043 2002-03-11  Richard Henderson  <rth@redhat.com>
12045         * toplev.c (rest_of_compilation): Call purge_all_dead_edges
12046         if rebuild_label_notes_after_reload.
12048 2002-03-12  Hans-Peter Nilsson  <hp@axis.com>
12050         * config/cris/cris.c (cris_target_asm_function_prologue):  Do not
12051         emit pic register load if "internal" visibility.
12052         (cris_print_operand): Avoid traditional-warning for 0xffffffff.
12053         (cris_expand_builtin_va_arg): Do all computations on trees.
12055 2002-03-11  Richard Henderson  <rth@redhat.com>
12057         * rtlanal.c: Include recog.h.
12058         (keep_with_call_p): Fix thinko.
12059         * Makefile.in (rtlanal.o): Update dependencies.
12061 2002-03-11  Chris Meyer  <cmeyer@gatan.com>
12063         * genflags.c (gen_insn): Use IS_VSPACE.
12064         * genoutput.c (output_insn_data): Likewise.
12065         (process_template): Likewise.
12067 2002-03-11  Richard Henderson  <rth@redhat.com>
12069         * toplev.c (rest_of_compilation): Don't compile if we've had errors.
12071 2002-03-11  Neil Booth  <neil@daikokuya.demon.co.uk>
12073         * Makefile.in: Update.
12074         * doc/cppenv.texi, cppopts.texi: Split out of cpp.texi and gcc.texi.
12075         Update documentation.
12076         * doc/gcc.texi: Include cppopts.texi and cppenv.texi.
12077         * doc/cpp.texi: Include cppopts.texi and cppenv.texi.
12079 2002-03-11  Zack Weinberg  <zack@codesourcery.com>
12081         * Makefile.in: Give texi2pod its input file as a command line
12082         argument, not on stdin.
12084 2002-03-11  Dan Nicolaescu  <dann@ics.uci.edu>
12085             Daniel Berlin  <dan@dberlin.org>
12087         C++ alias analysis improvement.
12088         * alias.c (record_component_aliases): Record aliases for base
12089         classes too.
12091 2002-03-11  Ulrich Weigand  <uweigand@de.ibm.com>
12093         * config/s390/s390.h (REG_ALLOC_ORDER): Add missing register.
12095 2002-03-11  Douglas B Rupp  <rupp@gnat.com>
12097         * toplev.c (vms_fopen): Remove, not needed.
12099         * vmsdbgout.c (lookup_filename): Adjust creation date for GMT.
12101         * config/alpha/xm-vms.h (__UNIX_FWRITE): Define.
12103         * config/alpha/alpha.c (alpha_sa_size, VMS): Don't reserve space
12104         for FP, already done later.
12106         * toplev.c (debug_args): Add entry for VMS_DEBUG.
12107         * vmsdbgout.c (vmsdbgout_init): Fix typo in call to xmalloc.
12109 2002-03-11  Richard Sandiford  <rsandifo@redhat.com>
12111         * defaults.h (LARGEST_EXPONENT_IS_NORMAL, ROUND_TOWARDS_ZERO): New.
12112         (MODE_HAS_NANS, MODE_HAS_INFINITIES): Evaluate to false if
12113         LARGEST_EXPONENT_IS_NORMAL for the given mode.
12114         (MODE_HAS_SIGN_DEPENDENT_ROUNDING): False when ROUND_TOWARDS_ZERO.
12115         * real.c (eadd1): Make rounding dependent on !ROUND_TOWARDS_ZERO.
12116         (ediv, emul, eldexp, esqrt): Likewise.
12117         (etoe113, etoe64, etoe53, etoe24, etodec, etoibm, etoc4x): Likewise.
12118         (e24toe): Only check NaNs & infinities if !LARGEST_EXPONENT_IS_NORMAL.
12119         (saturate): New function.
12120         (toe53, toe24): Saturate on overflow if LARGEST_EXPONENT_IS_NORMAL.
12121         (make_nan): Use a saturation value instead of a NaN if
12122         LARGEST_EXPONENT_IS_NORMAL.  Warn when this happens.
12123         * fp-bit.c (pack_d): Saturate on NaN, infinite or overflowing
12124         inputs if LARGEST_EXPONENT_IS_NORMAL.  Represent subnormals as
12125         zero if NO_DENORMALS.  Only round to nearest if !ROUND_TOWARDS_ZERO.
12126         (unpack_d): No NaNs or infinities if LARGEST_EXPONENT_IS_NORMAL.
12127         (_fpmul_parts, _fpdiv_parts): Only round to nearest if
12128         !ROUND_TOWARDS_ZERO.
12129         * doc/tm.texi (LARGEST_EXPONENT_IS_NORMAL): Document.
12130         (ROUND_TOWARDS_ZERO): Document.
12132 2002-03-11  Andreas Jaeger  <aj@suse.de>
12134         * cfg.c (dump_flow_info): Remove unused variable.
12136 2002-03-11  Hans-Peter Nilsson  <hp@bitrange.com>
12138         * config/mmix/mmix.c (mmix_expand_builtin_va_arg): Do all
12139         computations on trees.
12141 2002-03-10  Richard Henderson  <rth@redhat.com>
12143         PR 5693:
12144         * reload.c (copy_replacements_1): New.
12145         (copy_replacements): Use it to recurse through the rtx.
12147 2002-03-10  Richard Henderson  <rth@redhat.com>
12149         * loop.c (strength_reduce): Compute number of iterations as
12150         unsigned HOST_WIDE_INT.
12152 2002-03-10  Richard Henderson  <rth@redhat.com>
12154         * sched-rgn.c (add_branch_dependences): Don't allow insns that throw
12155         to move away from the end of the block.
12157 2002-03-10  Neil Booth  <neil@daikokuya.demon.co.uk>
12159         PR preprocessor/5899
12160         * cppinit.c (init_dependency_output): Don't ignore -dM etc.
12162 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12164         * mbchar.c (JIS_state_table, JIS_action_table): Const-ify.
12166         * attribs.c (decl_attributes): Fix signed/unsigned warning.
12168 2002-03-10  Hans-Peter Nilsson  <hp@bitrange.com>
12170         * config/mmix/mmix.c: Improve comments.
12171         (mmix_target_asm_function_prologue): Drop variable
12172         empty_stack_frame.  Don't allocate unused slot above fp.
12173         (mmix_target_asm_function_epilogue): Mirror prologue changes.
12174         * config/mmix/mmix.h (MMIX_GNU_ABI_REG_ALLOC_ORDER): Don't have
12175         brace in first column.
12176         (enum reg_class): Ditto.
12177         (FIRST_PARM_OFFSET): Now 0.
12178         (USER_LABEL_PREFIX): Remove #if 0:d definition.
12180 2002-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12182         * combine.c (make_extraction): Fix error in last change.
12184 2002-03-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12186         * c4x.c (c4x_fp_reglist): Const-ify.
12187         * cris.c (cris_print_operand): Likewise.
12188         * i386.c (ix86_va_arg): Likewise.
12189         * ia64/unwind-ia64.c (unw_decode_table): Likewise.
12190         * m32r.c (m32r_hard_regno_mode_ok): Likewise.
12191         * m32r.h (m32r_hard_regno_mode_ok): Likewise.
12192         * mcore.c (regno_reg_class, mcore_unique_section): Likewise.
12193         * mcore.h (regno_reg_class): Likewise.
12194         * mips.c (gen_int_relational): Likewise.
12195         * ns32k.c (ns32k_reg_class_contents, regclass_map): Likewise.
12196         * ns32k.h (ns32k_reg_class_contents, regclass_map): Likewise.
12197         * pdp11.c (move_costs): Likewise.
12198         * pj.h (INITIALIZE_TRAMPOLINE): Likewise.
12199         * s390.c (s390_branch_condition_mnemonic, regclass_map):
12200         Likewise.
12201         * s390.h (regclass_map): Likewise.
12202         * sh.c (shift_amounts): Likewise.
12203         * sh.md (rotlsi3): Likewise.
12205 2002-03-09  Geoffrey Keating  <geoffk@redhat.com>
12207         * config/rs6000/rs6000.md (ne0+4): Add extra CLOBBER.
12208         (ne0+5): Use new clobber to generate proper shift pattern.
12209         Patch by Michael Matz <matz@kde.org>.
12211 2002-03-09  Andreas Schwab  <schwab@suse.de>
12213         * gcc.c (validate_all_switches): Also handle `%W{...}'.
12215 2002-03-09  Geoffrey Keating  <geoffk@redhat.com>
12217         * config/rs6000/sysv4.h (BIGGEST_ALIGNMENT): Don't define.
12219 2002-03-09  Jakub Jelinek  <jakub@redhat.com>
12221         PR middle-end/5877
12222         * expr.c (highest_pow2_factor): Check TREE_INT_CST_LOW
12223         even for non-representable constants.
12225 Sat Mar  9 07:20:01 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12227         * emit-rtl.c (copy_most_rtx): Accept EXPR_LIST for may_share.
12228         * function.c (fixup_var_refs): Add MAY_SHARE parameter.
12229         (fixup_var_refs_insns, fixup_var_refs_insns_with_has): Likewise.
12230         (fixup_var_refs_insn, fixup_var_refs_1): Likewise.
12231         (pop_function_context): Compute MAY_SHARE parameter for
12232         fixup_var_refs.
12233         (fixup_var_refs_1, case MEM): Pass MAY_SHARE to copy_most_rtx, not VAR.
12234         (gen_mem_addressof): Call fixup_var_refs with new parm.
12236         * combine.c (make_extraction): Don't make extension of CONST_INT.
12238 2002-03-09  Alexandre Oliva  <aoliva@redhat.com>
12240         * config/mips/mips.c (function_arg_pass_by_reference): Force to 0
12241         in o32 and o64 ABIs.
12242         * config/mips/abi64.h (MUST_PASS_IN_STACK): Define as in expr.h,
12243         but getting fixed-size structs passed in registers regardless of
12244         padding in o32 and o64 ABIs.
12246         * config/mips/mips.c (mips_va_arg): Apply big-endianness address
12247         offset before loading address of argument passed by transparent
12248         reference.
12250 2002-03-08  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12252         * t-pa64 (LIB1ASMFUNCS, LIB1ASMSRC): Delete.
12254 2002-03-09  Alexandre Oliva  <aoliva@redhat.com>
12256         * config/mips/mips.c (mips_expand_prologue): Set regno of vararg
12257         marker such that registers after it are saved.
12259 2002-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12261         * sparc.c (arith_4096_operand): Fix error in last change.
12263 2002-03-08  Alexandre Oliva  <aoliva@redhat.com>
12265         * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Remove duplicate
12266         defaults for MEABI.
12268 2002-03-08  Aldy Hernandez  <aldyh@redhat.com>
12270         * config/rs6000/rs6000.c (rs6000_va_arg): Fix alignment for
12271         vectors.
12273 2002-03-08  Aldy Hernandez  <aldyh@redhat.com>
12275         * config/rs6000/sysv4.h (BIGGEST_ALIGNMENT): Change for altivec.
12277 Fri Mar  8 21:27:49 CET 2002  Jan Hubicka  <jh@suse.cz>
12279         * cfgrtl.c (purge_dead_edges): Set BB_DRITY flags if edge has been
12280         removed; fix return value.
12281         * combine.c (combine_instructions): Dirtify blocks where we failed to
12282         update liveness; purge dead edges; use update_life_info_in_dirty_blocks.
12283         * toplev.c (rest_of_compilation): Do not purge_dead_edges after combine.
12285 2002-03-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12287         * gcse.c (insert_insn_end_bb): Fix typo in last change.
12289 Fri Mar  8 21:08:52 CET 2002  Jan Hubicka  <jh@suse.cz>
12291         * recog.c (peephole2_optimize): Re-distribute EH edges.
12293 2002-03-08  Neil Booth  <neil@daikokuya.demon.co.uk>
12295         * expr.c (expand_expr): Use unsave lang hook.
12296         * langhooks-def.h (LANG_HOOKS_UNSAVE): New.
12297         (LANG_HOOKS_INITIALIZER): Update.
12298         * langhooks.h (struct lang_hooks): New hook unsave.
12299         * tree.c (lang_unsave, lang_unsave_expr_now): Remove.
12300         (unsave_expr_1): Remove unused lang_unsave_expr_now.
12301         (unsave_expr_now_r): Rename lhd_unsave.  Update. Return input.
12302         (unsave_expr_now): Remove.
12303         * tree.h (unsave_expr_now, lang_unsave,
12304         lang_unsave_expr_now): Remove.
12305         (lhd_unsave): New.
12307 2002-03-08  Andreas Jaeger  <aj@suse.de>
12309         * flow.c (propagate_block_delete_insn): Remove unused variable.
12311 2002-03-08  Kazu Hirata  <kazu@hxi.com>
12313         * config/h8300/h8300.c (h8300_adjust_insn_length): Tighten
12314         insn length for memory load/store.
12316 2002-03-08  Craig Rodrigues  <rodrigc@gcc.gnu.org>
12318         * doc/install.texi (--with-libiconv-prefix): Document.
12320 2002-03-08  Michael Y. Brukman  <myb2@cornell.edu>
12322         * doc/sourcebuild.texi: Fix typo.
12324 2002-03-08  Jakub Jelinek  <jakub@redhat.com>
12326         PR c/3711
12327         * builtins.c (std_expand_builtin_va_arg): Do all computations on
12328         trees.
12330 Fri Mar  8 06:48:45 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12332         * rtl.c (copy_most_rtx): Move from here ...
12333         * emit-rtl.c (copy_most_rtx): ... to here.
12335 2002-03-08  Alexandre Oliva  <aoliva@redhat.com>
12337         * config/mips/mips.h (LONG_MAX_SPEC): Rewrite, along with
12338         SUBTARGET_CPP_SIZE_SPEC.
12339         * config/mips/abi64.h (LONG_MAX_SPEC): Delete.
12341         * config/mips/mips.h (SUBTARGET_CPP_SIZE_SPEC): Simplify.
12343 2002-03-07  Matt Hiller  <hiller@redhat.com>
12345         * gensupport.c (first_dir_md_include): Renamed from include;
12346         change all references.
12347         (last_dir_md_include): Renamed from last_include; change all
12348         references.
12349         (init_md_reader): Unconditionally initialize base_dir whether or
12350         not filename is a relative path.
12352 2002-03-07  Alexandre Oliva  <aoliva@redhat.com>
12354         * config/fp-bit.c (_unord_f2): Compile it in even if
12355         US_SOFTWARE_GOFAST is enabled.
12357         * config/gofast.h (GOFAST_RENAME_LIBCALLS): Set gt and ge as
12358         NULL_RTX.  Set all HFmode operations as NULL_RTX.
12359         * optabs.c (prepare_float_lib_cmp) <GT, GE, LT, LE>: If libfunc is
12360         NULL_RTX, try reversing the comparison and the operands.
12362 2002-03-06  Ulrich Weigand  <uweigand@de.ibm.com>
12364         * genextract.c (walk_rtx): Recurse into MATCH_PAR_DUP.
12365         genoutput.c (scan_operands): Recurse into MATCH_PAR_DUP
12366         and MATCH_OP_DUP.
12368 Thu Mar  7 16:54:10 CET 2002  Jan Hubicka  <jh@suse.cz>
12370         * reload1.c (reload_cse_delete_noop_set): Purge dead edges.
12372 Thu Mar  7 16:33:54 CET 2002  Jan Hubicka  <jh@suse.cz>
12374         * basic-block.h (fixup_abnormal_edges): Declare.
12375         * reload1.c (fixup_abnormal_edges): New function.
12376         * reg-stack.c (convert_regs): Use it.
12378         * gcse.c (insert_insn_end_bb): Handle trapping insns.
12380         * gcse.c (hash_scan_set): Refuse instructions with EH edges.
12382 2002-03-07  Richard Sandiford  <rsandifo@redhat.com>
12384         * defaults.h (MODE_HAS_NANS, MODE_HAS_INFINITIES): New.
12385         (MODE_HAS_SIGNED_ZEROS, MODE_HAS_SIGN_DEPENDENT_ROUNDING): New.
12386         * flags.h (HONOR_NANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS): New.
12387         (HONOR_SIGN_DEPENDENT_ROUNDING): New.
12388         * builtins.c (expand_builtin_mathfn): Use HONOR_NANS.
12389         * c-common.c (truthvalue_conversion): Reduce x - y != 0 to x != y
12390         unless x and y could be infinite.
12391         (expand_unordered_cmp): New, mostly split from expand_tree_builtin.
12392         Check that the common type of both arguments is a real, even for
12393         targets without unordered comparisons.  Allow an integer argument
12394         to be compared against a real.
12395         (expand_tree_builtin): Use expand_unordered_cmp.
12396         * combine.c (combine_simplify_rtx): Use the new HONOR_... macros.
12397         * cse.c (fold_rtx): Likewise.  Fix indentation.
12398         * fold-const.c (fold_real_zero_addition_p): New.
12399         (fold): Use it, and the new HONOR_... macros.
12400         * ifcvt.c (noce_try_minmax): Use the new HONOR_... macros.
12401         * jump.c (reversed_comparison_code_parts): After searching for
12402         the true comparison mode, use HONOR_NANS to decide whether it
12403         can be safely reversed.
12404         (reverse_condition_maybe_unordered): Remove IEEE check.
12405         * simplify-rtx.c (simplify_binary_operation): Use the new macros
12406         to decide which simplifications are valid.  Allow the following
12407         simplifications for IEEE: (-a + b) to (b - a), (a + -b) to (a - b),
12408         and (a - -b) to (a + b).
12409         (simplify_relational_operation): Use HONOR_NANS.
12410         * doc/tm.texi: Document the MODE_HAS_... macros.
12412 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
12414         * combine.c (simplify_comparison): If simplifying a logical shift
12415         right and compare with constant, force the comparison to unsigned.
12417 2002-03-07  Aldy Hernandez  <aldyh@redhat.com>
12419         * doc/invoke.texi: Add documentation for -mabi=no-altivec.
12421         * config/rs6000/rs6000.c (rs6000_parse_abi_options): Add
12422         -mabi=no-altivec
12423         (alt_reg_names): Remove % for vrsave.
12425 2002-03-06  Richard Henderson  <rth@redhat.com>
12427         PR optimization/5844
12428         * genemit.c (gen_exp): New argument used.  Invoke copy_rtx
12429         if used indicates we've already emitted one copy of an operand.
12430         (gen_insn, gen_expand, output_add_clobbers): Supply a null used.
12431         (gen_split): Supply a non-null used.
12433 2002-03-06  Ulrich Weigand  <uweigand@de.ibm.com>
12435         * reload1.c (reload): Unshare all rtl after reload is done.
12437         * simplify-rtx.c (simplify_plus_minus): Do not abort,
12438         but simply fail if the expression is too complex to simplify.
12439         (simplify_gen_binary): Handle simplify_plus_minus failures.
12441 Wed Mar  6 20:32:09 CET 2002  Jan Hubicka  <jh@suse.cz>
12443         * toplev.c (rest_of_compilation): Do jump threading before SSA path;
12444         consistently call delete_trivially_dead_insns after CSE and GCSE;
12445         fix DFI_life dumping; do jump threading after liveness; do crossjumping
12446         after liveness2; update comment in last crossjumping.
12447         * cfgcleanup.c (try_crossjump_to_edge): Dirtify block.
12449 Wed Mar  6 12:27:10 2002  Jeffrey A Law  (law@redhat.com)
12451         * ssa-ccp.c (ssa_fast_dce): Update the DF def-use chains
12452         after completing fast dead code elimination.
12454         * m68k.h (CONST_COSTS): Lower cost of 0.0 when used inside a
12455         COMPARE operator.
12457 2002-03-06  Phil Edwards  <pme@gcc.gnu.org>
12459         * version.c:  Fix misplaced leading blanks on first line.
12461 Wed Mar  6 19:08:03 CET 2002  Jan Hubicka  <jh@suse.cz>
12463         * cfgrtl.c (verify_flow_info): Accept RESX as EH edge source.
12465 Wed Mar  6 18:14:43 CET 2002  Jan Hubicka  <jh@suse.cz>
12467         * cfgcleanup.c (mentions_nonequal_regs): New function.
12468         (thread_jump): Use it.
12469         * toplev.c (rest_of_compilation): Run jump threading after
12470         liveness.
12472 2002-03-06  Jakub Jelinek  <jakub@redhat.com>
12474         * ssa-ccp.c (ssa_ccp_substitute_constants): Backout 2002-03-05
12475         patch.
12477 Wed Mar  6 11:28:19 CET 2002  Jan Hubicka  <jh@suse.cz>
12479         * predict.c (estimate_bb_frequencies): Do not reload the
12480         frequencies from notes.
12482 Wed Mar  6 10:59:39 CET 2002  Jan Hubicka  <jh@suse.cz>
12484         * cfgrtl.c (delete_insn_and_edges, delete_insn_chain_and_edges): New.
12485         * rtl.h (delete_insn_and_edges, delete_insn_chain_and_edges): Declare
12487         * basic-block.h (update_life_info, update_life_info_in_dirty_blocks,
12488         delete_noop_moves): Return indeger.
12489         * flow.c (ndead): New variable.
12490         (propagate_block_delete_insn): Use delete_insn_and_edges; remove
12491         BB argument; update callers.
12492         (propagate_block_delete_libcall): Use delete_insn_chain_and_edges.
12493         (life_analysis): Do not call purge_all_dead_edges.
12494         (update_life_info): Return number of deleted insns; print statistics.
12495         (update_life_info_in_dirty_blocks): likewise.
12496         (delete_noop_moves): Use delete_insn_and_edges; print statistics;
12497         return number of insns deleted.
12499         * cse.c: Include timevar.h
12500         (delete_trivially_dead_insns): Kill preserve_basic_blocks argument;
12501         iterate until stabilizes; print statistics; return number of killed
12502         insns.
12503         * Makefile.in: (cse.o): Add timevar.h dependency
12504         * rtl.h (delete_trivially_dead_insns): New.
12505         * timever.def: Add TV_DELETE_TRIVIALLY_DEAD timer.
12506         * toplev.c (rest_of_compilation): Update callers.
12508         * cfgcleanup.c (try_optimize_cfg): Kill blocks.
12509         (try_optimize_cfg): Do not update liveness.
12510         (cleanup-cfg): Loop until try_optimize_cfg and dead code
12511         removal stabilizes; use delete_trivially_dead_insns.
12513         * cfgrtl.c (verify_flow_info): Sanity check outgoing edges.
12515 2002-03-05  Zack Weinberg  <zack@codesourcery.com>
12517         * cppmain.c (setup_callbacks): Disable #pragma and #ident
12518         callbacks when processing assembly language.
12520 2002-03-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
12522         * pa.h (ASM_FILE_END): Define.
12523         * som.h (ASM_FILE_END): Delete.
12525         * pa.c (function_arg): Don't pass floats in general registers in
12526         indirect calls if TARGET_ELF32.
12528 2002-03-05  Richard Henderson  <rth@redhat.com>
12530         * config/i386/i386.md (floatsidf2): Conditionalize on hard-float.
12532 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
12534         * gthr-win32.h (__GTHREAD_MUTEX_INIT_DEFAULT): Define.
12536 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
12538         * mklibgcc.in: Prepend a tab before .hidden, add $flags to gcc
12539         -r command line.  Don't hide any symbols if not building
12540         shared libgcc.
12542 Tue Mar  5 18:31:27 CET 2002  Jan Hubicka  <jh@suse.cz>
12544         * cfg.c (dump_flow_info): Warn about profile mismatches.
12545         * cfgrtl.c (verify_flow_info): Few aditional sanity checks.
12546         (purge_dead_edges): Remove REG_BR_PROB notes on simplejumps.
12548 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
12550         * expmed.c (emit_store_flag): Don't test BITS_PER_WORD * 2
12551         wide volatile memory by parts.
12553 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
12555         * ssa-ccp.c (ssa_ccp_substitute_constants): Don't crash if def
12556         is NULL.
12558 2002-03-05  Richard Henderson  <rth@redhat.com>
12560         * rs6000.h (TOTAL_ALTIVEC_REGS): Fix off-by-one error.
12562 2002-03-04  Geoffrey Keating  <geoffk@redhat.com>
12564         * toplev.c (documented_lang_options): Document more
12565         language-specific options.
12566         * doc/invoke.texi (Warning Options): Correct documentation for
12567         -Wno-multichar, -Wno-div-by-zero, and -Wsystem-headers.
12568         * c-decl.c (c_decode_option): Use a table to handle warning options.
12570 2002-03-05  Hans-Peter Nilsson  <hp@bitrange.com>
12572         * config/mmix/mmix.h (ENCODE_SECTION_INFO): Pass on new second
12573         parameter to mmix_encode_section_info.
12574         (LINK_SPEC): Don't defsym __.MMIX.start..text if linking
12575         relocatably.  Always produce ELF, not mmo if linking relocatably.
12576         * config/mmix/mmix.c (mmix_encode_section_info): If new parameter
12577         first is non-zero, don't add symbol prefix.
12578         * config/mmix/mmix-protos.h (mmix_encode_section_info): Tweak
12579         prototype accordingly.
12581 2002-03-04  Krister Walfridsson  <cato@df.lth.se>
12583         * config.gcc (*-*-netbsd*): Add t-slibgcc-elf-ver to tmake_file.
12585 2002-03-05  Joseph S. Myers  <jsm28@cam.ac.uk>
12587         * configure.in: Increase required makeinfo version to 4.1.
12588         * configure: Regenerate.
12590 2002-03-04  Geoffrey Keating  <geoffk@redhat.com>
12592         * .cvsignore: Remove *.info* and genrtl*; these files are generated
12593         elsewhere now.
12595 2002-03-04  Joseph S. Myers  <jsm28@cam.ac.uk>
12597         * doc/include/texinfo.tex: Update to version 2002-03-01.06.
12598         * doc/invoke.texi: Fix @math uses.
12600 Mon Mar  4 15:33:54 CET 2002  Jan Hubicka  <jh@suse.cz>
12602         * toplev.c (rest_of_compilation): Cleanup CFG after dead jumptables
12603         removal
12605 2002-03-03  Aldy Hernandez  <aldyh@redhat.com>
12607         * config.gcc (powerpc-*-eabialtivec*): Use t-ppcendian.
12608         (powerpc-*-eabisimaltivec*): Same.
12610         * config/rs6000/t-ppcendian: New.
12612 2002-03-04  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
12614         * c4x-protos.h, c4x.h, c4x.c, c4x.md: Add new functions
12615         nonimmediate_src_operand and nonimmediate_lsrc_operand to
12616         disallow ZERO_EXTEND with CONST_INT or CONST_DOUBLE.
12618 2002-03-03  Richard Henderson  <rth@redhat.com>
12620         * toplev.c (rest_of_decl_compilation): Revert last two changes.
12622 2002-03-03  Zack Weinberg  <zack@codesourcery.com>
12624         * emit-rtl.c, final.c, fold-const.c, gengenrtl.c, optabs.c,
12625         print-tree.c, real.c, real.h, recog.c, rtl.c, simplify-rtx.c,
12626         tree.c, config/m68k/m68k.c:
12627         Remove all #ifndef REAL_ARITHMETIC blocks, make all #ifdef
12628         REAL_ARITHMETIC blocks unconditional.  Delete some further
12629         #ifdef blocks predicated on REAL_ARITHMETIC.
12630         * flags.h, toplev.c: Delete remaining references to
12631         flag_pretend_float.
12633         * doc/invoke.texi: Remove documentation of -fpretend-float.
12634         * doc/tm.texi: Describe the various REAL_* macros as provided by
12635         real.h, not by the target configuration files.
12637         * config/alpha/alpha.h, config/alpha/unicosmk.h, config/arm/arm.h,
12638         config/avr/avr.h, config/c4x/c4x.h, config/convex/convex.h,
12639         config/cris/cris.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
12640         config/h8300/h8300.h, config/i370/i370.h, config/i386/i386.h,
12641         config/i386/osf1elf.h, config/i960/i960.h, config/ia64/ia64.h,
12642         config/m32r/m32r.h, config/m68hc11/m68hc11.h, config/m68k/dpx2.h,
12643         config/m68k/linux-aout.h, config/m68k/linux.h, config/m68k/m68k.h,
12644         config/m68k/sun3.h, config/m68k/vxm68k.h, config/mcore/mcore.h,
12645         config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
12646         config/mn10300/mn10300.h, config/pa/pa.h, config/pj/pj.h,
12647         config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
12648         config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
12649         config/sparc/sol2.h, config/sparc/sparc.h, config/sparc/vxsim.h,
12650         config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vax.h,
12651         config/xtensa/xtensa.h:
12652         Do not define, undefine, or mention in comments any of
12653         REAL_ARITHMETIC, REAL_VALUE_ATOF, REAL_VALUE_HTOF,
12654         REAL_VALUE_ISNAN, REAL_VALUE_ISINF,
12655         REAL_VALUE_TO_TARGET_SINGLE, REAL_VALUE_TO_TARGET_DOUBLE,
12656         REAL_VALUE_TO_TARGET_LONG_DOUBLE, REAL_VALUE_TO_DECIMAL,
12657         REAL_VALUE_TYPE, REAL_VALUES_EQUAL, REAL_VALUES_LESS,
12658         REAL_VALUE_LDEXP, REAL_VALUE_FIX, REAL_VALUE_UNSIGNED_FIX,
12659         REAL_VALUE_RNDZINT, REAL_VALUE_UNSIGNED_RNDZINT,
12660         REAL_INFINITY, REAL_VALUE_NEGATE, REAL_VALUE_TRUNCATE,
12661         REAL_VALUE_TO_INT, or REAL_VALUE_FROM_INT.
12663 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12665         * 1750a.h, a29k.h, alpha.h, arc.h, arm.h, avr.h, c4x.h, clipper.h,
12666         convex.h, cris.h, d30v.h, dsp16xx.h, elxsi.h, fr30.h, h8300.h,
12667         i370.h, i386.h, i860.h, i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h,
12668         m88k.h, mcore.h, mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h,
12669         pa.h, pdp11.h, pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h,
12670         stormy16.h, v850.h, vax.h, we32k.h, xtensa.h (BITS_PER_WORD):
12671         Delete.
12672         * defaults.h (BITS_PER_WORD): Define.
12673         * doc/tm.texi (BITS_PER_WORD): Document default value.
12675         * 1750a.h, avr.h, convex.h, d30v.h, dsp16xx.h, fr30.h, ia64.h,
12676         m68hc11.h, m88k.h, mips.h, pdp11.h, rs6000.h, sparc.c,
12677         stormy16.h, xtensa.h, vmsdbgout.c (CHAR_TYPE_SIZE): Delete.
12679 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12681         * attribs.c (init_attributes, decl_attributes): Use ARRAY_SIZE in
12682         lieu of explicit sizeof/sizeof.
12683         * i386.c (override_options, ix86_init_mmx_sse_builtins,
12684         ix86_expand_builtin): Likewise.
12685         * mips.c (mips_add_gc_roots): Likewise.
12686         * mmix.c (mmix_output_condition): Likewise.
12687         * rs6000.c (rs6000_override_options, altivec_expand_builtin,
12688         altivec_init_builtins): Likewise.
12689         * sparc.c (mark_ultrasparc_pipeline_state): Likewise.
12690         * cppexp.c (Nsuff, parse_number): Likewise.
12691         * cppinit.c (builtin_array_end): Likewise.
12692         * gcc.c (n_default_compilers, process_command): Likewise.
12693         * genpreds.c (output_predicate_decls): Likewise.
12694         * ggc-page.c (NUM_EXTRA_ORDERS): Likewise.
12695         * lcm.c (N_ENTITIES): Likewise.
12696         * stor-layout.c (set_sizetype): Likewise.
12698 2002-03-03  Richard Henderson  <rth@redhat.com>
12700         * toplev.c (rest_of_decl_compilation): Do not invoke make_decl_rtl
12701         for types or labels.
12703 2002-03-03  Richard Henderson  <rth@redhat.com>
12705         * c-decl.c (start_decl): Initialized variables are not common.
12707 2002-03-02  Per Bothner  <per@bothner.com>
12709         * gcc.c (option_map):  Suport new --bootclasspath option.
12710         --CLASSPATH is now just an alias for --classpath.
12712 2002-03-02  Richard Henderson  <rth@redhat.com>
12714         * config/i386/i386.h (ix86_expand_prologue): Do not emit pic register
12715         load if "internal" visibility.
12716         * doc/extend.texi: Document visibility meanings.
12718 2002-03-02  Richard Henderson  <rth@redhat.com>
12720         * config/i386/i386.h (ENCODE_SECTION_INFO): MODULE_LOCAL_P applies
12721         to functions as well.
12723 2002-03-02  Richard Henderson  <rth@redhat.com>
12725         * attribs.c (handle_alias_attribute): Don't call assemble_alias.
12726         (handle_visibility_attribute): Don't call assemble_visibility.
12727         * toplev.c (rest_of_decl_compilation): Invoke make_decl_rtl even
12728         without asmspec.  Invoke assemble_alias when needed.
12729         * varasm.c (maybe_assemble_visibility): New.
12730         (assemble_start_function, assemble_variable, assemble_alias): Use it.
12732 2002-03-02  Richard Henderson  <rth@redhat.com>
12734         * varasm.c (make_decl_rtl): Remove call to REDO_SECTION_INFO_P;
12735         invoke ENCODE_SECTION_INFO with first call flag.
12737         * config/darwin-protos.h, config/darwin.c, config/darwin.h,
12738         config/a29k/a29k.h, config/alpha/alpha-protos.h, config/alpha/alpha.c,
12739         config/alpha/alpha.h, config/arc/arc.h, config/arm/arm-protos.h,
12740         config/arm/arm.h, config/arm/pe.c, config/arm/pe.h,
12741         config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
12742         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
12743         config/cris/cris-protos.h, config/cris/cris.c, config/cris/cris.h,
12744         config/d30v/d30v.h, config/h8300/h8300.h, config/i370/i370.h,
12745         config/i386/cygwin.h, config/i386/i386-interix.h, config/i386/i386.h,
12746         config/i386/osfrose.h, config/i386/win32.h, config/i386/winnt.c,
12747         config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
12748         config/m32r/m32r-protos.h, config/m32r/m32r.c, config/m32r/m32r.h,
12749         config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
12750         config/m68hc11/m68hc11.h, config/m88k/m88k.h,
12751         config/mcore/mcore-protos.h, config/mcore/mcore.c,
12752         config/mcore/mcore.h, config/mips/mips.h, config/ns32k/ns32k.h,
12753         config/pa/pa.h, config/romp/romp.h, config/rs6000/linux64.h,
12754         config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
12755         config/rs6000/sysv4.h, config/rs6000/xcoff.h, config/s390/s390.h,
12756         config/sh/sh.h, config/sparc/sparc.h,
12757         config/stormy16/stormy16-protos.h, config/stormy16/stormy16.c,
12758         config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vms.h,
12759         config/xtensa/xtensa.h, doc/tm.texi: ENCODE_SECTION_INFO now takes
12760         FIRST argument.  As needed, examine it and do nothing.
12762         * config/darwin.h, config/alpha/alpha.h, config/arm/pe.h,
12763         config/i386/cygwin.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
12764         config/mcore/mcore.h: Remove REDO_SECTION_INFO_P.
12766         * config/arm/t-pe (pe.o): Add dependencies.
12768 2002-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12770         * a29k.h, alpha.h, arc.h, arm.h, avr.h, clipper.h, convex.h,
12771         cris.h, d30v.h, elxsi.h, fr30.h, h8300.h, i370.h, i386.h, i860.h,
12772         i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h, m88k.h, mcore.h,
12773         mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pdp11.h,
12774         pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h, stormy16.h, v850.h,
12775         vax.h, we32k.h, xtensa.h: (BITS_PER_UNIT): Delete.
12776         * defaults.h (BITS_PER_UNIT): Define.
12777         * doc/tm.texi (BITS_PER_UNIT): Document default value.
12779 2002-03-02  Kazu Hirata  <kazu@hxi.com>
12781         * config/h8300/h8300-protos.h: Add a prototype for
12782         compute_a_shift_length.
12783         * config/h8300/h8300.c (h8300_asm_insn_count): New.
12784         (compute_a_shift_length): Likewise.
12785         (h8300_adjust_insn_length): Do not adjust insn length of shift
12786         insns.
12787         * config/h8300/h8300.md (anonymous shift patterns): Use
12788         compute_a_shift_length.
12790 Sat Mar  2 06:30:14 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
12792         * config/sparc/sparc.c (sparc_initialize_trampoline): Use
12793         trunc_int_for_mode.
12795         * emit-rtl.c (offset_address): Call update_temp_slot_address.
12797 2002-03-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
12799         * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-zero-initialized-in-bss.
12800         * doc/invoke.texi (-fno-zero-initialized-in-bss): Document.
12801         * flags.h (flag_zero_initialized_in_bss): Declare.
12802         * toplev.c (flag_zero_initialized_in_bss): New flag.
12803         (lang_independent_options): Add flag_zero_initialized_in_bss.
12804         * tree.c (initializer_zerop): New function.
12805         * tree.h (initializer_zerop): Declare.
12806         * varasm.c (assemble_variable): If we can emit bss, put zero
12807         initializers in the bss section.
12809 2002-03-02  Alan Modra  <amodra@bigpond.net.au>
12811         * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): AIX assembler doesn't
12812         like more than one symbol per .weak directive.
12814 2002-03-01  Richard Henderson  <rth@redhat.com>
12816         * config/ia64/ia64.c (ia64_initial_elimination_offset): Do not
12817         adjust argument_pointer by pretend_args_size.
12818         (ia64_va_start): Adjust va_start address by -pretend_args_size.
12820 2002-03-01  Kazu Hirata  <kazu@hxi.com>
12822         * config/h8300/h8300.c (h8300_adjust_insn_length): Clean up.
12824 Fri Mar  1 20:59:14 CET 2002  Jan Hubicka  <jh@suse.cz>
12826         * toplev.c (rest_of_compilation): Delete dead jumptables before
12827         loop.
12828         * flow.c (delete_dead_jumptables): Make global.
12829         * rtl.h (delete_dead_jumptables): Declare.
12831 2002-03-01  David Edelsohn  <edelsohn@gnu.org>
12833         * config/rs6000/rs6000.h (HANDLE_PRAGMA_PACK): Delete.
12834         * config/rs6000/darwin.h (HANDLE_SYSV_PRAGMA): Define.
12835         * config/rs6000/xcoff.h (COLLECT_EXPORT_LIST): Delete.
12837 2002-03-01  Kazu Hirata  <kazu@hxi.com>
12839         * config/h8300/h8300-protos.h: Fix formatting.
12840         * config/h8300/h8300.c: Likewise.
12841         * config/h8300/h8300.h: Likewise.
12843 2002-03-01  Kazu Hirata  <kazu@hxi.com>
12845         * config/h8300/h8300.c (print_operand): Support 16-bit
12846         constant addresses.
12847         * config/h8300/h8300.h (TINY_CONSTANT_ADDRESS_P): New.
12849 2002-02-28  Richard Henderson  <rth@redhat.com>
12851         * expmed.c (store_bit_field): Prevent generation of CONCATs;
12852         pun complex values as integers; use gen_lowpart instead of
12853         gen_rtx_SUBREG.
12854         (extract_bit_field): Likewise.
12856 2002-03-01  Alan Modra  <amodra@bigpond.net.au>
12857             David Edelsohn  <edelsohn@gnu.org>
12859         * doc/tm.texi (ASM_WEAKEN_DECL): Document.
12860         (ASM_WEAKEN_LABEL): Mention ASM_WEAKEN_DECL.
12861         (SUPPORTS_WEAK): Likewise.
12862         * output.h (add_weak): Add tree param.
12863         * varasm.c (add_weak): Likewise.  Save decl.
12864         (struct weak_syms): Add decl field.
12865         (mark_weak_decls): New function.
12866         (init_varasm_once): ggc_add_root mark_weak_decls.
12867         (assemble_start_function): Use ASM_WEAKEN_DECL.
12868         (assemble_variable): Likewise.
12869         (assemble_alias): Likewise.
12870         (declare_weak): Pass decl to add_weak.
12871         (weak_finish): Use ASM_WEAKEN_DECL. Try to find decl.
12872         (remove_from_pending_weak_list): Declare and define for
12873         ASM_WEAKEN_DECL.
12874         * c-pragma.c (handle_pragma_weak): Adjust add_weak call.
12875         * c-pragma.h (HANDLE_PRAGMA_WEAK): Define if ASM_WEAKEN_DECL too.
12876         * defaults.h (SUPPORTS_WEAK): Likewise.
12877         * config/rs6000/linux64.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
12878         .weak for code sym.  Do emit .size for descriptor sym.
12879         (ASM_DECLARE_FUNCTION_SIZE): Define.
12880         * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Define.
12881         (ASM_OUTPUT_DEF_FROM_DECLS): Don't emit .weak here.  Don't output
12882         .lglobl unless TARGET_XCOFF.  Formatting fixes.
12883         * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
12884         .weak for code sym.
12885         (HANDLE_PRAGMA_WEAK): Remove.
12886         (ASM_WEAKEN_LABEL): Remove.
12887         * config/rs6000/aix.h (HANDLE_SYSV_PRAGMA): Define.
12889 2002-03-01  Jason Merrill  <jason@redhat.com>
12891         * tree.h (TARGET_EXPR_SLOT, TARGET_EXPR_INITIAL): New macros.
12892         (TARGET_EXPR_CLEANUP): New macro.
12894 2002-02-28  Steve Ellcey  <sje@cup.hp.com>
12896         * doc/rtl.texi (SUBREG_PROMOTED_UNSIGNED_P): Change definition
12897         to take ptr_extend into account as third type of extension.
12898         (SUBREG_PROMOTED_UNSIGNED_SET): Definition of new macro to set bit
12899         fields used by SUBREG_PROMOTED_UNSIGNED_P.
12900         * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): New macro.
12901         (SUBREG_PROMOTED_UNSIGNED_P): Change to return -1 as well as 0 or 1.
12902         * calls.c (precompute_arguments): Use new macro.
12903         (expand_call): Ditto.
12904         * combine.c (nonzero_bits): Ditto.
12905         (record_promoted_value): Ditto.
12906         * expr.c (store_expr): Ditto.
12907         (expand_expr): Ditto.
12908         * function.c (assign_parms): Ditto.
12910 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
12912         * gcc.c (init_gcc_specs): Get -static and -static-libgcc to
12913         override -shared and -shared-libgcc.
12915 2002-02-28  David O'Brien  <obrien@FreeBSD.org>
12917         * config.gcc (sparc64-*-freebsd): Explicitly accept a cpu specification
12918         of "ultrasparc".
12919         * config/sparc/freebsd.h: Do not use MASK_FASTER_STRUCTS.  It appears
12920         to be broken.
12922 2002-02-28  Richard Henderson  <rth@redhat.com>
12924         * config/ia64/ia64.c (ia64_adjust_cost): All non-MM consumers have
12925         4 cycle latency from MM producers.
12926         (ia64_internal_sched_reorder): Likewise with pipeline flush.
12928 2002-02-28  Jakub Jelinek  <jakub@redhat.com>
12930         * mklibgcc.in: Don't use GNU make extension.
12932 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
12934         * c-parse.in (STATIC): New terminal.
12935         (scspec): New non-terminal.  Update productions accordingly.
12936         (program): Remove bogus ifc / end ifc.
12937         (array_declarator): Simplify production using STATIC.
12939 2002-02-28  Jim Meyering  <meyering@lucent.com>
12941         * cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
12942         \a still means TARGET_BELL.
12944 2002-02-28  Richard Henderson  <rth@redhat.com>
12946         * haifa-sched.c (sched_emit_insn): New.
12947         (schedule_block): Use last_scheduled_insn to track last insn.
12948         * sched-int.h (sched_emit_insn): Prototype.
12949         * config/ia64/ia64.c (last_issued): Remove.
12950         (ia64_variable_issue): Don't set it.
12951         (nop_cycles_until): Use sched_emit_insn.
12953 2002-02-28  Andrew MacLeod  <amacleod@redhat.com>
12955         * config/sparc/sparc.c (sparc64_initialize_trampoline): Generate sign
12956         extended constants.
12958 2002-02-28  Kazu Hirata  <kazu@hxi.com>
12960         * config/h8300/h8300.c: Fix formatting.
12961         * config/h8300/h8300.h: Likewise.
12963 2002-02-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
12965         * config/avr/avr.c (avr_hard_regno_mode_ok): Do not allow r29
12966         which may overwrite the high byte of the frame pointer.
12968 2002-02-28  Bo Thorsen  <bo@suse.de>
12970         * config/i386/linux64.h (LINK_SPEC): Fix 32/64 bit compilation.
12971         (STARTFILE_SPEC): Add 64 bit files.
12972         (ENDFILE_SPEC): Likewise.
12974 2002-02-28  Jason Merrill  <jason@redhat.com>
12976         * c-decl.c (finish_function): Only warn about missing return
12977         statement with -Wreturn-type.
12979 Don Feb 28 11:24:30 CET 2002  Jan Hubicka  <jh@suse.cz>
12981         * cfgrtl.c (purge_dead_edges): Fix handling of EH edges.
12983         * i386.h (CONDITIONAL_REGISTER_USAGE): Do not write to
12984         PIC_OFFSET_TABLE_REGNUM when it is INVALID_REGNUM
12986 Don Feb 28 11:07:36 CET 2002  Jan Hubicka  <jh@suse.cz>
12988         * basic-block.h (BB_REACHABLE): Renumber.
12989         (BB_DIRTY, BB_NEW): New flags.
12990         (clear_bb_flags): Declare.
12991         (update_life_info_in_dirty_blocks): Declare.
12992         * cfg.c (clear_bb_flags): New function.
12993         * cfgrtl.c (create_basic_block_structure): Set flags to BB_NEW.
12994         * emit-rtl.c (add_insn_after, add_insn_before, remove_insn,
12995         reorder_insns, emit_insn_after): Mark block as dirty.
12996         * flow.c (update_life_info): Fix clearing of PROP_LOG_LINKS.
12997         (update_life_info_in_dirty_blocks): New function.
12998         * recog.c (apply_change_group): Dirtify block.
13000         * cse.c (cse_insn): Reorder emitting of jump insn to keep
13001         cfg consistent.
13002         * gcse.c (delete_null_pointer_checks): Likewise.
13004         * toplev.c (dump_file_index): Move cse2 after bp,
13005         add DFI_null
13006         (dump_file_info): Similary.
13007         (rest_of_compilation): Avoid most of CFG rebuilds;
13008         do first if converision after null pointer checks, do cse2
13009         after branch prediction; avoid full liveness rebuild after
13010         initializing subregs.
13011         * invoke.texi (-d options): Document -du, renumber.
13013         * cfgcleanup.c (bb_flags): Remove BB_UPDATE_LIFE.
13014         (notice_new_block): Do not set BB_UPDATE_LIFE.
13015         (try_forward_edges, merge_blocks_move_predecessor_nojumps,
13016          merge_blocks_move_successor_nojumps, merge_blocks,
13017          try_crossjump_to_edge): Likewise.
13018         (try_optimize_cfg): Likewise; use update_life_info_in_dirty_blocks.
13019         * cfgrtl.c (merge_blocks_nomove): Copy b's flags to a.
13020         * ifcvt.c (SET_UPDATE_LIFE, UPDATE_LIFE): Kill.
13021         (merge_of_block): Do not use life_data_ok.
13022         (find_if_case_1): Do not use SET_UPDATE_LIFE.
13023         (if_convert): Use BB_DIRTY mechanizm to update life.
13024         * lcm.c (optimize_mode_switching): Update
13025         update_life_info_in_dirty_blocks
13027 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
13029         * Makefile.in (integrate.o): Update.
13030         * c-decl.c (copy_lang_decl): Rename.
13031         * c-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
13032         * integrate.c: Include langhooks.h.
13033         (copy_decl_for_inlining): Update to use langhook.
13034         * langhooks-def.h (lhd_do_nothing_t,
13035         LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): New.
13036         (LANG_HOOKS_INITIALIZER): Update.
13037         * langhooks.c (lhd_do_nothing_t): New.
13038         * langhooks.h (struct lang_hooks): Add dup_lang_specific_decl.
13039         * tree.h (copy_lang_decl): Remove.
13040 objc:
13041         * objc-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
13043 2002-02-27  Andrew MacLeod  <amacleod@redhat.com>
13045         * dwarf2out.c (stack_adjust_offset): Add support for POST_INC,
13046         POST_DEC, and POST_MODIFY.
13048 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
13050         * c-typeck.c (digest_init): Remove unused parameter; all
13051         callers changed.
13053 2002-02-27  Geoffrey Keating  <geoffk@redhat.com>
13055         * expmed.c (expand_shift): Correctly test for low part of a
13056         subreg.
13058 2002-02-27  Ulrich Weigand  <uweigand@de.ibm.com>
13060         * config/s390/s390.c (s390_chunkify_pool): Do not confuse
13061         insn UIDs with insn addresses.
13063 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
13065         * c-common.c, c-common.h, c-decl.c, c-lex.c, c-parse.in,
13066         c-tree.h, c-typeck.c, cppexp.c, cpplex.c, cpplib.c, cpplib.h,
13067         cppmacro.c, objc/lang-specs.h, objc/objc-act.c,
13068         builtin-types.def, builtins.def, dwarf2out.c, dwarfout.c,
13069         gcc.c, toplev.c: Delete code implementing -traditional mode.
13071         * doc/bugreport.texi, doc/cpp.texi, doc/extend.texi,
13072         doc/invoke.texi, doc/standards.texi, doc/trouble.texi:
13073         Document removal of -traditional mode for compilation, and
13074         remove documentation only relevant to that mode.
13076         * config/nextstep.h, config/ptx4.h, config/svr4.h,
13077         config/convex/convex.h, config/d30v/d30v.h,
13078         config/i386/dgux.h, config/i386/osf1elf.h,
13079         config/i386/osfelf.h, config/i386/osfrose.h,
13080         config/i386/sco5.h, config/i386/sol2.h, config/m68k/a-ux.h,
13081         config/m68k/hp310.h, config/m88k/dgux.h,
13082         config/m88k/dguxbcs.h, config/m88k/luna.h, config/m88k/m88k.c,
13083         config/m88k/m88k.h, config/m88k/openbsd.h,
13084         config/mips/abi64.h, config/mips/osfrose.h,
13085         config/mips/svr4-5.h, config/mips/svr4-t.h,
13086         config/sparc/sol2-sld-64.h, config/sparc/sol2.h,
13087         config/stormy16/stormy16.h: Remove all references to
13088         -traditional from target specs.  Delete all mention of the
13089         no-longer-necessary TRADITIONAL_RETURN_FLOAT macro.  Also
13090         delete a couple of commented-out definitions of
13091         DOLLARS_IN_IDENTIFIERS, with (incorrect) commentary referring
13092         to -traditional.
13094         * system.h: Poison TRADITIONAL_RETURN_FLOAT.
13095         * doc/tm.texi: Remove mention of TRADITIONAL_RETURN_FLOAT macro.
13097 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
13099         * mklibgcc.in: Don't use \n in a line subject to
13100         interpretation by echo.
13102 2002-02-27  Graham Stott  <grahams@redhat.com>
13104         * config/rs6000/rs6000.h (ASM_OUTPUT_DEF_FROM_DELC):
13105         Constify NAME.
13107         * loop.c (prescan_loop): Handle PARALLEL.
13109         * unroll.c (loop_iterations): Return 0 if the add_val for
13110         a BIV is REG.
13112         * final.c (output_operand_lossage): Constify PFX_STR.
13114         * df.c (df_insn_refs_record): Use XEXP (x, 0) for USE.
13116 Wed Feb 27 10:45:19 CET 2002  Jan Hubicka  <jh@suse.cz>
13118         * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove.
13119         * x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Allways define.
13121 Wed Feb 27 10:39:20 CET 2002  Jan Hubicka  <jh@suse.cz>
13123         * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
13125 2002-02-27  Neil Booth  <neil@daikokuya.demon.co.uk>
13127         * cpplex.c (_cpp_lex_token): Handle directives in macro
13128         arguments.
13129         * cpplib.c (_cpp_handle_directive): Save and restore state
13130         if parsing macro args when entering a directive.
13131         * cppmacro.c (collect_args): No need to handle directives
13132         in macro arguments.
13133         (enter_macro_context, replace_args): Use the original macro
13134         definition in case it was redefined whilst collecting arguments.
13135 doc:
13136         * cpp.texi: Update.
13138 2002-02-26  David Edelsohn  <edelsohn@gnu.org>
13140         * config/rs6000/aix43.h (THREAD_MODEL_SPEC): Delete.
13141         * config/rs6000/aix51.h (THREAD_MODEL_SPEC): Delete.
13142         * config/rs6000/rs6000.c (rs6000_return_addr): Use efficient
13143         method on AIX.
13144         * config/rs6000/rs6000.md (movsi_low): Use gpc_reg_operand.
13145         (movsi_low_st, movdf_low, movdf_low_st, movsf_low, movsf_low_st): Same.
13146         (load_toc_v4_PIC_2): Same.
13148 2002-02-26  Alan Modra  <amodra@bigpond.net.au>
13150         * config/rs6000/rs6000.md (load_toc_aix_di): Handle TARGET_RELOCATABLE.
13152 2002-02-26  Richard Henderson  <rth@redhat.com>
13154         * config/alpha/alpha.md (ashldi_se): Re-enable.
13156 2002-02-26  Richard Henderson  <rth@redhat.com>
13158         * config/alpha/alpha.c (alpha_encode_section_info): Examine
13159         MODULE_LOCAL_P; improve commentary.
13161 2002-02-26  Zack Weinberg  <zack@codesourcery.com>
13163         * doc/cpp.texi: Clarify documentation of relationship between
13164         #line and #include.
13166 2002-02-26  Kazu Hirata  <kazu@hxi.com>
13168         * config/h8300/h8300-protos.h: Update the prototype for
13169         compute_logical_op_length.  Add the prototype for
13170         compute_logical_op_cc.
13171         * config/h8300/h8300.c (compute_logical_op_length): Figure out
13172         code from operands.
13173         (compute_logical_op_cc): New.
13174         * config/h8300/h8300.md: Combine all the logical op patterns
13175         in HImode and SImode.  Use compute_logical_op_cc.
13177 2002-02-26  Kelley Cook  <kelleycook@comcast.net>
13179         * config/i386/i386.c (print_operand): Don't append ATT-style
13180         length suffixs to x87 opcodes when in Intel mode.
13182 2002-02-26  Ryan T. Sammartino <ryants@shaw.ca>
13184         * emit-rtl.c (gen_const_vector_0): Remove TYPE argument.
13185         (init_emit_once): Update calls.
13186         * fixinc/gnu-regex.c (_GNU_SOURCE): Remove.
13187         (init_syntax_once): Prototype.
13189 2002-02-26  John David Anglin  <dave@hiauly1.hia.nrc.ca>
13191         * pa-linux.h (LIB_SPEC): Update definition.
13192         * pa32-linux.h (LINK_COMMAND_SPEC): Delete.
13194 2002-02-26  Richard Henderson  <rth@redhat.com>
13196         * config/ia64/ia64.c (nop_cycles_until): Do init_insn_group_barriers
13197         if we emitted a stop bit.
13199 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
13201         * configure.in (libgcc_visibility): Substitute.
13202         * configure: Rebuilt.
13203         * mklibgcc.in: If libgcc_visibility = yes, make libgcc.a global
13204         defined symbols .hidden.
13206 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
13208         * attribs.c (c_common_attribute_table): Add visibility.
13209         (handle_visibility_attribute): New function.
13210         * varasm.c (assemble_visibility): New function.
13211         * output.h (assemble_visibility): Add prototype.
13212         * tree.h (MODULE_LOCAL_P): Define.
13213         * crtstuff.c (__dso_handle): Use visibility attribute.
13214         * config/i386/i386.h (ENCODE_SECTION_INFO): Set SYMBOL_REF_FLAG
13215         for MODULE_LOCAL_P symbols too.
13216         * config/ia64/ia64.c (ia64_encode_section_info): Handle
13217         MODULE_LOCAL_P symbols the same way as local symbols.
13218         Add SDATA_NAME_FLAG_CHAR even if decl was explicitely forced
13219         into .sdata/.sbss by the user.
13220         * doc/extend.texi (Function Attributes): Document visibility
13221         attribute.
13223 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
13225         PR debug/5770
13226         * dwarf2out.c (rtl_for_decl_location): Return CONST_STRING for
13227         STRING_CST initializer spanning the whole variable without
13228         embedded zeros.
13229         If expand_expr returned MEM, don't use it.
13231 2002-02-26  Alexandre Oliva  <aoliva@redhat.com>
13233         * dwarf2out.c (gen_inlined_subroutine_die): If block is abstract,
13234         generate a die for the lexical block.
13236 2002-02-26  Kazu Hirata  <kazu@hxi.com>
13238         * config/h8300/h8300-protos.h: Add a prototype for
13239         compute_logical_op_length.
13240         * config/h8300/h8300.c (compute_logical_op_length): New.
13241         * config/h8300/h8300.md (anonymous logical patterns): Use
13242         compute_logical_op_length for length.
13244 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
13246         * dwarf2out.c (modified_type_die): Do not call type_main_variant
13247         for vectors.
13248         (gen_type_die): Same.
13250         * attribs.c (handle_vector_size_attribute): Set debug information.
13252 2002-02-26  Daniel Egger  <degger@fhm.edu>
13254         * config/rs6000/rs6000.md: Swap define_insn attributes to
13255         fix incorrect generation of merge high instructions instead
13256         of merge low.
13258 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
13260         * c-typeck.c (really_start_incremental_init): Use
13261         bitsize_zero_node for vectors.
13263 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
13265         * config/rs6000/rs6000.md (get_vrsave_internal): Fix typo.
13266         ("*set_vrsave_internal"): Same.
13268 2002-02-25  Richard Henderson  <rth@redhat.com>
13270         * expr.c (expand_expr) [MULT_EXPR]: Do not apply distributive law
13271         in EXPAND_SUM case.  Use host_integerp/tree_low_cst.
13273 2002-02-25  Jakub Jelinek  <jakub@redhat.com>
13275         PR target/5755
13276         * config/i386/i386.c (ix86_return_pops_args): Only pop
13277         fake structure return argument if it was passed on the stack.
13279 2002-02-25  Jason Merrill  <jason@redhat.com>
13281         * attribs.c (decl_attributes): Also re-layout PARM_DECL and
13282         RESULT_DECL.
13284 2002-02-25  Alexandre Oliva  <aoliva@redhat.com>
13286         * gcc.c (init_gcc_specs): Get -shared-libgcc along with -shared to
13287         link with shared_name only.
13288         * doc/invoke.texi (Link Options): Document new behavior.
13290 2002-02-25  Aldy Hernandez  <aldyh@redhat.com>
13292         * c-typeck.c (push_init_level): Handle vectors.
13294 2002-02-25  Alexandre Oliva  <aoliva@redhat.com>
13296         * config/sparc/sparc.c (const64_high_operand): Zero-extend
13297         operands of SPARC_SETHI_P.
13298         (input_operand): Likewise.
13299         (sparc_emit_set_const32): Likewise.
13300         * config/sparc/sparc.h (SPARC_SETHI_P): Disregard TARGET_ARCH64.
13301         (SPARC_SETHI32_P): Zero-extend operand from 32 bits.
13302         (CONST_OK_FOR_LETTER_P): Use SETHI32 for `K'.  Add `N' as SETHI.
13303         * config/sparc/sparc.md (movdi_insn_sp64_novis): Use `N'.
13304         (movdi_insn_sp64_vis): Likewise.
13305         (movdi split, movdf split): Use SETHI32.
13306         * doc/md.texi: Document SPARC constraints L, M and N.
13308 2002-02-25  Aldy Hernandez  <aldyh@redhat.com>
13310         * config/rs6000/rs6000.md ("get_vrsave_internal"): New.
13311         ("*set_vrsave_internal"): use mfspr for Darwin.
13313         * config/rs6000/rs6000.c (rs6000_emit_prologue): Call
13314         gen_get_vrsave_internal.
13316 Sun Feb 24 16:38:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13318         * optabs.c (widen_operand): Properly handle CONST_INT for NO_EXTEND.
13320 2002-02-24  Neil Booth  <neil@daikokuya.demon.co.uk>
13322         * cpplex.c (cpp_interpret_charconst): Get signedness or
13323         otherwise of wide character constants correct.
13324         * cppexp.c (lex): Get signedness of wide charconsts correct.
13326 Sun Feb 24 07:41:31 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13328         * optabs.c (widen_operand): Only call convert_modes for
13329         promoted SUBREG if signedness matches.
13330         * config/alpha/alpha.md (*addsi_se2, *subsi_se2): New patterns.
13332 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
13334         * cpplib.c (glue_header_name): Use local buffer to build up
13335         header name.
13337 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
13339         * doc/cpp.texi, doc/invoke.texi: Update documentation for -MM.
13341 2002-02-23  Kazu Hirata  <kazu@hxi.com>
13343         * config/h8300/h8300.c (output_simode_bld): Handle H8/300 and
13344         H8/300[HS] separately.
13345         * config/h8300/h8300.md: Remove the early clobber constraint
13346         from bit field patterns.
13348 2002-02-23  Kazu Hirata  <kazu@hxi.com>
13350         * config/h8300/h8300.md (mulqihi3): Tighten predicates to
13351         register_operand.
13352         (mulhisi3): Likewise.
13353         (umulqisi3): Likewise.
13354         (umulhisi3): Likewise.
13356 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
13358         * cppinit.c (output_deps): Correct test for stdout output.
13359         (init_dependency_output): Cure warning.
13361 Sat Feb 23 08:42:47 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13363         * expr.c (store_expr): When converting expression to promoted
13364         equivalent type, allow using SUBREG_REG of TARGET as the target
13365         of the expansion of EXP.
13366         * loop.c (basic_induction_var, case SUBREG): Always look inside.
13367         * config/alpha/alpha.c (rtx_equiv_function_matters): Delete decl.
13368         (alpha_emit_set_const): Handle SImode when can't make new pseudos.
13369         (alpha_emit_set_const_1, alpha_sa_mask): Use no_new_pseudos.
13370         * config/alpha/alpha.md (addsi3, subsi3): Don't use if optimizing.
13372 2002-02-23  Joseph S. Myers  <jsm28@cam.ac.uk>
13374         * doc/contribute.texi, doc/extend.texi, doc/install.texi,
13375         doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/rtl.texi,
13376         doc/standards.texi, doc/tm.texi: Remove trailing whitespace.
13378 2002-02-23  Jakub Jelinek  <jakub@redhat.com>
13380         PR optimization/5747
13381         * loop.c (scan_loop): Update reg info if move_movables created new
13382         pseudos.
13384 2002-02-23  David Edelsohn  <edelsohn@gnu.org>
13386         * gcc.c (init_gcc_spec): Revert last change.
13388 2002-02-23  David Edelsohn  <edelsohn@gnu.org>
13390         * config/rs6000/rs6000.md (load_toc_aix_{si,di}): Use
13391         gpc_reg_operand constraint.
13393 2002-02-23  Alan Modra  <amodra@bigpond.net.au>
13395         * config/rs6000/rs6000.c (num_insns_constant): Fix formatting.
13396         Simplify comparison of `low'.
13397         (add_operand): Fix formatting.
13398         (non_add_cint_operand): Use CONST_OK_FOR_LETTER_P.
13399         (mask_operand): Disallow mask to wrap in 64-bit mode.
13400         (rs6000_stack_info): Remove redundant test setting push_p.
13401         (output_toc): Fix formatting.
13402         * config/rs6000/rs6000.md (boolsi3, boolcsi3 splitters): Use
13403         cc_reg_not_cr0_operand constraint.
13404         (booldi3, boolcdi3 splitters): Same.
13406 2002-02-23  Aldy Hernandez  <aldyh@redhat.com>
13408         * config/rs6000/altivec.h: Add extra level of parentheses on casts.
13410 2002-02-22  David Edelsohn  <edelsohn@gnu.org>
13412         * gcc.c (init_gcc_spec): Do not link with static libgcc.a if
13413         gcc invoked with -shared-libgcc.
13415 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
13417         PR c++/5748
13418         * stmt.c (expand_anon_union_decl): Set TREE_USED on the anon union
13419         decl if any of elements was TREE_USED.
13421 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
13423         * config/sparc/sol2.h: Don't include sys/mman.h.
13424         * config/sparc/sparc.c (arith_operand): Use SMALL_INT32.
13425         (arith_4096_operand): Don't throw high bits away.
13426         (const64_operand): Take sign extension of CONST_INTs into account.
13427         (const64_high_operand, sparc_emit_set_const32): Likewise.
13428         (GEN_HIGHINT64): Likewise.
13429         (sparc_emit_set_const64_quick1): Likewise.
13430         (const64_is_2insns): Likewise.
13431         (print_operand): Use trunc_int_for_mode for sign extension.
13432         * config/sparc/sparc.h (SMALL_INT32): Likewise.
13433         * config/sparc/sparc.md (movqi): Sign-extend CONST_DOUBLE
13434         chars.  Assume CONST_INT is already properly sign-extended.
13435         (movdi split): Sign-extend each SImode part.
13436         (andsi3 split): Don't mask high bits off, so that result
13437         remains properly sign-extend.
13438         (iorsi3 split): Likewise.
13439         (xorsi3 split): Likewise.
13441 2002-02-22  Richard Sandiford  <rsandifo@redhat.com>
13443         * fold-const.c (fold): Fix typo in comments.
13445 2002-02-21  Diego Novillo  <dnovillo@redhat.com>
13447         * Makefile.in (langhooks.o): Update dependencies.
13449 2002-02-21  Diego Novillo  <dnovillo@redhat.com>
13451         * langhooks.c: Include flags.h.
13453 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
13455         * testsuite/gcc.dg/attr-alwaysinline.c: New.
13457         * c-common.c (c_common_post_options): Set inline trees by
13458         default.
13460         * doc/extend.texi (Function Attributes): Document always_inline
13461         attribute.
13462         Update documentation about inlining when not optimizing.
13464         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
13466         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
13467         unless DECL_ALWAYS_INLINE.
13469         * c-objc-common.c (c_cannot_inline_tree_fn): Do not inline at -O0
13470         unless DECL_ALWAYS_INLINE.
13471         (c_disregard_inline_limits): Disregard if always_inline set.
13473         * langhooks.c (lhd_tree_inlining_disregard_inline_limits):
13474         Disregard if always_inline set.
13475         (lhd_tree_inlining_cannot_inline_tree_fn): Do not inline at -O0
13476         unless DECL_ALWAYS_INLINE.
13478         * attribs.c (handle_always_inline_attribute): New.
13479         (c_common_attribute_table): Add always_inline.
13481         * config/rs6000/altivec.h: Add prototypes for builtins
13482         requiring the always_inline attribute.
13484 2002-02-21  Eric Christopher  <echristo@redhat.com>
13486         * expmed.c (store_bit_field): Try to simplify the subreg
13487         before generating a new one when when the mode size of
13488         value is less than maxmode.
13490 2002-02-21  Richard Henderson  <rth@redhat.com>
13492         * emit-rtl.c (offset_address): Use simplify_gen_binary rather
13493         than gen_rtx_PLUS to form the sum.
13494         * explow.c (force_reg): Rearrange to not allocate new pseudo
13495         when force_operand returns a register.
13496         * expr.c (expand_assignment): Allow offset_rtx expansion to
13497         return a sum.  Do not force addresses into registers.
13498         (expand_expr): Likewise.
13499         * simplify-rtx.c (simplify_gen_binary): Use simplify_plus_minus
13500         to canonicalize arithmetic that didn't simpify.
13501         (simplify_plus_minus): New argument force; update
13502         all callers.  Don't split CONST unless we can do something with it,
13503         and wouldn't lose the constness of the operands.
13505         * config/i386/i386.c (legitimize_pic_address): Recognize UNSPECs
13506         that we generated earlier.
13508 2002-02-21  Tom Tromey  <tromey@redhat.com>
13510         * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
13511         (output_line_info): Use constant `1', with a long explanatory
13512         comment.
13513         * system.h (DWARF_LINE_MIN_INSTR_LENGTH): Poison.
13515 Thu Feb 21 22:43:44 2002  J"orn Rennecke <joern.rennecke@superh.com>
13517         * jump.c (redirect_jump): If old label has no UID, don't try to
13518         delete it.
13520 Thu Feb 21 21:17:21 2002  J"orn Rennecke <joern.rennecke@superh.com>
13522         * sh.md (insv): Provide byte offsets for gen_rtx_SUBREG.
13523         If input is constant, do shifts at compile time.
13525 2002-02-21  Joseph S. Myers  <jsm28@cam.ac.uk>
13527         * doc/extend.texi: Fix some more overfull hboxes.
13529 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
13531         PR optimization/4994
13532         * config/i386/i386.md (movsi_1, movsf_1): Support MMX -> MMX
13533         register moves.
13535 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
13537         PR c++/4574
13538         * expr.h (expand_and): Add mode argument.
13539         * expmed.c (expand_and): Add mode argument.
13540         (expand_mult_highpart_adjust, emit_store_flag): Adjust callers.
13541         * expr.c (store_field, expand_expr, do_store_flag): Likewise.
13542         * except.c (expand_builtin_extract_return_addr): Likewise.
13543         * config/alpha/alpha.c (alpha_initialize_trampoline): Likewise.
13544         * config/sparc/sparc.c (sparc_initialize_trampoline): Likewise.
13545         * config/c4x/c4x.h (INITIALIZE_TRAMPOLINE): Likewise.
13546         Use GEN_INT (x) instead of gen_rtx (CONST_INT, VOIDmode, x).
13547         * config/c4x/c4x.md: Use GEN_INT (x) instead of
13548         gen_rtx (CONST_INT, VOIDmode, x).
13550 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
13552         PR c/4697:
13553         * stmt.c (warn_if_unused_value): Move side effects test once more.
13555 2002-02-20  Torbjorn Granlund  <tege@swox.com>
13557         * config/avr/avr.md: Add more patterns for mized-mode add and subtract
13558         (addsi3_zero_extend, subhi3_zero_extend1, subsi3_zero_extend).
13560 Thu Feb 21 16:20:46 2002  Alexandre Oliva  <aoliva@redhat.com>
13562         * rtlanal.c (replace_rtx): Don't make a CONST_INT the operand of
13563         SUBREG or ZERO_EXTEND.
13565 Thu Feb 21 15:35:46 2002  J"orn Rennecke <joern.rennecke@superh.com>
13567         * sh.h (current_function_anonymous_args): Remove.
13568         (SETUP_INCOMING_VARARGS): Don't set it - just check that one
13569         of current_function_varargs and current_function_stdarg is set.
13570         * sh.c (sh_expand_prologue): Check current_function_varargs /
13571         current_function_stdarg / TARGET_SH5 instead of
13572         current_function_anonymous_args.
13574         * sh64.h (TARGET_VERSION): Define.
13576 2002-02-20  David Edelsohn  <edelsohn@gnu.org>
13578         * config/rs6000/rs6000.h (EPILOGUE_USES): Conditionalize
13579         VRSAVE_REGNO on TARGET_ALTIVEC.
13581 2002-02-20  Alan Modra  <amodra@bigpond.net.au>
13583         * config/rs6000/rs6000.c (includes_lshift_p): Mask irrelevant
13584         bits of SImode const_int.
13585         (includes_rshift_p): Likewise.
13586         (print_operand): Call mask_operand and mask64_operand with correct
13587         mode.
13588         (rs6000_output_function_epilogue): Pad traceback table to word.
13589         * config/rs6000/rs6000.h (MASK_64BIT): Correct comment.
13590         (EXTRA_CONSTRAINT, 'S' and 'T'): Call mask_operand and
13591         mask64_operand with correct mode.
13592         (FUNCTION_ARG_REGNO_P): Correct parentheses.
13594 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
13596         PR debug/4461
13597         * varasm.c (get_pool_constant_mark): New.
13598         * rtl.h (get_pool_constant_mark): Add prototype.
13599         * dwarf2out.c (mem_loc_descriptor): A pool constant cannot
13600         be represented if it has not been output.
13602 2002-02-20  Alexandre Oliva  <aoliva@redhat.com>
13604         * combine.c (do_SUBST): Sanity check substitutions of
13605         CONST_INTs, and reject them in SUBREGs and ZERO_EXTENDs.
13606         (subst): Simplify SUBREG or ZERO_EXTEND instead of SUBSTing a
13607         CONST_INT into its operand.
13608         (known_cond): Likewise, for ZERO_EXTEND.
13609         * simplify-rtx.c (simplify_unary_operation): Fix condition to
13610         allow for simplification of wide modes.  Reject CONST_INTs in
13611         ZERO_EXTEND when their actual mode is not given.
13613 2002-02-20  Alexandre Oliva  <aoliva@redhat.com>
13615         * c-decl.c (pushdecl): If no global declaration is found for an
13616         extern declaration in block scope, try a limbo one.
13618 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
13620         PR c++/4401
13621         * c-common.c (pointer_int_sum): Moved from...
13622         * c-typeck.c (pointer_int_sum): ...here.
13623         * c-common.h (pointer_int_sum): Add prototype.
13625 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
13627         PR c++/5713
13628         * c-decl.c (duplicate_decls): Return 0 if issued error about
13629         redeclaration.
13631 2002-02-20  Roger Sayle  <roger@eyesopen.com>
13632             Jakub Jelinek  <jakub@redhat.com>
13634         PR c/4389
13635         * tree.c (host_integerp): Ensure that the constant integer is
13636         representable in a HOST_WIDE_INT or an unsigned HOST_WIDE_INT
13637         when pos is zero or non-zero respectively.  Clarify comment.
13638         * c-format.c (check_format_info_recurse): Fix host_integerp
13639         usage; the pos argument should be zero when assigning to a
13640         signed HOST_WIDE_INT.
13642 2002-02-20  Richard Henderson  <rth@redhat.com>
13644         * config/i386/i386.c (ix86_expand_vector_move): Use the mode
13645         of the operand, rather than assuming TImode.
13646         (ix86_expand_binop_builtin): Cope with commutative patterns
13647         using nonimmediate_operand for both operands.
13648         (ix86_expand_timode_binop_builtin): Likewise.
13649         (ix86_expand_store_builtin): Validate operand 1.
13650         (ix86_expand_unop1_builtin): Likewise.
13652 2002-02-20  Philip Blundell  <philb@gnu.org>
13654         PR 5705
13655         * config/arm/arm.h (HARD_REGNO_RENAME_OK): New macro.
13657 2002-02-20  Richard Henderson  <rth@redhat.com>
13659         PR c/5615
13660         * expr.h (ARGS_SIZE_TREE): Convert size.var to ssizetype.
13662 2002-02-20  Tom Tromey  <tromey@redhat.com>
13664         * config/fr30/fr30.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
13665         * config/sh/sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
13666         * config/pj/pj.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
13667         * config/cris/cris.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
13668         * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Define
13669         unconditionally.
13671 Wed Feb 20 00:03:25 EST 2002 Alan Matsuoka <alanm@redhat.com>
13673         * config/rs6000/rs6000.h (LEGITIMATE_OFFSET_ADDRESS_P): Look
13674           for (const_int 0) in X not just INTVAL.
13676 2002-02-20  Joseph S. Myers  <jsm28@cam.ac.uk>
13678         * doc/extend.texi: Avoid or reduce overfull hboxes.
13680 2002-02-20  Diego Novillo  <dnovillo@redhat.com>
13682         * expmed.c (store_bit_field): Do not store bit fields using SUBREG
13683         operations if the field does not start at a mode boundary.
13685 2001-02-20      Joel Sherrill <joel@OARcorp.com>
13687         * config/a29k/rtems.h, config/arm/rtems-elf.h, config/h8300/rtems.h,
13688         config/mips/rtems.h: Use new style of -Asystem= rather than -Asystem().
13689         Also done for -Acpu and -Amachine.
13691 2002-02-20  Neil Booth  <neil@daikokuya.demon.co.uk>
13693         * cppinit.c (init_dependency_output): Take deps output file
13694         from -o if none given with -MF.  Suppress normal output.
13695         * gcc.c (cpp_unique_options): Have -M and -MM imply -E.
13696         * doc/cpp.texi, doc/invoke.texi: Update.
13698 2002-02-19  Zack Weinberg  <zack@codesourcery.com>
13700         * toplev.c (output_quoted_string): Write unprintable
13701         characters with octal escapes.
13703 2002-02-19  David Edelsohn  <edelsohn@gnu.org>
13705         * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Set
13706         really_call_used[VRSAVE_REGNO] if not Altivec.
13708 2002-02-19  Alan Modra  <amodra@bigpond.net.au>
13710         * config/rs6000/rs6000.c (u_short_cint_operand): Mask op with
13711         MODE_MASK.
13712         (constant_pool_expr_1): Fix formatting.
13713         (rs6000_legitimize_reload_address): Likewise.
13715 Tue Feb 19 20:13:57 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
13717         * config/sparc/sparc.md (nonlocal_goto): Use hard_frame_pointer_rtx
13718         now that we have one.
13720 2002-02-19  Zack Weinberg  <zack@codesourcery.com>
13722         * tree.h (struct tree_common): Remove aux.  Add unused_0 at
13723         end of first block of bitfields (which was only seven bits);
13724         rename dummy to unused_1; remove comment which is no longer true.
13726 2002-02-19  Gaute B Strokkenes <gs234@cam.ac.uk>
13728         * doc/c-tree.texi (Classes, TYPE_BINFO): Fix typo.
13730 2002-02-19  Philip Blundell  <pb@nexus.co.uk>
13732         PR 5399
13733         * config/arm/arm.h (THUMB_LEGITIMATE_CONSTANT_P): Accept anything
13734         if generating PIC.
13736         PR 5054
13737         * config/arm/arm.md (call_insn) [TARGET_THUMB]: Use
13738         arm_is_longcall_p rather than inspecting call-type cookie
13739         directly.
13740         (call_value_insn) [TARGET_THUMB]: Likewise.
13742 2002-02-19  Graham Stott  <grahams@redhat.com>
13744         * config/i386/i386.c (ix86_expand_builtin): Fix typo.
13746 2002-02-19  David Edelsohn  <edelsohn@gnu.org>
13748         * config/rs6000/linux64.h (LINK_OS_LINUX_SPEC): Look in /lib64.
13749         ({STARTFILE,ENDFILE}_LINUX_SPEC): Define.
13750         (FP_SAVE_INLINE): Delete.
13752         * config/rs6000/sysv4.h (ENDFILE_SPEC): Add crtsaveres.o.
13753         * config/rs6000/eabi.asm: Remove ABI save restore routines.
13754         * config/rs6000/t-ppccomm: Build crtsavres.o.
13755         * config/rs6000/crtsavres.asm: New file.
13757 2002-02-19  Philip Blundell  <philb@gnu.org>
13759         * config/arm/arm.c (use_return_insn): Don't reject interrupt
13760         functions.
13761         (arm_compute_save_reg_mask): Save LR for interrupt functions too.
13762         (output_return_instruction): Allow interrupt functions to return with
13763         ldmfd sp!, {... pc}^.  Use LDR to restore any single register.
13764         (arm_expand_prologue): Subtract 4 before stacking LR in an
13765         interrupt function.
13767 2002-02-19  Philip Blundell  <pb@nexus.co.uk>
13769         * config/arm/arm.c (arm_encode_call_attribute): Operate on any
13770         decl, not just FUNCTION_DECL.
13771         (legitimize_pic_address): Handle local SYMBOL_REF like LABEL_REF.
13772         (arm_assemble_integer): Likewise.
13773         * config/arm/arm.h (ARM_ENCODE_CALL_TYPE): Allow any decl to be
13774         marked local.
13776 2002-02-19  matthew green  <mrg@eterna.com.au>
13778         * config.gcc (sparc-*-netbsdelf*): Enable target.
13779         (sparc64-*-netbsd*): New target.
13780         * config/sparc/netbsd-elf.h: New file.
13781         * config/sparc/t-netbsd64: New file.
13783 2002-02-19  Gaute B Strokkenes <gs234@cam.ac.uk>
13785         * doc/rtl.texi (Flags, MEM_SCALAR_P): Fix typo.
13787 2002-02-19  Ryan T. Sammartino <ryants@shaw.ca>
13789         * doc/invoke.texi: explicitly list the style guidelines that
13790         -Weffc++ checks for.
13792 Tue Feb 19 12:37:23 CET 2002  Jan Hubicka  <jh@suse.cz>
13794         * regmove.c (regmove_optimize): Avoid increasing of register pressure.
13796 2002-02-19  Neil Booth  <neil@daikokuya.demon.co.uk>
13798         PR other/5718
13799         * gcc.c (cpp_unique_options): Treat -o as indicating object file
13800         only if not -E.  If -E, pass -o through to the preprocessor.
13802 2002-02-19  Kazu Hirata  <kazu@hxi.com>
13804         * config/h8300/h8300.h (REGNO_REG_CLASS): Replace a literal
13805         register number with an appropriate macro.
13807 2002-02-19  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
13809         * doc/rtl.texi (Constants): Close @code tag.
13811 2002-02-19  Aldy Hernandez  <aldyh@redhat.com>
13813         * config/i386/i386.md ("mmx_uavgv8qi3"): Use const_vector.
13814         ("mmx_uavgv4hi3"): Same.
13815         ("pmulhrwv4hi3"): Same.
13817         * tree-inline.c (walk_tree): Handle vectors.
13819         * c-common.c (constant_expression_warning): Handle vectors.
13820         (overflow_warning): Same.
13822         * sched-deps.c (sched_analyze_2): Handle vectors.
13824         * rtlanal.c (rtx_unstable_p): Handle vectors.
13825         (rtx_varies_p): Same.
13826         (count_occurrences): Same.
13827         (regs_set_between_p): Same.
13828         (modified_between_p): Same.
13829         (modified_in_p): Same.
13830         (volatile_insn_p): Same.
13831         (volatile_refs_p): Same.
13832         (side_effects_p): Same.
13833         (may_trap_p): Same.
13834         (inequality_comparisons_p): Same.
13835         (replace_regs): Same.
13836         (computed_jump_p_1): Same.
13838         * rtl.c (DEF_MACHMODE): Change all definitions to accept 8th
13839         argument.
13840         (inner_mode_array): New.
13841         (copy_rtx): Handle vectors.
13842         (copy_most_rtx): Same.
13843         (rtx_equal_p): Same.
13844         (get_mode_alignment): Adjust for vectors.
13846         * resource.c (mark_referenced_resources): Handle vectors.
13847         (mark_set_resources): Same.
13849         * reload1.c (eliminate_regs): Handle vectors.
13850         (elimination_effects): Same.
13851         (scan_paradoxical_subregs): Same.
13853         * reload.c (subst_reg_equivs): Handle vectors.
13855         * regrename.c (scan_rtx): Handle vectors.
13857         * regclass.c (reg_scan_mark_refs): Handle vectors.
13859         * recog.c (find_single_use_1): Handle vectors.
13861         * local-alloc.c (equiv_init_varies_p): Handle vectors.
13862         (contains_replace_regs): Same.
13863         (memref_referenced_p): Same.
13865         * integrate.c (copy_rtx_and_substitute): Handle vectors.
13866         (subst_constants): Same.
13868         * genattrtab.c (attr_copy_rtx): Handle vectors.
13869         (encode_units_mask): Same.
13870         (clear_struct_flag): Same.
13871         (count_sub_rtxs): Same.
13873         * gcse.c (want_to_gcse_p): Handle vectors.
13874         (oprs_unchanged_p): Same.
13875         (hash_expr_1): Same.
13876         (oprs_not_set_p): Same.
13877         (expr_killed_p): Same.
13878         (compute_transp): Same.
13879         (store_ops_ok): Same.
13881         * function.c (purge_addressof_1): Do not allow paradoxical subregs
13882         of vectors.
13883         (fixup_var_refs_1): Same.
13884         (instantiate_virtual_regs_1): Same.
13886         * fold-const.c (operand_equal_p): Handle vectors.
13887         (fold): Same.
13888         (rtl_expr_nonnegative_p): Same.
13890         * flow.c (mark_used_regs): Handle vectors.
13892         * df.c (df_uses_record): Handle vectors.
13894         * cselib.c (cselib_subst_to_values): Handle vectors.
13895         (cselib_mem_conflict_p): Same.
13896         (hash_rtx): Same.
13898         * cse.c (canon_reg): Handle vectors.
13899         (fold_rt): Same.
13900         (cse_process_notes): Same.
13901         (count_reg_usage): Same.
13902         (canon_hash): Same.
13904         * alias.c (nonlocal_mentioned_p): Add case for CONST_VECTOR.
13906         * combine.c (mark_used_regs_combine): Add case for CONST_VECTOR.
13908         * emit-rtl.c (init_emit_once): Generate const0_rtx for vectors.
13909         (gen_rtx): Handle CONST_VECTOR.
13910         (gen_const_vector_0): New.
13911         (copy_rtx_if_shared): CONST_VECTORs can be shared.
13912         (reset_used_flags): Same.
13913         (copy_insn_1): Same.
13914         (initializer_constant_valid_p): Handle VECTOR_CST.
13916         * doc/c-tree.texi (Expression trees): Document VECTOR_CST.
13918         * doc/rtl.texi (Constants): Document const_vector.
13919         (CONST0_RTX): Update for vectors.
13920         (RTL sharing): Same.
13922         * print-tree.c (print_node): Add case for VECTOR_CST.
13924         * tree.h (TREE_VECTOR_CST_ELTS): New.
13925         (struct tree_vector): New.
13926         (union tree_node): Add vector node.
13927         (build_vector): Add prototype.
13929         * tree.def (VECTOR_CST): New.
13931         * tree.c (build_vector): New.
13933         * expmed.c (make_tree): Handle CONST_VECTOR.
13935         * rtl.h (CONSTANT_P): CONST_VECTORs are constants too.
13936         (CONST_VECTOR_ELT): New.
13937         (CONST_VECTOR_NUNITS): New.
13939         * machmode.h (GET_MODE_INNER): New.
13940         (DEF_MACHMODE): Accept 8th arg.
13942         * machmode.def: Add 8th argument for vector inner mode.
13943         Add inner vector modes for vectors.
13945         * rtl.def (VEC_CONST): Remove.
13946         (CONST_VECTOR): New.
13948         * expr.c (clear_storage): Allow vectors.
13949         (is_zeros_p): Handle VECTOR_CST.
13951         * varasm.c (output_constant_pool): Handle vectors.
13952         (rtx_const): Add veclo and vechi fields.
13953         (kind): Add RTX_VECTOR.
13954         (decode_rtx_const): Add case for vector.
13956         * config/rs6000/rs6000-protos.h: Add zero_constant.
13958         * config/rs6000/rs6000.c (rs6000_emit_move): Handle vector
13959         constants.  Force easy vector constants into memory.
13960         (easy_vector_constant): New.
13961         (emit_easy_vector_constant): New.
13962         (rs6000_legitimize_reload_address): Do not generate bad reloads on
13963         darwin.
13965         * config/rs6000/rs6000.md ("altivec_lvx"): Reflect what
13966         instruction does.
13967         ("altivec_lvxl"): Same.
13968         (altivec_lvebx): Same.
13969         (altivec_lvehx): Same.
13970         (altivec_lvewx): Same.
13971         ("*movv4si_const0"): New.
13972         ("*movv4sf_const0"): New.
13973         ("*movv8hi_const0"): New.
13974         ("*movv16qi_const0"): New.
13976 2002-02-18  Kazu Hirata  <kazu@hxi.com>
13978         * config/h8300/h8300.c (notice_update_cc): Use
13979         cc_status.value2.
13981 2002-02-18  Kazu Hirata  <kazu@hxi.com>
13983         * config/h8300/h8300.md (divmod patterns): Change the
13984         constraints for operands[1] to register_operand.
13986 2002-02-18  Kazu Hirata  <kazu@hxi.com>
13988         * config/h8300/h8300-protos.h: Remove the prototype for
13989         p_operand.
13990         * config/h8300/h8300.c (p_operand): Remove.
13991         * config/h8300/h8300.md: Replace p_operand with
13992         const_int_operand.
13994 2002-02-18 Philip Blundell <pb@nexus.co.uk>
13996         * config/arm/arm.c (arm_compute_save_reg_mask): Fix typo in
13997         comment.
13998         (output_return_instruction): Allow use of LDR to unstack
13999         return addresss even for interrupt handlers or when
14000         interworking.  If compiling for ARMv5, use interworking-safe
14001         return instructions by default.  Remove duplicated code and
14002         lengthy "strcat" sequences.
14004 2002-02-18  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
14006         * config/rs6000/sysv4.h (STARTFILE_SPEC): Use crtbeginT.o for -static.
14007         (LINK_EH_SPEC): Define.
14008         * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbeginT.o.
14010 2002-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
14012         * config/s390/s390.c (s390_emit_prologue): Do not set the
14013         frame_related flag for call-clobbered registers.
14015 Mon Feb 18 15:07:35 CET 2002  Jan Hubicka  <jh@suse.cz>
14017         * i386.c (classify_argument): Properly classify SSE/MMX modes and VOIDmode.
14018         (construct_container): Fix handling of SSE operands.
14019         (ix86_expand_builtin): Fix handling of 64bit pointers.
14020         (mmx_maskmovq_rex): New pattern.
14022 Mon Feb 18 11:55:55 CET 2002  Jan Hubicka  <jh@suse.cz>
14024         * regrename.c (kill_set_value): Handle subregs properly.
14026 2002-02-18  David Billinghurst <David.Billinghurst@riotinto.com>
14028         * objc/objc-act.c (handle_impent): Remove leading '*'
14029         from objc_class_name.
14031 2002-02-17  Richard Henderson  <rth@redhat.com>
14033         * config/alpha/alpha.c (some_small_symbolic_operand,
14034         some_small_symbolic_operand_1, split_small_symbolic_operand,
14035         split_small_symbolic_operand_1): Rename from *symbolic_mem_op*.
14036         Handle small SYMBOL_REFs anywhere, not just inside memories.
14037         * config/alpha/alpha-protos.h: Update.
14038         * config/alpha/alpha.h (PREDICATE_CODES): Update.
14039         * config/alpha/alpha.md (small symbolic operand splitter): Update.
14041 2002-02-17  Roland McGrath  <roland@frob.com>
14043         * config.gcc (powerpc-*-gnu-gnualtivec*,
14044         powerpc-*-gnu*, powerpc64-*-gnu*): New configurations.
14045         * config/rs6000/gnu.h: New file.
14046         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS):
14047         Grok "gnu" in rs6000_abi_name.
14048         (ASM_SPEC, CC1_SPEC, LINK_START_SPEC, LINK_OS_SPEC,
14049         CPP_ENDIAN_SPEC, CPP_SPEC, STARTFILE_SPEC, LIB_SPEC, ENDFILE_SPEC):
14050         Grok -mcall-gnu analogous to -mcall-linux et al.
14051         (LIB_GNU_SPEC, STARTFILE_GNU_SPEC, ENDFILE_GNU_SPEC,
14052         LINK_START_GNU_SPEC, LINK_OS_GNU_SPEC, CPP_OS_GNU_SPEC): New macros.
14053         (SUBTARGET_EXTRA_SPECS): Add *_os_gnu specs using them.
14055 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
14057         PR c/3444:
14058         * c-typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
14059         shortening.
14061 2002-02-17  Philipp Thomas  <pthomas@suse.de>
14063         * config/cris/cris.h: Undefine STARTFILE_SPEC and
14064         ENDFILE_SPEC before (re)defining them.
14066 2002-02-17  Kazu Hirata  <kazu@hxi.com>
14068         * config/h8300/h8300.c: Fix formatting.
14069         * config/h8300/h8300.h: Likewise.
14071 2002-02-17  Philipp Thomas  <pthomas@suse.de>
14073         * doc/tm.texi: Explain why empty strings should not be
14074         marked for translation.
14076 2002-02-17  Philipp Thomas  <pthomas@suse.de>
14078         * final.c (output_operand_lossage): Changed to accept
14079         printf style arguments. Change calls where necessary.
14080         * output.h (output_operand_lossage): Change declaration
14081         accordingly. Update copyright.
14082         * config/arc/arc.c config/fr30/fr30.c config/m32r/m32r.c
14083         config/m88k/m88k.c : Adapt all calls to output_operand_lossage.
14084         Update copyright date where necessary.
14086         * config/i386/i386.c (print_operand): Likewise. Remove use of
14087         sprintf.
14089         * config/cris/cris.c (cris_operand_lossage): Likewise.
14090         Rename parameter so that exgettext recognizes it as
14091         translatable message.
14092         (LOSE_AND_RETURN): Rename parameter to msgid.
14094 2002-02-17  Kazu Hirata  <kazu@hxi.com>
14096         * config/h8300/h8300.h (CONDITIONAL_REGISTER_USAGE): Replace a
14097         hard coded register number with an appropriate macro.
14098         (HARD_REGNO_MODE_OK): Likewise.
14099         (ARG_POINTER_REGNUM): Likewise.
14100         (STATIC_CHAIN_REGNUM): Likewise.
14101         (RETURN_ADDRESS_POINTER_REGNUM): Likewise.
14102         * config/h8300/h8300.md (define_constants): Define more
14103         register numbers.
14105 2002-02-17  Philipp Thomas  <pthomas@suse.de>
14107         * config/i386/i386.h: Don't mark empty strings for translation.
14109 2002-02-16  H.J. Lu <hjl@gnu.org>
14111         * config/mips/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): New.
14113 2002-02-16  Zack Weinberg  <zack@codesourcery.com>
14115         * cppinit.c (merge_include_chains): Check for brack being
14116         NULL before attempting to merge it with qtail.
14118 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
14120         * config/rs6000/netbsd.h (PREFERRED_DEBUGGING_TYPE): Set to
14121         DBX_DEBUG.
14123 2002-02-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
14125         * pa/t-pa, pa/t-pro, som.h: Revert last patch.
14127 2002-02-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
14129         * pa/t-pa (LIB2FUNCS_EXTRA): Don't build lib2funcs.asm.
14130         * pa/t-pro (LIB2FUNCS_EXTRA): Likewise.
14131         * som.h (DO_GLOBAL_DTORS_BODY): Delete define.
14133 Sat Feb 16 13:48:50 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14135         * config/alpha/alpha.md (*movsi_nt_vms_nofix): Was *movsi_nt_vms;
14136         now only if !TARGET_FIX.
14137         (*movsi_nt_vms_fix): New pattern.
14139 2002-02-16  Douglas B Rupp  <rupp@gnat.com>
14141         * config/alpha/alpha.c: Implement null frame procedure types on VMS.
14142         (alpha_procedure_type): Replaces alpha_is_stack_procedure.
14143         (alpha_sa_mask, alpha_sa_size): Reflect above change.
14144         (alpha_pv_save_size, alpha_expand_prologue): Likewise.
14145         (alpha_start_function, alpha_expand_epilogue): Likewise.
14146         (unicosmk_gen_dsib): Likewise.
14148 Sat Feb 16 13:39:09 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14150         * expr.c (store_constructor): Handle target REG case for ARRAY_TYPE.
14152 2002-02-16  Ulrich Weigand  <uweigand@de.ibm.com>
14154         * config/s390/s390.c (pool_stop_uid, other_chunk, far_away,
14155         check_and_change_labels, s390_final_chunkify): Delete.
14156         (s390_split_branches, s390_chunkify_pool): New functions.
14157         (s390_function_prologue): Call them.
14159         * config/s390/s390.h (S390_REL_MAX): Delete.
14160         (S390_CHUNK_MAX, S390_CHUNK_OV): Adjust values.
14162         * config/s390/s390.md (cjump, icjump, jump): Fix length
14163         attribute calculation.
14166 2002-02-15  David Edelsohn  <edelsohn@gnu.org>
14168         * config/rs6000/linux64.h (STRIP_NAME_ENCODING): Delete.
14169         * config/rs6000/ppc-asm.h (JUMP_TARGET): Define for powerpc64.
14171 2002-02-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
14173         * gcc.c (init_gcc_specs): Revert patch from 2002-02-15.
14174         * config/pa/pa-linux.h (LIB_SPEC): Likewise.
14175         * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Likewise.
14177 2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
14179         * c-decl.c (grokdeclarator): Prevent a segfault on unnamed decls.
14181 2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
14183         * reload.c (find_dummy_reload): Check that an output register
14184         is valid for its mode.
14186 2002-02-14  Alexandre Oliva  <aoliva@redhat.com>
14188         * combine.c (known_cond): After replacing the REG of a SUBREG, try
14189         to simplify it.
14191         * function.c (assign_parms): Demote promoted argument passed by
14192         transparent reference.
14194 2001-02-14      Joel Sherrill <joel@OARcorp.com>
14196         * config/arm/rtems-elf.h, config/h8300/rtems.h: Removed redundant
14197         -Acpu() and -Amachine() to eliminate warnings.
14199 2002-02-14  Ulrich Weigand  <uweigand@de.ibm.com>
14201         * config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.
14203 2002-02-14  Kazu Hirata  <kazu@hxi.com>
14205         * config/h8300/h8300-protos.h: Update the prototype for
14206         const_costs.
14207         * config/h8300/h8300.c (const_costs): Treat SET as a little
14208         more expensive operation.
14209         * config/h8300/h8300.h (DEFAULT_RTX_COSTS): Update the
14210         reference to const_costs.
14212 2002-02-14  Hans-Peter Nilsson  <hp@axis.com>
14214         * config.gcc (c4x-*-rtems*): Fix typo in tm_file setting.
14216 2002-02-14  Jakub Jelinek  <jakub@redhat.com>
14218         PR c/5503:
14219         * c-decl.c (duplicate_decls): If builtin type has TYPE_ARG_TYPES NULL,
14220         use arguments from newtype.
14222 2002-02-13  Eric Christopher  <echristo@redhat.com>
14224         * config/mips/mips.c (override_options): Add check for march/mipsX
14225         on the same command line. Fix error message in cpu processing.
14226         Remove architecture and ISA checks.
14228 2002-02-14  Aldy Hernandez  <aldyh@redhat.com>
14230         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Adjust for vectors.
14232         * config/rs6000/sysv4.h (ROUND_TYPE_ALIGN): Add MAX.
14234 2002-02-14  Aldy Hernandez  <aldyh@redhat.com>
14236         * config/rs6000/rs6000.md ("*movv4si_internal"): Add m<-r and r<-r
14237         alternatives.
14238         ("*movv8hi_internal1"): Same.
14239         ("*movv16qi_internal1"): Same.
14240         ("*movv4sf_internal1"): Same.
14242         * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Do
14243         not push_reload for altivec modes.
14245 2002-02-13  Joel Sherrill  <joel@OARcorp.com>
14247         * config.gcc (a29k-*-rtems), config/a29k/rtems.h: General cleanup across
14248         all RTEMS targets including removal of #includes from config/*/rtems*.h
14249         file and adding them to tm_file setting. Added xm_defines=POSIX to
14250         many targets.
14251         * config.gcc (c4x-*-rtems), config/c4x/rtems.h: Ditto.
14252         * config.gcc (h8300-*-rtems), config/h8300/rtems.h: Ditto.
14253         * config.gcc (hppa1.1-*-rtems), config/pa/rtems.h: Ditto.
14254         * config.gcc (i960-*-rtems), config/i960/rtems.h: Ditto.
14255         * config.gcc (m68k-*-rtems*), config/m68k/rtems.h,
14256         config/m68k/rtemself.h: Ditto.
14257         * config.gcc (mips*-*-rtems*), config/mips/rtems.h,
14258         config/mips/rtems64.h: Ditto.
14259         * config.gcc (powerpc-*-rtems*), config/rs6000/rtems.h: Ditto.
14260         * config.gcc (sh-*-rtems*), config/sh/rtems.h, config/sh/rtemself.h:
14261         Ditto.
14262         * config.gcc (sparc-*-rtems*), config/sparc/rtems.h,
14263         config/sparc/rtemself.h: Ditto.
14264         * config.gcc (v850-*-rtems*), config/v850/rtems.h: Ditto.
14265         * config.gcc (arm-rtems), config/arm/rtems-elf.h: Ditto plus moved
14266         arm-rtems stanza closer to other arm-elf targets and made arm-rtems
14267         more like arm-elf.
14268         * config.gcc (i[34567]86-*-rtems*), config/i386/djgpp-rtems.h,
14269         config/i386/rtems.h, config/i386/rtemself.h: Ditto plus i386-rtemself
14270         target made more similar to i386-elf.
14271         * config/i386/t-rtems-i386: Added soft float support and multilibs.
14272         * config/m68k/t-m68kbare: Add 68040 and 68060 as multilib alternatives to
14273         be similar to config/m68k/t-m68kelf.
14274         * gthr-rtems.h: Encapsulate with extern "C" for C++.
14276 Wed Feb 13 23:41:15 CET 2002  Jan Hubicka  <jh@suse.cz>
14278         * regmove.c (kill_value): Handle subregs.
14280 Wed Feb 13 23:34:30 CET 2002  Jan Hubicka  <jh@suse.cz>
14282         * i386.md (mul patterns): Allow memory operand to be first;
14283         add expanders where needed; fix constraints.
14284         (min?f_nonieee, max?f_nonieee, SSE TImode patterns):
14285         Allow memory operand to be the first.
14287         * i386.c (ix86_prepare_fp_compare_args): Fix condition for swapping
14288         operands.
14290 2002-02-13  Jakub Jelinek  <jakub@redhat.com>
14292         PR c/5681:
14293         * expr.c (safe_from_p): Pass VOIDmode to true_dependence instead of
14294         GET_MODE (x).
14296 2002-02-13  Jakub Jelinek  <jakub@redhat.com>
14298         PR optimization/5547:
14299         * config/i386/i386.c (i386_simplify_dwarf_addr): Simplify
14300         all valid IA-32 address modes involving non-scaled %ebx and
14301         GOT/GOTOFF as displacement.
14303 2002-02-13  Ulrich Weigand  <uweigand@de.ibm.com>
14305         * config/s390/s390.c (s390_final_chunkify): Re-run shorten_branches
14306         after emitting ltorg insns.
14308         * config/s390/s390.md (*cmpdf_ccs_0, *cmpdf_ccs, *cmpsf_ccs_0,
14309         *cmpsf_ccs, truncdfsf2_ieee, *adddf3, *addsf3, *subdf3, *subsf3,
14310         *muldf3, *mulsf3, *divdf3, *divsf3, *negdf2, *negsf2, *absdf2,
14311         *abssf2): Fix "op_type" attribute.
14313 2002-02-13  Douglas B Rupp  <rupp@gnat.com>
14315         * mkconfig.sh: Avoid using a subshell redirect.
14316         ($output.T): Change to $(output)T.
14317         (ENABLE_NLS): Remove unneeded undef.
14319         * config/alpha/vms.h (MD_EXEC_PREFIX, MD_STARTFILE_PREFIX): Define.
14320         * config/alpha/x-vms (libsubdir): Define.
14322         * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Handle
14323         register frame procedures. Optimize retrieving context.
14325         * config/alpha/t-vms (MULTILIB_OPTIONS): Define.
14326         (MULTILIB_DIRNAME, LIBGCC, INSTALL_LIBGCC): Likewise.
14327         * config/alpha/vms.h (ASM_FILE_START): Write .arch directive.
14329 Wed Feb 13 09:45:08 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14331         * alias.c (find_base_term, case ZERO_EXTEND, case SIGN_EXTEND):
14332         Make same change as for find_base_value.
14334 2002-02-13  Kazu Hirata  <kazu@hxi.com>
14336         * config/h8300/h8300.h (MODES_TIEABLE_P): Accept a combination
14337         of QImode and SImode.
14339 2002-02-13  Kazu Hirata  <kazu@hxi.com>
14341         * config/h8300/h8300.c (h8300_adjust_insn_length): Correct the
14342         length computation of movsi.
14343         * config/h8300/h8300.md (movsi_h8300hs): Correct the length.
14345 2002-02-13  Kazu Hirata  <kazu@hxi.com>
14347         * config/h8300/h8300.md (subqi3): Tighten the predicate for
14348         operands[2] to register_operand.
14350 Wed Feb 13 10:35:56 CET 2002  Jan Hubicka  <jh@suse.cz>
14352         * i386.md (fop_*_comm_*): allow nonimmediate in the first operand.
14354 2002-02-12  Aldy Hernandez  <aldyh@redhat.com>
14356         * config/rs6000/rs6000.md: Use predicate altivec_register_operand
14357         for altivec_lvx* and altivec_stvx*.
14358         ("*movv4si_internal"): Add constraint for loading from GPRs.
14359         ("*movv8hi_internal1"): Same.
14360         ("*movv16qi_internal1"): Same.
14361         ("*movv4sf_internal1"): Same.
14363         * config/rs6000/rs6000.c (altivec_register_operand): New.
14365         * config/rs6000/rs6000.h (PREDICATE_CODES): Add
14366         altivec_register_operand.
14368 2002-02-13  Hans-Peter Nilsson  <hp@bitrange.com>
14370         * config/mmix/mmix.c (mmix_assemble_integer) <case 4>: Don't
14371         handle SYMBOL_REF.
14373 2002-02-13  Stan Shebs  <shebs@apple.com>
14375         * c-typeck.c (digest_init): Handle vectors.
14376         (really_start_incremental_init): Same.
14377         (pop_init_level): Same.
14378         (process_init_element): Same.
14380         * varasm.c (output_constant): Same.
14382         * expr.c (clear_storage): Same.
14383         (store_constructor): Same.
14385 2002-02-12  Eric Christopher  <echristo@redhat.com>
14387         * explow.c (hard_function_value): Add comment explaining
14388         signed/unsigned comparison.
14390 2002-02-12  Jakub Jelinek  <jakub@redhat.com>
14392         * jump.c (never_reached_warning): Add finish argument.
14393         If finish is NULL, stop on CODE_LABEL, otherwise stop before first
14394         real insn after end.
14395         * rtl.h (never_reached_warning): Adjust prototype.
14396         * cse.c (cse_insn): Pass NULL as finish to never_reached_warning.
14397         * cfgrtl.c (flow_delete_block): Pass b->end as finish to
14398         never_reached_warning.
14400 2002-02-12  Graham Stott  <grahams@redhat.com>
14402         * config/hp/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
14404 2002-02-12  Kazu Hirata  <kazu@hxi.com>
14406         * config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
14407         logical shifts on H8/300.
14408         (shift_alg_si): Improve several shifts on H8/300.
14409         (get_shift_alg): Likewise.
14411 2002-02-12  Graham Stott  <grahams@redhat.com>
14413         * config/pa/pa.c (compute_movstrsi_length): Fix typos.
14415 Tue Feb 12 10:12:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
14417         * alias.c (find_base_value, case ZERO_EXTEND, case SIGN_EXTEND):
14418         Handle #ifdef POINTERS_EXTEND_UNSIGNED.
14420 2002-02-11  Hans-Peter Nilsson  <hp@bitrange.com>
14422         * config/mmix/mmix.c (mmix_assemble_integer) <case 1, 2>: Handle
14423         non-CONST_INT through default_assemble_integer.
14424         <case 4>: Likewise, for non-CONST_INT, non-SYMBOL_REF.
14425         <case 8>: Abort for CONST_DOUBLE.
14427 2002-02-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
14429         * gcc.c (init_gcc_specs): Add static libgcc to link when "-shared"
14430         is specified.
14431         * config/pa/pa-linux.h (LIB_SPEC): Delete.
14432         * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Delete.
14434 2002-02-11  Andrew Haley  <aph@cambridge.redhat.com>
14436         * config/stormy16/stormy16.md (zero_extendqihi2): New.
14438 2002-02-11  Alexandre Oliva  <aoliva@redhat.com>
14440         * regrename.c (regrename_optimize): Don't accept a
14441         part-clobbered register if the replaced register is not part
14442         clobbered.
14444         * calls.c (store_one_arg): In the non-BLKmode non-partial case,
14445         take padding into account when computing the argument value.
14447         * config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
14449         * combine.c (try_combine): Apply substitutions in
14450         CALL_INSN_FUNCTION_USAGE too.
14452 2002-02-11  Aldy Hernandez  <aldyh@redhat.com>
14454         * config/rs6000/rs6000.c (altivec_init_builtins): Handle
14455         __builtin_altivec_abs*.
14456         (bdesc_abs): New.
14458         * config/rs6000/rs6000.h (rs6000_builtins): Add
14459         ALTIVEC_BUILTIN_ABS*.
14461         * config/rs6000/altivec.h: Use const char for builtins expecting
14462         literals.
14463         (vec_abs): New versions for C and C++.
14464         (vec_abss): Same.
14466 2002-02-10  Kazu Hirata  <kazu@hxi.com>
14468         * config/h8300/h8300.h (INITIALIZE_TRAMPOLINE): Simplify by
14469         using Pmode.
14471 2002-02-10  Kazu Hirata  <kazu@hxi.com>
14473         * config/h8300/h8300.h (STACK_POINTER_REGNUM): Use the
14474         constant definition from h8300.md.
14475         (FRAME_POINTER_REGNUM): Likewise.
14476         * config/h8300/h8300.md (define_constants): Add FP_REG.
14478 2002-02-10  Kazu Hirata  <kazu@hxi.com>
14480         * config/h8300/h8300.c (print_operand): Remove redundant code.
14482 2002-02-10  Kazu Hirata  <kazu@hxi.com>
14484         * config/h8300/h8300-protos.h: Remove the prototype for byte_reg.
14485         * config/h8300/h8300.c (byte_reg): Make it static.
14487 2002-02-10  Richard Henderson  <rth@redhat.com>
14489         PR c/5623
14490         * c-typeck.c (incomplete_type_error): Handle flexible array members.
14492 2002-02-10  Richard Henderson  <rth@redhat.com>
14494         PR c++/5624
14495         * tree.c (append_random_chars): Don't abort if main_input_filename
14496         does not exist.
14498 2002-02-10  Hans-Peter Nilsson  <hp@bitrange.com>
14500         * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): Disable.
14502 2002-02-10  Kazu Hirata  <kazu@hxi.com>
14504         * config/h8300/h8300.md (pushhi1_h8300): Correct the mode used.
14505         (pushhi1): Likewise.
14507 2002-02-10  John David Anglin  <dave@hiauly1.hia.nrc.ca>
14509         * pa.c (reg_before_reload_operand): Don't accept a SUBREG operand.
14510         * pa.h (PREDICATE_CODES): Adjust codes for reg_before_reload_operand.
14512 2002-02-09  David O'Brien  <obrien@FreeBSD.org>
14514         * config/sparc/freebsd.h(TARGET_DEFAULT): Add MASK_EPILOGUE setting and
14515         remove MASK_VIS.
14516         (ASM_CPU_DEFAULT_SPEC): Remove.  Default setting is fine.
14518 2002-02-09  Kazu Hirata  <kazu@hxi.com>
14520         * config/h8300/h8300.c (output_logical_op): Use sub.w to clear
14521         a half of an SImode register on H8/300.
14523 Sat Feb  9 18:28:02 CET 2002  Jan Hubicka  <jh@suse.cz>
14525         * i386.md (movdi_2): Add missing '!'.
14527 2002-02-09  Kazu Hirata  <kazu@hxi.com>
14529         * config/h8300/h8300.h: Fix formatting.  Remove commented-out
14530         definitions.
14532 2002-02-09  Kazu Hirata  <kazu@hxi.com>
14534         * config/h8300/h8300.md (length): Correct the distance valid
14535         for the short branch.
14537 2002-02-09  Kazu Hirata  <kazu@hxi.com>
14539         * config/h8300/h8300.md (iorhi3): Tighten the predicates.
14541 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
14543         * config/sh/sh.h (REGISTER_NATURAL_MODE): Save part-clobbered
14544         registers in SImode.
14545         (HARD_REGNO_CALL_PART_CLOBBERED) [TARGET_SHMEDIA32]: Set r18 as
14546         part-clobbered.
14548         * config/sh/sh.c (expand_prologue): Fix mis-applied 2001-11-09's
14549         patch.
14551         Contribute sh64-elf.
14552         2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
14553         * config/sh/sh.c (TARGET_CANNOT_MODIFY_JUMPS_P): Define to...
14554         (sh_cannot_modify_jumps_p): New function.
14555         2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
14556         * config/sh/sh.c (TARGET_MS_BITFIELD_LAYOUT_P): Define to...
14557         (sh_ms_bitfield_layout_p): New function.
14558         2002-02-04  Alexandre Oliva  <aoliva@redhat.com>
14559                     Zack Weinberg  <zack@codesourcery.com>
14560         * config/sh/sh.h (TRAMPOLINE_ADJUST_ADDRESS): Use
14561         expand_simple_binop instead of expand_binop.
14562         2002-02-03  Alexandre Oliva  <aoliva@redhat.com>
14563         * config/sh/sh.h (OVERRIDE_OPTIONS) [! TARGET_SH5]: Disable
14564         use of .quad and .uaquad.
14565         * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP,
14566         TARGET_ASM_ALIGNED_DI_OP): Add comment pointing to the above.
14567         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
14568         * config/sh/sh.md (movdi_const, movdi_const_32bit,
14569         movdi_const_16bit): Make sure all CONSTs have modes.
14570         (sym2PIC): Ditto, but by adjusting all callers.
14571         * config/sh/sh.c (calc_live_regs) [TARGET_SHCOMPACT]: Set pr_live
14572         if the prologue calls the SHmedia argument decoder or register
14573         saver.
14574         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
14575         * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP): Define.
14576         (TARGET_ASM_ALIGNED_DI_OP): Likewise.
14577         (sh_expand_epilogue): Don't emit USE of return target register.
14578         (prepare_move_operands): Legitimize DImode PIC addresses.
14579         (sh_media_register_for_return): Skip tr0, used to initialize the
14580         PIC register.
14581         (sh_expand_prologue): Remove explicit USE of return register.
14582         (nonpic_symbol_mentioned_p): PC is non-PIC.  Don't recurse in
14583         CONST_DOUBLEs.  UNSPEC_GOTPLT is PIC.
14584         * config/sh/sh.h (ASM_OUTPUT_DOUBLE_INT): Removed, obsolete.
14585         (OVERRIDE_OPTIONS): Don't disable PIC on SH5.
14586         (EXTRA_CONSTRAINT_S): Use MOVI_SHORI_BASE_OPERAND_P instead of
14587         EXTRA_CONSTRAINT_T.
14588         (GOT_ENTRY_P, GOTPLT_ENTRY_P, GOTOFF_P, PIC_ADDR_P): New.
14589         (MOVI_SHORI_BASE_OPERAND_P): New.
14590         (NON_PIC_REFERENCE_P, PIC_REFERENCE_P): New.
14591         (EXTRA_CONSTRAINT_T): Define in terms of them.
14592         (OUTPUT_ADDR_CONST_EXTRA): Handle UNSPEC_GOTPLT.
14593         * config/sh/sh.md (movsi_media, movsi_media_nofpu,
14594         movdi_media, movdi_media_nofpu): Add SIBCALL_REGS class to
14595         alternatives supporting TARGET_REGS.
14596         (UNSPEC_GOTPLT): New constant.
14597         (movdi split): Move incrementing of LABEL_NUSES...
14598         (movdi_const, movdi_const_32bit): Here.  Use
14599         MOVI_SHORI_BASE_OPERAND_P instead of EXTRA_CONSTRAINT_T.
14600         (movdi_const_16bit): New.
14601         (call, call_value) [flag_pic]: Use GOTPLT.
14602         (call_pop, call_value_pop): New expands.
14603         (call_pop_compact, call_pop_rettramp): New insns.
14604         (call_value_pop_compact, call_value_pop_rettramp): New insns.
14605         (sibcall) [flag_pic]: Use GOT.
14606         (builtint_setjmp_receiver): Remove bogus, unused expand.
14607         (GOTaddr2picreg): Implement for SHcompact and SHmedia.
14608         (*pt, *ptb, ptrel): New insns.
14609         (sym2GOT): Handle DImode GOT.
14610         (sym2GOTPLT, symGOTPLT2reg): New expands.
14611         (sym2PIC): New expand.
14612         (shcompact_return_tramp): Use GOTPLT to return trampoline.
14613         (shcompact_return_tramp_i): Use return register explicitly.
14614         * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SHMEDIA]: Don't
14615         disable flag_reorder_blocks.
14616         2002-01-19  Alexandre Oliva  <aoliva@redhat.com>
14617         * config/sh/sh.md (sibcall_compact): Reorder return, uses and
14618         clobbers, for clarity.
14619         (sibcall_epilogue) [TARGET_SHCOMPACT]: Mark saving and
14620         restoring of r0 in macl as MAYBE_DEAD.
14621         2002-01-18  Alexandre Oliva  <aoliva@redhat.com>
14622         * config/sh/sh.h (LONG_DOUBLE_TYPE_SIZE): Define.
14623         * config/sh/sh.md (movv4sf_i, movv16sf_i): Fix uses of
14624         alter_subreg all over.
14625         (jump) [TARGET_SHMEDIA]: FAIL to create new jumps after
14626         reload, instead of emitting instructions that would require
14627         reloading.
14628         (casesi_load_media): Add missing modes.
14629         2001-11-09  Alexandre Oliva  <aoliva@redhat.com>
14630         * config/sh/sh.c (sh_expand_prologue): Mark the PIC register
14631         as used if the argument decoder is called.
14632         2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
14633         * config/sh/sh.md (udivsi3, divsi3): Load libcall symbol name in
14634         Pmode, then extend it to DImode if necessary.
14635         2001-08-28  Stephen Clarke  <Stephen.Clarke@st.com>
14636         * config/sh/sh.h (LEGITIMATE_CONSTANT_P): Don't accept DFmode
14637         constants in FPU-enabled SHmedia, let them be loaded from memory.
14638         2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
14639         * config/sh/sh.md (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media):
14640         Adjust whitespace in assembly output templates.
14641         2001-08-28  Stephen Clarke  <Stephen.Clarke@st.com>
14642         * config/sh/sh.md (movdicc_false, movdicc_true, movdicc): Adjust
14643         mode of if_then_else.
14644         2001-08-04  Alexandre Oliva  <aoliva@redhat.com>
14645         * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): Override definition in
14646         sh.h.
14647         2001-07-26  Andrew Haley  <aph@cambridge.redhat.com>
14648                     Joern Rennecke <amylaar@redhat.com>
14649         * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): New.
14650         (SUBTARGET_CPP_PTR_SPEC): New.
14651         (SUBTARGET_CPP_SPEC): Remove.
14652         2001-07-06  Chandrakala Chavva  <cchavva@redhat.com>
14653         * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
14654         Fix typo in previous checkin.
14655         2001-07-11  Chandrakala Chavva  <cchavva@redhat.com>
14656         * config/sh/sh.h (MODES_TIEABLE_P): Fix redact indentations.
14657         2001-07-10  Chandrakala Chavva  <cchavva@cygnus.com>
14658                     Alexandre Oliva  <aoliva@redhat.com>
14659         * config/sh/sh.h (MODES_TIEABLE_P): Don't tie modes wider than
14660         what single FP register can hold for SHmedia target.
14661         2001-07-06  Chandrakala Chavva  <cchavva@redhat.com>
14662                     Alexandre Oliva  <aoliva@redhat.com>
14663         * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
14664         Do not split into SUBREG.
14665         2001-06-14  Alexandre Oliva  <aoliva@redhat.com>
14666         * config/sh/ushmedia.h, config/sh/sshmedia.h: Updated signatures
14667         and added new functions as specified in SH5 ABI r9.
14668         2001-06-04  Alexandre Oliva  <aoliva@redhat.com>
14669         * config/sh/lib1funcs.asm (GCC_nested_trampoline): Align to an
14670         8-byte boundary.
14671         2001-06-03  Alexandre Oliva  <aoliva@redhat.com>
14672         * config/sh/sh.c (dump_table): Add const0_rtx in calls of
14673         gen_consttable_4 and gen_consttable_8.  Emit multiple labels
14674         and consttable_window_ends.
14675         2001-06-03  Graham Stott  <grahams@redhat,com>
14676         * config/sh/sh.md (movdi split): Remove unused variable last_insn.
14677         2001-05-16  Alexandre Oliva  <aoliva@redhat.com>
14678         * config/sh/sh.c (print_operand): Handle floating-point pair,
14679         vector and matrix registers.
14680         * config/sh/sh.h (REGISTER_MOVE_COST): Take floating-pointer
14681         vector modes into account.
14682         * config/sh/sh.md (movv2sf): Split move between registers into
14683         movdf.
14684         (movv4sf, movv16sf): Introduce insns that get split only after
14685         reload.
14686         * config/sh/shmedia.h: Fix Copyright dates.
14687         * config/sh/ushmedia.h: Likewise.  Move loop counter
14688         declarations into conditionals that uses them.
14689         (sh_media_FVADD_S, sh_media_FVSUB_S): Fix off-by-one error in
14690         loop boundary.
14691         * config/sh/sshmedia.h: Fix Copyright dates.
14692         (sh_media_PUTCFG): Fix constraints.
14693         2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
14694         * config/sh/sh.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define to
14695         ptrmemfunc_vbit_in_delta for SH5.
14696         2001-05-08  Alexandre Oliva  <aoliva@redhat.com>
14697         * config/sh/sh.h (TARGET_SWITCHES): Document -m5-*.
14698         * invoke.texi: Likewise.
14699         2001-04-14  Alexandre Oliva  <aoliva@redhat.com>
14700         * config/sh/lib1funcs.asm (GCC_push_shmedia_regs,
14701         GCC_push_shmedia_regs_nofpu, GCC_pop_shmedia_regs,
14702         GCC_pop_shmedia_regs_nofpu): New global symbols.
14703         * config/sh/t-sh64 (LIB1ASMFUNCS): Add them.
14704         * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): New macro.
14705         * config/sh/sh.c (calc_live_regs): Account for PR's saving in
14706         compact function with nonlocal labels.
14707         (sh_expand_prologue) [SHcompact]: Push SHmedia regs if needed.
14708         (sh_expand_epilogue) [SHcompact]: Pop them when appropriate.
14709         (initial_elimination_offset): Account for their stack space.
14710         * config/sh/sh.md (shmedia_save_restore_regs_compact): New insn.
14711         * config/sh/sh.md (movsi_media, movsi_media_nofpu, movqi_media,
14712         movhi_media, movdi_media, movdi_media_nofpu, movdf_media,
14713         movdf_media_nofpu, movsf_media, movsf_media_nofpu): Require at
14714         least one of the operands to be a register.
14715         (movv2sf): Likewise.  Renamed to movv2sf_i.
14716         (movdi, movdf, movv2sf, movv4sf, movv16sf, movsf):
14717         prepare_move_operands() before emitting SHmedia insns.
14718         2001-04-03  Alexandre Oliva  <aoliva@redhat.com>
14719         * config/sh/crti.asm (init, fini) [__SH5__ && ! __SHMEDIA__]:
14720         Don't save nor initialize r12.  Don't mis-align the stack.
14721         Pad the code with a nop.
14722         * config/sh/crti.asm: Don't restore r12.  Don't mis-align the
14723         stack.
14724         2001-03-13  Alexandre Oliva  <aoliva@redhat.com>
14725         * gcc/longlong.h (__umulsidi3, count_leading_zeros)
14726         [__SHMEDIA__]: Implement.
14727         2001-03-11  Alexandre Oliva  <aoliva@redhat.com>
14728         * config/sh/sh.md: Set latency of `pt' closer to reality.
14729         (movsi_media, movsi_media_nofpu, movdi_media, movdi_media_nofpu,
14730         movdf_media, movdf_media_nofpu, movsf_media, movsf_media_nofpu):
14731         Set move, load and store type attributes.
14732         * config/sh/sh.c (sh_loop_align) [TARGET_SH5]: Set to 3.
14733         * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SH5]: Disable
14734         profiling.
14735         * config/sh/sh.h (PROMOTE_MODE): Sign-extend SImode to DImode.
14736         * config/sh/sh-protos.h (sh_media_register_for_return): Declare.
14737         * config/sh/sh.c (sh_media_register_for_return): New function.
14738         (sh_expand_prologue) [TARGET_SHMEDIA]: Copy r18 to an available
14739         branch-target register.
14740         (sh_expand_epilogue) [TARGET_SHMEDIA]: Explicitly USE it.
14741         * config/sh/sh.md (return_media_i): Use any call-clobbered
14742         branch-target register.
14743         (return_media): If r18 wasn't copied in the prologue, copy it
14744         here.
14745         * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE) [TARGET_SHMEDIA]:
14746         Clear class FP0_REGS.
14747         * config/sh/sh64.h (LINK_SPEC): Removed incorrect default copied
14748         from elf.h.
14749         2001-03-08  DJ Delorie  <dj@redhat.com>
14750         * config/sh/sh.h (OVERRIDE_OPTIONS): Disable relaxing for SHMEDIA.
14751         2001-02-09  Alexandre Oliva  <aoliva@redhat.com>
14752         * config/sh/sh.md (sibcall_compact): Set fp_mode to single.
14753         2001-02-07  Alexandre Oliva  <aoliva@redhat.com>
14754         * config/sh/sh.h (INT_ASM_OP) [SHMEDIA64]: Use `.quad'.
14755         2001-02-03  Alexandre Oliva  <aoliva@redhat.com>
14756         * config/sh/sh.h (INIT_CUMULATIVE_ARGS): Compute size of BLKmode
14757         return value correctly for call_cookie.
14758         2001-02-01  Alexandre Oliva  <aoliva@redhat.com>
14759         * config/sh/crt1.asm (start): Modified so as to call
14760         ___setup_argv_and_call_main.
14761         2001-01-26  Alexandre Oliva  <aoliva@redhat.com>
14762         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't count stack_regs in
14763         SHmedia mode.
14764         2001-01-20  Alexandre Oliva  <aoliva@redhat.com>
14765         * config/sh/sh.h (STRIP_DATALABEL_ENCODING): New macro.
14766         (STRIP_NAME_ENCODING): Use it.
14767         (ASM_OUTPUT_LABELREF): Likewise.  Don't call assemble_name().
14768         2001-01-19  Alexandre Oliva  <aoliva@redhat.com>
14769         * config/sh/sh.md (sgeu) [! SHMEDIA]: Fix invocation of
14770         prepare_scc_operands().
14771         * config/sh/sh.h (SH_DATALABEL_ENCODING): Change to "#"...
14772         (DATALABEL_SYMNAME_P): ... so that we don't need memcmp here.
14773         2001-01-17  Alexandre Oliva  <aoliva@redhat.com>
14774         * config/sh/sh.h (STRIP_NAME_ENCODING): Strip leading `*'.
14775         2001-01-13  Alexandre Oliva  <aoliva@redhat.com>
14776         * config/sh/sh.md (shcompact_incoming_args): Use R0_REG.
14777         * config/sh/sh.md (R7_REG, R8_REG, R9_REG): Define as constants,
14778         used in shcompact_incoming_args.
14779         * config/sh/sh.c (sh_expand_epilogue): Fix thinko in previous
14780         change.
14781         * config/sh/crt1.asm (start) [SH5]: Switch to single-precision
14782         mode.
14783         * config/sh/lib1funcs.asm (sdivsi3_i4, udivsi3_i4, set_fpscr):
14784         Adjust accordingly.
14785         * config/sh/sh.c (sh_expand_prologue, sh_expand_epilogue):
14786         Simplify.  Adjust.  Add sanity check.
14787         * config/sh/sh.h (TARGET_SWITCHES) [5-compact]: Set
14788         FPU_SINGLE_BIT.
14789         * config/sh/sh.md (udivsi3_i4_single, divsi3_i4_single): Match
14790         TARGET_SHCOMPACT.
14791         (udivsi3, divsi3): Use them.
14792         (force_mode_for_call): New insn.
14793         (call, call_value, sibcall_value): Emit it before SHcompact
14794         calls.
14795         2001-01-11  Alexandre Oliva  <aoliva@redhat.com>
14796         * config/sh/sh.md (call, call_value, sibcall): Make sure the
14797         call cookie is non-NULL before taking its value.
14798         2001-01-10  Alexandre Oliva  <aoliva@redhat.com>
14799         * config.gcc (sh64): Set target_requires_64bit_host_wide_int.
14800         2001-01-09  Alexandre Oliva  <aoliva@redhat.com>
14801         * config/sh/sh.md (shcompact_incoming_args): Set argument memory
14802         block.
14803         * config/sh/sh.h (STATIC_CHAIN_REGNUM) [SH5]: Use r1.
14804         * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r0 as
14805         temporary for stack adjusts.  Use MACL and MACH to pass
14806         arguments to shcompact_incoming_args.
14807         * config/sh/sh.md (shcompact_incoming_args): Adjust.  Don't
14808         clobber r1.
14809         * config/sh/lib1funcs.asm (shcompact_incoming_args): Likewise.
14810         (nested_trampoline): Load static chain address into r1.
14811         * config/sh/sh.md (movdi_media splits): Fix sign-extension.
14812         2001-01-07  Alexandre Oliva  <aoliva@redhat.com
14813         * config/sh/sh.c (fpul_operand) [SHMEDIA]: Just call
14814         fp_arith_reg_operand().
14815         2001-01-06  Alexandre Oliva  <aoliva@redhat.com>
14816         * config/sh/sh.md (casesi): Sign-extend the first two operands,
14817         and use signed compares for them.
14818         * config/sh/sh.c (dump_table): Don't emit 8-byte constants after
14819         4-byte ones.  Instead, inter-leave them, maintaining the 8-byte
14820         ones properly aligned.
14821         (find_barrier): Account for extra alignment needed for 8-byte wide
14822         constants.
14823         (machine_dependent_reorg): Require a label for the second 4-byte
14824         constant after an 8-byte one.
14825         * config/sh/lib1funcs.asm (sdivsi3): Fix typo in yesterday's
14826         change.
14827         2001-01-05  Alexandre Oliva  <aoliva@redhat.com>
14828         * config/sh/sh.c (machine_dependent_reorg) [SHCOMPACT]: Reset
14829         last_float when switching float modes.
14830         * config/sh/sh.md (movdf) [SH5]: Don't use stack-pointer
14831         auto-increment for general-purpose registers.
14832         * config/sh/lib1funcs.asm (sdivsi3) [SHMEDIA]: Sign-extend the
14833         result.
14834         * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r1 as temporary
14835         for stack adjust.
14836         * config/sh/sh.c (sh_builtin_saveregs): Support using all
14837         registers for varargs.
14838         2001-01-01  Alexandre Oliva  <aoliva@redhat.com>
14839         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Simplify.
14840         * config/sh/sh.h (CALL_COOKIE_STACKSEQ,
14841         CALL_COOKIE_STACKSEQ_SHIFT, CALL_COOKIE_STACKSEQ_GET): New macros.
14842         (CALL_COOKIE_INT_REG_SHIFT): Adjust.
14843         (FUNCTION_ARG_ADVANCE): Use SHCOMPACT_FORCE_ON_STACK.  Adjust
14844         call_cookie accordingly.
14845         (FUNCTION_ARG): Test SHCOMPACT_FORCE_ON_STACK.
14846         (SHCOMPACT_BYREF): Likewise.
14847         (SHCOMPACT_FORCE_ON_STACK): New macro.
14848         * config/sh/sh.c (sh_expand_prologue): Use new call_cookie format.
14849         (sh_builtin_saveregs): Likewise.
14850         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
14851         shcompact_incoming_args): Use new shift values.  Support
14852         sequences of consecutive and non-consecutive pushes/pops.
14853         * config/sh/sh.md (return): Don't explicitly use PR_REG.
14854         2001-01-05  Hans-Peter Nilsson  <hpn@cygnus.com>
14855         * config/sh/sh.h (TEXT_SECTION): Define.
14856         * config/sh/elf.h (ASM_FILE_START): Output TEXT_SECTION_ASM_OP.
14857         2001-01-05  Alexandre Oliva  <aoliva@redhat.com>
14858         * config/sh/sh.h (INIT_CUMULATIVE_LIBCALL_ARGS): New macro.
14859         * config/sh/sh.h (BASE_RETURN_VALUE_REG): Use FP regs for
14860         return values on FPU-enabled SHmedia.
14861         (FUNCTION_VALUE_REGNO_P): Mark FIRST_FP_RET_REG as used on
14862         FPU-enabled SHmedia.
14863         (INIT_CUMULATIVE_ARGS): Set up return trampoline only if
14864         value is returned in a non-FP reg and is not returned by
14865         reference.
14866         * config/sh/sh.md (shcompact_return_tramp_i): Change type to
14867         jump_ind.
14868         2000-01-04  Alexandre Oliva  <aoliva@redhat.com>
14869         * config/sh/sh.h (SH_MIN_ALIGN_FOR_CALLEE_COPY): New.
14870         (FUNCTION_ARG_CALLEE_COPIES): Require argument to be
14871         quad-aligned to be passed by callee-copy reference.
14872         2001-01-03  Alexandre Oliva  <aoliva@redhat.com>
14873         * config/sh/elf.h (MAX_WCHAR_TYPE_SIZE): Define.
14874         * config/sh/sh64.h (MAX_WCHAR_TYPE_SIZE): Undefine.
14875         2001-01-02  Alexandre Oliva  <aoliva@redhat.com>
14876         * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix error in
14877         copying low-numbered FP regs to r7 and r8.
14878         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't request copying of
14879         FP regs to general-purpose regs only if the copy was passed on the
14880         stack.
14881         * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix typo in
14882         copying FP reg to r9.
14883         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Use trampoline to
14884         copy FP regs to general-purpose regs only in outgoing calls.
14885         * config/sh/sh.md (movdf_media, movsf_media): Revert incorrect
14886         change from     2000-10-30.  Adjust for 64-bit (or 32-bit)
14887         HOST_WIDE_INT.
14888         * config/sh/sh.h (struct sh_args): Document all fields.
14889         (FUNCTION_OK_FOR_SIBCALL): Functions that receive arguments
14890         passed partially on the stack should not consider making
14891         sibcalls.
14892         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Add byref regs to
14893         stack_regs only for incoming calls.  When passing FP args,
14894         make sure there are FP regs available before modifying
14895         call_cookie.
14896         (SHCOMPACT_BYREF): Pass double args in general-purpose
14897         registers by reference.
14898         2000-12-30  Alexandre Oliva  <aoliva@redhat.com>
14899         * config/sh/sh.h (FUNCTION_OK_FOR_SIBCALL) [SHCOMPACT]: Don't
14900         attempt to generate sibcalls if the caller got any arguments
14901         by reference.
14902         * config/sh/lib1funcs.asm (set_fpscr) [SH5]: Default to double.
14903         * config/sh/sh.c (dump_table) [SHCOMPACT]: Align DImode and DFmode
14904         to 8-byte boundaries.
14905         * config/sh/sh.md (shcompact_preserve_incoming_args): New insn.
14906         * config/sh/sh.h (CALL_COOKIE_INT_REG_GET): New macro.
14907         * config/sh/sh.c (sh_expand_prologue): Preserve args that will be
14908         stored in the stack.
14909         * config/sh/lib1funcs.asm (ct_main_table, ia_main_table): Arrange
14910         for the offsets to have the ISA bit set.
14911         (shcompact_call_trampoline): Document.  Swap r0 and r1, to match
14912         invocation.  Use beq instead of bgt to mark end of sequence of
14913         loads.
14914         (shcompact_incoming_args): Fix store of r2.  Use beq instead of
14915         bgt to mark end of sequence of stores.
14916         * config/sh/sh.c (arith_operand): Don't check whether
14917         CONST_OK_FOR_J for now.
14918         * config/sh/sh.md (movdf_media, movsf_media): Use HOST_WIDE_INT
14919         instead of long for conversion.
14920         2000-12-29  Alexandre Oliva  <aoliva@redhat.com>
14921         * config/sh/sh.c (print_operand_address): Convert INTVAL to int
14922         before passing it to fprintf.
14923         2000-12-28  Alexandre Oliva  <aoliva@redhat.com>
14924         * config/sh/crt1.asm (start): Reset SR.FD, to enable the FP unit.
14925         Call set_fpscr before reading/writing SR.
14926         * config/sh/crt1.asm (start): Set SR.SZ and SR.PR, but not SR.FR.
14927         Call set_fpscr.
14928         * config/sh/lib1funcs.asm: Add `.align 2' directives before
14929         SHmedia code.
14930         (FMOVD_WORKS): Define on SH5 with FPU.
14931         (set_fpscr): Define on SH5.  Remove separate _fpscr_values
14932         setting.
14933         * config/sh/t-sh64 (LIB1ASMFUNCS): Add _set_fpscr instead of
14934         _fpscr_values.
14935         2000-12-28  Hans-Peter Nilsson  <hpn@cygnus.com>
14936         * config/sh/lib1funcs.asm (ct_main_table): Align contents to even
14937         address.
14938         (ia_main_table): Ditto.
14939         2000-12-27  Alexandre Oliva  <aoliva@redhat.com>
14940         * config/sh/sh.h (MAX_WCHAR_TYPE_SIZE): Don't define.
14941         * config/sh/sh64.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Reinstate
14942         the definitions from sh.h.
14943         * config/sh/sh.h (PTRDIFF_TYPE): Define as conditional on
14944         TARGET_SH5.
14945         (SUBTARGET_CPP_SPEC): Arrange for __PTRDIFF_TYPE__ to be defined.
14946         * config/sh/elf.h (PTRDIFF_TYPE): Likewise.
14947         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
14948         2000-12-26  Alexandre Oliva  <aoliva@redhat.com>
14949         * config/sh/sh.md (movdi_media split): Don't add REG_LABEL notes.
14950         Increment LABEL_NUSES.
14952         * config/sh/sh.h (SIZE_TYPE): Define as conditional on
14953         TARGET_SH5.
14954         (SUBTARGET_CPP_SPEC): Arrange for __SIZE_TYPE__ to be always
14955         defined.
14956         * config/sh/elf.h (SIZE_TYPE): Likewise.
14957         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
14958         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
14959         shcompact_incoming_args): Load switch table addresses using
14960         datalabel.
14961         * config/sh/sh.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
14962         (NO_BUILTIN_SIZE_TYPE): Define.
14963         (SIZE_TYPE): Don't define.
14964         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
14965         * config/sh/sh.h (CPP_SPEC): Fixed typo that prevented the
14966         definition of __SH5__=32 for -m5-compact-nofpu.
14967         * config/sh/sh.c (barrier_align): Ensure 32-bit alignment after
14968         ADDR_DIFF_VEC.
14969         2000-12-24  Alexandre Oliva  <aoliva@redhat.com>
14970         * config/sh/sh.h (FUNCTION_ARG_PADDING): Removed.
14971         2000-12-23  Alexandre Oliva  <aoliva@redhat.com>
14972         * config/sh/sh.h (TARGET_CACHE32): Enable on SH5.
14973         (FUNCTION_BOUNDARY): Ensure 32-bit alignment for SHmedia.
14974         (INSN_LENGTH_ALIGNMENT): Likewise.
14975         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
14976         * config/sh/sh.md (call, call_value, sibcall): Simplify
14977         copying of non-branch-target register.
14978         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
14979         * glimits.h (__LONG_MAX__): Revert      2000-12-13's patch.
14980         * config/sh/sh.h (CPP_SPEC): Define it here for 64-bit SHmedia.
14981         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
14982         * config/sh/sh.h (GET_SH_ARG_CLASS): Handle complex
14983         floating-point values as structs.
14984         (FUNCTION_ARG): Use SH5_PROTOTYPED_FLOAT_ARG.
14985         (SH5_PROTOTYPELESS_FLOAT_ARG): List FP registers before
14986         general-purpose register.
14987         (SH5_PROTOTYPED_FLOAT_ARG): New macro.
14988         2000-12-20  Alexandre Oliva  <aoliva@redhat.com>
14989         * config/sh/sh.md (addsi3): Force operand1 to reg for SHmedia.
14990         * config/sh/sh.md (movsi_media): Split CONST_DOUBLE loads too.
14991         * config/sh/sh.h (DATALABEL_REF_P): Don't require the CONST.
14992         (ENCODE_SECTION_INFO): Enclose variables and constants in
14993         DATALABEL unspecs.
14994         (SH_DATALABEL_ENCODING, DATALABEL_SYMNAME_P): Define.
14995         (STRIP_NAME_ENCODING): Strip SH_DATALABEL_ENCODING off.
14996         (ASM_OUTPUT_LABELREF, AMS_OUTPUT_SYMBOL_REF): Define.
14997         * config/sh/sh.c (gen_datalabel_ref): Use UNSPEC_DATALABEL
14998         only for LABEL_REFs.  For SYMBOL_REFs, prepend
14999         SH_DATALABEL_ENCODING to the symbol name.
15000         * config/sh/sh.md (indirect_jump): Use SUBREG instead of
15001         convert_mode().
15002         2000-12-20  Alexandre Oliva  <aoliva@redhat.com>
15003         * config/sh/sh.md (casesi): Enclose ADDR_DIFF_VEC address in
15004         UNSPEC_DATALABEL.
15005         * config/sh/sh.c (gen_datalabel_ref): Accept LABEL_REFs.
15006         * config/sh/sh.h (DATALABEL_REF_NO_CONST_P): Likewise.
15007         (DATALABEL_REF_P): Don't require CONST.
15008         (ASM_OUTPUT_ADDR_DIFF_ELT): On SH5, output datalabel before
15009         REL label.
15010         2000-12-19  Alexandre Oliva  <aoliva@redhat.com>
15011         * config/sh/sh.md (extendhidi2, extendqidi2): Use arithmetic shift
15012         right.
15013         2000-12-18  Alexandre Oliva  <aoliva@redhat.com>
15014         * config/sh/sh.md (movsi_media, call, call_value, sibcall):
15015         Use shallow_copy_rtx and PUT_MODE to change the mode of
15016         SYMBOL_REFs, LABEL_REFs, CONSTs, etc.
15017         * config/sh/sh.h (PREFERRED_RELOAD_CLASS): Reload SYMBOL_REFs
15018         on SHmedia using GENERAL_REGs.
15019         * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
15020         bltu_media_i): Fix reversion of conditions.
15021         2000-12-18  Alexandre Oliva  <aoliva@redhat.com>
15022         * config/sh/sh.md (zero_extendhidi2): Use logical shift right.
15023         * config/sh/sh.c (output_far_jump): Save r13 in macl.
15024         2000-12-17  Alexandre Oliva  <aoliva@redhat.com>
15025         * config/sh/sh.c (gen_datalabel_ref): Fix mode of the UNSPEC.
15026         2000-12-16  Alexandre Oliva  <aoliva@redhat.com>
15027         * config/sh/lib1funcs.asm (ic_invalidate): Define for SH5.
15028         (GCC_nested_trampoline): Likewise.
15029         * config/sh/sh-protos.h (gen_datalabel_ref): Declare.
15030         * config/sh/sh.c (gen_datalabel_ref): Define.
15031         * config/sh/sh.h (TRAMPOLINE_SIZE): Adjust for SH5.
15032         (INITIALIZE_TRAMPOLINE): Likewise.
15033         (TRAMPOLINE_ADJUST_ADDRESS): Define.
15034         (DATALABEL_REF_NO_CONST_P, DATALABEL_REF_P): Define.
15035         (EXTRA_CONSTRAINT_T): Match DATALABEL unspecs.
15036         (OUTPUT_ADDR_CONST_EXTRA): Handle DATALABEL unspecs.
15037         * config/sh/sh.md (UNSPEC_DATALABEL): New constant.
15038         (ic_invalidate): Adjust for SH5.
15039         (ic_invalidate_line_media, ic_invalidate_line_compact): New insns.
15040         * config/sh/t-sh64 (LIB1ASMFUNCS): Added _ic_invalidate and
15041         _nested_trampoline.
15042         2000-12-15  Alexandre Oliva  <aoliva@redhat.com>
15043         * config/sh/sh.h (MOVE_MAX): Set to 8 for SHmedia, 4 elsewhere.
15044         (MOVE_MAX_PIECES): Set to 8 on SHmedia too.
15045         2000-12-14  Alexandre Oliva  <aoliva@redhat.com>
15046         * config/sh/sh.h (DBX_REGISTER_NUMBER): Adjust for sh64-elf-gdb.
15047         * config/sh/elf.h (DBX_REGISTER_NUMBER): Likewise.
15048         2000-12-14  Alexandre Oliva  <aoliva@redhat.com>
15049         * config/sh/sh.c (target_reg_operand): Match only target-branch
15050         registers and pseudos that aren't virtual registers.
15051         * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
15052         Copy operands that don't match target_reg_operand to pseudos.
15053         (call_media, call_value_media, sibcall_media): Use
15054         target_reg_operand instead of target_operand.
15055         2000-12-13  Alexandre Oliva  <aoliva@redhat.com>
15056         * glimits.h (__LONG_MAX__) [SH5 == 64]: Adjust for 64 bits.
15057         * config/sh/sh.c (target_reg_operand): Match hardware registers
15058         other than branch-target registers.
15059         * config/sh/sh.md (zero_extendqidi2): Input operand is %1.
15060         * config/sh/lib1funcs.asm (sdivsi3) [SH5]: Make it global.
15061         (fpscr_values) [SH5 == 32]: Define.
15062         * config/sh/t-sh64 (LIB1ASMFUNCS): Add fpscr_values.
15063         * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
15064         Handle function addresses coming in SUBREGs.
15065         2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
15066         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
15067         shcompact_return_trampoline): Use datalabel where appropriate.
15068         2000-12-09  Alexandre Oliva  <aoliva@redhat.com>
15069         * config/sh/sh.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use a
15070         general-purpose register to copy one branch-target register to
15071         another.
15072         2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
15073         * config/sh/sh.c (target_operand): Accept LABEL_REFs and
15074         SYMBOL_REFs with VOIDmode.
15075         * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
15076         bltu_media_i): New insns.
15077         2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
15078         * config/sh/sh.h (RETURN_IN_MEMORY): Adjust for SH5 ABI.
15079         (INIT_CUMULATIVE_ARGS): Likewise.
15080         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
15081         * machmode.def (V16SFmode): New mode.
15082         * c-common.c (type_for_mode): Support V2SF and V16SF.
15083         * tree.c (build_common_tree_nodes_2): Likewise.
15084         * tree.h (tree_index): Likewise.
15085         * calls.c (emit_call_1): Take args_so_far.  Adjust all
15086         callers.  Introduce CALL_POPS_ARGS.
15087         * tm.texi (CALL_POPS_ARGS): Document.
15088         * config/sh/crt1.asm: Implement in SHmedia mode.
15089         * config/sh/crti.asm, config/sh/crtn.asm: Likewise
15090         * config/sh/elf.h (ASM_SPEC, LINK_SPEC): Support SH5 flags.
15091         (DBX_REGISTER_NUMBER): Renumber registers for SH5.
15092         * config/sh/lib1funcs.asm: Disable functions unused in SH5.
15093         Implement divsi and udivsi in SHmedia mode.  Introduce
15094         SHcompact trampolines.
15095         * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): Use DImode
15096         only in SHmedia64.
15097         (regno_reg_class): Rewrite.
15098         (fp_reg_names): Remove.
15099         (sh_register_names, sh_additional_register_names): New.
15100         (print_operand): Added `u'.  Support SUBREGs in addresses.
15101         Add parentheses around shifted CONSTs.
15102         (output_file_start): Output .mode and .abi directives.
15103         (shiftcosts, addsubcosts, multcosts): Adjust.
15104         (output_stack_adjust): Compute alignment.  Sanity-check SIZE.
15105         (push_regs): Take array of HOST_WIDE_INTs.  Adjust callers.
15106         (calc_live_regs): Output to array of HOST_WIDE_INTs.  Count
15107         bytes, not registers.  Take into account the need for the
15108         SHcompact incoming args trampoline.  Adjust all callers.
15109         (sh_expand_prologue): Take stack_regs into account.  Call
15110         incoming args trampoline.  Keep stack aligned as per SH5 ABI.
15111         (sh_expand_epilogue): Take stack_regs into accoutn.  Keep
15112         stack aligned as per SH5 ABI.
15113         (sh_builtin_saveregs): Support SH5 ABI.
15114         (sh_build_va_list, sh_va_start): Likewise.
15115         (initial_elimination_offset): Take alignment into account.
15116         Compute location of PR according to the SH5 stack frame.
15117         (arith_reg_operand): Reject branch-target registers.
15118         (shmedia_6bit_operand): New.
15119         (logical_operand): Use CONST_OK_FOR_P on SHmedia.
15120         (target_reg_operand): Match DImode only.  Accept SUBREGs.
15121         (target_operand): New.
15122         * config/sh/sh.h (CPP_SPEC, SUBTARGET_CPP_SPEC): Support SH5 flags.
15123         (CONDITIONAL_REGISTER_USAGE): Implement SH5 ABI.  Initialize
15124         SIBCALL_REGS for SHmedia.
15125         (TARGET_SH3E, TARGET_SH4): Only if SH1_BIT is set too.
15126         (TARGET_FPU_DOUBLE, TARGET_FPU_ANY): New.
15127         (TARGET_SHMEDIA32, TARGET_SHMEDIA64): New.
15128         (TARGET_SWITCHES): New SH5 flags.
15129         (OVERRIDE_OPTIONS): Set SH5-specific options.  Use
15130         VALID_REGISTER_P to disable unsupported registers.
15131         (LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE): Set.
15132         (POINTER_SIZE, PARM_BOUNDARY): Adjust.
15133         (FUNCTION_ARG_PADDING): Define.
15134         (FASTEST_ALIGNMENT): Adjust.
15135         (SH_REGISTER_NAMES_INITIALIZER): New.
15136         (sh_register_names): Declare.
15137         (DEBUG_REGISTER_NAMES): Define.
15138         (REGISTER_NAMES): Define based on sh_register_names.
15139         (SH_ADDITIONAL_REGISTER_NAMES_INITIALIZER): New.
15140         (sh_additional_register_names): Declare.
15141         (LAST_GENERAL_REG, LAST_FP_REG, LAST_XD_REG): Adjust for SHmedia.
15142         (FIRST_TARGET_REG, LAST_TARGET_REG): Define.
15143         (TARGET_REGISTER_P, SHMEDIA_REGISTER_P, VALID_REGISTER_P): Define.
15144         (REGISTER_NATURAL_MODE): Define.
15145         (FIRST_PSEUDO_REGISTER): Adjust.
15146         (FIXED_REGISTERS, CALL_USED_REGISTERS): Adjust.
15147         (HARD_REGNO_CALL_PART_CLOBBERED): Define.
15148         (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Adjust.
15149         (VECTOR_MODE_SUPPORTED_P): Define.
15150         (REG_CLASS_CONTENTS): Adjust.
15151         (SMALL_REGISTER_CLASSES): Adjust.
15152         (REG_ALLOC_ORDER): Adjust.
15153         (INDEX_REG_CLASS): Adjust.
15154         (CONST_OK_FOR_O, CONST_OK_FOR_P): New.
15155         (CONST_OK_FOR_LETTER_P): Adjust.
15156         (PREFERRED_RELOAD_CLASS): Adjust.
15157         (SECONDARY_OUTPUT_RELOAD_CLASS): Adjust.
15158         (SECONDARY_INPUT_RELOAD_CLASS): Adjust.
15159         (NPARM_REGS, FIRST_PARM_REG, FIRST_RET_REG): Adjust.
15160         (FIRST_FP_PARM_REG): Adjust.
15161         (CALL_POPS_ARGS): Define.
15162         (FUNCTION_ARG_REGNO_P): Adjust.
15163         (struct sh_args): New fields.
15164         (GET_SH_ARG_CLASS): Adjust.
15165         (INIT_CUMULATIVE_ARGS): Adjust.
15166         (INIT_CUMULATIVE_INCOMING_ARGS): Define.
15167         (FUNCTION_ARG_ADVANCE): Adjust.
15168         (FUNCTION_ARG): Adjust.
15169         (FUNCTION_ARG_PASS_BY_REFERENCE, SHCOMPACT_BYREF): Define.
15170         (FUNCTION_ARG_CALLEE_COPIES): Define.
15171         (SH5_PROTOTYPELESS_FLOAT_ARG): Define.
15172         (STRICT_ARGUMENT_NAMING): Define.
15173         (PRETEND_OUTGOING_VARARGS_NAMED): Adjust.
15174         (FUNCTION_ARG_PARTIAL_NREGS): Adjust.
15175         (SH5_WOULD_BE_PARTIAL_NREGS): Define.
15176         (SETUP_INCOMING_VARARGS): Adjust.
15177         (HAVE_POST_INCREMENT, HAVE_PRE_DECREMENT): Adjust.
15178         (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT): Adjust.
15179         (REGNO_OK_FOR_INDEX_P, REG_OK_FOR_INDEX_P): Adjust.
15180         (SUBREG_OK_FOR_INDEX_P): Adjust.
15181         (EXTRA_CONSTRAINT_S): Update.
15182         (EXTRA_CONSTRAINT_T): New.
15183         (EXTRA_CONSTRAINT): Adjust.
15184         (GO_IF_LEGITIMATE_INDEX): Adjust.
15185         (GO_IF_LEGITIMATE_ADDRESS): Adjust.
15186         (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Adjust.
15187         (MOVE_MAX): Adjust.
15188         (MAX_MOVE_MAX): Define.
15189         (Pmode): Adjust.
15190         (CONST_COSTS): Adjust.
15191         (REGISTER_MOVE_COST): Adjust.
15192         (BRANCH_COST): Adjust.
15193         (TEXT_SECTION_ASM_OP): Adjust.
15194         (DBX_REGISTER_NUMBER): Adjust.
15195         (ASM_OUTPUT_DOUBLE_INT): New.
15196         (UNALIGNED_DOUBLE_INT_ASM_OP): New.
15197         (PREDICATE_CODES): Adjust.
15198         (PROMOTE_MODE): Adjust.
15199         (CRT_CALL_STATIC_FUNCTION): Do not define for SHmedia.
15200         * config/sh/sh.md (AP_REG, PR_REG, T_REG, GBR_REG): Renumber.
15201         (MACH_REG, MACL_REG, FPUL_REG, RAP_REG, FPSCR_REG): Renumber.
15202         (PR_MEDIA_REG, T_MEDIA_REG, R10_REG): New.
15203         (DR0_REG, DR2_REG, DR4_REG): Renumber.
15204         (TR0_REG, TR1_REG, TR2_REG): New.
15205         (XD0_REG): Renumber.
15206         (UNSPEC_COMPACT_ARGS): New.
15207         (type): Added pt and ptabs.
15208         (length): Default to 4 on SHmedia.  Default pt length to 12
15209         and     20 on SHmedia32 and SHmedia64, respectively.
15210         (pt): New function unit.
15211         (movdi, movsi): Add types pt and ptabs.  Don't increment LABEL_NUSES.
15212         Add whitespace between operands of SHmedia instructions.
15213         (movdicc): Fix.
15214         (adddi3_media, addsi3_media): Adjust constraints.
15215         (subsi3) [SHmedia]: Force operand 1 into a register.
15216         (udivsi3_i1_media, udivsi3_i4_media): New.
15217         (udivsi3): Support SHmedia.
15218         (divsi3_i1_media, divsi3_i4_media): New.
15219         (divsi3): Support SHmedia.
15220         (anddi3, iordi3, xordi3): Adjust constraints.
15221         (zero_extendhidi2, zero_extendqidi2): New.
15222         (extendsidi2, extendhidi2, extendqidi2): New.
15223         (push, pop, push_e, push_fpul, push_4): Disable on SH5.
15224         (pop_e, pop_fpul, pop_4): Likewise.
15225         (movsi_media): Support FP and BT registers.
15226         (movsi_media_nofpu): New.  Adjust splits to DImode.
15227         (lduw, ldub): Renamed to zero_extend* above.
15228         (movqi_media): Fix typo.
15229         (movdi_media): Support FP and BT registers.
15230         (movdi_media_nofpu): New.  Adjust splits for SHmedia32.
15231         (movdi_const_32bit): New.
15232         (shori_media): Require immediate operand.  Use `u' for output.
15233         (movdf_media, movsf_media): Simplified.
15234         (movdf_media_nofpu, movsf_media_nofpu): New.
15235         (movdf, movsf): Adjust
15236         (movv2sf, movv2sf, movv16sf): New.
15237         (beq_media, beq_media_i): Adjust constraints.  Don't use
15238         scratch BT register.
15239         (bne_media, bne_media_i): Likewise.
15240         (bgt_media, bgt_media_i): Likewise.
15241         (bge_media, bge_media_i): Likewise.
15242         (bgtu_media, bgtu_media_i): Likewise.
15243         (bgeu_media, bgeu_media_i): Likewise.
15244         (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu,
15245         bunordered): Emit jump insn.  Force operands to registers when
15246         needed.
15247         (jump_media, jump): Simplify.
15248         (call_compact, call_compact_rettramp): New.
15249         (call_value_compact, call_value_compact_rettramp): New.
15250         (call_media, call_value_media): Simplify.
15251         (sibcall_compact, sibcall_media): New.
15252         (call, call_value): Adjust for SHmedia and SHcompact.
15253         (sibcall, sibcall_value, untyped_call): Likewise.
15254         (sibcall_epilogue): Preserve r0 across epilogue for SHcompact.
15255         (indirect_jump): Adjust for SHmedia.
15256         (casesi_jump_media): New.
15257         (nop): Re-enable for SHmedia.
15258         (call_site): Restrict to SH1.
15259         (casesi): Adjust for SHmedia.
15260         (casesi_shift_media, casesi_load_media): New.
15261         (return): Explicitly use PR register.  Call return trampoline
15262         on SHcompact.
15263         (return_i): Explicitly use PR register.
15264         (shcompact_return_tramp, shcompact_return_tramp_i): New.
15265         (return_media): Adjust.
15266         (shcompact_incoming_args): New.
15267         (epilogue): Adjust.
15268         (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
15269         (movstrsi): Disable on SH5.
15270         (fpu_switch0, fpu_switch1, movpsi): Enable on SH4.
15271         (addsf3, addsf3_media): Test TARGET_SHMEDIA_FPU.
15272         (subsf3, subsf3_media): Likewise.
15273         (mulsf3, mulsf3_media, mac_media): Likewise.
15274         (divsf3, divsf3_media): Likewise.
15275         (floatdisf2, floatsisf2_media): Likewise.  Adjust constraints.
15276         (floatsisf2, fux_truncsfsi2): Likewise.
15277         (fix_truncsfdi2, fix_truncsfsi2_media): Likewise.  Adjust
15278         constraints.
15279         (cmpeqsf_media, cmpgtsf_media, cmpgesf_media): Likewise.
15280         (cmpunsf_media, cmpsf): Likewise.
15281         (negsf2, negsf2_media, sqrtsf2, sqrtsf2_media): Likewise.
15282         (abssf2, abssf2_media): Likewise.
15283         (adddf3, adddf3_media, subdf3, subdf3_media): Likewise.
15284         (muldf3, muldf3_media, divdf3, divdf3_media): Likewise.
15285         (floatdidf2, floatsidf2_media): Likewise.  Adjust constraints.
15286         (floatsidf2, fix_truncdfsi2): Likewise.
15287         (fix_truncdfdi2, fix_truncdfsi2_media): Likewise.  Adjust
15288         constraints.
15289         (cmpeqdf_media, cmpgtdf_media): Likewise.
15290         (cmpgedf_media, cmpundf_media, cmpdf): Likewise.
15291         (negdf2, negdf2_media, sqrtdf2, sqrtdf2_media): Likewise.
15292         (absdf2, absdf2_media): Likewise.
15293         (extendsfdf2, extendsfdf2_media): Likewise.
15294         (truncsfdf2, truncsfdf2_media): Likewise.
15295         * config/sh/sh64.h: New file.
15296         * config/sh/t-sh64: New file.
15297         * config/sh/shmedia.h: New file.
15298         * config/sh/ushmedia.h: New file.
15299         * config/sh/sshmedia.h: New file.
15300         * configure.in: Added sh64-*-elf.
15301         * configure: Rebuilt.
15302         2000-10-10  Alexandre Oliva  <aoliva@redhat.com>
15303         * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): New macros.
15304         (reg_class_from_letter): Use `b' for TARGET_REGS.
15305         (print_operand): Support `%M', `%m', `AND' and
15306         `ASHIFTRT'.  Do not precede constants with `#' on SHmedia.
15307         (andcosts): Adjust for SHmedia.
15308         (output_stack_adjust, sh_expand_prologue, sh_expand_epilogue):
15309         Likewise.
15310         (target_reg_operand): New function.
15311         * config/sh/sh-protos.h (target_reg_operand): Declare.
15312         * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE): Don't disable
15313         FP registers on SH5.
15314         (HARD_REGNO_MODE_OK): Accept them whenever they're acceptable
15315         on SH4.
15316         (TARGET_REGISTER_P): New macro.
15317         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Added TARGET_REGS.
15318         (FUNCTION_VALUE): Use DImode for promoted types on SHmedia.
15319         (EXTRA_CONSTRAINT_S): New macro.
15320         (EXTRA_CONSTRAINT): Adjust.
15321         (FLOAT_TYPE_SIZE): Define to 32.
15322         (Pmode): DImode on SHmedia.
15323         (CONST_COSTS): Adjust for SHmedia literals.
15324         (PREDICATE_CODES): Added target_reg_operand.
15325         (PROMOTE_MODE): Promote signed types to DImode on SHmedia.
15326         * config/sh/sh.md: Remove all attrs from SHmedia insns.
15327         (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media): New insns.
15328         (cmpdi): Accept SHmedia.
15329         (movdicc_false, movdicc_true): New insns.
15330         (movdicc): New expand.
15331         (adddi3): Accept arith_operand for op2, but FAIL on SH1 if
15332         no_new_pseudos.
15333         (addsi3_media): Match `S' constraint.
15334         (anddi3, andcdi3, iordi3, xordi3, negdi_media): New insns.
15335         (negdi2): Expand for SHmedia.
15336         (one_cmpldi2): New expand.
15337         (zero_extendsidi2): Change from expand to insn.
15338         (extendsidi2): Add constraints.
15339         (movdi_media, movsi_media): Change `%x' to `%M'.  Use `%m' for
15340         LD/ST address.  Fix SI immediate loading split.
15341         (movhi_media, movqi_media, lduw, ldub): New insns.
15342         (movhi, movqi): Accept SHmedia.
15343         (shori_media, movdi_media): Relax input constraints.  Split
15344         symbolic constants.
15345         (movdf_media, movsf_media): New insn.  New split to movdi.
15346         (movdf, movsf): Match on SHmedia.
15347         (beq_media, bne_media, bgt_media, bge_media, bgtu_media,
15348         bgeu_media): New insns and splits.  New insns with `_i' suffix.
15349         (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu): Adjust.
15350         (bunordered): New expand.
15351         (jump_compact): Renamed from `jump'.
15352         (jump_media): New insn.
15353         (jump): New expand.
15354         (call_media, call_value_media): New insns.
15355         (call, call_value): Adjust.
15356         (indirect_jump_compact): Renamed from `indirect_jump'.
15357         (indirect_jump_media): New insn.
15358         (indirect_jump): New expand.
15359         (untyped_call, return): Accept SHmedia.
15360         (return_media): New insn.
15361         (prologue, epilogue, blockage): Accept SHmedia.
15362         (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
15363         (sunordered): New expand.
15364         (addsf3, subsf3, mulsf3, divsf3, floatsisf2, fix_truncsfsi2,
15365         cmpsf, negsf2, sqrtsf2, abssf2): Adjust for SHmedia.
15366         (addsf3_media, subsf3_media, mulsf3_media, mac_media,
15367         divsf3_media, floatdisf2, floatsisf2_media, fix_truncsfdi2,
15368         fix_truncsfsi2_media, cmpeqsf_media, cmpgtsf_media,
15369         cmpgesf_media, cmpunsf_media, negsf2_media, sqrtsf2_media,
15370         abssf2_media): New insns.
15371         (adddf3, subdf3, muldf3, divdf3, floatsidf2, fix_truncdfsi2,
15372         cmpdf, negdf2, sqrtdf2, absdf2): Adjust for SHmedia.
15373         (adddf3_media, subdf3_media, muldf3_media, divdf3_media,
15374         floatdidf2, floatsidf2_media, fix_truncdfdi2,
15375         fix_truncdfsi2_media, cmpeqdf_media, cmpgtdf_media,
15376         cmpgedf_media, cmpundf_media, negdf2_media, sqrtdf2_media,
15377         absdf2_media): New insns.
15378         (extendsfdf2, truncdfsf2): Adjust for SHmedia.
15379         (extendsfdf2_media, truncdfsf2_media): New insns.
15380         2000-09-14  Alexandre Oliva  <aoliva@redhat.com>
15381         * config/sh/sh.c (machine_dependent_reorg): On shmedia, skip for now.
15382         * config/sh/sh.h (CONST_OK_FOR_J): Document.
15383         (LEGITIMATE_CONSTANT_P): Accept CONST_DOUBLEs on shmedia.
15384         * config/sh/sh.md (adddi3): New expand.
15385         (adddi3_media, adddi3z_media): New insns.
15386         (adddi3_compact): Renamed from adddi3.
15387         (addsi3_media): Use add.l r63 to add constant zero.
15388         (subdi3): New expand.
15389         (subdi3_media): New insn.
15390         (subdi3_compact): Renamed from subdi3.
15391         (mulsidi3): New expand.
15392         (mulsidi3_media): New insn.
15393         (mulsidi3_compact): Renamed from mulsidi3.
15394         (umulsidi3): New expand.
15395         (umulsidi3_media): New insn.
15396         (umulsidi3_compact): Renamed from umulsidi3.
15397         (ashlsi3_media, ashrsi3_media, lshrsi3_media): New insns.
15398         (ashlsi3, ashrsi3, lshrsi3): Use them.
15399         (ashldi3_media, ashrdi3_media, lshrdi3_media): New insns.
15400         (ashldi3, ashrdi3, lshrdi3): Use them.
15401         (zero_extendsidi2): New expand.
15402         (extendsidi2): New insn.
15403         (movsi_media): New insn.  Split to movdi to load constants.
15404         (movsi): Enable for shmedia.
15405         (movdi_media): New insn.  Use shori_media to load wide constants.
15406         (short_media): New insn.
15407         (movdi): Enable for shmedia.
15408         2000-09-08  Alexandre Oliva  <aoliva@redhat.com>
15409         * config/sh/sh.h (CPP_SPEC): Added `m5'.
15410         (SUBTARGET_CPP_SPEC): Added `!m5'.
15411         (SH5_BIT, TARGET_SH5, TARGET_SHMEDIA, TARGET_SHCOMPACT): New macros.
15412         (TARGET_SWITCHES): Added `5' and `5-compact'.  Added SH1_BIT
15413         to all other SH variants.
15414         (TARGET_DEFAULT): Set to SH1_BIT.
15415         (OVERRIDE_OPTIONS): Recognize sh5 CPU.
15416         (BITS_PER_WORD): Raise to 64 on shmedia.
15417         (MAX_BITS_PER_WORD): Change to 64.
15418         (MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Set to MAX_BITS_PER_WORD.
15419         (INT_TYPE_SIZE): Keep as 32.
15420         (UNITS_PER_WORD): Raise to 8 on shmedia.
15421         (MIN_UNITS_PER_WORD): Keep as 4.
15422         (POINTER_SIZE): Raise to 64 on shmedia.
15423         (CONST_OK_FOR_J): New macro.
15424         (CONST_OK_FOR_LETTER_P): Use it.
15425         (processor_type): Add PROCESSOR_SH5.
15426         * config/sh/sh.md: Conditionalize all expands, insns and
15427         splits to TARGET_SH1.
15428         (cpu): Added sh5.
15429         (addsi3_compact): Renamed from...
15430         (addsi3): Now an expand.
15431         (addsi3_media, subsi3_media): New insns.
15432         (subsi3): Don't negate constants with SHmedia.
15434         * hooks.c: New file.
15435         * hooks.h: New file.
15436         * Makefile.in (HOOKS_H): New.
15437         (TARGET_DEF_H): Added $(HOOKS_H).
15438         (OBJS): Added hooks.o.
15439         (cfgcleanup.o, bb-reorder.o): Added target.h.
15440         (hooks.o): Added dependencies.
15441         * target-def.h (TARGET_CANNOT_MODIFY_JUMPS_P): New, added to...
15442         (TARGET_INITIALIZER): this.
15443         * doc/tm.texi (TARGET_CANNOT_MODIFY_JUMPS_P): Document.
15444         * target.h (struct gcc_target): Added cannot_modify_jumps_p.
15445         * bb-reorder.c: Include target.h.
15446         (reorder_basic_blocks): Skip if cannot modify jumps.
15447         * cfgcleanup.c: Include target.h.
15448         (try_optimize_cfg): Skip merge blocking if cannot modify jumps.
15450 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
15452         * config/mips/mips.md (casesi_internal, casesi_internal_di):
15453         Protect jump delay slot instructions with .set noreorder and
15454         .set nomacro.
15456 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
15458         * config/mips/mips.md (casesi_internal_di): Calculate
15459         the index into the target offset table correctly.
15461 2002-02-08  Richard Henderson  <rth@redhat.com>
15463         * expr.c (expand_expr): Mind EXPAND_INITIALIZER for truncation also.
15464         * final.c (output_addr_const): Accept and discard SUBREG.
15465         * varasm.c (decode_addr_const): Don't abort on unknown expressions --
15466         mark them unknown instead.
15467         (simplify_subtraction): Handle RTX_UNKNOWN.
15468         (initializer_constant_valid_p): Strip NOP_EXPRs that narrow the mode.
15470 2002-02-08  David Edelsohn  <edelsohn@gnu.org>
15472         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix typo.
15474 2002-02-08  Richard Henderson  <rth@redhat.com>
15476         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): New.
15478 2002-02-08  Andreas Jaeger  <aj@suse.de>
15480         * config.gcc (x86_64-*-linux): Add t-linux64 makefile fragment.
15481         * config/i386/t-linux64: New file.
15483 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
15485         * c-common.c (c_expand_expr): Revert 2002-02-06 patch.
15486         * c-parse.in (compstmt): Clear last_expr_type.
15488 2002-02-07  Richard Henderson  <rth@redhat.com>
15490         * loop.c (strength_reduce): Sink final_value when not
15491         eliminating a biv.
15493 2002-02-07  David O'Brien  <obrien@FreeBSD.org>
15495         * config/sparc/freebsd.h: Fix mismatched spec {.
15497 2002-02-07  Richard Henderson  <rth@redhat.com>
15499         * cfgrtl.c: Include recog.h and insn-config.h.
15500         (keep_with_call_p): Fix general_operand invocation.
15501         * Makefile.in (cfgrtl.o): Update dependencies.
15503 2002-02-07  Kazu Hirata  <kazu@hxi.com>
15505         * config/h8300/h8300.c (two_insn_adds_subs_operand): Revise a
15506         comment.  Accept HImode only if TARGET_H8300.
15508 2002-02-07  Eric Christopher  <echristo@redhat.com>
15510         * config/mips/crtn.asm: Cleanup #ifdefs.
15512 2002-02-07  Eric Christopher  <echristo@redhat.com>
15514         * config/mips/crti.asm: Add changes for mips16. mips16 uses
15515         register 7 as RA instead of $31.
15516         * config/mips/crtn.asm: Ditto.
15517         * config/mips/mips.c (mips_move_2words): Add case for
15518         TARGET_MIPS16 when HOST_BITS_PER_WIDE_INT >= 64.
15519         (compute_frame_size): Fix typo.
15520         (save_restore_insns): Ditto.  Make documentation about using
15521         register $7 as return register more precise.
15522         (mips_expand_epilogue): Fix comment. Add code to work around not
15523         being able to add to the stack pointer directly.
15524         * config/mips/mips.h (EH_RETURN_DATA_REGNO): Change register number
15525         to 2 for TARGET_MIPS16 as we need 6 and 7 as clobbers in the
15526         epilogue.
15528 2002-02-07  Tom Rix  <trix@redhat.com>
15530         * config/rs6000/rs6000.c (reg_or_aligned_short_operand): New. For
15531         immediates in ldu and stdu DS opcode field.
15532         * config/rs6000/rs6000.md (movdi_update, movdi_update1): Use.
15533         * config/rs6000/rs6000-protos.h: Add reg_or_aligned_short_operand.
15534         * config/rs6000/rs6000.h (PREDICATE_CODES): Same.
15536 2002-02-07  Jeff Sturm  <jsturm@one-point.com>
15538         * config/sparc/sparc.c (compute_frame_size): Don't correct frame
15539         offset for stack bias.
15541 2002-02-07  H.J. Lu <hjl@gnu.org>
15543         * config/mips/linux.h (SUBTARGET_ASM_DEBUGGING_SPEC): Defined.
15545 2002-02-07  Ulrich Weigand  <uweigand@de.ibm.com>
15547         * testsuite/gcc.dg/cpp/charconst-2.c: Add -fsigned-char option.
15549 Thu Feb  7 12:14:17 CET 2002  Jan Hubicka  <jh@suse.cz>
15551         * i386-protos.h (x86_order_regs_for_local_alloc): Declare
15552         * i386.c (x86_order_regs_for_local_alloc): New global function.
15553         * i386.h (REG_ALLOC_ORDER): CLeanup.
15554         (ORDER_REGS_FOR_LOCAL_ALLOC): New.
15556 2002-02-07  Richard Henderson  <rth@redhat.com>
15558         PR optimization/2463
15559         * alias.c (find_base_value): Recall base values for fixed hard regs.
15560         * loop.c (loop_regs_update): Don't use single_set on non-insns.
15562 2002-02-07  Alexandre Oliva  <aoliva@redhat.com>
15564         * config/mips/mips.md (define_delay) [mips16]: Adjust required
15565         length.
15567 2002-02-06  Richard Henderson  <rth@redhat.com>
15569         PR c/5609
15570         * stmt.c (resolve_operand_name_1): Take more care with mixed
15571         named and unnamed operands.
15573 2002-02-06  Janis Johnson  <janis187@us.ibm.com>
15574             Jan Hubicka  <jh@suse.cz>
15576         * loop.c (remove_constant_addition): Avoid clobbering a shared
15577         CONST expression.
15579 2002-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
15581         * config.gcc (s390x-*-linux*): Add t-linux64 makefile fragment.
15582         * config/s390/t-linux64: New file.
15583         * config/s390/libgcc-glibc.ver: New file.
15585 2002-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
15587         * config/s390/linux64.h: Delete file.
15588         * config/s390/s390x.h: New file.
15589         * config.gcc (s390x-*-linux*): Use s390x.h instead of linux64.h
15590         as target header file.
15591         * config/s390/linux.h (TARGET_VERSION): Define depending on
15592         DEFAULT_TARGET_64BIT.
15593         (CPP_SPEC, ASM_SPEC, LINK_SPEC): Likewise.
15594         (SIZE_TYPE, PTRDIFF_TYPE): Likewise.
15595         (NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_PTRDIFF_TYPE): Define.
15596         (CPP_ARCH31_SPEC, CPP_ARCH64_SPEC): New defines.
15597         (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC): New defines.
15598         (EXTRA_SPEC): New define.
15599         * config/s390/s390.h (TARGET_VERSION): Define depending on
15600         DEFAULT_TARGET_64BIT.
15601         (MASK_RETURN_ADDR): Add run-time check for TARGET_64BIT.
15603 2002-02-06  Jason Merrill  <jason@redhat.com>
15605         * c-decl.c (finish_function): Warn about a non-void function with
15606         no return statement and no abnormal exit.
15607         (current_function_returns_abnormally): New variable.
15608         (start_function): Clear it.
15609         (struct c_language_function): Add returns_abnormally.
15610         (push_c_function_context): Save it.
15611         (pop_c_function_context): Restore it.
15612         (builtin_function): Set TREE_THIS_VOLATILE on return fns.
15613         (grokdeclarator): Set C_FUNCTION_IMPLICIT_INT on functions without
15614         an explicit return type.
15615         * c-tree.h: Declare current_function_returns_abnormally.
15616         (C_FUNCTION_IMPLICIT_INT): New macro.
15617         * c-typeck.c (build_function_call): Set it.
15618         (c_expand_return): Set current_function_returns_value even if the
15619         value is erroneous.
15621 2002-02-06  Jakub Jelinek  <jakub@redhat.com>
15623         PR c/5420:
15624         * c-common.c (c_unsafe_for_reeval): Make COMPOUND_LITERAL_EXPR
15625         unsafe for reevaluation.
15627 2002-02-06  Jakub Jelinek  <jakub@redhat.com>
15629         PR c/5482:
15630         * c-common.c (c_expand_expr) [STMT_EXPR]: If last expression is not
15631         EXPR_STMT, but COMPOUND_STMT, recurse into it.
15633 2002-02-06  Richard Henderson  <rth@redhat.com>
15635         * cfganal.c (keep_with_call_p): Source for fixed_reg dest must
15636         be a general_operand.  Dest for function value must be a pseudo.
15638 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
15640         * dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
15641         as SYMBOL_REFs from the constant pool.
15643 2002-02-06  Alexandre Oliva  <aoliva@redhat.com>
15645         * dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters
15646         passed by invisible reference.
15648 2002-02-05  Richard Henderson  <rth@redhat.com>
15650         * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): No stack bias.
15652 2002-02-06  Hans-Peter Nilsson  <hp@bitrange.com>
15654         Implement using "base addresses" in insn operands as default.
15655         * config/mmix/mmix.c (mmix_conditional_register_usage): if
15656         -mabi=gnu, modify fixed_regs to fit the GNU ABI.
15657         (mmix_extra_constraint): Use 'R' to indicate that GETA should be
15658         used to read the rtx value.
15659         (mmix_target_asm_function_epilogue): Fix spacing.
15660         (mmix_constant_address_p): Handle TARGET_BASE_ADDRESSES.
15661         (mmix_legitimate_address): Ditto.
15662         (mmix_encode_section_info): Set SYMBOL_REF_FLAG on rtx:es that
15663         should be loaded with a GETA insn.  Don't allocate needless extra
15664         char for nul termination and fix misleading comment.
15665         (mmix_print_operand_address): Handle constants if
15666         TARGET_BASE_ADDRESSES.
15667         (mmix_output_register_setting): Use base addressing if
15668         TARGET_BASE_ADDRESSES and the number of insns is 3.
15669         * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): New.
15670         * config/mmix/mmix.md ("movdi"): Change the alternative with GETA
15671         to use R as constraint, add LDA to match s.
15672         * config/mmix/mmix.h (TARGET_BASE_ADDRESSES): New.
15673         (TARGET_DEFAULT): Add TARGET_MASK_BASE_ADDRESSES.
15674         (TARGET_SWITCHES): Add -mbase-addresses, -mno-base-addresses.
15675         (FIXED_REGISTERS): Make registers $231..$246 fixed by default.
15676         (MMIX_MMIXWARE_ABI_REG_ALLOC_ORDER): Move $231..$246 last, in
15677         order with other fixed registers.
15678         (MMIX_GNU_ABI_REG_ALLOC_ORDER): Put forward $231, in order with
15679         other parameter/call-clobbered registers.
15680         * doc/invoke.texi (Option Summary) <MMIX Options>: Add
15681         -mbase-addresses, -mno-base-addresses.
15682         (MMIX Options): Ditto.
15684 2002-02-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15686         * pa.h (PREDICATE_CODES): Add reg_before_reload_operand.
15688 2002-02-06  Aldy Hernandez  <aldyh@redhat.com>
15690         * config/rs6000/altivec.h: Change elem to _S_elem.
15692 2002-02-05  Jason Thorpe  <thorpej@wasabisystems.com>
15694         * config/netbsd.h (WCHAR_TYPE): Define.
15695         (WCHAR_TYPE_SIZE): Ditto.
15696         (WINT_TYPE): Ditto.
15697         * config/alpha/netbsd.h (WCHAR_TYPE): Remove.
15698         (WCHAR_UNSIGNED): Ditto.
15699         (WCHAR_TYPE_SIZE): Ditto.
15700         (WINT_TYPE): Ditto.
15701         * config/arm/netbsd.h: Likewise.
15702         * config/i386/netbsd-elf.h: Likewise.
15703         * config/i386/netbsd.h: Likewise.
15704         * config/m68k/netbsd-elf.h: Likewise.
15705         * config/m68k/netbsd.h: Likewise.
15706         * config/ns32k/netbsd.h: Likewise.
15707         * config/sparc/netbsd.h: Likewise.
15708         * config/vax/netbsd.: Likewise.
15710 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
15712         * target.h (struct gcc_target): Added ms_bitfield_layout_p.
15713         * target-def.h (TARGET_MS_BITFIELD_LAYOUT_P): New.  Added to...
15714         (TARGET_INITIALIZER): this.
15715         * doc/tm.texi (TARGET_MS_BITFIELD_LAYOUT_P): Document.
15716         (BITFIELD_NBYTES_LIMITED): Markup fix.
15717         * tree.h (default_ms_bitfield_layout_p): Declare.
15718         (record_layout_info): Added prev_field.
15719         * tree.c (default_ms_bitfield_layout_p): New fn.
15720         * c-decl.c (finish_struct): Disregard EMPTY_FIELD_BOUNDARY and
15721         PCC_BITFIELD_TYPE_MATTERS for MS bit-field layout.
15722         * stor-layout.c: Include target.h.
15723         (start_record_layout): Initialize prev_field.
15724         (place_field): Handle MS bit-field layout, and disregard
15725         EMPTY_FIELD_BOUNDARY, BITFIELD_NBYTES_LIMITED and
15726         PCC_BITFIELD_TYPE_MATTERS in this case.  Update prev_field.
15727         * Makefile.in (stor-layout.o): Adjust dependencies.
15729 2002-02-05  Jason Merrill  <jason@redhat.com>
15731         * collect2.c (dump_file): Pass DMGL_VERBOSE to cplus_demangle.
15733 2002-02-05  Andreas Jaeger  <aj@suse.de>
15735         * crtstuff.c: Fix comments.
15737 2002-02-05  Richard Henderson  <rth@redhat.com>
15739         PR fortran/3393
15740         * loop.c (loop_iv_add_mult_emit_before): Copy multiplier as well.
15741         (loop_iv_add_mult_sink, loop_iv_add_mult_hoist): Likewise.
15743         PR fortran/3392
15744         * config/mips/mips.c (function_arg): Handle TImode.
15745         (function_arg_advance): Likewise.
15747 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
15749         * config/rs6000/altivec.h (vec_step_help): Rename to
15750         __vec_step_help.
15752 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
15754         * config/rs6000/altivec.h: Fix typos.
15756 2002-02-05  Jason Thorpe  <thorpej@wasabisystems.com>
15758         * config/arm/netbsd.h: Correct a comment.
15760 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
15762         * config/rs6000/rs6000.c (altivec_init_builtins): Fix typo
15763         building void typed builtins.
15765         * config/rs6000/altivec.h (vec_ld*): Fix typos.
15766         (vec_step): Implement for C++.
15768 Mon Feb  4 19:23:19 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
15770         * final.c (final_scan_insn): Add case for NOTE_INSN_LOOP_END_TOP_COND.
15772 2002-02-04  Richard Henderson  <rth@redhat.com>
15774         * combine.c (nonzero_bits): Re-introduce special case for
15775         sp/fp/ap wrt REGNO_POINTER_ALIGN.
15777 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
15779         * doc/extend.texi: Warn about unsupported usage of altivec
15780         builtins.
15782         * config/rs6000/rs6000.md (altivec_vcmp*_p): Remove.
15783         (altivec_predicate_*): New.
15785         * config/rs6000/altivec.h: Rewrite predicates to use new builtins.
15786         Add C++ version of vec_*() functions.
15788         * config/rs6000/rs6000.c (bdesc_altivec_preds): New.
15789         (bdesc_2arg): Remove altivec predicates.
15790         (altivec_expand_builtin): Handle predicates.
15791         (altivec_init_builtins): Handle predicates.
15792         (altivec_expand_predicate_builtin): New.
15794 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15796         * pa.c (DO_FRAME_NOTES): Move forward.
15797         (store_reg): Revise handling of frame notes.
15798         (load_reg): Likewise.
15799         (set_reg_plus_d): Likewise.
15800         (hppa_expand_prologue): Likewise.
15801         (hppa_expand_epilogue): Likewise.
15803 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15805         * unwind-dw2-fde-glibc.c: Define _GNU_SOURCE if not defined.
15807 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
15809         PR c/4475, c++/3780:
15810         * c-common.def (SWITCH_STMT): Add SWITCH_TYPE operand.
15811         * c-common.h (SWITCH_TYPE): Define.
15812         * c-typeck.c (c_start_case): Set SWITCH_TYPE.
15813         * stmt.c (all_cases_count): Set lastval to thisval at end of loop.
15814         Rename spareness variable to sparseness.
15815         (expand_end_case_type): Renamed from expand_end_case, use orig_type
15816         if non-NULL instead of TREE_TYPE (orig_index).
15817         * tree.h (expand_end_case_type): Renamed from expand_end_case.
15818         (expand_end_case): Define using expand_end_case_type.
15819         * c-semantics.c (genrtl_switch_stmt): Pass SWITCH_TYPE
15820         to expand_end_case_type.
15821         * doc/c-tree.texi (SWITCH_STMT): Document SWITCH_TYPE.
15823 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15825         * pa.h (PREFERRED_STACK_BOUNDARY): Define to match standard rounding.
15826         (BIGGEST_ALIGNMENT): Change to 128.
15828 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15830         * pa32-linux.h (LINK_COMMAND_SPEC): Define.
15832 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
15834         * pa.md (call_internal_reg_64bit): Remove unused variable.
15836 2002-02-04  Nick Clifton  <nickc@cambridge.redhat.com>
15838         * config/arm/arm.h (machine_function): Add uses_anonymous_args
15839         field.
15840         (SETUP_INCOMING_VARARGS): Set uses_anonymous_args.
15841         * config/arm/arm.c (current_function_anonymous_args): Delete,
15842         replace uses with cfun->machine->uses_anonymous_args.
15843         (arm_reorg): Do not reset uses_anonymous_args.
15845         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any value in
15846         any geenral register.
15848 2001-02-04  Bernd Schmidt  <bernds@redhat.com>s
15850         * cfgrtl.c (force_nonfallthru_and_redirect): Don't try to redirect
15851         the entry block.
15853 2002-02-04  Richard Henderson  <rth@redhat.com>
15855         * combine.c (force_to_mode): Remove STACK_BIAS code.
15856         (nonzero_bits): Likewise.  Replace sp/fp special case with
15857         REGNO_POINTER_ALIGN.
15859         * config/sparc/sparc.h (FRAME_POINTER_REGNUM): Change to SFP.
15860         (HARD_FRAME_POINTER_REGNUM): New.
15861         (FIRST_PSEUDO_REGISTER, REG_CLASS_CONTENTS): Update.
15862         (FIXED_REGS, CALL_USED_REGS): Update.
15863         (REG_ALLOC_ORDER, REGISTER_NAMES): Update.
15864         (CONDITIONAL_REGISTER_USAGE): Update for HFP.
15865         (HARD_REGNO_NREGS): Update for SFP.
15866         (STACK_POINTER_OFFSET): Include bias here ...
15867         (FIRST_PARM_OFFSET): ... not here.
15868         (STACK_BIAS): Remove.
15869         (INIT_EXPANDERS): New.
15870         (STARTING_FRAME_OFFSET): Do not include bias.
15871         (ELIMINABLE_REGS, CAN_ELIMINATE, INITIAL_ELIMINATION_OFFSET): New.
15872         (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P): Update for SFP.
15873         (REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P): Likewise.
15874         * config/sparc/aout.h (DBX_REGISTER_NUMBER): Update for HFP.
15875         * config/sparc/litecoff.h, config/sparc/sol2.h: Likewise.
15876         * config/sparc/sparc.c (mem_min_alignment): Update for HFP.
15877         (sparc_nonflat_function_prologue, epilogue_renumber): Likewise.
15878         (MUST_SAVE_REGISTER): Likewise.
15879         (sparc_flat_function_prologue): Likewise.
15880         (sparc_flat_function_epilogue): Likewise.
15881         (HARD_FRAME_POINTER_MASK): Rename from FRAME_POINTER_MASK.
15882         (sparc_init_modes): SFP is GENERAL_REGS.
15883         (sparc_builtin_saveregs): SFP does not have bias applied.
15885 2002-02-04  Richard Henderson  <rth@redhat.com>
15887         * config/alpha/alpha.c (current_function_is_thunk): Don't check
15888         current_function_is_thunk.
15889         (alpha_sa_mask): Distinguish between current_function_is_thunk
15890         called from ASM_OUTPUT_MI_THUNK and not.
15891         (alpha_does_function_need_gp): Thunks always need gp.
15892         (alpha_start_function, alpha_output_function_end_prologue): Likewise.
15893         (alpha_output_mi_thunk_osf): New.
15894         * config/alpha/alpha-protos.h: Update.
15895         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): New.
15897 2002-02-04  Richard Sandiford  <rsandifo@redhat.com>
15899         * c-typeck.c (build_c_cast): Warn when qualifiers are added to
15900         function types, not when they're taken away.
15902 Mon Feb  4 09:05:58 2002  Jeffrey A Law  (law@redhat.com)
15904         * cfgrtl.c (try_redirect_by_replacing_jump): Remove associated
15905         CODE_LABEL and jump table when replacing a table jump with a
15906         simple jump.
15908 2002-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
15910         * config/s390/s390-protos.h (legitimize_la_operand,
15911         s390_secondary_input_reload_class, s390_plus_operand,
15912         s390_expand_plus_operand): Add prototypes.
15914         config/s390/s390.c (s390_secondary_input_reload_class,
15915         s390_plus_operand, s390_expand_plus_operand): New functions.
15917         (struct s390_address): New member 'pointer'.
15918         (s390_decompose_address): Compute it.
15919         (legitimate_la_operand_p): Use it.
15920         (legitimize_la_operand): New function.
15921         (movti, movdi, movdf splitters): Call it.
15923         config/s390/s390.h (SECONDARY_INPUT_RELOAD_CLASS): Define.
15924         (PREDICATE_CODES): Add s390_plus_operand.
15926         config/s390/s390.md (adddi3_inv_64, addaddr_ccclobber): Delete.
15927         (la_ccclobber): Allow GENERAL_REGS as output operand.
15929         (reload_load_address, *reload_load_address_reg_0, *la, *do_la_reg_0,
15930         *reload_la_64, *reload_la_31 and splitters): Delete, replace by ...
15931         (*la_64, *la_31, reload_indi, reload_insi): ... these.
15933 2002-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
15935         * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed
15936         register names for regular asm () construct.
15938 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
15940         * config/i386/i386.md (movsf_1): Allow moving SF values in MMX
15941         registers.
15943 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
15945         * combine.c (recog_for_combine): Create a dummy insn with PATTERN
15946         pat for recog.
15948 2002-02-04  Hartmut Penner  <hpenner@de.ibm.com>
15950         * varasm.c (decode_rtx_const): Allow unspec (symbol_ref) in
15951         constant pool to be identical by string address and index.
15953 2002-02-04  Anthony Green  <green@redhat.com>
15955         * output.h (SECTION_OVERRIDE): Define.
15956         * varasm.c (named_section): Obey SECTION_OVERRIDE.
15958 2002-02-03  Jason Thorpe  <thorpej@wasabisystems.com>
15960         * config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match
15961         by existing arm*-*-netbsd* (a.out) target.
15962         (ns32k-*-netbsdelf*): Likewise.
15963         (sparc-*-netbsdelf*): Likewise.
15964         (vax-*-netbsdelf*): Likewise.
15966 2002-02-03  Danny Smith <dannysmith@users.sourceforge.net>
15968         * gthr-win32.h: Protect against conflicting typedef for BOOL in windows
15969         headers and libobjc headers.
15971 2002-02-03  Mumit Khan  <khan@nanotech.wisc.edu>
15973         * gthr-win32.h (__mingwthr_key_dtor): Use extern "C" linkage for C++.
15974         (_mingw.h): Remove duplicate include.
15976 2002-02-03  Jason Thorpe  <thorpej@wasabisystems.com>
15978         * config.gcc: Set cpu_type to m68k for 68010, as well.
15979         (m68010-*-netbsdelf*): New...
15980         (m68k*-*-netbsdelf*): ...targets.
15981         * config/m68k/netbsd-elf.h: New file.
15983 2002-02-02  Kazu Hirata  <kazu@hxi.com>
15985         * config/h8300/h8300.c (hand_list): Move inside function_arg.
15987 2002-02-02  Kazu Hirata  <kazu@hxi.com>
15989         * config/h8300/h8300.c (h8_push_ops): Move inside
15990         h8300_init_once.
15991         (h8_pop_ops): Likewise.
15992         (h8_move_ops): Likewise.
15994 2002-02-02  Kazu Hirata  <kazu@hxi.com>
15996         * config/h8300/h8300.c (os_task): Make it static.
15997         (monitor): Likewise.
15998         (pragma_saveall): Likewise.
16000 2002-02-02  Alexandre Oliva  <aoliva@redhat.com>
16002         * config/sh/sh.md (ic_invalidate_line): Make sure the immediate
16003         constant is a valid sign-extension for Pmode.
16005 2002-02-02  Kazu Hirata  <kazu@hxi.com>
16007         * config/h8300/h8300.c: Fix formatting.
16009 2002-02-02  Kazu Hirata  <kazu@hxi.com>
16011         * config/h8300/h8300.md: Fix formatting.
16013 2002-02-02  Kazu Hirata  <kazu@hxi.com>
16015         * config/h8300/h8300.md (one_cmpl patterns): Tighten the
16016         predicates of operands[1].  Split the patterns for each
16017         processor variant.
16019 2002-02-02  Kazu Hirata  <kazu@hxi.com>
16021         * config/h8300/h8300.md (xor patterns): Tighten the predicates
16022         of operands[1] to register_operand.
16024 2002-02-02  Neil Booth  <neil@daikokuya.demon.co.uk>
16026         * cpphash.h (struct spec_nodes): Remove n__CHAR_UNSIGNED__.
16027         * cpphash.c (_cpp_init_hashtable): Similarly.
16028         * cppinit.c (cpp_create_reader): Default the signed_char flag.
16029         (init_builtins): Define __CHAR_UNSIGNED__ appropriately.
16030         (COMMAND_LINE_OPTIONS): Recognise -f{un,}signed-char.
16031         (cpp_handle_option): Handle the new options.
16032         * cpplex.c (cpp_interpret_charconst): Use new flag.
16033         * cpplib.h (struct cpp_options): New member signed_char.
16034         * gcc.c (cpp_unique_options): Remove %c spec and documentation.
16035         (cpp_options): Handle -fsigned-char and -funsigned-char.
16036         (static_specs): Remove signed_char_spec.
16037         (do_spec1): Don't handle %c.
16038         * system.h: Poison SIGNED_CHAR_SPEC.
16039         * tradcif.y (yylex): Use flag_signed_char.
16040         * tradcpp.h (flag_signed_char): New.
16041         * tradcpp.c (flag_signed_char): New.
16042         (main): Handle new command-line options.
16043         (initialize_builtins): Define __CHAR_UNSIGNED__ if appropriate.
16044 config:
16045         * alpha/alpha.h (SIGNED_CHAR_SPEC): Remove.
16046         * avr/avr.h: Remove old comments.
16047         * i960/i960.h (CPP_SPEC): Pass -fsigned-char if -mic*.
16048         (CC1_SPEC): Pass -fsigned-char if -mic*.
16049         (SIGNED_CHAR_SPEC): Remove.
16050 doc:
16051         * tm.texi (SIGNED_CHAR_SPEC): Remove documentation.
16053 2002-02-01  Eric Christopher  <echristo@redhat.com>
16055         From Daniel Jacobowitz <dmj+@andrew.cmu.edu>
16056         * config/mips/mips.h (FUNCTION_PROFILER): Fix function profiling.
16057         * config/mips/linux.h (ASM_OUTPUT_REG_PUSH): Undefine.
16058         (ASM_OUTPUT_REG_POP): Ditto.
16060 2002-02-02  Neil Booth  <neil@daikokuya.demon.co.uk>
16062         * c-decl.c, tree.c, tree.h, objc/objc-act.c: Revert bitfield
16063         patch.
16065 2002-02-02  Jakub Jelinek  <jakub@redhat.com>
16067         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Add missing | separators.
16069 2002-02-02  Jakub Jelinek  <jakub@redhat.com>
16071         PR c/5304:
16072         * expmed.c (expand_mult_highpart): Use immed_double_const for wide_op1
16073         unconditionally.
16075 2002-02-01  Janis Johnson  <janis187@us.ibm.com>
16077         * cfganal.c: Include tm_p.h.
16078         (keep_with_call_p): Fix the test that determines if a register holds
16079         the return value of a call.
16081 2002-02-01  DJ Delorie  <dj@redhat.com>
16083         * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): If
16084         we are given conflicting registers, switch to the other one we
16085         had allocated for us.
16086         * config/sparc/sparc.md (reload_indi, reload_outdi): Pass op[2]
16087         as TImode so we know when the "other" register is available.
16089 2002-02-01  David O'Brien  <obrien@FreeBSD.org>
16091         * config/sparc/sol2-sld-64.h: Include sparc/biarch64.h rather than
16092         sparc/sparc_bi.h.
16094 2002-02-01  Janis Johnson  <janis187@us.ibm.com>
16096         * cfganal.c (keep_with_call_p): New function.
16097         (flow_call_edges_add): Prevent splitting a block between a call and
16098         a single-set instruction that should be kept in the same block.
16100 2002-02-01  Craig Rodrigues  <rodrigc@gcc.gnu.org>
16102         * doc/install.texi (avr): Update outdated URL.
16104 2002-01-30  Andrew Haley  <aph@cambridge.redhat.com>
16106         * config/stormy16/stormy16.md (pushqi): New.
16107         (popqi): New.
16108         (pushhi): New.
16109         (pophi): New.
16110         (movhi): Remove stack operands.
16111         (movqi): Likewise.
16112         * config/stormy16/stormy16.h (PREDICATE_CODES): Add
16113         nonimmediate_nonstack_operand.
16114         * config/stormy16/stormy16.c (nonimmediate_nonstack_operand):
16115         New.
16116         * config/stormy16/stormy16-protos.h (nonimmediate_nonstack_operand)
16117         New.
16119 2002-01-31  Jason Merrill  <jason@redhat.com>
16121         * Makefile.in (c-parse.c): Handle .output file.
16122         * objc/Make-lang.in (objc-parse.c): Likewise.
16124 2002-02-01  Alexandre Oliva  <aoliva@redhat.com>
16126         * config/mips/mips.h (ENDIAN_SPEC): Output the endianness flag if
16127         the -me[lb] option is given.  Don't output the default flag
16128         twice.
16130 2002-01-31  Zack Weinberg  <zack@codesourcery.com>
16132         * c-lex.c (yyparse): Call debug_hooks->start_source_file for
16133         the primary source file; this has not been done yet.
16134         * c-decl.c (c_expand_body): Reset input_filename from
16135         DECL_SOURCE_FILE (fndecl) before calling init_function_start.
16137 2002-01-31  Kazu Hirata  <kazu@hxi.com>
16139         * rtlanal.c (subreg_regno_offset): Do not use
16140         SUBREG_REGNO_OFFSET.
16141         * system.h: Add SUBREG_REGNO_OFFSET to the GCC poison list.
16142         * doc/tm.texi (SUBREG_REGNO_OFFSET): Remove.
16144 2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
16146         * gccbug.in: Follow GNU Coding Standards for --version.  Use GCC
16147         version rather than GNATS version in --version output.
16149 2002-01-31  Richard Sandiford  <rsandifo@redhat.com>
16151         * ifcvt.c (noce_process_if_block): Make a copy of the destination
16152         when copying back from a temporary.
16154 2002-01-30  Richard Henderson  <rth@redhat.com>
16156         * ifcvt.c (dead_or_predicable): Handling merging when other_bb
16157         and new_dest are the same.
16159 2002-01-30  Richard Henderson  <rth@redhat.com>
16161         PR opt/5076
16162         * rtl.h (NOTE_INSN_LOOP_END_TOP_COND): New.
16163         * rtl.c (note_insn_name): Update.
16164         * emit-rtl.c (remove_unnecessary_notes): Kill it.
16165         * stmt.c (expand_end_loop): Kill jump opt code.  Use LOOP_END_TOP_COND
16166         to perform loop rotation.
16167         (expand_exit_loop_top_cond): New.
16168         * tree.h (expand_exit_loop_top_cond): Declare it.
16169         * c-semantics.c (genrtl_while_stmt): Use it.
16170         (genrtl_for_stmt): Likewise.
16172 2002-01-30  Alexandre Oliva  <aoliva@redhat.com>
16174         * config/mips/mips.h (PARM_BOUNDARY): Guarantee alignment of
16175         arguments to 64-bit boundaries on 64-bit ABIs.
16177 2002-01-30  Steve Ellcey  <sje@cup.hp.com>
16179         * loop.c (loop_invariant_p): Special case pic_offset_table_rtx.
16181 2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
16183         * c-decl.c (grokdeclarator): Handle type being a typedef for an
16184         invalid type.
16186 2002-01-30  David O'Brien  <obrien@FreeBSD.org>
16188         * config.gcc: Include sparc/biarch64.h rather than sparc/sparc_bi.h.
16189         * config/sparc/sparc_bi.h: Remove file.
16190         * config/sparc/biarch64.h: New file (rename of sparc_bi.h).
16192 2002-01-30  Richard Henderson  <rth@redhat.com>
16194         * sched-deps.c (sched_analyze): Make a call read the frame pointer.
16196 2002-01-30  Zack Weinberg  <zack@codesourcery.com>
16198         * expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
16200 2002-01-30  Jason Merrill  <jason@redhat.com>
16202         * dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
16203         (output_cfi): Likewise. Disable DW_CFA_GNU_negative_offset_extended.
16204         (reg_save): Use DW_CFA_offset_extended_sf instead.
16206         * dwarf2out.c (dwarf2out_finish): Don't abort if there were errors.
16208 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
16210         * cselib.c (cselib_record_sets): Use IF_THEN_ELSE result
16211         in cselib_lookup.
16213 2002-01-29  Aldy Hernandez  <aldyh@redhat.com>
16215         * rs6000.md ("*call_value_local32"): Remove constraints.
16216         ("*call_value_local64"): Same.
16217         ("*call_value_indirect_nonlocal_aix32"): Same.
16218         ("*call_value_nonlocal_aix32"): Same.
16219         ("*call_value_indirect_nonlocal_aix64"): Same.
16220         ("*call_value_nonlocal_aix64"): Same.
16221         ("*call_value_nonlocal_sysv"): Same.
16223 2002-01-29  Richard Henderson  <rth@redhat.com>
16225         * config/alpha/elf.h (SDB_DEBUGGING_INFO): Undef.
16227 2002-01-29  Richard Henderson  <rth@redhat.com>
16229         * expr.c (force_operand): Ignore flag_pic for detecting pic
16230         address loads.
16231         * regclass.c (init_reg_sets_1): Test fixed_regs not flag_pic
16232         for determining if PIC_OFFSET_TABLE_REGNUM is call-clobbered.
16233         * resource.c (mark_target_live_regs): Use regs_invalidated_by_call
16234         instead of open-coded loop.
16235         * doc/tm.texi (PIC_OFFSET_TABLE_REGNUM): Clarify that it must
16236         be fixed when in use.
16238 2002-01-29  Richard Henderson  <rth@redhat.com>
16240         * sched-int.h (struct deps_reg): Add uses_length, clobbers_length.
16241         * sched-rgn.c (propagate_deps): Update them.
16242         * sched-deps.c (sched_analyze_insn): Update them.  Flush the
16243         clobbers list when either gets too long.
16245 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
16247         * config/i386/i386.h (LIMIT_RELOAD_CLASS): Handle LEGACY_REGS
16248         and INDEX_REGS the same as GENERAL_REGS.
16249         (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
16251 2002-01-29  Neil Booth  <neil@daikokuya.demon.co.uk>
16253         * tree.c (build_nonstandard_integer_type): Correct prototype.
16255 2002-01-29  Ulrich Weigand  <uweigand@de.ibm.com>
16257         * config/s390/s390.md (movstrsico, movstrdix_64,
16258         movstrsix_31): Remove, replace by ...
16259         (movstrdi_short, movstrsi_short, movstrdi_long,
16260         movstrsi_long): ... these.  New.
16261         (movstrdi, movstrsi): Adapt.
16263         (rotldi3, rotlsi3, ashldi3, *ashldi3_31, *ashldi3_64,
16264         ashlsi3, lshrdi3, *lshrdi3_31, *lshrdi3_64, lshrsi3):
16265         Remove unnecessary CC clobber.
16266         (*ashrdi3_cc_31, *ashrdi3_cconly_31, *ashrdi3_cc_64,
16267         *ashrdi3_cconly_64, *ashrsi3_cc, *ashrsi3_cconly): New.
16269         (divmoddi4): Don't partially initialize TImode register.
16271 2002-01-29  Geoffrey Keating  <geoffk@redhat.com>
16273         * doc/sourcebuild.texi (C Tests): Document gcc.dg/debug directory.
16275 2002-01-29  Richard Henderson  <rth@redhat.com>
16277         * flow.c (print_rtl_and_abort): Remove.
16278         (print_rtl_and_abort_fcn): Remove.
16279         (verify_local_live_at_start): Use dump_bb instead.
16280         (verify_wide_reg): Likewise. Take a basic_block, not rtl endpoints.
16281         (verify_wide_reg_1): Return 2 on mode test failure.
16283 2002-01-29  Neil Booth  <neil@daikokuya.demon.co.uk>
16285         PR c/3325, c/3326, c/2511, c/3347
16286         * c-decl.c (enum_decl_context): Remove BITFIELD.
16287         (grokdeclarator): Take bitfield width as an input.
16288         Ensure bitfields are given the correct type.  Perform
16289         bitfield width validation with build_bitfield_integer_type
16290         rather than waiting for finish_struct.
16291         (grok_typename, grok_typename_in_parm_context, start_decl,
16292         push_parmdecl, grokfield, start_function): Update calls to
16293         grokdeclarator.
16294         (build_bitfield_integer_type): New function.
16295         (finish_struct): Move bitfield validation to grokdeclarator
16296         and build_bitfield_integer_type.
16297         * tree.c (build_nonstandard_integer_type): New function.
16298         * tree.h (build_nonstandard_integer_type): New prototype.
16299 objc:
16300         * objc-act.c (objc_copy_list): Remove DECL_INITIAL kludge.
16302 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
16304         PR other/1502:
16305         * cppinit.c (cpp_handle_option): Add ignore argument, if it is zero,
16306         don't ignore unrecognized -W* options.
16307         (cpp_handle_options): Pass 1 as last argument to cpp_handle_option.
16308         * cpplib.h (cpp_handle_option): Adjust prototype.
16309         * c-decl.c (c_decode_options): Pass 0 as last argument to
16310         cpp_handle_option.
16312         PR c/2896:
16313         * gcc.c (cpp_unique_options): Split from cpp_options.
16314         (cpp_options): Source cpp_unique_options.
16315         (default_compilers): Use cpp_unique_options instead of cpp_options
16316         when used together with cc1_options.
16317         (static_specs): Add cpp_unique_options.
16318         * objc/lang-specs.h: Use cpp_unique_options instead of cpp_options
16319         when used together with cc1_options.
16321 2002-01-29  Kazu Hirata  <kazu@hxi.com>
16323         * config/h8300/h8300-protos.h: Update the prototype of
16324         output_a_shift.
16325         * config/h8300/h8300.c (output_a_shift): Remove an unused
16326         argument 'insn'.  Remove redundant code.
16327         * config/h8300/h8300.md: Adust to the new prototype of
16328         output_a_shift.
16330 2002-01-29  Kazu Hirata  <kazu@hxi.com>
16332         * config/h8300/h8300-protos.h: Update the prototypes of
16333         emit_a_rotate and expand_a_rotate.
16334         * config/h8300/h8300.c (emit_a_rotate): Change the type of the
16335         first argument to 'enum rtx_code'.
16336         (expand_a_rotate): Likewise.
16338 2002-01-28  Kazu Hirata  <kazu@hxi.com>
16340         * config/h8300/h8300-protos.h: Update the prototype of
16341         output_simode_bld.
16342         * config/h8300/h8300.c (output_simode_bld): Remove an argumen
16343         'log2'.
16344         * config/h8300/h8300.md: Adjust to the new prototype.
16346 2002-01-28  Kazu Hirata  <kazu@hxi.com>
16348         * conifg/h8300/h8300.c (h8300_adjust_insn_length): Remove
16349         redundant code.
16351 2002-01-28  John David Anglin  <dave@hiauly1.hia.nrc.ca>
16353         * emit-rtl.c (gen_rtx_REG): Check that the PIC_OFFSET_TABLE_REGNUM
16354         is a fixed register before returning pic_offset_table_rtx.
16355         * loop.c (scan_loop): Don't hoist insns that set pic_offset_table_rtx
16356         when PIC_OFFSET_TABLE_REG_CALL_CLOBBERED is defined.
16358 2002-01-28  Jason Merrill  <jason@redhat.com>
16360         * dwarf2.h: Sync with src version.
16362 2002-01-28  Paul Koning  <pkoning@equallogic.com>
16364         * builtin-types.def (BT_FN_VOID_CONST_PTR_VAR): Replace
16365         BT_FN_VOID_PTR_VAR.
16366         * builtins.def (BUILT_IN_PREFETCH): Change first argument to be const.
16367         * doc/extend.texi (__builtin_prefetch): Update documentation:
16368         first argument is now const void ptr.
16370 2002-01-28  Kazu Hirata  <kazu@hxi.com>
16372         * config/h8300/h8300-protos.h: Remove an unused prototype.
16374 2002-01-28  Roman Zippel  <zippel@linux-m68k.org>
16376         * toplev.c (lang_independent_init): Round up identifier size.
16378 2002-01-28  Richard Earnshaw  <rearnsha@arm.com>
16380         * config.gcc: Revert previous change.
16382 2002-01-28  Andris Pavenis  <pavenis@latnet.lv>
16384         * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION
16386 2002-01-28  Richard Earnshaw  <rearnsha@arm.com>
16388         * config.gcc (*-*-netbsdelf*): Set up generic parameters.
16389         (*-*-netbsd*): Always use collect2.  Remove collect2 settings from
16390         other non-elf netbsd config frags.
16391         * config/netbsd-aout.h (STARTFILE_SPEC): Don't pull in c++rt0 since
16392         collect2 will does that.
16393         * config/netbsd.h (LIBGCC_SPEC): Add white space before -lgcc, so that
16394         shared-lib frobbing will work.
16396 2002-01-28  Kazu Hirata  <kazu@hxi.com>
16398         * config/h8300/h8300.h: Fix formatting.
16399         * config/h8300/h8300.md: Likewise.
16401 2002-01-28  Loren J. Rittle  <ljrittle@acm.org>
16403         * fixinc/inclhack.def (strict_ansi_not): Add a bypass based on
16404         the old, removed AAA_standards fix.
16405         * fixinc/fixincl.x: Rebuilt.
16407 2002-01-28  Hans-Peter Nilsson  <hp@axis.com>
16409         * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Change to emit
16410         atexit call in crtbegin, hooked in after call to frame_dummy;
16411         register EH before registering __fini__start.
16413 2002-01-28  Aldy Hernandez  <aldyh@redhat.com>
16415         * config/rs6000/altivec.h: Remove spurious semicolons.
16417 2002-01-27  Kazu Hirata  <kazu@hxi.com>
16419         * config/h8300/h8300.md: Replace dead bit extraction patterns
16420         with ones that work.
16422 Sun Jan 27 13:23:40 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16424         * emit-rtl.c (get_mem_attrs): Don't default alignment for non-BLKmode
16425         if not STRICT_ALIGNMENT.
16426         * rtl.h (MEM_ALIGN): Likewise.
16428 2002-01-27  Craig Rodrigues  <rodrigc@gcc.gnu.org>
16430         * doc/invoke.texi (-fdump-translation-unit): Revert this
16431         patch: 2001-10-21  Craig Rodrigues  <rodrigc@gcc.gnu.org>
16433 2002-01-27  Kazu Hirata  <kazu@hxi.com>
16435         * config/h8300/h8300.md (define_constants): New.
16436         (anonymous patterns) Use defined constants appropriately.
16438 2002-01-27  Kazu Hirata  <kazu@hxi.com>
16440         * config/h8300/h8300.c (function_arg): Remove redundant code.
16442 2002-01-26  Richard Henderson  <rth@redhat.com>
16444         * sched-deps.c (reg_pending_uses_head): New.
16445         (reg_pending_barrier): Rename from reg_pending_sets_all.
16446         (find_insn_list): Don't mark inline.
16447         (find_insn_mem_list): Remove.
16448         (add_dependence_list, add_dependence_list_and_free): New.
16449         (flush_pending_lists): Replace only_write param with separate
16450         for_read and for_write parameters.  Update all callers.  Use
16451         add_dependence_list_and_free.
16452         (sched_analyze_1): Do not add reg dependencies here; just set
16453         the pending bits.  Use add_dependence_list.
16454         (sched_analyze_2): Likewise.
16455         (sched_analyze_insn): Replace schedule_barrier_found with
16456         reg_pending_barrier.  Add all dependencies for pending reg
16457         uses, sets, and clobbers.
16458         (sched_analyze): Don't add reg dependencies for calls, just
16459         set pending bits.  Use regs_invalidated_by_call.  Treat
16460         sched_before_next_call as a normal list, not a fake insn.
16461         (init_deps): No funny init for sched_before_next_call.
16462         (free_deps): Free pending mems lists.  Don't zero reg_last.
16463         (init_deps_global): Init reg_pending_uses.
16464         (finish_deps_global): Free it.
16465         * sched-int.h (deps): Make in_post_call_group_p boolean.  Update docs.
16466         (find_insn_mem_list): Remove.
16467         * sched-rgn.c (concat_INSN_LIST, concat_insn_mem_list): New.
16468         (propagate_deps): Use them.  Zero temp mem lists.
16470 2002-01-26  Richard Henderson  <rth@redhat.com>
16472         * Makefile.in (CRTSTUFF_CFLAGS): New.
16473         (crtbegin.o, crtend.o, crtbeginS.o, crtendS.o, crtbeginT.o): Use it.
16474         * config.gcc (alpha-linux, alpha-freebsd, alpha-netbsd): Use plain
16475         crtstuff.c instead of alpha assembly version.
16476         * crtstuff.c (CRT_CALL_STATIC_FUNCTION): Rewrite to assume the
16477         entire dummy function sequence.  Use FORCE_CODE_SECTION_ALIGN
16478         not FORCE_{INIT,FINI}_SECTION_ALIGN.
16479         (__do_global_dtors_aux): Mark used.
16480         (frame_dummy, __do_global_ctors_aux): Mark used.
16481         (fini_dummy, init_dummy): Remove.
16483         * config/alpha/crtbegin.asm: Remove file.
16484         * config/alpha/crtend.asm: Remove file.
16485         * config/alpha/t-crtbe: Remove file.
16486         * config/alpha/elf.h (CRT_CALL_STATIC_FUNCTION): New.
16487         (LINK_EH_SPEC): New.
16489         * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Rewrite old
16490         FORCE_INIT_SECTION_ALIGN hack.  Register __fini_start before
16491         calling constructors.
16492         * config/cris/linux.h (CRT_CALL_STATIC_FUNCTION): Undef.
16494         * config/i386/i386.h (CRT_CALL_STATIC_FUNCTION): New.
16495         * config/i386/linux.h (CRT_CALL_STATIC_FUNCTION): Replace old
16496         CRT_END_INIT_DUMMY hack.
16497         * config/i386/sol2.h (FORCE_CODE_SECTION_ALIGN): Replace
16498         FORCE_{INIT,FINI}_SECTION_ALIGN.
16500         * config/mcore/mcore-elf.h (FORCE_CODE_SECTION_ALIGN): Replace
16501         FORCE_{INIT,FINI}_SECTION_ALIGN.
16503         * config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Update for new
16504         invocation sequence.
16505         * config/sh/sh.h (CRT_CALL_STATIC_FUNCTION): Likewise.
16507         * doc/tm.texi (CRT_CALL_STATIC_FUNCTION): Update.
16508         (FORCE_CODE_SECTION_ALIGN): New.
16510 2002-01-26  Richard Henderson  <rth@redhat.com>
16512         * config/cris/cris.c (cris_print_operand): Handle 64-bit CONST_INT.
16514 2002-01-26  Richard Henderson  <rth@redhat.com>
16516         * config/alpha/alpha.c (alpha_sa_mask): Mark RA for unicos here too.
16517         (alpha_sa_size): Use alpha_sa_mask to compute size of saved regs.
16519 2002-01-26  Kazu Hirata  <kazu@hxi.com>
16521         * config/h8300/h8300.md: Remove bit extraction patterns that
16522         cannot be triggered.
16523         Restrict each bit extraction pattern to a variant on which the
16524         pattern is tested.
16526 2002-01-26  Joseph S. Myers  <jsm28@cam.ac.uk>
16528         * doc/include/texinfo.tex: Update to version 2002-01-04.07.
16530 2002-01-26  Kazu Hirata  <kazu@hxi.com>
16532         * config/h8300/h8300.md: Remove bit test patterns that cannot
16533         be triggered.
16534         Restrict each bit test pattern to a variant on which the
16535         pattern is tested.
16537 2002-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
16539         * builtins.c (expand_builtin_strncat): Remove redundant check for
16540         INTEGER_CST.
16542 2002-01-25  David O'Brien  <obrien@FreeBSD.org>
16544         * config/i386/x86-64.h (DEFAULT_PCC_STRUCT_RETURN): Do not overide
16545         default setting.
16546         * config/i386/freebsd64.h (DEFAULT_PCC_STRUCT_RETURN): Do not override
16547         existing setting.
16549 2002-01-25  Geoffrey Keating  <geoffk@redhat.com>
16551         * dbxout.c (dbxout_init): Use assemble_name rather than just
16552         stripping off the first character.
16553         (dbxout_source_file): Likewise.
16555 2002-01-25  DJ Delorie  <dj@redhat.com>
16557         * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): Compare
16558         using rtx_equal_p, not by comparing pointers.
16560 2002-01-25  Steve Ellcey  <sje@cup.hp.com>
16562         * emit-rtl.c (gen_rtx_REG): Always return the same rtx
16563         for PIC_OFFSET_TABLE_REGNUM.
16564         (init_emit_once): Use gen_raw_REG to initialize pic_offset_table_rtx.
16566 2002-01-25  David O'Brien  <obrien@FreeBSD.org>
16568         * config.gcc (x86_64-*-freebsd*): New target.
16569         (x86_64-*-netbsd*,x86_64-*-linux*): Use ${tm_file} rather than its
16570         value.
16571         (i[34567]86-*-freebsd*): Don't include svr4.h.
16572         * config/i386/freebsd64.h: New file.
16574 2002-01-25  Douglas B Rupp  <rupp@gnat.com>
16576         * config/alpha/x-vms (version): Make static.
16578         * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Fix error
16579         in previous checkin.
16581         * Makefile.in (install-headers-cp): New target.
16582         * config.gcc (alpha-dec-*vms*): Install headers with
16583         install-headers-cp
16585 Fri Jan 25 22:42:49 CET 2002  Jan Hubicka  <jh@suse.cz>
16587         * unroll.c (unroll_loop): Lower final_value to nonmemory operand;
16588         avoid it's copies.
16590 Fri Jan 25 08:26:19 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16592         * builtins.c (expand_builtin_strncpy): Use integer_zerop instead
16593         of compare_tree_int.
16594         (expand_builtin_strncat): Likewise.
16595         * c-decl.c (finish_struct): Use tree_low_cst.
16596         * tree.h (compare_tree_int): Arg is unsigned HOST_WIDE_INT.
16597         * tree.c (compare_tree_int): Likewise.
16599 2002-01-25  Ulrich Weigand  <uweigand@de.ibm.com>
16601         * reload1.c (eliminate_regs_in_insn): Recognize frame pointer
16602         adjustments even if they are implemented by more than two insns.
16604 Fri Jan 25 20:43:56 CET 2002  Jan Hubicka  <jh@suse.cz>
16606         * df.c (df_ref_create, df_ref_record_1, df_ref_record): Kill BB arg.
16607         * df.h (struct ref): Kill B.
16608         (DF_REF_BB, DF_REF_BBNO): Use BLOCK_FOR_INSN.
16610         * basic-block.h (PROP_EQUAL_NOTES): New flag.
16611         * flow.c (propagate_one_insn): Use it.
16612         (mark_used_regs): Handle NIL.
16614 2002-01-25  Geoffrey Keating  <geoffk@redhat.com>
16616         * config/stormy16/stormy16.md (tablejump_pcrel): Use a MEM
16617         to help folding.
16619 2002-01-25  David Edelsohn  <edelsohn@gnu.org>
16621         * rs6000.md (prefetch): Make address V4SI mode so that the address
16622         is restricted to legitimate form for instruction.
16624 2002-01-25  Bob Wilson  <bob.wilson@acm.org>
16626         * doc/install.texi (xtensa-*-elf): New target.
16627         (xtensa-*-linux*): New target.
16628         * doc/contrib.texi: Add myself.
16630 2002-01-25  Nick Clifton  <nickc@cambridge.redhat.com>
16632         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any general
16633         purpose register to hold an SImode (or smaller) value.
16635 2002-01-25  Jakub Jelinek  <jakub@redhat.com>
16637         * unwind-dw2-fde-glibc.c: If inhibit_libc, use __register_frame*
16638         registry only.
16639         * crtstuff.c: Likewise.
16641 2002-01-25  Kazu Hirata  <kazu@hxi.com>
16643         * config/h8300/h8300.md (negation patterns): Tighten
16644         predicates to register_operand.
16646 2002-01-24  Aldy Hernandez  <aldyh@redhat.com>
16648         * loop.c (emit_prefetch_instructions): Use the prefetch insn's
16649         mode, not Pmode.
16651         * builtins.c (expand_builtin_prefetch): Same.
16653 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
16655         * config/sh/sh.md (sym_label2reg): Make sure all CONSTs have
16656         modes.
16658 2002-01-24  Kazu Hirata  <kazu@hxi.com>
16660         * config/h8300/h8300.c (print_operand): Remove support for
16661         operand character 'A'.
16662         * config/h8300/h8300.md (three anonymous patterns): Replace
16663         operand character 'A' with either 'T' or 'S'.
16665 2002-01-24  Kazu Hirata  <kazu@hxi.com>
16667         * config/h8300/h8300.c (print_operand): Remove support for
16668         operand character 'U'.
16670 2002-01-24  Andris Pavenis  <pavenis@latnet.lv>
16672         * config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR.
16674 2002-01-24  Nick Clifton  <nickc@cambridge.redhat.com>
16676         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow SImode
16677         values to be assigned to the stack pointer.
16679 2002-01-14  Hartmut Penner  <hpenner@de.ibm.com>
16681         * emit_rtl.c (gen_lowpart_common): Conversion from const_int
16682         to const_double needs to be done right for big-endian systems.
16684 2002-01-24  Jason Merrill  <jason@redhat.com>
16686         PR c++/2432
16687         * config/sparc/sparc.md (call-jump peepholes): Pass the right insn
16688         to can_throw_internal.
16690 2002-01-23  Richard Henderson  <rth@redhat.com>
16692         * fold-const.c (fold): Change UINT_MAX test to check vs precision
16693         rather than TYPE_MAX_VALUE.  Fix indentation and a bogus negation.
16695 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
16697         * config/sh/sh.md (symGOT_load, sym2GOT, sym2GOTOFF): New expands.
16698         (symGOT2reg): Use them, then set as GOT value as unchanging.
16699         (symGOTOFF2reg): Set REG_EQUAL note.  Use a different pseudo
16700         as a temporary, if possible.
16701         (symPLT_label2reg): Enclose (pc) in UNSPEC_PIC.  Emit
16702         sym@PLT-(.LPCS#+2-.) instead of sym@PLT+.-(.LPCS#+2).
16704 2002-01-23  Kazu Hirata  <kazu@hxi.com>
16706         * config/h8300/h8300.md: Fix xorqi and xorqi so that they will
16707         accept to accept 0x80 as operands[2].
16709 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
16711         * config/sparc/sparc.md (fix_trunctfdi2): Correct typo in mode.
16713 2002-01-23  Richard Henderson  <rth@redhat.com>
16715         * config/alpha/alpha.md (call_value_osf_1_er peepholes): Fix typo.
16717 2002-01-23  Aldy Hernandez  <aldyh@redhat.com>
16719         * c-parse.in (parmlist_or_identifiers): Add maybe_attribute.
16720         (parmlist_or_identifiers_1): Verify that only a parmlist follows
16721         an attribute.
16723 2002-01-23  Richard Henderson  <rth@redhat.com>
16725         * expr.c (move_by_pieces_1): Extend size before negation.
16727         * config/m68k/t-m68kbare (MULTILIB_OPTIONS): Add 68040 and 68060.
16728         (MULTILIB_MATCHES): Remove 68040 and 68060 aliases.
16729         (MULTILIB_EXCEPTIONS): Ignore 68881 and soft-float for 68040 and 68060.
16730         * config/m68k/t-m68kelf: Likewise.
16732 2002-01-23  Bob Wilson  <bob.wilson@acm.org>
16734         * config/xtensa/elf.h: New file.
16735         * config/xtensa/lib1funcs.asm: New file.
16736         * config/xtensa/lib2funcs.S: New file.
16737         * config/xtensa/linux.h: New file.
16738         * config/xtensa/t-xtensa: New file.
16739         * config/xtensa/xtensa-config.h: New file.
16740         * config/xtensa/xtensa-protos.h: New file.
16741         * config/xtensa/xtensa.c: New file.
16742         * config/xtensa/xtensa.h: New file.
16743         * config/xtensa/xtensa.md: New file.
16744         * config.gcc (xtensa-*-elf*): New target.
16745         (xtensa-*-linux*): New target.
16746         * cse.c (canon_hash): Compare rtx pointers instead of register
16747         numbers.  This is required for the Xtensa port.
16748         * integrate.c (copy_insn_list): Handle case where the static
16749         chain is in memory and the memory address has to be copied to
16750         a register.
16751         * doc/invoke.texi (Option Summary): Add Xtensa options.
16752         (Xtensa Options): New node.
16753         * doc/md.texi (Machine Constraints): Add Xtensa machine constraints.
16755 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
16757         * diagnostic.c (internal_error): Do ICE suppression only
16758         when ENABLE_CHECKING is not defined.
16760         * c-typeck.c (require_complete_type): Return error_mark_node
16761         if type is error_mark_node.
16763 2002-01-23  Janis Johnson  <janis187@us.ibm.com>
16765         * toplev.c (process_options): Disable -fprefetch-loop-arrays with
16766         -Os and issue a warning.
16768 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
16770         * doc/fragments.texi, doc/hostconfig.texi: Update to reflect
16771         current (lack of) need for host configuration by hand.
16773         * doc/gccint.texi, doc/rtl.texi, doc/tm.texi: Adjust cross
16774         references.  Documentation of some target macros moved from
16775         hostconfig.texi to tm.texi.
16777 2002-01-23  Will Cohen  <wcohen@redhat.com>
16779         * config/arm/arm.h (THUMB_FUNCTION_PROFILER): Define if not currently
16780         defined.
16782 2002-01-23  Kazu Hirata  <kazu@hxi.com>
16784         * config/h8300/h8300.md (*andorhi3): Accept 0x8000 as an
16785         operand[3].
16787 2002-01-23  Jason Merrill  <jason@redhat.com>
16789         * tree.c (build1): Don't set TREE_READONLY on INDIRECT_REF.
16791         * function.c (assign_parms): Don't put args of inline functions
16792         into registers when not optimizing.
16794 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
16796         * config/arm/arm.md (UNSPEC_PROLOGUE_USE): New unspec constant.
16797         (prologue_use): New pattern.
16798         * config/arm/arm.c (expand_prologue): Use gen_prologue_use in
16799         preference to gen_rtx_USE.
16800         (thumb_expand_prologue): Use gen_prologue_use in preference to
16801         gen_rtx_USE.
16802         (thumb_expand_epilogue): Use gen_prologue_use in preference to
16803         gen_rtx_USE.
16805 2002-01-23  Hans-Peter Nilsson  <hp@bitrange.com>
16807         * loop.c [!HAVE_prefetch] (CODE_FOR_prefetch): Define to 0.
16809 2002-01-23  Neil Booth  <neil@daikokuya.demon.co.uk>
16811         PR c/3504
16812         * doc/extend.texi: Correct documentation of __alignof__.
16814 2002-01-22  Zack Weinberg  <zack@codesourcery.com>
16816         * params.h: Rename arguments of DEFPARAM so that it will be
16817         recognized as a translation keyword.
16819 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
16821         * extend.texi: Document altivec functions.
16822         Fix N-bit adjectives in X86 builtin documentation.
16824 2002-01-22  Alexandre Oliva  <aoliva@redhat.com>
16826         * reload.c (reg_overlap_mentioned_for_reload_p): Handle PLUS and
16827         auto_inc_dec values.
16829 2002-01-22  Richard Earnshaw  <rearnsha@arm.com>
16831         * config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space
16832         after backslash.
16833         (ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line.
16835 2002-01-22  Alexandre Oliva  <aoliva@redhat.com>
16837         * config/i386/freebsd-aout.h (ASM_QUAD): Undefine.
16839 2002-01-22  Richard Henderson  <rth@redhat.com>
16841         * config/alpha/alpha.c (split_small_symbolic_mem_operand): Use
16842         copy_insn not copy_rtx.
16844 2002-01-23  Alan Modra  <amodra@bigpond.net.au>
16846         * combine.c (simplify_and_const_int): Don't trunc_int_for_mode
16847         "nonzero" as that might add "1" bits.  Ensure "constop" is
16848         properly sign extened.
16849         (force_to_mode): Tweak for sign extended constop.
16851 2002-01-22  Richard Henderson  <rth@redhat.com>
16853         * config/alpha/alpha.c (some_small_symbolic_mem_operand) Use
16854         for_each_rtx instead of assuming we're already looking at the MEM.
16855         (split_small_symbolic_mem_operand): Likewise.
16856         * config/alpha/alpha.h (PREDICATE_CODES): Update.
16857         * config/alpha/alpha.md (small symbolic memory splitters): Update.
16859 2002-01-22  Richard Henderson  <rth@redhat.com>
16861         * config/alpha/alpha.md (divmodsi_internal_er): Generate lituse
16862         sequence number for the literal.
16863         (divmoddi_internal_er): Likewise.
16865 2002-01-22  Craig Rodrigues  <rodrigc@gcc.gnu.org>
16867         PR java/4972
16868         * aclocal.m4 (AM_ICONV): Put linking flags for libiconv
16869         in LIBICONV variable.
16870         * configure: Regenerated.
16872 2002-01-22  Krister Walfridsson  <cato@df.lth.se>
16874         * dependence.c (build_def_use): Remove array_idx.
16876         * dwarfout.c (last_filename): Remove.
16877         (output_compile_unit_die): Remove last_filename.
16879 2002-01-22  Roger Sayle  <roger@eyesopen.com>
16880             Richard Henderson  <rth@redhat.com>
16882         PR opt/3640
16883         * fold-const.c (fold): Optimize unsigned comparisons against
16884         UINT_MAX (and similar unsigned constants).
16886 2002-01-22  Janis Johnson  <janis187@us.ibm.com>
16888         * Makefile.in (loop.o): Depend on OPTABS_H.
16889         * loop.c (emit_prefetch_instructions): Check the prefetch operand
16890         against the predicate.
16892         PR target/5379
16893         * config/i386/i386.md (prefetch_sse): Specify "p" as a constraint
16894         for the address operand.
16896 2002-01-22  Richard Henderson  <rth@redhat.com>
16898         * config/alpha/freebsd.h (FUNCTION_PROFILER): Remove.
16900 2002-01-22  Craig Rodrigues  <rodrigc@gcc.gnu.org>
16902         PR other/5450
16903         * config/i386/sysv4.h (CPP_SPEC): Define, and add CPU
16904         preprocessor flags.
16906 2002-01-22  Jason Thorpe  <thorpej@wasabisystems.com>
16908         * config.gcc (x86_64-*-netbsd*): New target.
16909         * config/i386/netbsd64.h: New file.
16911 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
16913         * regrename.c (kill_value): Fix typo.
16915 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
16917         * doc/tm.texi: Remove STARTING_FRAME_PHASE.
16919         * config/rs6000/rs6000.h: Same.
16921         * function.c (instantiate_virtual_regs): Remove
16922         STARTING_FRAME_PHASE.
16923         (assign_stack_local_1): Same.
16924         Calculate frame phase.
16926 2002-01-22  Nick Clifton  <nickc@redhat.com>
16928         * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Move 'regno'
16929         variable declaration to outer scope in order to simplify
16930         future extensions.
16931         (HARD_REGNO_MODE_OK): Replace macro body with a with a call to
16932         arm_hard_regno_mode_ok.
16933         * config/arm/arm-protos.h: Add a prototype for
16934         arm_hard_regno_mode_ok.
16935         * config/arm/arm.c (soft_df_operand): Remove now redundant
16936         check for DImode values using IP_REGNUM.
16937         (nonimmediate_soft_df_operand): Remove now redundant check for
16938         DImode values using IP_REGNUM.
16939         (arm_hard_regno_mode_ok): New function. New check: make sure
16940         that DImode values are not stored in IP_REGNUM.
16942         * config/arm/arm.c (arm_expand_prologue): Replace REG_MAYBE_DEAD
16943         note with a USE.
16944         (thumb_expand_prologue): Replace REG_MAYBE_DEAD note with a USE.
16946 2002-01-22  Jason Merrill  <jason@redhat.com>
16948         * c-semantics.c (genrtl_compound_stmt): Only check nesting
16949         consistency if this COMPOUND_STMT is scoped.
16951 2002-01-22  Kazu Hirata  <kazu@hxi.com>
16953         * predict.c: Fix formatting.
16954         * print-tree.c: Likewise.
16955         * protoize.c: Likewise.
16956         * real.h: Likewise.
16957         * rtl.h: Likewise.
16958         * sbitmap.h: Likewise.
16959         * scan.c: Likewise.
16960         * sched-deps.c: Likewise.
16961         * sched-vis.c: Likewise.
16962         * sdbout.c: Likewise.
16963         * sibcall.c: Likewise.
16964         * ssa.c: Likewise.
16965         * ssa-ccp.c: Likewise.
16966         * ssa-dce.c: Likewise.
16967         * stmt.c: Likewise.
16968         * stor-layout.c: Likewise.
16969         * system.h: Likewise.
16971 Tue Jan 22 06:26:33 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
16973         * tree.c (int_fits_type_p): If bounds of a subtype are variable, see
16974         if fits in bounds of base type.
16976         * dwarf2out.c (equate_decl_number_to_die): Add "int" to decls.
16977         (loc_descriptor_from_tree, case CALL_EXPR, case ADDR_EXPR): New.
16978         (add_bound_info, default): If can't find a context, make a
16979         SAVE_EXPR.
16980         (dwarf2out_finish): Check for SAVE_EXPR in node->created_for.
16982 2002-01-22  Hans-Peter Nilsson  <hp@axis.com>
16984         * c-typeck.c (parser_build_binary_op): If result from
16985         build_binary_op is ERROR_MARK just return error_mark_node without
16986         further processing.
16988 2002-01-21  Jason Thorpe  <thorpej@wasabisystems.com>
16990         * config/netbsd.h (TARGET_HAS_F_SETLKW): define.
16991         Split a.out-specific bits into...
16992         * config/netbsd-aout.h: ...this.
16993         * config/netbsd-elf.h: New file.
16994         * config/alpha/netbsd-elf.h: Remove.
16995         * config/alpha/netbsd.h: Rewrite for a NetBSD/alpha ELF target.
16996         * config/i386/netbsd-elf.h (LIB_SPEC): Remove.
16997         (STARTFILE_SPEC): Remove redundant definition.
16998         (ENDFILE_SPEC): Likewise.
16999         (LINK_SPEC): Likewise.
17000         (CPP_SPEC): Likewise.
17001         (ASM_SPEC): Likewise.
17002         (LIB_SPEC): Likewise.
17003         (SWITCH_TAKES_ARG): Likewise.
17004         (TARGET_MEM_FUNCTIONS): Likewise.
17005         (CPP_PREDEFINES): Redefine.
17006         (ASM_FINAL_SPEC): Remove redefinition.
17007         (ASM_COMMENT_START): Redefine.
17008         (FUNCTION_PROFILER): Define.
17009         (TARGET_VERSION): Redefine.
17010         Comment and formatting cleanup.
17011         * config/i386/netbsd.h: Include <netbsd-aout.h>.
17012         * config/m68k/netbsd.h: Include <netbsd-aout.h>.
17013         * config/mips/netbsd.h: Rewrite for NetBSD/mips ELF target,
17014         big- or little-endian.
17015         * config/ns32k/netbsd.h: Include <netbsd-aout.h>.
17016         * config.gcc (*-*-netbsd*): Add definitions common to all
17017         NetBSD configs.
17018         (alpha*-*-netbsd*): Remove redundant xm_defines, gas, and
17019         gnu_ld definitions.  Add netbsd-elf.h to and remove
17020         alpha/netbsd-elf.h from tm_file.  Remove alpha/t-crtfm from
17021         tmake_file, and don't lose previous tmake_file contents.
17022         (arm*-*-netbsd*): Add netbsd-aout.h to tm_file.
17023         (i[34567]86-*-netbsdelf*): Remove redundant xm_defines, gas, and
17024         gnu_ld definitions.  Add netbsd-elf.h to tm_file.
17025         (mips-dec-netbsd*): Remove as alias for mipsel-*-netbsd*.
17026         (mipsel-*-netbsd*): Rename this to...
17027         (mips*-*-netbsd*): ...this.  Add elfos.h to tm_file.  Add
17028         mips/little.h to tm_file for mips*el-*.
17029         (powerpc-*-netbsd*): Remove redundant xm_defines definition.
17030         (sparc-*-netbsd*): Add netbsd-aout.h to tm_file.
17031         (vax-*-netbsd*): Add netbsd-aout.h to tm_file.
17033 2002-01-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>
17035         * pa-protos.h (reg_before_reload_operand): New function prototype.
17036         * pa.c (reg_before_reload_operand): New function implementation.
17037         * pa.md (decrement_and_branch_until_zero, movb): Use it.  Change "!*m"
17038         contraints to "*m".
17040 2002-01-21  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
17042         * combine.c (simplify_and_const_int): Properly sign-extend CONSTOP.
17044 2002-01-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>
17046         * pa64-hpux.h (MD_EXEC_PREFIX): Set to "/usr/ccs/bin".
17047         (MD_STARTFILE_PREFIX): Set to "/usr/ccs/lib/pa20_64/".
17048         (MD_STARTFILE_PREFIX_1): Set to "/opt/langtools/lib/pa20_64/".
17049         (EH_FRAME_IN_DATA_SECTION): Define and update comment on init sections.
17050         (ENDFILE_SPEC): Undefine.
17051         (STARTFILE_SPEC): Redefine for PA.
17053 2002-01-21  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
17055         * config/rs6000/t-ppccomm (CRTSTUFF_T_CFLAGS_S): Re-add -fPIC.
17057 2002-01-21  Daniel Jacobowitz  <drow@mvista.com>
17059         * config.gcc: Add entries to supported PowerPC --with-cpu
17060         types.
17062 2002-01-21  Jakub Jelinek  <jakub@redhat.com>
17064         * config/i386/i386.c (ix86_function_arg_regno_p): Never return
17065         true for 64-bit mode only SSE registers in 32-bit mode.
17067 2002-01-21  Kazu Hirata  <kazu@hxi.com>
17069         * unwind-dw2.c: Fix formatting.
17070         * unwind-dw2-fde.c: Likewise.
17071         * unwind-dw2-fde.h: Likewise.
17072         * unwind-pe.h: Likewise.
17073         * varasm.c: Likewise.
17074         * varray.h: Likewise.
17076 2002-01-21  Hans-Peter Nilsson  <hp@bitrange.com>
17078         Remove workaround for register stack overwrite bug in mmix.
17079         * config/mmix/mmix.c (mmix_target_asm_function_prologue): Remove
17080         support for TARGET_REG_STACK_FILL_BUG.
17081         * config/mmix/mmix.h: Remove member has_call_without_parameters.
17082         (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_REG_STACK_FILL_BUG):
17083         Delete.
17084         (TARGET_DEFAULT): Remove TARGET_MASK_REG_STACK_FILL_BUG.
17085         (TARGET_SWITCHES): Remove -mreg-stack-fill-bug-workaround and
17086         -mno-reg-stack-fill-bug-workaround.
17087         * config/mmix/mmix.md ("call", "call_value"): Don't set struct
17088         machine member has_call_without_parameters.
17089         * doc/invoke.texi (Option Summary) <MMIX Options>: Remove
17090         -mreg-stack-fill-bug-workaround and
17091         -mno-reg-stack-fill-bug-workaround.
17092         (MMIX Options): Ditto.
17094 2002-01-21  Kazu Hirata  <kazu@hxi.com>
17096         * config/h8300/h8300.c (function_arg): Replace 0 with NULL_RTX
17097         as appropriate.
17098         Remove redundant code.
17100 2002-01-21  Joseph S. Myers  <jsm28@cam.ac.uk>
17102         * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
17103         config/c4x/c4x.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
17104         config/fr30/fr30.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
17105         config/mips/mips.h, config/rs6000/rs6000.h, config/sparc/sparc.h,
17106         config/stormy16/stormy16.h, config/v850/v850.h: Remove commented
17107         out target macro definitions and non-target-specific comments
17108         mostly taken from old versions of the manual.
17110 2002-01-20  Kazu Hirata  <kazu@hxi.com>
17112         * config/h8300/h8300.h: Fix comment formatting.
17113         * config/ia64/aix.h: Likewise.
17114         * config/ia64/ia64-protos.h: Likewise.
17115         * config/ia64/ia64.c: Likewise.
17116         * config/ia64/ia64.h: Likewise.
17117         * config/ia64/ia64intrin.h: Likewise.
17118         * config/ia64/linux.h: Likewise.
17119         * config/ia64/unwind-aix.c: Likewise.
17120         * config/ia64/unwind-ia64.c: Likewise.
17122 2002-01-20  Kazu Hirata  <kazu@hxi.com>
17124         * config/h8300/h8300.c: Revise comments about shift code.
17126 2002-01-20  Kazu Hirata  <kazu@hxi.com>
17128         * config/h8300/h8300.c (function_arg): Update a comment.
17130 2002-01-20  Kazu Hirata  <kazu@hxi.com>
17132         * config/h8300/h8300.md: Update the comments at the beginning
17133         of the file.
17135 2002-01-20  Kazu Hirata  <kazu@hxi.com>
17137         * config/i370/i370.c: Fix comment formatting.
17138         * config/i370/i370.h: Likewise.
17139         * config/i370/i370.md: Likewise.
17140         * config/i370/linux.h: Likewise.
17142 Sun Jan 20 18:40:14 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17144         * reg-stack.c (subst_stack_regs): Properly check for deleted insn.
17146         * dwarf2out.c (loc_descriptor_from_tree): Add TRUTH_*_EXPR cases.
17147         (gen_struct_or_union_type_die): Don't SIGSEGV if no TYPE_STUB_DECL
17148         in incomplete case.
17150 2002-01-20  Graham Stott  <grahams@redhat.com>
17152         * cfgloop.c (flow_loop_preheader_scan): Fix typo.
17154 2002-01-19  John David Anglin  <dave@hiauly1.hia.nrc.ca>
17156         * config.gcc (hppa*64*-*-hpux11*): Fix tmake_file.
17158 2002-01-19  Tom Rix  <trix@redhat.com>
17160         * config/rs6000/rs6000.md: Fix DF split for 64 bit hosts.
17162 2002-01-18  Aldy Hernandez  <aldyh@redhat.com>
17164         * doc/tm.texi (STARTING_FRAME_PHASE): Document.
17166         * function.c (assign_stack_local_1): Adjust x_frame_offset with
17167         STARTING_FRAME_PHASE.
17168         (STARTING_FRAME_PHASE): New.
17169         (instantiate_virtual_regs): Check saneness of
17170         STARTING_FRAME_PHASE.
17172         * config/rs6000/rs6000.h (STARTING_FRAME_PHASE): New.
17174 2002-01-19  Alexandre Oliva  <aoliva@redhat.com>
17176         * config/sh/sh.md (movdf_i4 split): Fix alter_subreg calls.
17178 2002-01-18  Craig Rodrigues  <rodrigc@gcc.gnu.org>
17180         * doc/install.texi (hppa*-hp-hpux11): Clarify that GCC 2.95.x cannot
17181         be used for bootstrapping GCC 3.0.
17183 2002-01-18  Kazu Hirata  <kazu@hxi.com>
17185         * config/h8300/h8300.md: Fix an insn length.
17187 2002-01-18  Kazu Hirata  <kazu@hxi.com>
17189         * bitmap.h: Fix comment formatting.
17190         * combine.c: Likewise.
17191         * cppfiles.c: Likewise.
17192         * c-pragma.h: Likewise.
17193         * c-typeck.c: Likewise.
17194         * df.c: Likewise.
17195         * dwarf2out.c: Likewise.
17196         * function.c: Likewise.
17197         * gcc.c: Likewise.
17198         * genattrtab.c: Likewise.
17199         * gthr-win32.h: Likewise.
17200         * haifa-sched.c: Likewise.
17201         * predict.c: Likewise.
17202         * rtlanal.c: Likewise.
17203         * rtl.h: Likewise.
17204         * unwind-dw2-fde.h: Likewise.
17205         * unwind-pe.h: Likewise.
17206         * vmsdbgout.c: Likewise.
17208 Thu Jan 17 15:28:26 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17210         * attribs.c (decl_attributes): Clear ATTR_FLAG_TYPE_IN_PLACE
17211         if type_required and passed decl.
17213 2002-01-17  Aldy Hernandez  <aldyh@redhat.com>
17215         * config.gcc (cpu_type): Include altivec.h in powerpc
17216         extra_headers.
17217         Same for darwin.
17219         * config/rs6000/altivec.h: New.
17221 2002-01-17  David Edelsohn  <edelsohn@gnu.org>
17223         * doc/install.texi (*-ibm-aix*): Update assembler and exception
17224         handling information.
17225         * doc/trouble.texi (Interoperation): Add libstdc++ information
17226         for AIX.
17227         (Misunderstandings): Add template instantiation and static template
17228         member information for AIX.
17230 2002-01-17  Jason Merrill  <jason@redhat.com>
17232         * dbxout.c (dbxout_type): Support const and volatile.
17234         * except.c (add_partial_entry): Remove backwards compatibility code.
17235         (end_protect_partials): Likewise.
17237 2002-01-17  Jakub Jelinek  <jakub@redhat.com>
17239         * config/ia64/ia64.md (prologue_use): New.
17240         * config/ia64/ia64.c (ia64_expand_prologue): Use
17241         gen_prologue_use instead of gen_rtx_USE.
17242         (group_barrier_needed_p): Handle CODE_FOR_prologue_use the same way
17243         as CODE_FOR_pred_rel_mutex.
17244         (ia64_sched_reorder2): Likewise.
17246 2002-01-16  Eric Christopher  <echristo@redhat.com>
17248         * config/mips/r3900.h: Reformat.
17249         (SUBTARGET_CPP_SIZE_SPEC): Remove.
17250         * config/mips/isa3264.h (SUBTARGET_CPP_SIZE_SPEC): Ditto.
17251         * config/mips/mips.h (ABI_GAS_ASM_SPEC): Default to "".
17252         (SUBTARGET_CPP_SIZE_SPEC): Rewrite.
17253         * config/mips/t-elf: Remove mips3 multilib.
17255 2002-01-16  H.J. Lu <hjl@gnu.org>
17257         * config/mips/linux.h: Include "mips/abi64.h".
17259 2002-01-16  H.J. Lu <hjl@gnu.org>
17261         * config/mips/t-linux: New.
17263         * config.gcc: Add mips/t-linux to tmake_file for mips*-*-linux*.
17265         * config/mips/linux.h: Don't include "gofast.h".
17266         (INIT_SUBTARGET_OPTABS): Removed.
17268 2002-01-16  Kazu Hirata  <kazu@hxi.com>
17270         * config/h8300/h8300-protos.h: Replace emit_a_shift with
17271         output_a_shift.
17272         * config/h8300/h8300.c: Likewise.
17273         * config/h8300/h8300.md: Likewise.
17275 2002-01-16  Kazu Hirata  <kazu@hxi.com>
17277         * config/h8300/h8300.md (pushqi1_h8300): Use a tab instead of
17278         spaces after an opcode name.
17279         (pushqi1_h8300hs): Likewise.
17280         (pushhi1_h8300hs): Likewise.
17282 2002-01-16  Kazu Hirata  <kazu@hxi.com>
17284         * doc/extend.texi: Replace "option" with "attribute"
17285         appropriately.
17287 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
17289         * config/alpha/alpha.c (some_small_symbolic_mem_operand): Look into
17290         (and:DI () (const_int -8)).
17291         (split_small_symbolic_mem_operand): Split
17292         (mem (and:DI () (const_int -8)).
17294 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
17296         PR target/5309:
17297         * config/sparc/sparc.c (ultrasparc_adjust_cost): Handle TYPE_IDIV the
17298         same way as TYPE_IMUL.
17299         (ultrasparc_sched_reorder): Likewise.
17300         * config/sparc/sparc.md (type): Add comment to update
17301         ultrasparc_sched_reorder when making changes.
17303 2002-01-16  Kazu Hirata  <kazu@hxi.com>
17305         * doc/invoke.texi: Change the dump file name of block
17306         reordering pass from 28.bbro to 29.bbro.
17307         Mention -dk option.
17309 Wed Jan 16 17:54:22 CET 2002  Jan Hubicka  <jh@suse.cz>
17311         * i386.md (minsf splitter): Fix pasto.
17313 2002-01-16  Nick Clifton  <nickc@cambridge.redhat.com>
17315         * config/arm/arm.c (arm_expand_prologue): Add REG_MAYBE_DEAD note
17316         to frame pointer initialisation instruction.
17317         (thumb_expand_prologue): Add REG_MAYBE_DEAD note to frame pointer
17318         initialisation instruction.
17319         (soft_df_operand): Do not accept the IP register.
17320         (nonimmediate_soft_df_operand): Do not accept the IP register.
17322 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
17324         PR target/5357:
17325         * config/sparc/sparc.c (sparc_override_options): Avoid MASK_V9 and
17326         MASK_V8 being both set.
17328 2002-01-16  Ulrich Weigand  <uweigand@de.ibm.com>
17330         * config/s390/s390.c (s390_emit_prologue): Do not emit USE
17331         insn for GOT register; add REG_MAYBE_DEAD notes instead.
17332         config/s390/s390.md (call, call_value): Add GOT register to
17333         CALL_INSN_FUNCTION_USAGE where needed.
17334         (call_exp, call_value_exp): New.
17336 2002-01-16  Nick Clifton  <nickc@cambridge.redhat.com>
17338         * config/arm/arm.c: General formatting tidy up.
17340 2002-01-16  Graham Stott  <grahams@redhat.com>
17342         * calls.c (try_to_integrate): Use "(size_t)" intermediate
17343         cast and when casting an integer literal to "rtx" pointer.
17344         (expand_call): Likewise.
17345         * flow.c (try_pre_increment): Likewise.
17346         (find_use_as_address): Likewise.
17347         * integrate.c (expand_iline_function): Likewise.
17348         * regmove.c (try_auto_increment): Likewise.
17350 2002-01-16  Graham Stott  <grahams@redhat.com>
17352         * sched-rgn.c (passed): Use sbitmap_free.
17353         (header): Likewise.
17354         (inner): Likewise.
17355         (in_queue): Likewise.
17356         (in_stack): Likewise.
17358 2002-01-15  Eric Christopher  <echristo@redhat.com>
17360         * flow.c (propagate_one_insn): Change to use fatal_insn.
17362 2002-01-15  Kazu Hirata  <kazu@hxi.com>
17364         * expmed.c (extract_fixed_bit_field): Remove unused code.
17365         * system.h: Poison SLOW_ZERO_EXTEND.
17366         * doc/tm.texi: Remove.
17367         * config/1750a/1750a.h (SLOW_ZERO_EXTEND): Remove.
17368         * config/arm/arm.h: Likewise.
17369         * config/avr/avr.h: Likewise.
17370         * config/clipper/clipper.h: Likewise.
17371         * config/convex/convex.h: Likewise.
17372         * config/d30v/d30v.h: Likewise.
17373         * config/dsp16xx/dsp16xx.h: Likewise.
17374         * config/elxsi/elxsi.h: Likewise.
17375         * config/fr30/fr30.h: Likewise.
17376         * config/h8300/h8300.h: Likewise.
17377         * config/i370/i370.h: Likewise.
17378         * config/i386/i386.h: Likewise.
17379         * config/m68k/m68k.h: Likewise.
17380         * config/mips/mips.h: Likewise.
17381         * config/ns32k/ns32k.h: Likewise.
17382         * config/pdp11/pdp11.h: Likewise.
17383         * config/pj/pj.h: Likewise.
17384         * config/s390/s390.h: Likewise.
17385         * config/sh/sh.h: Likewise.
17386         * config/stormy16/stormy16.h: Likewise.
17387         * config/v850/v850.h: Likewise.
17388         * config/vax/vax.h: Likewise.
17389         * config/we32k/we32k.h: Likewise.
17391 2002-01-15  Aldy Hernandez  <aldyh@redhat.com>
17393         * config/rs6000/rs6000.md (altivec_stvx): Add parallels to stvx.
17394         (altivec_lvsl): Change constraint to b.
17395         (altivec_lvsr): Same.
17396         (altivec_lvebx): Same.
17397         (altivec_lvehx): Same.
17398         (altivec_lvewx): Same.
17399         (altivec_lvxl): Same.
17400         (altivec_lvx): Same.
17401         (altivec_stvx): Add parallel.
17402         (altivec_stvxl): Same.
17403         (altivec_stvehx): Same.
17404         (altivec_stvebx): Same.
17405         (altivec_stvebx): Same.
17407 2002-01-15  Aldy Hernandez  <aldyh@redhat.com>
17409         * config.gcc: Change altivec.h to altivec-defs.h.
17411         * config/rs6000/altivec.h: Delete.
17413         * config/rs6000/altivec-defs.h: Add.
17415 2002-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
17417         * vax.c (vax_rtx_cost): Return MAX_COST for unsupported MULT, UDIV
17418         and UMOD modes.
17420         * vax.h (INDEX_TERM_P): Restrict indexing to modes which have a size
17421         less than or equal to eight bytes.
17423         * vax.md (andsi3): Remove constraints and change SET destination
17424         operand type to nonimmediate_operand.
17425         (andhi3, andqi3): Likewise.  Don't clear high order bits of operand 1
17426         when it is a CONST_INT.
17428 2002-01-15  Jason Merrill  <jason@redhat.com>
17430         * c-common.def (FILE_STMT): New code.
17431         * c-common.c (statement_code_p): It's a statement.
17432         * c-common.h (stmt_tree_s): Add x_last_filename.
17433         (FILE_STMT_FILENAME_NODE, FILE_STMT_FILENAME): New macros.
17434         (last_expr_filename): New macro.
17435         * c-semantics.c (begin_stmt_tree): Initialize it.
17436         (add_stmt): If the filename changed, also insert a
17437         FILE_STMT.
17438         (expand_stmt): Handle seeing one.
17440 2002-01-15  Eric Christopher  <echristo@redhat.com>
17442         * flow.c (propagate_one_insn): Add error message and print out
17443         insn for debugging.
17445 2002-01-15  Joseph S. Myers  <jsm28@cam.ac.uk>
17447         * system.h (ASM_IDENTIFY_GCC, STDC_VALUE, TRAMPOLINE_ALIGN,
17448         ASM_IDENTIFY_GCC_AFTER_SOURCE): Poison.
17449         * config/pdp11/pdp11.h (TRAMPOLINE_ALIGN): Rename to
17450         TRAMPOLINE_ALIGNMENT.
17451         * config/arm/arm.h, config/mcore/mcore.h: Likewise.  Change value
17452         to be in bits.
17453         * config/i386/cygwin.h (PCC_BITFIELDS_TYPE_MATTERS): Rename to
17454         PCC_BITFIELD_TYPE_MATTERS.
17455         * config/interix.h (STDC_VALUE): Remove.  Use
17456         STDC_0_IN_SYSTEM_HEADERS.
17457         * config/darwin.h (ASM_IDENTIFY_GCC), config/dsp16xx/dsp16xx.h
17458         (ASM_IDENTIFY_GCC), config/stormy16/stormy16.h (ASM_IDENTIFY_GCC,
17459         ASM_IDENTIFY_GCC_AFTER_SOURCE): Remove.
17461 2002-01-15  Craig Rodrigues  <rodrigc@gcc.gnu.org>
17463         * doc/install.texi (hppa*-hp-hpux11): --enable-threads does
17464         not work on this platform currently.
17466 2002-01-15  Joseph S. Myers  <jsm28@cam.ac.uk>
17468         * c-typeck.c (build_unary_op): Don't wrap msgid argument of
17469         readonly_warning in _().
17471 2002-01-15  Douglas B Rupp  <rupp@gnat.com>
17473         * gcc.c (delete_if_ordinary): Backout previous change.
17475 2002-01-15  Kazu Hirata  <kazu@hxi.com>
17477         * config/h8300/h8300.c (print_operand): Remove support for
17478         unused operand characters.
17480         * read-rtl.c: Fix formatting.
17481         * real.c: Likewise.
17482         * recog.c: Likewise.
17483         * regclass.c: Likewise.
17484         * regmove.c: Likewise.
17485         * reg-stack.c: Likewise.
17486         * reload1.c: Likewise.
17487         * rtlanal.c: Likewise.
17489 2002-01-15  Kazu Hirata  <kazu@hxi.com>
17491         * config/i386/i386.c: Fix formatting.
17493 2002-01-15  Jakub Jelinek  <jakub@redhat.com>
17495         * c-typeck.c (process_init_element): Don't save_expr
17496         COMPOUND_LITERAL_EXPR if just its initializer will be used.
17498 2002-01-15  David Edelsohn  <edelsohn@gnu.org>
17500         * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Do not
17501         emit optional traceback table if optimize_size or TARGET_ELF.
17502         * config/rs6000/rs6000.md (prefetch): New.
17504 2002-01-15  Andreas Jaeger  <aj@suse.de>
17506         * config.gcc (x86_64-*-*): Install mmintrin.h and xmmintrin.h.
17508 2002-01-15  Kazu Hirata  <kazu@hxi.com>
17510         * mips-tfile.c: Fix formatting.
17512 Tue Jan 15 00:56:11 CET 2002  Jan Hubicka  <jh@suse.cz>
17514         * unroll.c (final_reg_note_copy): Fix previous commit.
17516 2002-01-14  Kazu Hirata  <kazu@hxi.com>
17518         * config/h8300/h8300-protos.h: Remove the prototype for
17519         eq_operator.
17520         * config/h8300/h8300.c (eq_operator): Remove.
17522 2002-01-14  Richard Henderson  <rth@redhat.com>
17524         * config/i386/i386.md (prefetch): Tidy.
17525         (prefetch_3dnow): Fix locality operand.
17527 2002-01-14  Richard Henderson  <rth@redhat.com>
17529         * config/mips/mips.h (HI_AND_FP_REGS): New register class.
17530         (CLASS_CANNOT_CHANGE_MODE): Disallow HI in little-endian mode.
17532 2002-01-14  Hans-Peter Nilsson  <hp@bitrange.com>
17534         * reload1.c (reload_combine): Pass reg_sum replacement through
17535         copy_rtx in loop performing multiple changes.
17537 2002-01-14  Jakub Jelinek  <jakub@redhat.com>
17539         * except.c (remove_unreachable_regions): New.
17540         (free_eh_status): Clear exception_handler_labels.
17541         (convert_from_eh_region_ranges): Call remove_unreachable_regions.
17542         (find_exception_handler_labels): Don't add the same label more than
17543         once.
17544         (remove_exception_handler_label): Don't die if
17545         find_exception_handler_labels hasn't been called for the current
17546         function yet.
17548 Mon Jan 14 21:26:13 CET 2002  Jan Hubicka  <jh@suse.cz>
17550         * toplev.c (rest_of_compilation): Rebuild jump labels after
17551         gcse.
17553 2002-01-14  Joseph S. Myers  <jsm28@cam.ac.uk>
17555         * doc/extend.texi: Move documentation of X86 built-in functions
17556         here.
17557         * doc/invoke.texi: From here.
17558         * doc/sourcebuild.texi: Document location of documentation for
17559         machine built-in functions.
17561 2002-01-13  Christopher Faylor  <cgf@redhat.com>
17563         * cppfiles.c (TEST_THRESHOLD): New macro.
17564         (SHOULD_MMAP): Ditto.
17565         (read_include_file): Use SHOULD_MMAP macro to decide when mmap should
17566         be used.
17568 Mon Jan 14 20:23:34 CET 2002  Jan Hubicka  <jh@suse.cz>
17570         * unroll.c (final_reg_note_copy): Properly handle
17571         REG_LABEL
17572         (unroll_loops): Fix LOOP_CONDITION heuristics.
17574 2002-01-14  Geoffrey Keating  <geoffk@redhat.com>
17576         * doc/invoke.texi (Xstormy16 Options): Add xstormy16 option.
17577         * doc/md.texi (Machine Constraints): Use @minus{} where appropriate.
17579 Mon Jan 14 20:18:19 CET 2002  Jan Hubicka  <jh@suse.cz>
17581         * cfgcleanup.c (try_forward_edges): Avoid infinite loop at infinite
17582         threaded loop.
17584 2002-01-14  Tom Rix  <trix@redhat.com>
17586         * config/rs6000/rs6000.md: Fix typo with sradi.
17588 2002-01-14  Ulrich Weigand  <uweigand@de.ibm.com>
17590         * config/s390/s390.md (movstrdix_64, movstrsix_31, movstrdi_64,
17591         movstrsi_31, clrstrsi_64, clrstrsi_31): Improve RTL templates.
17592         (clrstrdi, clrstrsi): Adapt callers.
17594         (extendsidi2, zero_extendsidi2): Remove no-conflict blocks.
17596         (movti splitter): Never use register 0 as base register.
17598 2002-01-14  Hartmut Penner  <hpenner@de.ibm.com>
17600         * combine.c (simplify_shift_const): Always generate new rtx
17601         for shift expression instead of reusing given expression.
17603 Mon Jan 14 07:08:55 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17605         * config/alpha/alpha.c (alpha_expand_mov): Don't call
17606         alpha_legitimize_address unless mode is Pmode.
17608 2002-01-13  Geoffrey Keating  <geoffk@redhat.com>
17610         * doc/md.texi (Modifiers): Document the '*' constraint for the
17611         user.
17613         * doc/md.texi (Machine Constraints): Add constraints for xstormy16.
17614         * doc/extend.texi (Function Attributes): 'interrupt' is valid
17615         for xstormy16 too.
17617 2002-01-13  Richard Henderson  <rth@redhat.com>
17619         * reload.c (find_reloads): Use a hard reg destination as reload reg
17620         for an input reload of the source.
17622 2002-01-13  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
17624         * doc/install.texi (Binaries): Make link to ftp.writtenword.com
17625         more generic.
17627 Sun Jan 13 07:23:01 2002  Douglas B Rupp  <rupp@gnat.com>
17629         * Makefile.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
17630         * mklibgcc.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
17632         * config/alpha/x-vms (USE_COLLECT2): Set to empty.
17634 Sun Jan 13 06:55:31 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17636         * dwarf2out.c (mem_loc_descriptor, case ADDRESSOF): New case.
17638 2002-01-12  Tom Rix  <trix@redhat.com>
17640         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Use ior for
17641         TARGET_POWERPC64.
17643 2002-01-12  Richard Henderson  <rth@redhat.com>
17645         * config/i386/i386.c (bdesc_2arg): Mark psadbw MASK_3DNOW_A.
17647         * doc/invoke.texi: Update Alpha options.
17649         * doc/invoke.texi: Update i386 built-in function lists.
17651 Sat Jan 12 17:38:11 CET 2002  Jan Hubicka  <jh@suse.cz>
17653         * unroll.c (final_reg_note_copy): Avoid crash on REG_LABEL note
17654         referencing outside.
17656 Sat Jan 12 08:54:51 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
17658         * diagnostic.c (warn_deprecated_use): Rework to lower indentation.
17659         * expr.c (emit_move_insn_1): Remove warning, use HOST_WIDE_INT for
17660         offsets, and change line folding.
17661         * optabs.c (expand_binop): Remove warnings.
17662         * sdbout.c (sdbout_record_type_name): Constify NAME to avoid warning.
17664 2002-01-12  Graham Stott <grahams@redhat.com>
17666         * attribs.c (handle_deprecated_attribute): constify WHAT.
17667         * diagnostic.c (warn_deprecated_use): Add braces, fixes
17668         dangling else warning and constify WHAT.
17669         * except.h (struct function, struct inline_remap): Move
17670         struct tag forward defs before all prototypes.
17671         (duplicate_eh_regions): Whitespace.
17673 2002-01-12  Nick Clifton  <nickc@cambridge.redhat.com>
17675         * config/arm/arm.h (ARM_LEGITIMIZE_RELOAD_ADDRESS): Use
17676         MODE_BASE_REG_CLASS.
17677         (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use MODE_BASE_REG_CLASS.
17679 2002-01-12  Richard Henderson  <rth@redhat.com>
17681         * config/i386/i386.c (override_options): If SSE, enable sse prefetch.
17682         (ix86_expand_vector_move): New.
17683         (bdesc_2arg): Remove andps, andnps, orps, xorps.
17684         (ix86_init_mmx_sse_builtins): Make static.  Remove composite builtins.
17685         Remove old prefetch builtins.  Special case the logicals removed above.
17686         (ix86_expand_builtin): Likewise.
17687         (safe_vector_operand): Use V4SFmode, not TImode.
17688         (ix86_expand_store_builtin): Remove shuffle arg.  Update callers.
17689         (ix86_expand_timode_binop_builtin): New.
17690         * config/i386/i386-protos.h: Update.
17691         * config/i386/i386.h (enum ix86_builtins): Update.
17692         * config/i386/i386.md: Correct predicates on MMX/SSE patterns.
17693         Use ix86_expand_vector_move in vector move expanders.
17694         (movti_internal, movti_rex64): Add xorps alternative.
17695         (sse_clrv4sf): Rename and adjust from sse_clrti.
17696         (prefetch): Don't work so hard.
17697         (prefetch_sse, prefetch_3dnow): Use PREFETCH rtx, not UNSPEC.
17698         * config/i386/xmmintrin.h (__m128): Use V4SFmode.
17699         (_mm_getcsr, _mm_setcsr): Fix typo in builtin name.
17701 2002-01-11  Richard Henderson  <rth@redhat.com>
17703         * config/i386/mmintrin.h: New file.
17704         * config/i386/xmmintrin.h: New file.
17705         * config.gcc (i?86-*-*): Add extra_headers.
17706         * simplify-rtx.c (simplify_unary_operation): Handle saturating
17707         truncation codes.
17708         (simplify_binary_operation): Handle saturating arithmetic codes.
17709         * config/i386/i386.c (ix86_expand_sse_comi): Return the full result,
17710         not the lowpart subreg.
17711         (ix86_expand_builtin): Return a TImode dummy register instead of 0
17712         on error.
17713         * config/i386/i386.md (mmx_clrdi): Override memory attribute.
17715 2002-01-12  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17717         * conflict.c (conflict_graph_compute): Free regsets when finished.
17718         * ssa.c (compute_coalesced_reg_partition): Likewise.
17720 2002-01-12  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
17722         * global.c (find_reg): Check for HARD_REGNO_CALL_PART_CLOBBERED
17723         every where we allocate a register.
17725 2002-01-12  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
17727         * gcse.c (compute_pre_data, pre_gcse): Use sbitmap_free.
17728         * lcm.c (compute_earliest, compute_farthest): Likewise.
17730 2002-01-11  Janis Johnson  <janis187@us.ibm.com>
17732         * expr.c (expand_assignment): Fix misuse of MEM_KEEP_ALIAS_SET.
17734 2002-01-11  Janis Johnson  <janis187@us.ibm.com>
17736         * doc/rtl.texi (Insns): Fix 2 typos.
17738 2002-01-11  Joseph S. Myers  <jsm28@cam.ac.uk>
17740         * doc/invoke.texi: Avoid overfull hboxes.  Add summary of D30V
17741         options.  Use @table @gcctabopt for MMIX options.  Add index
17742         entries for MMIX options.  Start new paragraph with first
17743         heading of the machine-dependent options.
17745 2002-01-11  Craig Rodrigues  <rodrigc@gcc.gnu.org>
17747         PR other/5299
17748         * config/ns32k/ns32k.md: Fix spelling mistake of "than" in comments.
17749         * combine.c (force_to_mode): Same.
17750         * reload1.c (clear_reload_reg_in_use): Same.
17752 2002-01-11  Nick Clifton  <nickc@cambridge.redhat.com>
17754         * config/arm/arm.c (arm_gen_constant): Correct test of 'remainder'
17755         and 'subtargets'.
17757 2002-01-11  Andreas Jaeger  <aj@suse.de>,
17758             Brad Lucier <lucier@math.purdue.edu>
17760         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove wrong
17761         mcpu.
17763 Fri Jan 11 07:35:12 2002  Douglas B Rupp  <rupp@gnat.com>
17765         * config/alpha/vms.h: (MD_FALLBACK_FRAME_STATE_FOR): Fix errors.
17766         Protect with IN_LIBGCC.
17767         (LINK_EH_SPEC): Add required trailing space.
17769 Fri Jan 11 09:25:05 2002  Nicola Pero  <n.pero@mi.flashnet.it>
17771         * c-tree.h: Move function declarations so that they are listed
17772         under the filename which contains them.
17773         (check_identifier, finish_decl_top_level,
17774         lookup_name_current_level_global, shadow_record_fields): Remove.
17776 2002-01-11  Andreas Jaeger  <aj@suse.de>
17778         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove duplicated
17779         march.
17781 2002-01-10  Richard Henderson  <rth@redhat.com>
17783         * config/alpha/alpha.c (print_operand): Add 'J'.
17784         * config/alpha/alpha.md (call_osf_1_er, call_value_osf_1_er): Take a
17785         new operand with the sequence number for the lituse.  When splitting
17786         the insns, use gen_movdi_er_high_g and generate a sequence number.
17787         (gen_movdi_er_high_g): Print the sequence number if non-zero.
17789 2002-01-10  Aldy Hernandez  <aldyh@redhat.com>
17791         * config/rs6000/rs6000.c (altivec_init_builtins): Add support for
17792         lvebx, lvehx, lvewx, lvxl, lvx, stvx, stvebx, stvehx, stvewx,
17793         stvxl.
17794         (altivec_expand_builtin): Same.
17795         (altivec_expand_stv_builtin): New.
17797         * config/rs6000/rs6000.h (rs6000_builtins): Same.
17799         * config/rs6000/rs6000.md ("altivec_lvebx"): New.
17800         ("altivec_lvehx"): New.
17801         ("altivec_lvewx"): New.
17802         ("altivec_lvxl"): New.
17803         ("altivec_lvx"): New.
17804         ("altivec_stvx"): New.
17805         ("altivec_stvebx"): New.
17806         ("altivec_stvehx"): New.
17807         ("altivec_stvewx"): New.
17808         ("altivec_stvxl"): New.
17810 2002-01-10  Richard Henderson  <rth@redhat.com>
17812         * cfgrtl.c (delete_insn): Assert insn hasn't been deleted yet.
17813         * reload1.c (delete_output_reload): Zap spill_reg_store.  Take
17814         care not to delete instructions twice.
17816 2002-01-10  Zack Weinberg  <zack@codesourcery.com>
17818         * toplev.c: Don't declare environ (it's not used anywhere).
17819         * configure.in: Don't check for declaration of environ.
17820         * config/i386/xm-mingw32.h: Don't #define environ.
17821         * config.in, configure: Regenerate.
17823 2002-01-10  Zack Weinberg  <zack@codesourcery.com>
17825         * configure.in: Set stage1_cflags for powerpc-*-darwin*.
17826         * configure: Regenerate.
17828         * config/interix.h: Set DO_GLOBAL_CTORS_BODY and
17829         DO_GLOBAL_DTORS_BODY here, not in xm-interix.h.
17830         * config/alpha/vms.h: Set INCLUDE_DEFAULTS here, not in
17831         alpha/xm-vms.h.
17832         * config/m68k/t-next: Set OTHER_FIXINCLUDES_DIRS and
17833         LIMITS_H_TEST here, not in m68k/x-next.
17834         * config/rs6000/beos.h: Set STANDARD_INCLUDE_DIR and
17835         SYSTEM_INCLUDE_DIR here, not in rs6000/xm-beos.h.
17837         * config/x-interix: Don't set RANLIB, RANLIB_TEST, SHELL,
17838         LIBGCC2_INCLUDES, or SYSTEM_HEADER_DIR.
17839         * config/alpha/x-vms: Don't set USE_COLLECT2.  Add comments.
17841         * config/i386/x-djgpp: Renamed i386/t-djgpp.
17842         * config/m88k/x-dolph: Renamed m88k/t-dolph.
17843         * config/m88k/x-texXD88: Renamed m88k/t-texXD88.
17844         * config/pa/x-pa-mpeix: Renamed pa/t-mpeix.  Update for
17845         replacement of quadlib.asm with quadlib.c.
17847         * config/x-interix3, config/xm-interix.h, config/i386/x-beos,
17848         config/i386/xm-osf1elf.h, config/rs6000/x-darwin,
17849         config/rs6000/xm-beos.h: Delete file.
17851         * config.gcc: Update to match above changes.
17853 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17855         * config/h8300/h8300.h: Fix comment typos.
17856         * config/h8300/h8300.md: Likewise.
17857         * config/h8300/lib1funcs.asm: Likewise.
17859 2002-01-10  Dale Johannesen  <dalej@apple.com>
17861         PR optimization/5269
17862         * unroll.c (precondition_loop_p): Make *increment be the correct
17863         sign when n_iterations known, to avoid confusing caller.
17865 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17867         * doc/extend.texi (deprecated): Fix a typo.
17869 Thu Jan 10 22:35:54 CET 2002  Jan Hubicka  <jh@suse.cz>
17871         * basic-block.h (update_br_prob_note): Declare.
17872         * cfgcleanup.c (try_simplify_condjump): Call update_br_prob_note.
17873         (try_forward_edges): Care negative frequencies and update note.
17874         (outgoing_edges_match): Tweek conditional merging heuristics.
17875         (try_crossjump_to_edge): use update_br_prob_note.
17876         * cfglayout.c (fixup_reorder_chain): Likewise.
17877         * cfrtl.c (update_br_prob_note): New.
17878         * ifcvt.c (dead_or_predicable): Call update_br_prob_note.
17880         * i386.c (ix86_decompose_address): Return -1 if address contains
17881         shift.
17882         (legitimate_address_p): Require ix86_decompose_address to return 1.
17884         * gcse.c (hash_scan_set): Use CONSTANT_INSN_P.
17885         (cprop_insn): Likewise.
17887 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17889         * toplev.c: Fix formatting.
17890         * tree.c: Likewise.
17891         * tree-dump.c: Likewise.
17892         * unroll.c: Likewise.
17893         * unwind-dw2.c: Likewise.
17894         * unwind-dw2-fde.c: Likewise.
17895         * unwind-dw2-fde-glibc.c: Likewise.
17896         * unwind-sjlj.c: Likewise.
17898 2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
17900         * doc/invoke.texi: Document PDP-11 options.
17902 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17904         * config/h8300/h8300.h: Fix formatting.
17906 2002-01-10  Ira Ruben   <ira@apple.com>
17908         Add __attribute__ ((deprecated)).
17909         * extend.texi: Document __attribute__ ((deprecated)).
17910         * invoke.texi: Document -Wno-deprecated-declarations.
17911         * testsuite/g++.dg/other/deprecated.C: New C++ test.
17912         * testsuite/gcc.dg/deprecated.c: New C test.
17913         * attribs.c (enum attrs): Declare handle_deprecated_attribute().
17914         (c_common_attribute_table): Add "deprecated" entry.
17915         (handle_deprecated_attribute): New function.
17916         * c-decl.c (deprecated_states): New enum.
17917         deprecated_state: State of "deprecated" handling.
17918         (start_decl): Set deprecated_state based on attributes.
17919         (grokdeclarator): Test for deprecated uses, propagate attribute.
17920         * c-typeck.c (build_component_ref): Test for deprecated fields.
17921         (build_external_ref): Test for deprecated primaries.
17922         * diagnostic.c (warn_deprecated_use) New function to issue
17923         warnings about __attribute__ ((depricated)) references.
17924         * flags.h (warn_deprecated_decl): Extern declared for
17925         -W[no-]deprecated-declarations option.
17926         * print-tree.c (print_node): Show deprecated flag status.
17927         * toplev.c (warn_deprecated_decl): Defined.
17928         (W_options): Added "deprecated-declaration".
17929         * toplev.h (warn_deprecated_use): Extern declared.
17930         * tree.h (struct tree_common): Define deprecated_flag.
17931         (TREE_DEPRECATED): New macro to access flag.
17932         * cp/call.c (build_call): Test for deprecated calls.
17933         * cp/class.c (add_implicitly_declared_members): Set global
17934         flag to tell grokdeclarator to not issue deprecated warnings.
17935         * cp/cp-tree.h: Add extern for adding_implicit_members.
17936         * cp/decl.c (deprecated_states): New enum.
17937         (start_decl): Set deprecated_state based on attributes.
17938         (grokdeclarator): Test for deprecated uses, propagate attribute.
17939         * cp/lex.c (do_identifier): Test for deprecated primaries.
17940         * cp/typeck.c (build_component_ref): Test for deprecated fields.
17942 2002-01-10  Ira Ruben   <ira@apple.com>
17944         Fix to assign attributes to inline member functions.
17945         * cp/decl.c (start_method): Handle attrlist.
17947 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17949         * combine.c (expand_field_assignment): Use subreg_lsb().
17951 2002-01-10  David Edelsohn  <edelsohn@gnu.org>
17953         * alias.c (find_base_value): Add cases for HIGH, PRE_INC, PRE_DEC,
17954         POST_INC, POST_DEC, PRE_MODIFY, and POST_MODIFY.
17955         (find_base_term): Add cases for TRUNCATE, PRE_MODIFY, and POST_MODIFY.
17956         Recurse for any operand of AND as long as constant is non-zero.
17958 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17960         * config/h8300/h8300.md: Remove constraints from expanders.
17962 2002-01-10  Kazu Hirata  <kazu@hxi.com>
17964         * varasm.c: Fix formatting.
17965         * varray.c: Likewise.
17966         * vmsdbgout.c: Likewise.
17967         * xcoffout.c: Likewise.
17969 Thu Jan 10 17:19:12 CET 2002  Jan Hubicka  <jh@suse.cz>
17971         * cfgcleanup.c (try_forward_edges): Properly initialize nthreaded_edges;
17972         update edge probabilities to match.
17974 2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
17976         * Makefile.in ($(docdir)/gccint.info, gccint.dvi): Add additional
17977         dependencies.
17978         * doc/languages.texi, doc/sourcebuild.texi: New files.
17979         * doc/configfiles.texi: Make a subsubsection.  Update.
17980         * doc/configterms.texi: Add @node.  Remove warning that this isn't
17981         instructions for building GCC.
17982         * doc/makefile.texi: Make a subsection.
17983         * doc/gccint.texi: Update.
17985 Thu Jan 10 16:39:58 CET 2002  Jan Hubicka  <jh@suse.cz>
17987         * i386.md (sse_mov?fcc_const0_?): Fix constraints.
17989 Thu Jan 10 12:45:50 2002  Nicola Pero  <n.pero@mi.flashnet.it>
17991         * doc/cpp.texi: Document the __OBJC__ preprocessor macro.
17993 Thu Jan 10 11:19:18 CET 2002  Jan Hubicka  <jh@suse.cz>
17995         * optabs.c (expand_fix): Look for wider integer modes first.
17997         * i386.md (mov?f): Avoid the fake const double trick for medium
17998         memory model.
17999         (min?f*/max?f*): Prohibit memory operands for i387 variant.
18000         (fop_df_4): Disable for SSE compilation.
18002 2002-01-10  Graham Stott  <grahams@redhat.com>
18004         * dwarf2out.c (indirect_string_alloc, output_indirect_string):
18005         Move prototype into DWARF2_DEBUGGING_INFO conditional block.
18007 2002-01-10  Richard Henderson  <rth@redhat.com>
18009         * config/alpha/alpha.md (extendsidi2_fix): Penalize f/f alternative.
18011 2002-01-10  Richard Henderson  <rth@redhat.com>
18013         * regrename.c (find_oldest_value_reg): Fix typo in mode change check.
18014         (copyprop_hardreg_forward_1): Likewise.  Use mode_change_ok.
18016 2002-01-10  Kazu Hirata  <kazu@hxi.com>
18018         * combine.c (can_combine_p): Fix a comment typo.
18020 2002-01-09  Zack Weinberg  <zack@codesourcery.com>
18022         * Makefile.in (s-gencheck, s-options, s-specs): Handle an
18023         empty list correctly.  Change loop index $t to $f for
18024         consistency with rest of Makefile.
18026 2002-01-08  Aldy Hernandez  <aldyh@redhat.com>
18028         * testuite/gcc.dg/altivec-4.c: Add test for mtvscr, dssall,
18029         mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
18031         * config/rs6000/rs6000.c (altivec_expand_builtin): Add support for
18032         mtvscr, dssall, mfvscr, dss, lvsl, lvsr, dstt, dst, dstst, dststt.
18033         (altivec_init_builtins): Same.
18034         (altivec_expand_unop_builtin): Return NULL_RTX on error.
18035         (altivec_expand_binop_builtin): Same.
18036         (altivec_expand_ternop_builtin): Same.
18037         (bdesc_dst): New.
18039         * config/rs6000/rs6000.md ("altivec_mtvscr"): New.
18040         ("altivec_vctuxs"): Fix typo.
18041         ("altivec_vnmsubfp"): Same.
18042         ("altivec_dssall"): New.
18043         ("altivec_mfvscr"): New.
18044         ("altivec_dss"): New.
18045         ("altivec_lvsl"): New.
18046         ("altivec_lvsr"): New.
18047         ("altivec_dstt"): New.
18048         ("altivec_dstst"): New.
18049         ("altivec_dststt"): New.
18050         ("altivec_dst"): New.
18052         * config/rs6000/rs6000.h (rs6000_builtins): Add mtvscr, dssall,
18053         mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
18055 2002-01-09  Richard Henderson  <rth@redhat.com>
18057         * config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
18059 2002-01-10  Hans-Peter Nilsson  <hp@bitrange.com>
18061         * config/mmix/mmix.c (mmix_asm_identify_gcc): Remove unused
18062         function.
18063         * config/mmix/mmix-protos.h (mmix_asm_identify_gcc): Don't
18064         prototype.
18065         * config/mmix/mmix.h (ASM_IDENTIFY_GCC): Remove unused macro.
18067 2002-01-09  Kazu Hirata  <kazu@hxi.com>
18069         * read-rtl.c: Fix formatting.
18070         * real.c: Likewise.
18071         * regclass.c: Likewise.
18072         * regrename.c: Likewise.
18073         * reg-stack.c: Likewise.
18074         * reload1.c: Likewise.
18075         * reload.c: Likewise.
18076         * rtl.c: Likewise.
18078 2002-01-09  Kazu Hirata  <kazu@hxi.com>
18080         * rtlanal.c (find_reg_fusage): Use XEXP instead of SET_DEST
18081         to extract items in the expr_list chain.
18083 2002-01-09  Richard Henderson  <rth@redhat.com>
18085         * config/vax/vax.c (vax_rtx_cost): Never abort.
18087         * config/vax/vax.h (REAL_ARITHMETIC): Define.
18089 2002-01-09  Jan Hubicka  <jh@suse.cz>
18091         * gcse.c (cprop_jump): Delete insn if simplified jump is no-op.
18093 2002-01-09  Richard Henderson  <rth@redhat.com>
18095         * config/arm/arm.c (arm_gen_constant): Use trunc_int_for_mode.
18096         Unify code from various alternatives.
18098 2002-01-09  Richard Henderson  <rth@redhat.com>
18100         * regrename.c (copy_value): Ignore the copy if the source register
18101         is present in the value chain with a narrower mode.
18103 2002-01-09  Herman A.J. ten Brugge  <Haj.Ten.Brugge@net.HCC.nl>
18105         * real.c (c4xtoe, toc4x): Do some special conversion on long doubles
18106         for the c4x target. Also improve layout.
18108 2002-01-09  Richard Henderson  <rth@redhat.com>
18110         * config/m32r/m32r.c (move_src_operand): Fix 32-bit int test.
18111         * config/m32r/m32r.md (and ior xor splitters): Swap operands
18112         to match insn patterns.
18114 2002-01-09  Richard Henderson  <rth@redhat.com>
18116         * regrename.c (find_oldest_value_reg): Use gen_rtx_raw_REG.
18117         (copyprop_hardreg_forward_1): Likewise.
18119 2002-01-09  John David Anglin  <dave@hiauly1.hia.nrc.ca>
18121         * pa.md (decrement_and_branch_until_zero): Change predicate for
18122         operand 0 from register_operand to reg_or_nonsymb_mem_operand.
18124 2002-01-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
18126         * ginclude/stddef.h: Define _BSD_WCHAR_T_DEFINED_ if _BSD_WCHAR_T_
18127         gets undefined. For Darwin.
18129 2002-01-09  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
18131         * config/c4x/c4x.h: Use PUSH_ARGS and PUSH_ROUNDING for stack passing.
18133 2002-01-09  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
18135         * config/c4x/c4x/md: Remove extraneous constraints from define_splits.
18137 2002-01-08  Richard Henderson  <rth@redhat.com>
18139         * regrename.c (copy_value): Ignore overlapping copies.
18141 2002-01-08  Richard Henderson  <rth@redhat.com>
18143         * config/alpha/alpha.c (alpha_split_conditional_move): Call copy_rtx
18144         as needed to avoid shared structure.
18146 2002-01-08  Kazu Hirata  <kazu@hxi.com>
18148         * config/h8300/h8300.c (get_shift_alg): Fix 15-bit LSHIFTRT on
18149         H8/300H and H8/S.
18151 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
18153         * doc/tm.texi (EASY_DIV_EXPR, IMPLICIT_FIX_EXPR,
18154         LONGJMP_RESTORE_FROM_STACK, MAX_INT_TYPE_SIZE): Remove
18155         documentation of obsolete macros.
18156         * system.h: Poison these macros.
18157         * config/1750a/1750a.h, config/a29k/a29k.h, config/alpha/alpha.h,
18158         config/arc/arc.h, config/arm/arm.h, config/avr/avr.h,
18159         config/c4x/c4x.h, config/clipper/clipper.h,
18160         config/convex/convex.h, config/cris/cris.h, config/d30v/d30v.h,
18161         config/dsp16xx/dsp16xx.h, config/elxsi/elxsi.h,
18162         config/fr30/fr30.h, config/h8300/h8300.h, config/i370/i370.h,
18163         config/i386/i386.h, config/i860/i860.h, config/i960/i960.h,
18164         config/ia64/ia64.h, config/m32r/m32r.h, config/m68hc11/m68hc11.h,
18165         config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
18166         config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
18167         config/mn10300/mn10300.h, config/ns32k/ns32k.h, config/pa/pa.h,
18168         config/pdp11/pdp11.h, config/pj/pj.h, config/romp/romp.h,
18169         config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
18170         config/sparc/sparc.h, config/stormy16/stormy16.h,
18171         config/v850/v850.h, config/vax/vax.h, config/we32k/we32k.h: Remove
18172         definitions and commented out definitions of obsolete macros.
18173         * config/mips/iris5.h (MAX_WCHAR_TYPE_SIZE): Don't define in terms
18174         of MAX_INT_TYPE_SIZE.
18176 2002-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
18178         * config/s390/s390.c (s390_preferred_reload_class): Never
18179         return ADDR_REGS if it isn't a subset of the given class.
18180         * config/s390/s390.h (REGISTER_MOVE_COST): Penalize not just
18181         FP_REGS, but all superclasses as well.
18183         * config/s390/s390.c (s390_function_profiler): Fix thinko.
18185         * config/s390/s390.md (cmpdi_ccu_mem, cmpsi_ccu_mem,
18186         cmphi_ccu_mem, cmpqi_ccu_mem): First operand of compare
18187         must not be a const_int.
18189 2002-01-08  Richard Henderson  <rth@redhat.com>
18191         * Makefile.in (toplev.o): Depend on options.h.
18192         (gcc.o): Depend on specs.h.
18194 2002-01-08  Jakub Jelinek  <jakub@redhat.com>
18196         * expr.c (store_expr): Convert VOIDmode constants back to target's
18197         mode.
18199 2002-01-08  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
18201         * doc/invoke.texi: Markup gcc as @command.  Refer to
18202         http://gcc.gnu.org/onlinedocs/gcc/Contributors.html instead
18203         of http://gcc.gnu.org/thanks.html.
18205 2002-01-08  Dale Johannesen  <dalej@apple.com>
18207         * config/rs6000/rs6000.md: Add missing int register
18208         target case to movdf_low.
18210 2002-01-08  Zack Weinberg  <zack@codesourcery.com>
18212         * Makefile.in (cs-tconfig.h): Don't depend on $(CONFIG_H) or
18213         except.h.  Remove commands to define USING_SJLJ_EXCEPTIONS.
18214         (cppinit.o): Depend on except.h.
18215         (gencheck.h, options.h, specs.h, s-gencheck, s-options,
18216         s-specs): New rules.
18218         * configure.in: Don't AC_DEFINE_UNQUOTED PACKAGE or VERSION.
18219         Don't create specs.h/options.h/gencheck.h here.  Remove
18220         unnecessary variable settings from last argument of AC_OUTPUT.
18221         * config.in, configure: Regenerate.
18222         * intl.c: Hardcode package name as "gcc".
18224         * cppinit.c: Include except.h.
18225         (builtin_array): Define __USING_SJLJ_EXCEPTIONS__ when
18226         appropriate.
18227         * unwind-dw2.c, unwind-sjlj.c, config/ia64/unwind-ia64.c:
18228         Use #if(n)def __USING_SJLJ_EXCEPTIONS, not #if
18229         (!)USING_SJLJ_EXCEPTIONS.
18230         * doc/cpp.texi: Document __USING_SJLJ_EXCEPTIONS__.
18232 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
18234         * doc/tm.texi (ASM_OUTPUT_EH_REGION_BEG, ASM_OUTPUT_EH_REGION_END,
18235         ASM_OUTPUT_LABELREF_AS_INT, DOESNT_NEED_UNWINDER, EH_TABLE_LOOKUP,
18236         OBJC_SELECTORS_WITHOUT_LABELS, OMIT_EH_TABLE): Remove
18237         documentation of obsolete macros.
18238         * system.h: Poison these macros.
18239         * config/d30v/d30v.h, config/ns32k/encore.h,
18240         config/stormy16/stormy16.h: Remove definitions and commented out
18241         definitions of obsolete macros.
18243 Tue Jan  8 15:56:41 2002  Nicola Pero  <nicola@brainstorm.co.uk>
18245         * objc/objc-act.c (handle_class_ref): Mark the declaration of
18246         %sobjc_class_ref_%s as used - to prevent unwanted compiler
18247         warnings.
18249 2002-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
18251         * config/s390/linux.h (ASM_OUTPUT_LABELREF): Remove.
18252         * config/s390/s390.c (s390_emit_epilog): Add REG_FRAME_RELATED_EXPR
18253         to insn adjusting stack/frame pointer.
18254         * config/s390/s390.md (reload_la_64, reload_la_31): Do not
18255         accept operands that cause the insn to be non-splittable.
18257 2002-01-08  Graham Stott  <grahams@redhat.com>
18259         * c-tree.h (C_TYPE_FIELDS_READONLY): Uppercase macro parameter.
18260         (C_TYPE_FIELDS_VOLATILE): Likewise.
18261         (C_TYPE_BEING_DEFINED): Likewise.
18262         (C_IS_RESERVED_WORD): Likewise.
18263         (C_TYPE_VARIABLE_SIZE): Likewise.
18264         (C_DECL_VARIABLE_SIZE): Likewise.
18265         (C_MISSING_PROTOTYPE_WARNED): Likewise.
18266         (C_SET_EXP_ORIGINAL_CODE): Likewise.
18267         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter and remove
18268         parenthesis.
18269         (C_DECL_ANTICIPATED): Likewise.
18270         (c_build_type_variant): Add parenthesis.
18272 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
18274         * gcc.c (option_map): Remove --version.
18275         (process_command): Handle -fversion following the GNU Coding
18276         Standards.  Partially addresses PR other/704.
18278 2002-01-08  Graham Stott  <grahams@redhat.com>
18280         * combine.c (combine_instructions): Fix typo.
18282 2002-01-08  Graham Stott  <grahams@redhat.com>
18284         * debug.h: Use "tree" and "rtx" throughout.
18286         * debug.c: Likewise.
18288 2002-01-08  Nick Clifton  <nickc@cambridge.redhat.com>
18290         * dbxout.c (dbxout_symbol_location): If a symbol ref is in the
18291         constant pool, use the pool's version of the symbol instead.
18293 2002-01-07  Richard Henderson  <rth@redhat.com>
18295         * regrename.c (find_oldest_value_reg): Ignore the value chain if
18296         the original register was copied in a mode with a fewer number of
18297         hard registers than the desired mode.
18298         (copyprop_hardreg_forward_1): Likewise.
18299         (debug_value_data): Fix loop test.
18300         * toplev.c (parse_options_and_default_flags): Reenable
18301         -fcprop-registers at -O1.
18303 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
18305         * config/rs6000/rs6000.c (bdesc_2arg): Add altivec predicates.
18306         (altivec_init_builtins): New node v4si_ftype_v16qi_v16qi.
18308         * config/rs6000/rs6000.h (rs6000_builtins): Add enums for altivec
18309         predicates.
18311         * config/rs6000/rs6000.md: Add altivec predicate patterns.
18313 2002-01-07  John David Anglin  <dave@hiauly1.hia.nrc.ca>
18315         * pa.c (FUNC_BEGIN_PROLOG_LABEL, current_function_number): Define.
18316         (pa_output_function_prologue): Output local label at the beginning of
18317         the prologue when profiling.
18318         (hppa_profile_hook): Use the local label rather than the function label.
18319         * pa.h (PROFILE_BEFORE_PROLOGUE): Define.
18321 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
18323         * config/rs6000/rs6000.c (print_operand): Remove extra space.
18324         (altivec_expand_unop_builtin): Fix thinko.
18325         (altivec_expand_binop_builtin): Same.
18326         (altivec_expand_ternop_builtin): Same.
18327         (altivec_expand_builtin): Same.
18329 2002-01-07  Richard Henderson  <rth@redhat.com>
18331         * config/rs6000/xcoff.h (ASM_FILE_START): Reverted to profile_flag.
18333 2002-01-07  Jason Merrill  <jason@redhat.com>
18335         * unwind-dw2.c (execute_cfa_program): Use < again.
18337 2002-01-07  Jakub Jelinek  <jakub@redhat.com>
18339         * predict.c (combine_predictions_for_insn): Avoid division by zero.
18341 2002-01-07  Jakub Jelinek  <jakub@redhat.com>
18343         * simplify-rtx.c (simplify_plus_minus): Bump n_ops for NOT.
18344         Don't allow -1 - x -> ~x simplifications in the first pass.
18346 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
18348         * rs6000.c (altivec_expand_ternop_builtin): Don't die on invalid
18349         arguments.
18350         (altivec_expand_binop_builtin): Same.
18351         (altivec_expand_unop_builtin): Same.
18352         (print_operand): Fix typo.
18353         (bdesc_1arg): Add vupk* variants.
18355         * rs6000.h (rs6000_builtins): Add vupk* enums.
18357         * rs6000.md: Add altivec_vupk* variants.
18359 2002-01-07  Joseph S. Myers  <jsm28@cam.ac.uk>
18361         * doc/gcc.texi, doc/gccint.texi, doc/cppinternals.texi,
18362         doc/install.texi, doc/invoke.texi, doc/rtl.texi: Update copyright
18363         and last update dates.
18365 2002-01-07  Janis Johnson  <janis187@us.ibm.com>
18367         * doc/rtl.texi (Flags): Clean up documentation of RTL flags
18369 2002-01-07  Marek Michalkiewicz  <marekm@amelek.gda.pl>
18371         * config/avr/avr.c (avr_mcu_types): Add new MCU types.
18372         * config/avr/avr.h (CPP_SPEC): Likewise.
18373         (LINK_SPEC): Likewise.
18374         (CRT_BINUTILS_SPECS): Likewise.
18375         * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
18376         * doc/invoke.texi (AVR Options): Document them.
18378 Mon Jan  7 11:59:34 CET 2002  Jan Hubicka  <jh@suse.cz>
18380         * unroll.c (copy_loop_body): Always properly update JUMP_LABEL and
18381         LABEL_NUSES.
18383 2002-01-07  Graham Stott  <grahams@redhat.com>
18385         * config/i386/i386.h: Update copyright date.
18386         (HALF_PIC_PTR): Add parenthesis.
18387         (OPTIMIZATION_OPTIONS): Whitespace, add parenthesis and wrap.
18388         (CONSTANT_ALIGNMENT): Add parenthesis.
18389         (DATA_ALIGNMENT): Likewise.
18390         (LOCAL_ALIGNMENT): Likewise.
18391         (FUNCTION_ARG_BOUNDARY): Whitespace, add parenthesis and wrap.
18392         (IS_STACK_MODE): Uppercase macro parameter, add parenthesis and wrap.
18393         (CONDITIONAL_REGISTER_USAGE): Wrap in do {...} while (0).
18394         (HARD_REGNO_NREGS): Add paranethesis.
18395         (VALID_SSE_REG_MODE): Whitespace.
18396         (VALID_MMX_REG_MODE): Whitespace.
18397         (VALID_FP_MODE_P): Uppercase macros parameter and whitespace.
18398         (ix86_hard_regno_mode_ok): Add parenthesis.
18399         (HARD_REGNO_CALLER_SAVE_MODE): Whitespace.
18400         (RETURN_IN_MEMORY): Whitespace.
18401         (N_REG_CLASSES): Add parenthesis.
18402         (INTEGER_CLASS_P): Add parenthesis and wrap.
18403         (FLOAT_CLASS_P): Likewise.
18404         (SSE_CLASS_P): Likewise.
18405         (MMX_CLASS_P): Likewise.
18406         (MAYBE_INTEGER_CLASS_P): Likewise.
18407         (MAYBE_FLOAT_CLASS_P): Likewise.
18408         (MAYBE_SSE_CLASS_P): Likewise.
18409         (MAYBE_MMX_CLASS_P): Likewise.
18410         (Q_CLASS_P): Likewise.
18411         (GENERAL_REGNO_P): Uppercase macro parameter.
18412         (REX_INT_REGNO_P): Uppercase macro parameter and wrap.
18413         (FP_REGNO_P): Likewise.
18414         (ANY_FP_REGNO_P): Uppercase macro parameter.
18415         (SSE_REGNO_P): Likewise.
18416         (SSE_REGNO): Likewise.
18417         (SSE_REG_P): Likewise.
18418         (SSE_FLOAT_MODE_P): Likewise.
18419         (MMX_REGNO_P): Likewise.
18420         (MMX_REG_P):Likewise.
18421         (STACK_REG_P): Likewise.
18422         (NON_STACK_REG_P): Likewise.
18423         (STACK_TOP_P): Likewise.
18424         (CONVERT_HARD_REGISTER_TO_SSA_P): Add parenthesis.
18425         (PREFERRED_RELOAD_CLASS): Add parenthesis and whitespace.
18426         (SECONDARY_MEMORY_NEEDED): Likewise.
18427         (SECONDARY_OUTPUT_RELOAD_CLASS): Whitespace.
18428         (MD_ASM_CLOBBERS): Whitespace and wrap.
18429         (MUST_PASS_IN_STACK): Whitespace and wrap.
18430         (RETURN_POPS_ARGS): Add parenthesis.
18431         (INIT_CUMULATIVE_ARGS): Likewise.
18432         (FUNCTION_ARG): Likewise.
18433         (FUNCTION_OK_FOR_SIBCALL): Add parenthesis and whitespace.
18434         (SETUP_INCOMING_VARARGS): Likewise.
18435         (BUILD_VA_LIST_TYPE):  Add parenthesis.
18436         (EXPAND_BUILTIN_VA_START): Uppercase macro paremeters and add
18437         parenthsis.
18438         (EXPAND_BUILTIN_VA_ARG): Likewise.
18439         (FUNCTION_PROFILER): Wrap in do { ... } while (0) and add parenthesis.
18440         (INITIALIZE_TRAMPOLINE): Add parenthesis.
18441         (INITIAL_ELIMINATION_OFFSET): Likewise.
18442         (REGNO_OK_FOR_INDEX_P): Add parenthesis.
18443         (REGNO_OK_FOR_BASE_P): Likewise.
18444         (REGNO_OK_FOR_SIREG_P): Add parenthesis and wrap.
18445         (REGNO_OK_FOR_DIREG_P): Likewise.
18446         (REG_OK_FOR_INDEX_P): Whitespace.
18447         (REG_OK_FOR_BASE_P): Whitespace.
18448         (GO_IF_LEGITIMATE_ADDRESS): Wrap in do { ... } while (0) and add
18449         parenthesis.
18450         (FIND_BASE_TERM): Fix typo.
18451         (LEGITIMIZE_ADDRESS): Wrap in  { .. } while (0) and add parenthesis.
18452         (REWRITE_ADDRESS): Uppercase macro parameter and whitespace.
18453         (SYMBOLIC_CONST; Whitespace.
18454         (GO_IF_MODE_DEPENDENT_ADDRESS):Wrap in  { .. } while (0) and wrap.
18455         (ENCODE_SECTION_INFO): Whitespace.
18456         (FINALIZE_PIC): Remove do { ... } while (0).
18457         (PROMOTE_MODE): Wrap in do { ... } while (0).
18458         (CONST_COSTS): Whitespace.
18459         (RTX_COSTS): Add paramethesis, whitespace and wrap.
18460         (REGISTER_MOVE_COST): Add parenthesis.
18461         (MEMORY_MOVE_COST): Likewise.
18462         (EXTRA_CC_MODES): Whitespace.
18463         (SELECT_CC_MODE): Add parenthesis and whitespace.
18464         (DBX_REGISTER_NUMBER): Uppercase macro parameter and add parenthsis.
18465         (ASM_PREFERRED_EH_DATA_FORMAT): Add parenthesis and whitespace.
18466         (ASM_OUTPUT_LABEL): Add paramethesis.
18467         (ASM_OUTPUT_REG_PUSH): Add parenthesis and whitespace.
18468         (ASM_OUTPUT_REG_POP): Likewise.
18469         (ASM_OUTPUT_ADDR_VEC_ELT): Add parenthesis.
18470         (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
18472         * config/i386/i386.c: Update copyright.
18473         (CHECK_STACK_LIMIT): Add parenthesis.
18474         (AT_BP): Uppercase macro parameter.
18475         (x86_64_int_parameter_registers): Constify.
18476         (x86_64_int_return_registers): Likewise.
18477         (ix86_compare_op0): Use rtx.
18478         (construct_container): Constify INTREG parameter.
18479         (function_arg): Use rtx.
18481         * diagnostic.h: Update copyright date.
18482         (output_buffer_state): Add parenthesis.
18483         (output_buffer_format_args): Likewise.
18485         * combine.c (combine_instructions): Replace XEXP (links, 0)
18486         with link.
18488 2002-01-06  H.J. Lu <hjl@gnu.org>
18490         * cfgcleanup.c (thread_jump): Fix 2 typos.
18492 2002-01-06  Aldy Hernandez  <aldyh@redhat.com>
18494         * config.gcc: Add support for --enable-altivec.
18496 2002-01-06  Craig Rodrigues  <rodrigc@gcc.gnu.org>
18498         * emit-rtl.c (gen_highpart): Add check for NULL_RTX.
18500 2002-01-06  Jakub Jelinek  <jakub@redhat.com>
18502         * objc/objc-act.c (handle_impent): Use assemble_variable to emit
18503         __objc_class_name_*.
18505 2002-01-06  Craig Rodrigues  <rodrigc@gcc.gnu.org>
18507         * doc/install.texi (sparcv9-*-solaris2*): Add documentation.
18509 2002-01-06  Richard Henderson  <rth@redhat.com>
18511         * reorg.c (emit_delay_sequence): Remove death notes, not merely
18512         nop them out.  Increment label reference count for REG_LABEL.
18513         (fill_slots_from_thread): Frob label reference count around
18514         delete_related_insns.
18516 2002-01-05  Richard Henderson  <rth@redhat.com>
18518         * cfgcleanup.c (try_forward_edges): Detect infinite loops while
18519         jump threading.
18521 2002-01-05  Richard Henderson  <rth@redhat.com>
18523         * c-decl.c (c_expand_body): Don't call outlining_inline_function.
18524         * integrate.c (output_inline_function): Likewise.
18525         * toplev.c (rest_of_compilation): Do it here instead.  Move call
18526         to remove_unnecessary_notes after emitting abstract instance.
18527         Force an emitted nested function to have its parent emited as well.
18528         * dwarf2out.c (loc_descriptor_from_tree): Read mode after checking
18529         for null.
18530         (rtl_for_decl_location): Do not look at reload data structures
18531         before reload has run.
18533 2002-01-05  Kazu Hirata  <kazu@hxi.com>
18535         * cse.c: Fix formatting.
18536         * dwarf2asm.c: Likewise.
18537         * dwarf2out.c: Likewise.
18538         * explow.c: Likewise.
18539         * expmed.c: Likewise.
18540         * function.c: Likewise.
18541         * gcov.c: Likewise.
18542         * gencheck.c: Likewise.
18543         * genrecog.c: Likewise.
18544         * ggc-common.c: Likewise.
18545         * ggc-page.c: Likewise.
18546         * global.c: Likewise.
18548 2002-01-05  Kazu Hirata  <kazu@hxi.com>
18550         * combine.c: Fix formatting.
18552 2002-01-05  Craig Rodrigues  <crodrigu@bbn.com>
18554         PR middle-end/1557
18555         * config/ia64/ia64.h (RENAME_EXTENDED_BLOCKS): Remove.
18557 2002-01-05  David Edelsohn  <edelsohn@gnu.org>
18559         * config/rs6000/rs6000.h (TARGET_POWERPC): For IN_LIBGCC2, define
18560         as 1 for __powerpc64__ as well.
18562         * config/rs6000/t-aix43 (T_ADAFLAGS): Define.
18564         * alias.c (find_base_value, PLUS/MINUS): If we found a base,
18565         return it.
18567 2002-01-05  Daniel Berlin  <dan@dberlin.org>
18569         * lcm.c: Revert change, due to performance regression it causes on
18570         SPEC because it's slightly more conservative (sigh, I hate
18571         edge-based LCM).
18573 Sat Jan  5 11:52:05 CET 2002  Jan Hubicka  <jh@suse.cz>
18575         * cfgcleanup.c (try_forward_edges): Allow multiple jump threading.
18577 2002-01-05  Neil Booth  <neil@daikokuya.demon.co.uk>
18579         * doc/cppinternals.texi: Update.
18581 2002-01-05  Hans-Peter Nilsson  <hp@bitrange.com>
18583         * doc/invoke.texi (Option Summary) <MMIX Options>: Document
18584         -mbranch-predict, -mreg-stack-fill-bug-workaround and their
18585         negatives.
18586         (MMIX Options): Ditto.  Fix item/itemx typo for -mno-zero-extend.
18587         * config/mmix/mmix.c (mmix_target_asm_function_prologue): Rework
18588         kludge for pre-october-14th mmix versions to handle new-found bug
18589         with PUSHJ/PUSHGO and the register stack.
18590         * config/mmix/mmix.h (struct machine_function): Rename member
18591         has_call_value_without_parameters to has_call_without_parameters.
18592         All referers changed.
18593         (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_DEFAULT
18594         TARGET_MASK_BRANCH_PREDICT): New macros.
18595         (TARGET_SWITCHES): New options -mreg-stack-fill-bug-workaround,
18596         -mno-reg-stack-fill-bug-workaround.
18597         * config/mmix/mmix.md ("call"): Set struct machine member
18598         has_call_without_parameters.
18600 Sat Jan  5 02:20:22 CET 2002  Jan Hubicka  <jh@suse.cz>
18602         * cfgcleanup.c (thread_jump): Fix handling of reversed branches.
18604 Sat Jan  5 01:35:29 CET 2002  Jan Hubicka  <jh@suse.cz>
18606         * cfgcleanup.c: Include tm_p.h
18607         (mark_effect): Fix handling of hard register; fix handling of SET
18609 2002-01-04  Kazu Hirata  <kazu@hxi.com>
18611         * config/h8300/h8300.md (anonymous patterns): Check that
18612         operands are registers before using REGNO on them.
18614 2002-01-03  Roland McGrath  <roland@frob.com>
18616         * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcall-gnu.
18618 2002-01-04  Jakub Jelinek  <jakub@redhat.com>
18620         * tree.h (expand_expr_stmt_value): Add maybe_last argument.
18621         * c-common.h (genrtl_expr_stmt_value): Likewise.
18622         * stmt.c (expand_expr_stmt): Pass 1 as maybe_last.
18623         (expand_expr_stmt_value): Add maybe_last argument.
18624         Don't warn about statement with no effect if it is the last statement
18625         in expression statement.
18626         * c-semantics.c (genrtl_expr_stmt): Pass 1 as maybe_last.
18627         (genrtl_expr_stmt_value): Add maybe_last argument, pass it down to
18628         expand_expr_stmt_value.
18629         (expand_stmt) [EXPR_STMT]: Pass 1 as maybe_last to
18630         genrtl_expr_stmt_value if t is the last EXPR_STMT in its scope.
18631         * expr.c (expand_expr) [LABELED_BLOCK_EXPR, LOOP_EXPR]: Pass 1
18632         as maybe_last to expand_expr_stmt_value.
18634 Fri Jan  4 11:45:05 2002  Jeffrey A Law  (law@redhat.com)
18636         * c-common.c (c_expand_start_cond): Expect the IF_STMT node to
18637         be passed in, do not build it.
18638         (c_begin_if_stmt): New function.
18639         (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
18640         * c-common.h (c_expand_start_cond): Update prototype.
18641         (c_begin_if_stmt): Prototype new function.
18642         (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
18643         * c-parse.in (if_prefix): Use c_begin_if_stmt,
18644         c_begin_while_stmt and c_finish_while_stmt_cond.
18646 2002-01-04  William Cohen  <wcohen@redhat.com>
18648         * config/pa/elf.h (ASM_FILE_START): Reverted to profile_flag.
18649         * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
18650         * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
18651         * config/pa/som.h (ASM_FILE_START): Likewise.
18653 2002-01-04  Daniel Berlin  <dan@cgsoftware.com>
18655         * lcm.c: Include df.h.
18656         Add available_transfer_function prototype.
18657         (compute_available): Rework to use iterative dataflow framework.
18658         (struct bb_info): s/bb_info/lcm_bb_info/g to avoid conflict
18659         with bb_info in df.h
18660         (available_transfer_function): New function.
18662         * Makefile.in (lcm.o): add df.h to dependencies.
18664 2002-01-04  Richard Henderson  <rth@redhat.com>
18666         * config/alpha/alpha.c (some_operand): Accept HIGH.
18667         (input_operand): Likewise; accept simple references to globals.
18668         (alpha_const_ok_for_letter_p): New, outlined from alpha.h.
18669         (alpha_const_double_ok_for_letter_p): Likewise.
18670         (alpha_extra_constraint): Likewise.
18671         (alpha_preferred_reload_class): Likewise.  Do not force
18672         symbolic constants to memory.
18673         (alpha_legitimate_address_p): Accept simple references
18674         to small_symbolic_operand.
18675         (alpha_legitimize_address): New arg scratch.  Be prepared to be
18676         called when no_new_pseudos.  Emit simple symbolic references.
18677         Split integers into low, high, and rest.
18678         (alpha_expand_mov): Use alpha_legitimize_address.
18679         (some_small_symbolic_mem_operand): New.
18680         (split_small_symbolic_mem_operand): New.
18681         * config/alpha/alpha-protos.h: Update.
18682         * config/alpha/alpha.h (CONST_OK_FOR_LETTER_P): Out-line.
18683         (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
18684         (EXTRA_CONSTRAINT): Likewise.
18685         (PREFERRED_RELOAD_CLASS): Likewise.
18686         (LEGITIMIZE_ADDRESS): Update for alpha_legitimize_address change.
18687         (PREDICATE_CODES): Update.
18688         * config/alpha/alpha.md: New post-reload splitters to convert
18689         simplfied symbolic operands to the form that references $29.
18690         (divide expanders): Use emit_move_insn, not gen_movdi_er_high_g.
18691         (movdi_er_nofix, movdi_er_fix): Accept any symbolic operand.
18693 2002-01-03  Richard Henderson  <rth@redhat.com>
18695         * local-alloc.c (function_invariant_p): Update commentary.
18697 2002-01-04  H.J. Lu <hjl@gnu.org>
18699         * toplev.c (rest_of_compilation): Fix a typo when calling
18700         cleanup_cfg.
18702 2002-01-03  Kazu Hirata  <kazu@hxi.com>
18704         * c-common.c: Fix formatting.
18705         * diagnostic.c: Likewise.
18706         * doloop.c: Likewise.
18707         * dwarf2out.c: Likewise.
18709 2002-01-03  Kazu Hirata  <kazu@hxi.com>
18711         * config/h8300/h8300.c (output_logical_op): Use 'not.w' instead
18712         of 'neg.w' when xoring with 0x0000ffff or 0xffff0000.
18714 2002-01-03  Neil Booth  <neil@daikokuya.demon.co.uk>
18716         * cpperror.c: Update comments and copyright.
18717         * cppexp.c, cppfiles.c, cpphash.c, cpphash.h, cppinit.c,
18718         cpplex.c, cpplib.c, cpplib.h, cppmacro.c, cppmain.c: Similarly.
18720 2002-01-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
18722         * collect2.c (main): Use strcmp when testing for "-shared".
18724 2002-01-03  Neil Booth  <neil@daikokuya.demon.co.uk>
18726         * cppmacro.c: Don't include intl.h.  Update comments.
18727         (new_number_token): Allocate enough buffer for 64-bit unsigned
18728         integers; update prototype.
18729         * cppmain.c: Update comments.
18731 2002-01-03  William Cohen  <wcohen@redhat.com>
18733         * function.h (struct function): Add profile.
18734         (current_function_profile): New.
18735         doc/extend.texi: Update documentation.
18736         * final.c (final_start_function): Use current_function_profile
18737         instead of profile_flag.
18738         (profile_after_prologue): Likewise.
18739         * function.c (expand_function_start): Likewise.
18740         (expand_function_start): Likewise.
18741         * config/alpha/alpha.c (direct_call_operand):
18742         (alpha_does_function_need_gp): Likewise.
18743         (alpha_expand_prologue): Likewise.
18744         * config/arm/arm.c (arm_expand_prologue): Likewise.
18745         thumb_expand_prologue: Likewise.
18746         * config/d30v/d30v.c (d30v_stack_info): Likewise.
18747         * config/fr30/fr30.c (MUST_SAVE_RETURN_POINTER): Likewise.
18748         (fr30_expand_prologue): Likewise.
18749         * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Likewise.
18750         * config/i386/i386.c (ix86_osf_output_function_prologue): Likewise.
18751         * config/i386/i386.h (FINALIZE_PIC): Likewise.
18752         * config/i386/win32.h (SUBTARGET_PROLOGUE): Likewise.
18753         * config/i960/i960.c (i960_output_function_prologue): Likewise.
18754         * config/ia64/ia64.c (ia64_compute_frame_size): Likewise.
18755         * config/m32r/m32r.c (MUST_SAVE_RETURN_ADDR): Likewise.
18756         (m32r_expand_prologue): Likewise.
18757         * config/m88k/m88k.c (m88k_layout_frame): Likewise.
18758         (m88k_expand_prologue): Likewise.
18759         * config/m88k/m88k.h (ADJUST_INSN_LENGTH): Likewise.
18760         * config/mips/mips.c (compute_frame_size): Likewise.
18761         (mips_expand_prologue): Likewise.
18762         (mips_can_use_return_insn): Likewise.
18763         * config/pa/elf.h (ASM_FILE_START): Likewise.
18764         * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
18765         * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
18766         * config/pa/som.h (ASM_FILE_START): Likewise.
18767         * config/romp/romp.c (romp_using_r14): Likewise.
18768         * config/rs6000/rs6000.c (first_reg_to_save): Likewise.
18769         (rs6000_stack_info): Likewise.
18770         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
18771         * config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
18772         * config/v850/v850.c (compute_register_save_size): Likewise.
18774 2002-01-03  Jakub Jelinek  <jakub@redhat.com>
18776         * simplify-rtx.c (simplify_binary_operation) [DIV]: If
18777         gen_lowpart_common fails, use gen_lowpart_SUBREG.
18779 2002-01-03  Turly O'Connor  <turly@apple.com>
18781         * darwin.c (machopic_output_possible_stub_label): Don't generate
18782         stub routines for pseudo-stubs which we've just defined.
18784 2002-01-03  Kazu Hirata  <kazu@hxi.com>
18786         * builtins.c: Fix formatting.
18787         * c-typeck.c: Likewise.
18788         * combine.c: Likewise.
18789         * expr.c: Likewise.
18790         * loop.c: Likewise.
18792 2002-01-03  Andreas Schwab  <schwab@suse.de>
18794         * cppfiles.c (_cpp_pop_file_buffer): Change return type to bool
18795         and return true if _cpp_push_next_buffer pushed a new include
18796         file.
18797         * cpplib.c (_cpp_pop_buffer): Only call obstack_free if
18798         _cpp_pop_file_buffer did not push a new file.
18799         * cpphash.h (_cpp_pop_file_buffer): Update declaration.
18801 2002-01-02  Eric Christopher  <echristo@redhat.com>
18803         * final.c (final_scan_insn): Change 0 -> NULL_RTX in
18804         FIND_REG_INC_NOTE call. Update copyright.
18805         * loop.c (canonicalize_condition): Ditto.
18806         * reorg.c (delete_scheduled_jump): Ditto.
18808 2002-01-03  Kazu Hirata  <kazu@hxi.com>
18810         * gcse.c: Fix formatting.
18812 2002-01-03  Graham Stott  <grahams@redhat.com>
18814         * mkconfig.sh: Output to config.h, hconfig.h and tconfig.h
18815         forward defs for struct tags rtx_def, union_tree, rtvec_def
18816         also output corresponding typedefs for rtx, tree, and rtvec.
18818         * system.h: Move forward defs for struct tags rtx_def, union_tree,
18819         rtvec_def along with corresponding typedefs for rtx, tree, and
18820         rtvec to config.h, hconfig.h, tconfig.h.
18822 2002-01-03  Graham Stott  <grahams@redhat.com>
18824         * tree.h: Update copyright date.
18825         (IS_EXPR_CODE_CLASS): Add parenthesis.
18826         (TREE_SET_CODE): Add whitespace.
18827         (TREE_CHECK): Add parenthesis.
18828         (TREE_CLASS_CODE): Add parenthesis and wrap long line.
18829         (CST_OR_CONSTRUCTOR_CHECK):
18830         (EXPR_CHECK): Add parenthis, whitespace and wrap line.
18831         (TREE_SYMBOL_REFERENCED): Whitespace.
18832         (INT_CST_LT): Likewise.
18833         (INT_CST_LT_UNSIGNED): Likewise.
18834         (tree_real_cst): Unwrap comment.
18835         (tree_string): Likewise.
18836         (tree_complex): Likewise.
18837         (IDENTIFIER_POINTER): correct cast.
18838         (SAVE_EXPR_CONTEXT): Whitespace.
18839         (EXPR_WFL_FILENAME_NODE): Likewise.
18840         (EXPR_WFL_FILENAME): Remove parenthesis.
18841         (DECL_ORIGIN): Add parenthesis.
18842         (DECL_FROM_INLINE): Use NULL_TREE.
18843         (build_int_2): Whitespace.
18844         (build_type_variant): Add parenthesis.
18846         * gcc/jcf-parse.c: Update copyright date.
18847         (yyparse): Constify resource_filename.
18849 2002-01-03  Graham Stott  <grahams@redhat.com>
18851         * rtl.h: Update copyright date.
18852         (RTL_CHECK1): Wrap long line.
18853         (RTL_CHECK2): Likewise.
18854         (RTL_CHECKC1): Wrap long line and whitespace.
18855         (RTL_CHECKC2): Likewise.
18856         (XWINT): Whitespace.
18857         (XINT): Likewise.
18858         (XSTR): Likewise.
18859         (XEXP): Likewise.
18860         (XVEC): Likewise.
18861         (XMODE): Likewise.
18862         (XBITMAP): Likewise.
18863         (XTREE): Likewise.
18864         (XBBDEF): Likewise.
18865         (XTMPL): Likewise.
18866         (X0WINT): Likewise.
18867         (X0INT):Likewise.
18868         (X0UINT): Likewise.
18869         (X0STR): Likewise.
18870         (X0EXP): Likewise.
18871         (X0VEC): Likewise.
18872         (X0MODE): Likewise.
18873         (X0BITMAP): Likewise.
18874         (X0TREE): Likewise.
18875         (X0BBDEF): Likewise.
18876         (X0ADVFLAGS): Likewise.
18877         (X0CSELIB): Likewise.
18878         (X0MEMATTR): Likewise.
18879         (XCWINT): Likewise.
18880         (XCINT): Likewise.
18881         (XCUINT): Likewise.
18882         (XCSTR): Likewise.
18883         (XCEXP): Likewise.
18884         (XCVEC): Likewise.
18885         (XCMODE): Likewise.
18886         (XCBITMAP): Likewise.
18887         (XCTREE): Likewise.
18888         (XCBBDEF): Likewise.
18889         (XCADVFLAGS): Likewise.
18890         (XCCSELIB): Likewise.
18891         (XC2EXP): Likewise.
18892         (INSN_UID): Likewise.
18893         (PREV_INSN): Likewise.
18894         (PATTERN): Likewise.
18895         (INSN_CODE): Likewise.
18896         (PUT_REG_NOTE_KIND): Likewise.
18897         (CODE_LABEL_NUMBER): Likewise.
18898         (NOTE_SOURCE_FILE): Likewise.
18899         (NOTE_BLOCK): Likewise.
18900         (NOTE_EH_HANDLER): Likewise.
18901         (NOTE_RANGE_INFO): Likewise.
18902         (NOTE_LIVE_INFO): Likewise.
18903         (NOTE_BASIC_BLOCK): Likewise.
18904         (NOTE_EXPECTED_VALUE): Likewise.
18905         (NOTE_LINE_NUMBER): Likewise.
18906         (LABEL_NAME): Likewise.
18907         (LABEL_NUSES): Likewise.
18908         (LABEL_ALTERNATE_NAME): Likewise.
18909         (ADDRESSOF_DECL): Likewise.
18910         (JUMP_LABEL): Likewise.
18911         (LABEL_NEXTREF): Likewise.
18912         (REGNO): Likewise.
18913         (ORIGINAL_REGNO: Likewise.
18914         (HARD_REGISTER_NUM_P): Add parenthesis.
18915         (SUBREG_REG): Whitespace.
18916         (SUBREG_BYTE): Likewise.
18917         (ASM_OPERANDS_TEMPLATE): Remove parenthesis.
18918         (ASM_OPERANDS_OUTPUT_CONSTRAINT): Likewise.
18919         (ASM_OPERANDS_OUTPUT_IDX): Likewise.
18920         (ASM_OPERANDS_INPUT_VEC): Likewise.
18921         (ASM_OPERANDS_INPUT_CONSTRAINT_VEC): Likewise.
18922         (ASM_OPERANDS_INPUT): Likewise.
18923         (ASM_OPERANDS_INPUT_LENGTH): Likewise.
18924         (ASM_OPERANDS_INPUT_CONSTRAINT_EXP): Likewise.
18925         (ASM_OPERANDS_INPUT_CONSTRAINT): Likewise.
18926         (ASM_OPERANDS_INPUT_MODE): Likewise.
18927         (ASM_OPERANDS_SOURCE_FILE): Likewise.
18928         (ASM_OPERANDS_SOURCE_LINE): Likewise.
18929         (MEM_SET_IN_STRUCT_P): Minor reformat.
18930         (TRAP_CONDITION): Whitespace.
18931         (TRAP_CODE): Likewise.
18932         (COND_EXEC_TEST): Likewise.
18933         (COND_EXEC_CODE): Likewise.
18934         (FIND_REG_INC_NOTE): Uppercase macro args and add parenthesis.
18935         (PHI_NODE_P): Add parenthesis.
18936         (plus_constant): Whitespace and add parenthesis.
18938 2002-01-03  Kazu Hirata  <kazu@hxi.com>
18940         * config/avr/avr.c: Fix comment typos.
18941         * config/c4x/c4x.md: Likewise.
18942         * config/dsp16xx/dsp16xx.h: Likewise.
18943         * config/dsp16xx/dsp16xx.md: Likewise.
18944         * config/i386/i386.md: Likewise.
18945         * config/ia64/ia64.c: Likewise.
18946         * config/m32r/m32r.h: Likewise.
18947         * config/m68hc11/m68hc11.md: Likewise.
18948         * config/mmix/mmix.c: Likewise.
18949         * config/mn10200/mn10200.c: Likewise.
18950         * config/romp/romp.c: Likewise.
18951         * config/sh/sh.c: Likewise.
18952         * config/stormy16/stormy16.c: Likewise.
18953         * config/stormy16/stormy16.h: Likewise.
18954         * config/stormy16/stormy16.md: Likewise.
18956 2002-01-03  Graham Stott  <grahams@redhat.com>
18958         * loop.h: Update copyright date.
18959         (LOOP_MOVABLES): Fix typo.
18960         (LOOP_REGS): Likewise.
18961         (LOOP_IVS): Likewise.
18963 2002-01-03  Graham Stott  <grahams@redhat.com>
18965         * cppinit.c: Update copyright date.
18966         Don't include output.h
18967         * Makefile.in: Update copyright date.
18968         Update dependency.
18970 2002-01-02  Craig Rodrigues  <rodrigc@gcc.gnu.org>
18972         PR c/5226
18973         * invoke.texi (-mthreads): Remove from documented RS/6000 options.
18974         (-pthread) Add to RS/6000 options.
18976 2002-01-02  Kazu Hirata  <kazu@hxi.com>
18978         * except.c: Fix comment typos.
18979         * loop.c: Likewise.
18980         * varasm.c: Likewise.
18981         * doc/tm.texi: Fix a typo.
18983 2002-01-02  Jakub Jelinek  <jakub@redhat.com>
18985         * c-typeck.c (output_init_element): Allow initializing static storage
18986         duration objects with compound literals.
18988 2002-01-02  Richard Henderson  <rth@redhat.com>
18990         * objc/objc-act.c (hack_method_prototype): Clear current_function_decl
18991         after abusing it.
18993 2002-01-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
18995         * gcc.c (default_compilers): Const-ify.
18996         * mips-tdump.c (stab_names): Likewise.
18997         * mips-tfile.c (map_coff_types, map_coff_storage,
18998         map_coff_sym_type, map_coff_derived_type, stabs_symbol,
18999         pseudo_ops_t, pseudo_ops): Likewise.
19000         * protoize.c (default_include): Likewise
19002         * real.c (GET_REAL, PUT_REAL): Don't cast away const-ness.
19003         (ezero, ehalf, eone, etwo, e32, elog2, esqrt2, epi): Const-ify.
19004         Add array size in declaration.
19005         (endian, emov, eisneg, eisinf, eisnan, eiisnan, eiisneg, emovi,
19006         emovo, emovz, eiisinf, ecmpm, eaddm, esubm, m16m, edivm, emulm,
19007         esub, eadd, eadd1, ediv, emul, e53toe, e64toe, e113toe, e24toe,
19008         etoe113, etoe64, etoe53, etoe24, ecmp, eround, ltoe, ultoe,
19009         eifrac, euifrac, e24toasc, e53toasc, e64toasc, e113toasc, etoasc,
19010         efloor, efrexp, eldexp, eremain, dectoe, etodec, ibmtoe, etoibm,
19011         c4xtoe, etoc4x, uditoe, ditoe, etoudi, etodi, esqrt, etens,
19012         emtens, make_nan): Const-ify.
19013         (TFbignan, TFlittlenan, XFbignan, XFlittlenan, DFbignan,
19014         DFlittlenan, SFbignan, SFlittlenan): Make static and const-ify.
19016 2002-01-02  Joseph S. Myers  <jsm28@cam.ac.uk>
19018         * config.gcc (ia64-*-*): Set extra_headers.
19019         (alpha*-dec-osf*): Likewise.  Don't use alpha/t-osf.
19020         * config/alpha/t-osf: Remove.
19021         * config/ia64/t-ia64 (EXTRA_HEADERS): Remove.
19023 2002-01-02  David Edelsohn  <edelsohn@gnu.org>
19025         * config/rs6000/t-aix43: Revert previous change.
19027 2002-01-02  Jason Merrill  <jason@redhat.com>
19029         * c-decl.c (c_expand_body): Call outlining_inline_function when
19030         emitting an inline function out of line.
19032 2002-01-02  Richard Henderson  <rth@redhat.com>
19034         * dwarf2out.c (limbo_die_node): Add created_for member.
19035         (new_die): New argument created_for.  Update all callers.
19036         (mark_limbo_die_list): New.
19037         (dwarf2out_init): Register limbo_die_list as a root.
19038         (dwarf2out_finish): Force insert limbo dies into their function
19039         context.
19041 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
19043         PR c++/5089
19044         * doc/invoke.texi (-Wold-style-cast): Only warn about non-void casts.
19046 2002-01-02  Kazu Hirata  <kazu@hxi.com>
19048         * config/h8300/fixunssfsi.c: Update copyright.
19049         Fix comment typos.
19050         Fix formatting.
19051         * config/h8300/h8300.c: Update copyright.
19052         Eliminate warnings.
19054 2002-01-02  Kazu Hirata  <kazu@hxi.com>
19056         * config/romp/romp.c: Fix comment formatting.
19057         * config/romp/romp.h: Likewise.
19058         * config/romp/romp.md: Likewise.
19059         * config/s390/s390.c: Likewise.
19060         * config/stormy16/stormy16.c: Likewise.
19061         * config/stormy16/stormy16.h: Likewise.
19063 2002-01-02  Alexandre Oliva  <aoliva@redhat.com>
19065         * c-common.h (genrtl_expr_stmt_value): Declare.
19066         * c-semantics.c (genrtl_goto_stmt): Redirect to...
19067         (genrtl_goto_stmt_value): ... this new function.  Pass new
19068         argument down to expand_expr_stmt_value, taking
19069         TREE_ADDRESSABLE into account.
19070         * c-common.c (c_expand_expr): Mark the last EXPR_STMT of a
19071         STMT_EXPR as addressable, i.e., one whose result we want.
19072         * expr.c (expand_expr): Don't save expression statement value
19073         of labeled_blocks or loop_exprs.
19074         * stmt.c (expand_expr_stmt): Redirect to...
19075         (expand_expr_stmt_value): ... this new function.  Use new
19076         argument to tell whether to save expression value.
19077         (expand_end_stmt_expr): Reset last_expr_type and
19078         last_expr_value if we don't have either.
19079         * tree-inline.c (declare_return_variable): Mark its use
19080         statement as addressable.
19081         * tree.h: Document new use of TREE_ADDRESSABLE.
19082         (expand_expr_stmt_value): Declare.
19084 2002-01-01  Tom Rix  <trix@redhat.com>
19086         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Fix for use by
19087         rs6000_emit_allocate_stack.
19089 2002-01-01  Joseph S. Myers  <jsm28@cam.ac.uk>
19091         * configure.in: Prepend ${srcdir}/config/${cpu_type}/ instead of
19092         ${srcdir}/ginclude/ to every entry in extra_headers.
19093         * configure: Regenerate.
19094         * ginclude/math-3300.h: Rename to config/m68k/math-3300.h.
19095         * ginclude/math-68881.h: Rename to config/m68k/math-68881.h.
19096         * ginclude/ppc-asm.h: Rename to config/rs6000/ppc-asm.h.
19097         * ginclude/proto.h: Rename to config/convex/proto.h.
19099 Tue Jan  1 17:12:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
19101         * attribs.c (handle_vector_size_attribute): Use host_integerp
19102         and tree_int_cst; remove warnings.
19103         * caller-save.c (insert_restore): Add cast to get rid of warning.
19104         (insert_save): Likewise.
19105         * emit-rtl.c (adjust_address_1, offset_address): Likewise.
19106         * regmove.c (find_matches): Add temporary var to kill a warning.
19108 2002-01-01  Douglas B Rupp  <rupp@gnat.com>
19110         * config/alpha/vms.h (DWARF2_UNWIND_INFO, EH_RETURN_HANDLER_RTX,
19111         LINK_EH_SPEC, MD_FALLBACK_FRAME_STATE_FOR): Define.
19112         * config/alpha/t-vms (EXTRA_PARTS): Add vms-dwarf2eh.o
19113         (vms-dwarf2eh.o): Add Makefile rule.
19114         * config/alpha/vms-ld.c (main): Handle vms-dwarf2eh.o.
19115         * config/alpha/vms-dwarf2eh.asm: New file.
19117         * gcc.c (delete_if_ordinary): Delete all versions.
19119 2002-01-01  Hans-Peter Nilsson  <hp@bitrange.com>
19121         * config/mmix/mmix.md: Update FIXME to not mention
19122         define_constants.
19123         (MMIX_rJ_REGNUM): New define_constants constant.
19124         ("movqi", "movsi", "movdi", "*movdicc_real_foldable",
19125         "*movdicc_real"): Adjust contraints formatting.
19126         ("*bCC_foldable"): Add %+ for P in output format and delete FIXME
19127         for branch prediction.
19128         ("*bCC", "*bCC_inverted_foldable", "*bCC_inverted"): Add %+ in
19129         output template.
19130         ("*call_real", "*call_value_real", "nonlocal_goto_receiver",
19131         "*nonlocal_goto_receiver_expanded"): Use MMIX_rJ_REGNUM instead of
19132         number.  Delete related FIXMEs.
19133         * config/mmix/mmix.h (MMIX_INCOMING_RETURN_ADDRESS_REGNUM): Change
19134         from number to MMIX_rJ_REGNUM.
19135         (TARGET_MASK_BRANCH_PREDICT): New.
19136         (TARGET_DEFAULT): Change to TARGET_MASK_BRANCH_PREDICT.
19137         (TARGET_SWITCHES): Update comment.  Correct -mno-toplevel-symbols
19138         value.  Add -mbranch-predict and -mno-branch-predict.
19139         (TARGET_VERSION): Drop date.
19140         (ADDITIONAL_REGISTER_NAMES): Use MMIX_rJ_REGNUM, not number.
19141         * config/mmix/mmix.c (mmix_encode_section_info): Correct condition
19142         for finding out global symbols.
19143         (mmix_asm_output_labelref): Revert condition for global symbol.
19144         (mmix_print_operand): <case '+'>: Emit P for a likely branch.
19145         (mmix_print_operand_punct_valid_p): A '+' is valid.
19147 See ChangeLog.6 for earlier changes.