* basic-block.h (fixup_abnormal_edges): Declare.
[official-gcc.git] / gcc / ChangeLog
blobc259bcd1cd9aeafa57288928f3d5908ae2cd464f
1 Thu Mar  7 16:33:54 CET 2002  Jan Hubicka  <jh@suse.cz>
3         * basic-block.h (fixup_abnormal_edges): Declare.
4         * reload1.c (fixup_abnormal_edges): New function.
5         * reg-stack.c (convert_regs): Use it.
7         * gcse.c (insert_insn_end_bb): Handle trapping insns.
9         * gcse.c (hash_scan_set): Refuse instructions with EH edges.
11 2002-03-07  Richard Sandiford  <rsandifo@redhat.com>
13         * defaults.h (MODE_HAS_NANS, MODE_HAS_INFINITIES): New.
14         (MODE_HAS_SIGNED_ZEROS, MODE_HAS_SIGN_DEPENDENT_ROUNDING): New.
15         * flags.h (HONOR_NANS, HONOR_INFINITIES, HONOR_SIGNED_ZEROS): New.
16         (HONOR_SIGN_DEPENDENT_ROUNDING): New.
17         * builtins.c (expand_builtin_mathfn): Use HONOR_NANS.
18         * c-common.c (truthvalue_conversion): Reduce x - y != 0 to x != y
19         unless x and y could be infinite.
20         (expand_unordered_cmp): New, mostly split from expand_tree_builtin.
21         Check that the common type of both arguments is a real, even for
22         targets without unordered comparisons.  Allow an integer argument
23         to be compared against a real.
24         (expand_tree_builtin): Use expand_unordered_cmp.
25         * combine.c (combine_simplify_rtx): Use the new HONOR_... macros.
26         * cse.c (fold_rtx): Likewise.  Fix indentation.
27         * fold-const.c (fold_real_zero_addition_p): New.
28         (fold): Use it, and the new HONOR_... macros.
29         * ifcvt.c (noce_try_minmax): Use the new HONOR_... macros.
30         * jump.c (reversed_comparison_code_parts): After searching for
31         the true comparison mode, use HONOR_NANS to decide whether it
32         can be safely reversed.
33         (reverse_condition_maybe_unordered): Remove IEEE check.
34         * simplify-rtx.c (simplify_binary_operation): Use the new macros
35         to decide which simplifications are valid.  Allow the following
36         simplifications for IEEE: (-a + b) to (b - a), (a + -b) to (a - b),
37         and (a - -b) to (a + b).
38         (simplify_relational_operation): Use HONOR_NANS.
39         * doc/tm.texi: Document the MODE_HAS_... macros.
41 2002-03-07  Richard Earnshaw  <rearnsha@arm.com>
43         * combine.c (simplify_comparison): If simplifying a logical shift
44         right and compare with constant, force the comparison to unsigned.
46 2002-03-07  Aldy Hernandez  <aldyh@redhat.com>
48         * doc/invoke.texi: Add documentation for -mabi=no-altivec.
50         * config/rs6000/rs6000.c (rs6000_parse_abi_options): Add
51         -mabi=no-altivec
52         (alt_reg_names): Remove % for vrsave.
54 2002-03-06  Richard Henderson  <rth@redhat.com>
56         * genemit.c (gen_exp): New argument used.  Invoke copy_rtx
57         if used indicates we've already emitted one copy of an operand.
58         (gen_insn, gen_expand, output_add_clobbers): Supply a null used.
59         (gen_split): Supply a non-null used.
61 2002-03-06  Ulrich Weigand  <uweigand@de.ibm.com>
63         * reload1.c (reload): Unshare all rtl after reload is done.
65         * simplify-rtx.c (simplify_plus_minus): Do not abort, 
66         but simply fail if the expression is too complex to simplify.
67         (simplify_gen_binary): Handle simplify_plus_minus failures.
69 Wed Mar  6 20:32:09 CET 2002  Jan Hubicka  <jh@suse.cz>
71         * toplev.c (rest_of_compilation): Do jump threading before SSA path;
72         consistently call delete_trivially_dead_insns after CSE and GCSE;
73         fix DFI_life dumping; do jump threading after liveness; do crossjumping
74         after liveness2; update comment in last crossjumping.
75         * cfgcleanup.c (try_crossjump_to_edge): Dirtify block.
77 Wed Mar  6 12:27:10 2002  Jeffrey A Law  (law@redhat.com)
79         * ssa-ccp.c (ssa_fast_dce): Update the DF def-use chains
80         after completing fast dead code elimination.
82         * m68k.h (CONST_COSTS): Lower cost of 0.0 when used inside a
83         COMPARE operator.
84         
85 2002-03-06  Phil Edwards  <pme@gcc.gnu.org>
87         * version.c:  Fix misplaced leading blanks on first line.
89 Wed Mar  6 19:08:03 CET 2002  Jan Hubicka  <jh@suse.cz>
91         * cfgrtl.c (verify_flow_info): Accept RESX as EH edge source.
93 Wed Mar  6 18:14:43 CET 2002  Jan Hubicka  <jh@suse.cz>
95         * cfgcleanup.c (mentions_nonequal_regs): New function.
96         (thread_jump): Use it.
97         * toplev.c (rest_of_compilation): Run jump threading after
98         liveness.
100 2002-03-06  Jakub Jelinek  <jakub@redhat.com>
102         * ssa-ccp.c (ssa_ccp_substitute_constants): Backout 2002-03-05
103         patch.
105 Wed Mar  6 11:28:19 CET 2002  Jan Hubicka  <jh@suse.cz>
107         * predict.c (estimate_bb_frequencies): Do not reload the
108         frequencies from notes.
110 Wed Mar  6 10:59:39 CET 2002  Jan Hubicka  <jh@suse.cz>
112         * cfgrtl.c (delete_insn_and_edges, delete_insn_chain_and_edges): New.
113         * rtl.h (delete_insn_and_edges, delete_insn_chain_and_edges): Declare
115         * basic-block.h (update_life_info, update_life_info_in_dirty_blocks,
116         delete_noop_moves): Return indeger.
117         * flow.c (ndead): New variable.
118         (propagate_block_delete_insn): Use delete_insn_and_edges; remove
119         BB argument; update callers.
120         (propagate_block_delete_libcall): Use delete_insn_chain_and_edges.
121         (life_analysis): Do not call purge_all_dead_edges.
122         (update_life_info): Return number of deleted insns; print statistics.
123         (update_life_info_in_dirty_blocks): likewise.
124         (delete_noop_moves): Use delete_insn_and_edges; print statistics;
125         return number of insns deleted.
127         * cse.c: Include timevar.h
128         (delete_trivially_dead_insns): Kill preserve_basic_blocks argument;
129         iterate until stabilizes; print statistics; return number of killed
130         insns.
131         * Makefile.in: (cse.o): Add timevar.h dependency
132         * rtl.h (delete_trivially_dead_insns): New.
133         * timever.def: Add TV_DELETE_TRIVIALLY_DEAD timer.
134         * toplev.c (rest_of_compilation): Update callers.
136         * cfgcleanup.c (try_optimize_cfg): Kill blocks.
137         (try_optimize_cfg): Do not update liveness.
138         (cleanup-cfg): Loop until try_optimize_cfg and dead code
139         removal stabilizes; use delete_trivially_dead_insns.
141         * cfgrtl.c (verify_flow_info): Sanity check outgoing edges.
143 2002-03-05  Zack Weinberg  <zack@codesourcery.com>
145         * cppmain.c (setup_callbacks): Disable #pragma and #ident
146         callbacks when processing assembly language.
148 2002-03-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
150         * pa.h (ASM_FILE_END): Define.
151         * som.h (ASM_FILE_END): Delete.
153         * pa.c (function_arg): Don't pass floats in general registers in
154         indirect calls if TARGET_ELF32.
156 2002-03-05  Richard Henderson  <rth@redhat.com>
158         * config/i386/i386.md (floatsidf2): Conditionalize on hard-float.
160 2002-03-05  Danny Smith  <dannysmith@users.sourceforge.net>
162         * gthr-win32.h (__GTHREAD_MUTEX_INIT_DEFAULT): Define.
164 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
166         * mklibgcc.in: Prepend a tab before .hidden, add $flags to gcc
167         -r command line.  Don't hide any symbols if not building
168         shared libgcc.
170 Tue Mar  5 18:31:27 CET 2002  Jan Hubicka  <jh@suse.cz>
172         * cfg.c (dump_flow_info): Warn about profile mismatches.
173         * cfgrtl.c (verify_flow_info): Few aditional sanity checks.
174         (purge_dead_edges): Remove REG_BR_PROB notes on simplejumps.
176 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
178         * expmed.c (emit_store_flag): Don't test BITS_PER_WORD * 2
179         wide volatile memory by parts.
181 2002-03-05  Jakub Jelinek  <jakub@redhat.com>
183         * ssa-ccp.c (ssa_ccp_substitute_constants): Don't crash if def
184         is NULL.
186 2002-03-05  Richard Henderson  <rth@redhat.com>
188         * rs6000.h (TOTAL_ALTIVEC_REGS): Fix off-by-one error.
190 2002-03-04  Geoffrey Keating  <geoffk@redhat.com>
192         * toplev.c (documented_lang_options): Document more
193         language-specific options.
194         * doc/invoke.texi (Warning Options): Correct documentation for
195         -Wno-multichar, -Wno-div-by-zero, and -Wsystem-headers.
196         * c-decl.c (c_decode_option): Use a table to handle warning options.
198 2002-03-05  Hans-Peter Nilsson  <hp@bitrange.com>
200         * config/mmix/mmix.h (ENCODE_SECTION_INFO): Pass on new second
201         parameter to mmix_encode_section_info.
202         (LINK_SPEC): Don't defsym __.MMIX.start..text if linking
203         relocatably.  Always produce ELF, not mmo if linking relocatably.
204         * config/mmix/mmix.c (mmix_encode_section_info): If new parameter
205         first is non-zero, don't add symbol prefix.
206         * config/mmix/mmix-protos.h (mmix_encode_section_info): Tweak
207         prototype accordingly.
209 2002-03-04  Krister Walfridsson  <cato@df.lth.se>
211         * config.gcc (*-*-netbsd*): Add t-slibgcc-elf-ver to tmake_file.
213 2002-03-05  Joseph S. Myers  <jsm28@cam.ac.uk>
215         * configure.in: Increase required makeinfo version to 4.1.
216         * configure: Regenerate.
218 2002-03-04  Geoffrey Keating  <geoffk@redhat.com>
220         * .cvsignore: Remove *.info* and genrtl*; these files are generated
221         elsewhere now.
223 2002-03-04  Joseph S. Myers  <jsm28@cam.ac.uk>
225         * doc/include/texinfo.tex: Update to version 2002-03-01.06.
226         * doc/invoke.texi: Fix @math uses.
228 Mon Mar  4 15:33:54 CET 2002  Jan Hubicka  <jh@suse.cz>
230         * toplev.c (rest_of_compilation): Cleanup CFG after dead jumptables
231         removal
233 2002-03-03  Aldy Hernandez  <aldyh@redhat.com>
235         * config.gcc (powerpc-*-eabialtivec*): Use t-ppcendian.
236         (powerpc-*-eabisimaltivec*): Same.
238         * config/rs6000/t-ppcendian: New.
240 2002-03-04  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
242         * c4x-protos.h, c4x.h, c4x.c, c4x.md: Add new functions
243         nonimmediate_src_operand and nonimmediate_lsrc_operand to
244         disallow ZERO_EXTEND with CONST_INT or CONST_DOUBLE.
246 2002-03-03  Richard Henderson  <rth@redhat.com>
248         * toplev.c (rest_of_decl_compilation): Revert last two changes.
250 2002-03-03  Zack Weinberg  <zack@codesourcery.com>
252         * emit-rtl.c, final.c, fold-const.c, gengenrtl.c, optabs.c,
253         print-tree.c, real.c, real.h, recog.c, rtl.c, simplify-rtx.c,
254         tree.c, config/m68k/m68k.c:
255         Remove all #ifndef REAL_ARITHMETIC blocks, make all #ifdef
256         REAL_ARITHMETIC blocks unconditional.  Delete some further
257         #ifdef blocks predicated on REAL_ARITHMETIC.
258         * flags.h, toplev.c: Delete remaining references to
259         flag_pretend_float.
261         * doc/invoke.texi: Remove documentation of -fpretend-float.
262         * doc/tm.texi: Describe the various REAL_* macros as provided by
263         real.h, not by the target configuration files.
265         * config/alpha/alpha.h, config/alpha/unicosmk.h, config/arm/arm.h,
266         config/avr/avr.h, config/c4x/c4x.h, config/convex/convex.h,
267         config/cris/cris.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
268         config/h8300/h8300.h, config/i370/i370.h, config/i386/i386.h,
269         config/i386/osf1elf.h, config/i960/i960.h, config/ia64/ia64.h,
270         config/m32r/m32r.h, config/m68hc11/m68hc11.h, config/m68k/dpx2.h,
271         config/m68k/linux-aout.h, config/m68k/linux.h, config/m68k/m68k.h,
272         config/m68k/sun3.h, config/m68k/vxm68k.h, config/mcore/mcore.h,
273         config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
274         config/mn10300/mn10300.h, config/pa/pa.h, config/pj/pj.h,
275         config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
276         config/sparc/freebsd.h, config/sparc/linux.h, config/sparc/linux64.h,
277         config/sparc/sol2.h, config/sparc/sparc.h, config/sparc/vxsim.h,
278         config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vax.h,
279         config/xtensa/xtensa.h:
280         Do not define, undefine, or mention in comments any of
281         REAL_ARITHMETIC, REAL_VALUE_ATOF, REAL_VALUE_HTOF,
282         REAL_VALUE_ISNAN, REAL_VALUE_ISINF,
283         REAL_VALUE_TO_TARGET_SINGLE, REAL_VALUE_TO_TARGET_DOUBLE,
284         REAL_VALUE_TO_TARGET_LONG_DOUBLE, REAL_VALUE_TO_DECIMAL,
285         REAL_VALUE_TYPE, REAL_VALUES_EQUAL, REAL_VALUES_LESS,
286         REAL_VALUE_LDEXP, REAL_VALUE_FIX, REAL_VALUE_UNSIGNED_FIX,
287         REAL_VALUE_RNDZINT, REAL_VALUE_UNSIGNED_RNDZINT,
288         REAL_INFINITY, REAL_VALUE_NEGATE, REAL_VALUE_TRUNCATE,
289         REAL_VALUE_TO_INT, or REAL_VALUE_FROM_INT.
291 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
293         * 1750a.h, a29k.h, alpha.h, arc.h, arm.h, avr.h, c4x.h, clipper.h,
294         convex.h, cris.h, d30v.h, dsp16xx.h, elxsi.h, fr30.h, h8300.h,
295         i370.h, i386.h, i860.h, i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h,
296         m88k.h, mcore.h, mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h,
297         pa.h, pdp11.h, pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h,
298         stormy16.h, v850.h, vax.h, we32k.h, xtensa.h (BITS_PER_WORD):
299         Delete.
300         * defaults.h (BITS_PER_WORD): Define.
301         * doc/tm.texi (BITS_PER_WORD): Document default value.
303         * 1750a.h, avr.h, convex.h, d30v.h, dsp16xx.h, fr30.h, ia64.h,
304         m68hc11.h, m88k.h, mips.h, pdp11.h, rs6000.h, sparc.c,
305         stormy16.h, xtensa.h, vmsdbgout.c (CHAR_TYPE_SIZE): Delete.
307 2002-03-03  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
309         * attribs.c (init_attributes, decl_attributes): Use ARRAY_SIZE in
310         lieu of explicit sizeof/sizeof.
311         * i386.c (override_options, ix86_init_mmx_sse_builtins,
312         ix86_expand_builtin): Likewise.
313         * mips.c (mips_add_gc_roots): Likewise.
314         * mmix.c (mmix_output_condition): Likewise.
315         * rs6000.c (rs6000_override_options, altivec_expand_builtin,
316         altivec_init_builtins): Likewise.
317         * sparc.c (mark_ultrasparc_pipeline_state): Likewise.
318         * cppexp.c (Nsuff, parse_number): Likewise.
319         * cppinit.c (builtin_array_end): Likewise.
320         * gcc.c (n_default_compilers, process_command): Likewise.
321         * genpreds.c (output_predicate_decls): Likewise.
322         * ggc-page.c (NUM_EXTRA_ORDERS): Likewise.
323         * lcm.c (N_ENTITIES): Likewise.
324         * stor-layout.c (set_sizetype): Likewise.
326 2002-03-03  Richard Henderson  <rth@redhat.com>
328         * toplev.c (rest_of_decl_compilation): Do not invoke make_decl_rtl
329         for types or labels.
331 2002-03-03  Richard Henderson  <rth@redhat.com>
333         * c-decl.c (start_decl): Initialized variables are not common.
335 2002-03-02  Per Bothner  <per@bothner.com>
337         * gcc.c (option_map):  Suport new --bootclasspath option.
338         --CLASSPATH is now just an alias for --classpath.
340 2002-03-02  Richard Henderson  <rth@redhat.com>
342         * config/i386/i386.h (ix86_expand_prologue): Do not emit pic register
343         load if "internal" visibility.
344         * doc/extend.texi: Document visibility meanings.
346 2002-03-02  Richard Henderson  <rth@redhat.com>
348         * config/i386/i386.h (ENCODE_SECTION_INFO): MODULE_LOCAL_P applies
349         to functions as well.
351 2002-03-02  Richard Henderson  <rth@redhat.com>
353         * attribs.c (handle_alias_attribute): Don't call assemble_alias.
354         (handle_visibility_attribute): Don't call assemble_visibility.
355         * toplev.c (rest_of_decl_compilation): Invoke make_decl_rtl even
356         without asmspec.  Invoke assemble_alias when needed.
357         * varasm.c (maybe_assemble_visibility): New.
358         (assemble_start_function, assemble_variable, assemble_alias): Use it.
360 2002-03-02  Richard Henderson  <rth@redhat.com>
362         * varasm.c (make_decl_rtl): Remove call to REDO_SECTION_INFO_P;
363         invoke ENCODE_SECTION_INFO with first call flag.
365         * config/darwin-protos.h, config/darwin.c, config/darwin.h,
366         config/a29k/a29k.h, config/alpha/alpha-protos.h, config/alpha/alpha.c,
367         config/alpha/alpha.h, config/arc/arc.h, config/arm/arm-protos.h,
368         config/arm/arm.h, config/arm/pe.c, config/arm/pe.h,
369         config/avr/avr-protos.h, config/avr/avr.c, config/avr/avr.h,
370         config/c4x/c4x-protos.h, config/c4x/c4x.c, config/c4x/c4x.h,
371         config/cris/cris-protos.h, config/cris/cris.c, config/cris/cris.h,
372         config/d30v/d30v.h, config/h8300/h8300.h, config/i370/i370.h,
373         config/i386/cygwin.h, config/i386/i386-interix.h, config/i386/i386.h,
374         config/i386/osfrose.h, config/i386/win32.h, config/i386/winnt.c,
375         config/ia64/ia64-protos.h, config/ia64/ia64.c, config/ia64/ia64.h,
376         config/m32r/m32r-protos.h, config/m32r/m32r.c, config/m32r/m32r.h,
377         config/m68hc11/m68hc11-protos.h, config/m68hc11/m68hc11.c,
378         config/m68hc11/m68hc11.h, config/m88k/m88k.h,
379         config/mcore/mcore-protos.h, config/mcore/mcore.c,
380         config/mcore/mcore.h, config/mips/mips.h, config/ns32k/ns32k.h,
381         config/pa/pa.h, config/romp/romp.h, config/rs6000/linux64.h,
382         config/rs6000/rs6000-protos.h, config/rs6000/rs6000.c,
383         config/rs6000/sysv4.h, config/rs6000/xcoff.h, config/s390/s390.h,
384         config/sh/sh.h, config/sparc/sparc.h,
385         config/stormy16/stormy16-protos.h, config/stormy16/stormy16.c,
386         config/stormy16/stormy16.h, config/v850/v850.h, config/vax/vms.h,
387         config/xtensa/xtensa.h, doc/tm.texi: ENCODE_SECTION_INFO now takes
388         FIRST argument.  As needed, examine it and do nothing.
390         * config/darwin.h, config/alpha/alpha.h, config/arm/pe.h,
391         config/i386/cygwin.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
392         config/mcore/mcore.h: Remove REDO_SECTION_INFO_P.
394         * config/arm/t-pe (pe.o): Add dependencies.
396 2002-03-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
398         * a29k.h, alpha.h, arc.h, arm.h, avr.h, clipper.h, convex.h,
399         cris.h, d30v.h, elxsi.h, fr30.h, h8300.h, i370.h, i386.h, i860.h,
400         i960.h, ia64.h, m32r.h, m68hc11.h, m68k.h, m88k.h, mcore.h,
401         mips.h, mmix.h, mn10200.h, mn10300.h, ns32k.h, pa.h, pdp11.h,
402         pj.h, romp.h, rs6000.h, s390.h, sh.h, sparc.h, stormy16.h, v850.h,
403         vax.h, we32k.h, xtensa.h: (BITS_PER_UNIT): Delete.
404         * defaults.h (BITS_PER_UNIT): Define.
405         * doc/tm.texi (BITS_PER_UNIT): Document default value.
407 2002-03-02  Kazu Hirata  <kazu@hxi.com>
409         * config/h8300/h8300-protos.h: Add a prototype for
410         compute_a_shift_length.
411         * config/h8300/h8300.c (h8300_asm_insn_count): New.
412         (compute_a_shift_length): Likewise.
413         (h8300_adjust_insn_length): Do not adjust insn length of shift
414         insns.
415         * config/h8300/h8300.md (anonymous shift patterns): Use
416         compute_a_shift_length.
418 Sat Mar  2 06:30:14 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
420         * config/sparc/sparc.c (sparc_initialize_trampoline): Use
421         trunc_int_for_mode.
423         * emit-rtl.c (offset_address): Call update_temp_slot_address.
425 2002-03-01  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
427         * Makefile.in (CRTSTUFF_CFLAGS): Add -fno-zero-initialized-in-bss.
428         * doc/invoke.texi (-fno-zero-initialized-in-bss): Document.
429         * flags.h (flag_zero_initialized_in_bss): Declare.
430         * toplev.c (flag_zero_initialized_in_bss): New flag.
431         (lang_independent_options): Add flag_zero_initialized_in_bss.
432         * tree.c (initializer_zerop): New function.
433         * tree.h (initializer_zerop): Declare.
434         * varasm.c (assemble_variable): If we can emit bss, put zero
435         initializers in the bss section.
437 2002-03-02  Alan Modra  <amodra@bigpond.net.au>
439         * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): AIX assembler doesn't
440         like more than one symbol per .weak directive.
442 2002-03-01  Richard Henderson  <rth@redhat.com>
444         * config/ia64/ia64.c (ia64_initial_elimination_offset): Do not
445         adjust argument_pointer by pretend_args_size.
446         (ia64_va_start): Adjust va_start address by -pretend_args_size.
448 2002-03-01  Kazu Hirata  <kazu@hxi.com>
450         * config/h8300/h8300.c (h8300_adjust_insn_length): Clean up.
452 Fri Mar  1 20:59:14 CET 2002  Jan Hubicka  <jh@suse.cz>
454         * toplev.c (rest_of_compilation): Delete dead jumptables before
455         loop.
456         * flow.c (delete_dead_jumptables): Make global.
457         * rtl.h (delete_dead_jumptables): Declare.
459 2002-03-01  David Edelsohn  <edelsohn@gnu.org>
461         * config/rs6000/rs6000.h (HANDLE_PRAGMA_PACK): Delete.
462         * config/rs6000/darwin.h (HANDLE_SYSV_PRAGMA): Define.
463         * config/rs6000/xcoff.h (COLLET_EXPORT_LIST): Delete.
465 2002-03-01  Kazu Hirata  <kazu@hxi.com>
467         * config/h8300/h8300-protos.h: Fix formatting.
468         * config/h8300/h8300.c: Likewise.
469         * config/h8300/h8300.h: Likewise.
471 2002-03-01  Kazu Hirata  <kazu@hxi.com>
473         * config/h8300/h8300.c (print_operand): Support 16-bit
474         constant addresses.
475         * config/h8300/h8300.h (TINY_CONSTANT_ADDRESS_P): New.
477 2002-02-28  Richard Henderson  <rth@redhat.com>
479         * expmed.c (store_bit_field): Prevent generation of CONCATs;
480         pun complex values as integers; use gen_lowpart instead of
481         gen_rtx_SUBREG.
482         (extract_bit_field): Likewise.
484 2002-03-01  Alan Modra  <amodra@bigpond.net.au>
485             David Edelsohn  <edelsohn@gnu.org>
487         * doc/tm.texi (ASM_WEAKEN_DECL): Document.
488         (ASM_WEAKEN_LABEL): Mention ASM_WEAKEN_DECL.
489         (SUPPORTS_WEAK): Likewise.
490         * output.h (add_weak): Add tree param.
491         * varasm.c (add_weak): Likewise.  Save decl.
492         (struct weak_syms): Add decl field.
493         (mark_weak_decls): New function.
494         (init_varasm_once): ggc_add_root mark_weak_decls.
495         (assemble_start_function): Use ASM_WEAKEN_DECL.
496         (assemble_variable): Likewise.
497         (assemble_alias): Likewise.
498         (declare_weak): Pass decl to add_weak.
499         (weak_finish): Use ASM_WEAKEN_DECL. Try to find decl.
500         (remove_from_pending_weak_list): Declare and define for
501         ASM_WEAKEN_DECL.
502         * c-pragma.c (handle_pragma_weak): Adjust add_weak call.
503         * c-pragma.h (HANDLE_PRAGMA_WEAK): Define if ASM_WEAKEN_DECL too.
504         * defaults.h (SUPPORTS_WEAK): Likewise.
505         * config/rs6000/linux64.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
506         .weak for code sym.  Do emit .size for descriptor sym.
507         (ASM_DECLARE_FUNCTION_SIZE): Define.
508         * config/rs6000/rs6000.h (ASM_WEAKEN_DECL): Define.
509         (ASM_OUTPUT_DEF_FROM_DECLS): Don't emit .weak here.  Don't output
510         .lglobl unless TARGET_XCOFF.  Formatting fixes.
511         * config/rs6000/xcoff.h (ASM_DECLARE_FUNCTION_NAME): Don't emit
512         .weak for code sym.
513         (HANDLE_PRAGMA_WEAK): Remove.
514         (ASM_WEAKEN_LABEL): Remove.
515         * config/rs6000/aix.h (HANDLE_SYSV_PRAGMA): Define.
517 2002-03-01  Jason Merrill  <jason@redhat.com>
519         * tree.h (TARGET_EXPR_SLOT, TARGET_EXPR_INITIAL): New macros.
520         (TARGET_EXPR_CLEANUP): New macro.
522 2002-02-28  Steve Ellcey  <sje@cup.hp.com>
524         * doc/rtl.texi (SUBREG_PROMOTED_UNSIGNED_P): Change definition
525         to take ptr_extend into account as third type of extension.
526         (SUBREG_PROMOTED_UNSIGNED_SET): Definition of new macro to set bit
527         fields used by SUBREG_PROMOTED_UNSIGNED_P.
528         * rtl.h (SUBREG_PROMOTED_UNSIGNED_SET): New macro.
529         (SUBREG_PROMOTED_UNSIGNED_P): Change to return -1 as well as 0 or 1.
530         * calls.c (precompute_arguments): Use new macro.
531         (expand_call): Ditto.
532         * combine.c (nonzero_bits): Ditto.
533         (record_promoted_value): Ditto.
534         * expr.c (store_expr): Ditto.
535         (expand_expr): Ditto.
536         * function.c (assign_parms): Ditto.
538 2002-02-28  Alexandre Oliva  <aoliva@redhat.com>
540         * gcc.c (init_gcc_specs): Get -static and -static-libgcc to
541         override -shared and -shared-libgcc.
543 2002-02-28  David O'Brien  <obrien@FreeBSD.org>
545         * config.gcc (sparc64-*-freebsd): Explicitly accept a cpu specification
546         of "ultrasparc".
547         * config/sparc/freebsd.h: Do not use MASK_FASTER_STRUCTS.  It appears
548         to be broken.
550 2002-02-28  Richard Henderson  <rth@redhat.com>
552         * config/ia64/ia64.c (ia64_adjust_cost): All non-MM consumers have
553         4 cycle latency from MM producers.
554         (ia64_internal_sched_reorder): Likewise with pipeline flush.
556 2002-02-28  Jakub Jelinek  <jakub@redhat.com>
558         * mklibgcc.in: Don't use GNU make extension.
560 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
562         * c-parse.in (STATIC): New terminal.
563         (scspec): New non-terminal.  Update productions accordingly.
564         (program): Remove bogus ifc / end ifc.
565         (array_declarator): Simplify production using STATIC.
567 2002-02-28  Jim Meyering  <meyering@lucent.com>
569         * cpplex.c (cpp_parse_escape): Restore mistakenly-removed code:
570         \a still means TARGET_BELL.
572 2002-02-28  Richard Henderson  <rth@redhat.com>
574         * haifa-sched.c (sched_emit_insn): New.
575         (schedule_block): Use last_scheduled_insn to track last insn.
576         * sched-int.h (sched_emit_insn): Prototype.
577         * config/ia64/ia64.c (last_issued): Remove.
578         (ia64_variable_issue): Don't set it.
579         (nop_cycles_until): Use sched_emit_insn.
581 2002-02-28  Andrew MacLeod  <amacleod@redhat.com>
583         * config/sparc/sparc.c (sparc64_initialize_trampoline): Generate sign
584         extended constants.
586 2002-02-28  Kazu Hirata  <kazu@hxi.com>
588         * config/h8300/h8300.c: Fix formatting.
589         * config/h8300/h8300.h: Likewise.
591 2002-02-28  Marek Michalkiewicz  <marekm@amelek.gda.pl>
593         * config/avr/avr.c (avr_hard_regno_mode_ok): Do not allow r29
594         which may overwrite the high byte of the frame pointer.
596 2002-02-28  Bo Thorsen  <bo@suse.de>
598         * config/i386/linux64.h (LINK_SPEC): Fix 32/64 bit compilation.
599         (STARTFILE_SPEC): Add 64 bit files.
600         (ENDFILE_SPEC): Likewise.
602 2002-02-28  Jason Merrill  <jason@redhat.com>
604         * c-decl.c (finish_function): Only warn about missing return
605         statement with -Wreturn-type.
607 Don Feb 28 11:24:30 CET 2002  Jan Hubicka  <jh@suse.cz>
609         * cfgrtl.c (purge_dead_edges): Fix handling of EH edges.
611         * i386.h (CONDITIONAL_REGISTER_USAGE): Do not write to
612         PIC_OFFSET_TABLE_REGNUM when it is INVALID_REGNUM
614 Don Feb 28 11:07:36 CET 2002  Jan Hubicka  <jh@suse.cz>
616         * basic-block.h (BB_REACHABLE): Renumber.
617         (BB_DIRTY, BB_NEW): New flags.
618         (clear_bb_flags): Declare.
619         (update_life_info_in_dirty_blocks): Declare.
620         * cfg.c (clear_bb_flags): New function.
621         * cfgrtl.c (create_basic_block_structure): Set flags to BB_NEW.
622         * emit-rtl.c (add_insn_after, add_insn_before, remove_insn,
623         reorder_insns, emit_insn_after): Mark block as dirty.
624         * flow.c (update_life_info): Fix clearing of PROP_LOG_LINKS.
625         (update_life_info_in_dirty_blocks): New function.
626         * recog.c (apply_change_group): Dirtify block.
628         * cse.c (cse_insn): Reorder emitting of jump insn to keep
629         cfg consistent.
630         * gcse.c (delete_null_pointer_checks): Likewise.
632         * toplev.c (dump_file_index): Move cse2 after bp,
633         add DFI_null
634         (dump_file_info): Similary.
635         (rest_of_compilation): Avoid most of CFG rebuilds;
636         do first if converision after null pointer checks, do cse2
637         after branch prediction; avoid full liveness rebuild after
638         initializing subregs.
639         * invoke.texi (-d options): Document -du, renumber.
641         * cfgcleanup.c (bb_flags): Remove BB_UPDATE_LIFE.
642         (notice_new_block): Do not set BB_UPDATE_LIFE.
643         (try_forward_edges, merge_blocks_move_predecessor_nojumps,
644          merge_blocks_move_successor_nojumps, merge_blocks,
645          try_crossjump_to_edge): Likewise.
646         (try_optimize_cfg): Likewise; use update_life_info_in_dirty_blocks.
647         * cfgrtl.c (merge_blocks_nomove): Copy b's flags to a.
648         * ifcvt.c (SET_UPDATE_LIFE, UPDATE_LIFE): Kill.
649         (merge_of_block): Do not use life_data_ok.
650         (find_if_case_1): Do not use SET_UPDATE_LIFE.
651         (if_convert): Use BB_DIRTY mechanizm to update life.
652         * lcm.c (optimize_mode_switching): Update
653         update_life_info_in_dirty_blocks
655 2002-02-28  Neil Booth  <neil@daikokuya.demon.co.uk>
657         * Makefile.in (integrate.o): Update.
658         * c-decl.c (copy_lang_decl): Rename.
659         * c-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
660         * integrate.c: Include langhooks.h.
661         (copy_decl_for_inlining): Update to use langhook.
662         * langhooks-def.h (lhd_do_nothing_t,
663         LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): New.
664         (LANG_HOOKS_INITIALIZER): Update.
665         * langhooks.c (lhd_do_nothing_t): New.
666         * langhooks.h (struct lang_hooks): Add dup_lang_specific_decl.
667         * tree.h (copy_lang_decl): Remove.
668 objc:
669         * objc-lang.c (LANG_HOOKS_DUP_LANG_SPECIFIC_DECL): Redefine.
671 2002-02-27  Andrew MacLeod  <amacleod@redhat.com>
673         * dwarf2out.c (stack_adjust_offset): Add support for POST_INC,
674         POST_DEC, and POST_MODIFY.
676 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
678         * c-typeck.c (digest_init): Remove unused parameter; all
679         callers changed.
681 2002-02-27  Geoffrey Keating  <geoffk@redhat.com>
683         * expmed.c (expand_shift): Correctly test for low part of a
684         subreg.
686 2002-02-27  Ulrich Weigand  <uweigand@de.ibm.com>
688         * config/s390/s390.c (s390_chunkify_pool): Do not confuse
689         insn UIDs with insn addresses.
691 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
693         * c-common.c, c-common.h, c-decl.c, c-lex.c, c-parse.in,
694         c-tree.h, c-typeck.c, cppexp.c, cpplex.c, cpplib.c, cpplib.h,
695         cppmacro.c, objc/lang-specs.h, objc/objc-act.c,
696         builtin-types.def, builtins.def, dwarf2out.c, dwarfout.c,
697         gcc.c, toplev.c: Delete code implementing -traditional mode.
699         * doc/bugreport.texi, doc/cpp.texi, doc/extend.texi,
700         doc/invoke.texi, doc/standards.texi, doc/trouble.texi:
701         Document removal of -traditional mode for compilation, and
702         remove documentation only relevant to that mode.
704         * config/nextstep.h, config/ptx4.h, config/svr4.h,
705         config/convex/convex.h, config/d30v/d30v.h,
706         config/i386/dgux.h, config/i386/osf1elf.h,
707         config/i386/osfelf.h, config/i386/osfrose.h,
708         config/i386/sco5.h, config/i386/sol2.h, config/m68k/a-ux.h,
709         config/m68k/hp310.h, config/m88k/dgux.h,
710         config/m88k/dguxbcs.h, config/m88k/luna.h, config/m88k/m88k.c,
711         config/m88k/m88k.h, config/m88k/openbsd.h,
712         config/mips/abi64.h, config/mips/osfrose.h,
713         config/mips/svr4-5.h, config/mips/svr4-t.h,
714         config/sparc/sol2-sld-64.h, config/sparc/sol2.h,
715         config/stormy16/stormy16.h: Remove all references to
716         -traditional from target specs.  Delete all mention of the
717         no-longer-necessary TRADITIONAL_RETURN_FLOAT macro.  Also
718         delete a couple of commented-out definitions of
719         DOLLARS_IN_IDENTIFIERS, with (incorrect) commentary referring
720         to -traditional.
722         * system.h: Poison TRADITIONAL_RETURN_FLOAT.
723         * doc/tm.texi: Remove mention of TRADITIONAL_RETURN_FLOAT macro.
725 2002-02-27  Zack Weinberg  <zack@codesourcery.com>
727         * mklibgcc.in: Don't use \n in a line subject to
728         interpretation by echo.
730 2002-02-27  Graham Stott  <grahams@redhat.com>
732         * config/rs6000/rs6000.h (ASM_OUTPUT_DEF_FROM_DELC):
733         Constify NAME.
735         * loop.c (prescan_loop): Handle PARALLEL.
737         * unroll.c (loop_iterations): Return 0 if the add_val for
738         a BIV is REG.
740         * final.c (output_operand_lossage): Constify PFX_STR.
742         * df.c (df_insn_refs_record): Use XEXP (x, 0) for USE.
744 Wed Feb 27 10:45:19 CET 2002  Jan Hubicka  <jh@suse.cz>
746         * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Remove.
747         * x86-64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Allways define.
749 Wed Feb 27 10:39:20 CET 2002  Jan Hubicka  <jh@suse.cz>
751         * linux64.h (ASM_OUTPUT_MAX_SKIP_ALIGN): Define.
753 2002-02-27  Neil Booth  <neil@daikokuya.demon.co.uk>
755         * cpplex.c (_cpp_lex_token): Handle directives in macro
756         arguments.
757         * cpplib.c (_cpp_handle_directive): Save and restore state
758         if parsing macro args when entering a directive.
759         * cppmacro.c (collect_args): No need to handle directives
760         in macro arguments.
761         (enter_macro_context, replace_args): Use the original macro
762         definition in case it was redefined whilst collecting arguments.
763 doc:
764         * cpp.texi: Update.
766 2002-02-26  David Edelsohn  <edelsohn@gnu.org>
768         * config/rs6000/aix43.h (THREAD_MODEL_SPEC): Delete.
769         * config/rs6000/aix51.h (THREAD_MODEL_SPEC): Delete.
770         * config/rs6000/rs6000.c (rs6000_return_addr): Use efficient
771         method on AIX.
772         * config/rs6000/rs6000.md (movsi_low): Use gpc_reg_operand.
773         (movsi_low_st, movdf_low, movdf_low_st, movsf_low, movsf_low_st): Same.
774         (load_toc_v4_PIC_2): Same.
776 2002-02-26  Alan Modra  <amodra@bigpond.net.au>
778         * config/rs6000/rs6000.md (load_toc_aix_di): Handle TARGET_RELOCATABLE.
780 2002-02-26  Richard Henderson  <rth@redhat.com>
782         * config/alpha/alpha.md (ashldi_se): Re-enable.
784 2002-02-26  Richard Henderson  <rth@redhat.com>
786         * config/alpha/alpha.c (alpha_encode_section_info): Examine
787         MODULE_LOCAL_P; improve commentary.
789 2002-02-26  Zack Weinberg  <zack@codesourcery.com>
791         * doc/cpp.texi: Clarify documentation of relationship between
792         #line and #include.
794 2002-02-26  Kazu Hirata  <kazu@hxi.com>
796         * config/h8300/h8300-protos.h: Update the prototype for
797         compute_logical_op_length.  Add the prototype for
798         compute_logical_op_cc.
799         * config/h8300/h8300.c (compute_logical_op_length): Figure out
800         code from operands.
801         (compute_logical_op_cc): New.
802         * config/h8300/h8300.md: Combine all the logical op patterns
803         in HImode and SImode.  Use compute_logical_op_cc.
805 2002-02-26  Kelley Cook  <kelleycook@comcast.net>
807         * config/i386/i386.c (print_operand): Don't append ATT-style
808         length suffixs to x87 opcodes when in Intel mode.
810 2002-02-26  Ryan T. Sammartino <ryants@shaw.ca>
812         * emit-rtl.c (gen_const_vector_0): Remove TYPE argument.
813         (init_emit_once): Update calls.
814         * fixinc/gnu-regex.c (_GNU_SOURCE): Remove.
815         (init_syntax_once): Prototype.
817 2002-02-26  John David Anglin  <dave@hiauly1.hia.nrc.ca>
819         * pa-linux.h (LIB_SPEC): Update definition.
820         * pa32-linux.h (LINK_COMMAND_SPEC): Delete.
822 2002-02-26  Richard Henderson  <rth@redhat.com>
824         * config/ia64/ia64.c (nop_cycles_until): Do init_insn_group_barriers
825         if we emitted a stop bit.
827 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
829         * configure.in (libgcc_visibility): Substitute.
830         * configure: Rebuilt.
831         * mklibgcc.in: If libgcc_visibility = yes, make libgcc.a global
832         defined symbols .hidden.
834 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
836         * attribs.c (c_common_attribute_table): Add visibility.
837         (handle_visibility_attribute): New function.
838         * varasm.c (assemble_visibility): New function.
839         * output.h (assemble_visibility): Add prototype.
840         * tree.h (MODULE_LOCAL_P): Define.
841         * crtstuff.c (__dso_handle): Use visibility attribute.
842         * config/i386/i386.h (ENCODE_SECTION_INFO): Set SYMBOL_REF_FLAG
843         for MODULE_LOCAL_P symbols too.
844         * config/ia64/ia64.c (ia64_encode_section_info): Handle
845         MODULE_LOCAL_P symbols the same way as local symbols.
846         Add SDATA_NAME_FLAG_CHAR even if decl was explicitely forced
847         into .sdata/.sbss by the user.
848         * doc/extend.texi (Function Attributes): Document visibility
849         attribute.
851 2002-02-26  Jakub Jelinek  <jakub@redhat.com>
853         PR debug/5770
854         * dwarf2out.c (rtl_for_decl_location): Return CONST_STRING for
855         STRING_CST initializer spanning the whole variable without
856         embedded zeros.
857         If expand_expr returned MEM, don't use it.
859 2002-02-26  Alexandre Oliva  <aoliva@redhat.com>
861         * dwarf2out.c (gen_inlined_subroutine_die): If block is abstract,
862         generate a die for the lexical block.
864 2002-02-26  Kazu Hirata  <kazu@hxi.com>
866         * config/h8300/h8300-protos.h: Add a prototype for
867         compute_logical_op_length.
868         * config/h8300/h8300.c (compute_logical_op_length): New.
869         * config/h8300/h8300.md (anonymous logical patterns): Use
870         compute_logical_op_length for length.
872 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
874         * dwarf2out.c (modified_type_die): Do not call type_main_variant
875         for vectors.
876         (gen_type_die): Same.
878         * attribs.c (handle_vector_size_attribute): Set debug information.
880 2002-02-26  Daniel Egger  <degger@fhm.edu>
882         * config/rs6000/rs6000.md: Swap define_insn attributes to
883         fix incorrect generation of merge high instructions instead
884         of merge low.
886 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
888         * c-typeck.c (really_start_incremental_init): Use
889         bitsize_zero_node for vectors.
891 2002-02-26  Aldy Hernandez  <aldyh@redhat.com>
893         * config/rs6000/rs6000.md (get_vrsave_internal): Fix typo.
894         ("*set_vrsave_internal"): Same.
896 2002-02-25  Richard Henderson  <rth@redhat.com>
898         * expr.c (expand_expr) [MULT_EXPR]: Do not apply distributive law
899         in EXPAND_SUM case.  Use host_integerp/tree_low_cst.
901 2002-02-25  Jakub Jelinek  <jakub@redhat.com>
903         PR target/5755
904         * config/i386/i386.c (ix86_return_pops_args): Only pop
905         fake structure return argument if it was passed on the stack.
907 2002-02-25  Jason Merrill  <jason@redhat.com>
909         * attribs.c (decl_attributes): Also re-layout PARM_DECL and
910         RESULT_DECL.
912 2002-02-25  Alexandre Oliva  <aoliva@redhat.com>
914         * gcc.c (init_gcc_specs): Get -shared-libgcc along with -shared to
915         link with shared_name only.
916         * doc/invoke.texi (Link Options): Document new behavior.
918 2002-02-25  Aldy Hernandez  <aldyh@redhat.com>
920         * c-typeck.c (push_init_level): Handle vectors.
922 2002-02-25  Alexandre Oliva  <aoliva@redhat.com>
924         * config/sparc/sparc.c (const64_high_operand): Zero-extend
925         operands of SPARC_SETHI_P.
926         (input_operand): Likewise.
927         (sparc_emit_set_const32): Likewise.
928         * config/sparc/sparc.h (SPARC_SETHI_P): Disregard TARGET_ARCH64.
929         (SPARC_SETHI32_P): Zero-extend operand from 32 bits.
930         (CONST_OK_FOR_LETTER_P): Use SETHI32 for `K'.  Add `N' as SETHI.
931         * config/sparc/sparc.md (movdi_insn_sp64_novis): Use `N'.
932         (movdi_insn_sp64_vis): Likewise.
933         (movdi split, movdf split): Use SETHI32.
934         * doc/md.texi: Document SPARC constraints L, M and N.
936 2002-02-25  Aldy Hernandez  <aldyh@redhat.com>
938         * config/rs6000/rs6000.md ("get_vrsave_internal"): New.
939         ("*set_vrsave_internal"): use mfspr for Darwin.
941         * config/rs6000/rs6000.c (rs6000_emit_prologue): Call
942         gen_get_vrsave_internal.
944 Sun Feb 24 16:38:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
946         * optabs.c (widen_operand): Properly handle CONST_INT for NO_EXTEND.
948 2002-02-24  Neil Booth  <neil@daikokuya.demon.co.uk>
950         * cpplex.c (cpp_interpret_charconst): Get signedness or
951         otherwise of wide character constants correct.
952         * cppexp.c (lex): Get signedness of wide charconsts correct.
954 Sun Feb 24 07:41:31 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
956         * optabs.c (widen_operand): Only call convert_modes for
957         promoted SUBREG if signedness matches.
958         * config/alpha/alpha.md (*addsi_se2, *subsi_se2): New patterns.
960 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
962         * cpplib.c (glue_header_name): Use local buffer to build up
963         header name.
965 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
967         * doc/cpp.texi, doc/invoke.texi: Update documentation for -MM.
969 2002-02-23  Kazu Hirata  <kazu@hxi.com>
971         * config/h8300/h8300.c (output_simode_bld): Handle H8/300 and
972         H8/300[HS] separately.
973         * config/h8300/h8300.md: Remove the early clobber constraint
974         from bit field patterns.
976 2002-02-23  Kazu Hirata  <kazu@hxi.com>
978         * config/h8300/h8300.md (mulqihi3): Tighten predicates to
979         register_operand.
980         (mulhisi3): Likewise.
981         (umulqisi3): Likewise.
982         (umulhisi3): Likewise.
984 2002-02-23  Neil Booth  <neil@daikokuya.demon.co.uk>
986         * cppinit.c (output_deps): Correct test for stdout output.
987         (init_dependency_output): Cure warning.
989 Sat Feb 23 08:42:47 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
991         * expr.c (store_expr): When converting expression to promoted
992         equivalent type, allow using SUBREG_REG of TARGET as the target
993         of the expansion of EXP.
994         * loop.c (basic_induction_var, case SUBREG): Always look inside.
995         * config/alpha/alpha.c (rtx_equiv_function_matters): Delete decl.
996         (alpha_emit_set_const): Handle SImode when can't make new pseudos.
997         (alpha_emit_set_const_1, alpha_sa_mask): Use no_new_pseudos.
998         * config/alpha/alpha.md (addsi3, subsi3): Don't use if optimizing.
1000 2002-02-23  Joseph S. Myers  <jsm28@cam.ac.uk>
1002         * doc/contribute.texi, doc/extend.texi, doc/install.texi,
1003         doc/invoke.texi, doc/md.texi, doc/passes.texi, doc/rtl.texi,
1004         doc/standards.texi, doc/tm.texi: Remove trailing whitespace.
1006 2002-02-23  Jakub Jelinek  <jakub@redhat.com>
1008         PR optimization/5747
1009         * loop.c (scan_loop): Update reg info if move_movables created new
1010         pseudos.
1012 2002-02-23  David Edelsohn  <edelsohn@gnu.org>
1014         * gcc.c (init_gcc_spec): Revert last change.
1016 2002-02-23  David Edelsohn  <edelsohn@gnu.org>
1018         * config/rs6000/rs6000.md (load_toc_aix_{si,di}): Use
1019         gpc_reg_operand constraint.
1021 2002-02-23  Alan Modra  <amodra@bigpond.net.au>
1023         * config/rs6000/rs6000.c (num_insns_constant): Fix formatting.
1024         Simplify comparison of `low'.
1025         (add_operand): Fix formatting.
1026         (non_add_cint_operand): Use CONST_OK_FOR_LETTER_P.
1027         (mask_operand): Disallow mask to wrap in 64-bit mode.
1028         (rs6000_stack_info): Remove redundant test setting push_p.
1029         (output_toc): Fix formatting.
1030         * config/rs6000/rs6000.md (boolsi3, boolcsi3 splitters): Use
1031         cc_reg_not_cr0_operand constraint.
1032         (booldi3, boolcdi3 splitters): Same.
1034 2002-02-23  Aldy Hernandez  <aldyh@redhat.com>
1036         * config/rs6000/altivec.h: Add extra level of parentheses on casts.
1038 2002-02-22  David Edelsohn  <edelsohn@gnu.org>
1040         * gcc.c (init_gcc_spec): Do not link with static libgcc.a if
1041         gcc invoked with -shared-libgcc.
1043 2002-02-22  Jakub Jelinek  <jakub@redhat.com>
1045         PR c++/5748
1046         * stmt.c (expand_anon_union_decl): Set TREE_USED on the anon union
1047         decl if any of elements was TREE_USED.
1049 2002-02-22  Alexandre Oliva  <aoliva@redhat.com>
1051         * config/sparc/sol2.h: Don't include sys/mman.h.
1052         * config/sparc/sparc.c (arith_operand): Use SMALL_INT32.
1053         (arith_4096_operand): Don't throw high bits away.
1054         (const64_operand): Take sign extension of CONST_INTs into account.
1055         (const64_high_operand, sparc_emit_set_const32): Likewise.
1056         (GEN_HIGHINT64): Likewise.
1057         (sparc_emit_set_const64_quick1): Likewise.
1058         (const64_is_2insns): Likewise.
1059         (print_operand): Use trunc_int_for_mode for sign extension.
1060         * config/sparc/sparc.h (SMALL_INT32): Likewise.
1061         * config/sparc/sparc.md (movqi): Sign-extend CONST_DOUBLE
1062         chars.  Assume CONST_INT is already properly sign-extended.
1063         (movdi split): Sign-extend each SImode part.
1064         (andsi3 split): Don't mask high bits off, so that result
1065         remains properly sign-extend.
1066         (iorsi3 split): Likewise.
1067         (xorsi3 split): Likewise.
1069 2002-02-22  Richard Sandiford  <rsandifo@redhat.com>
1071         * fold-const.c (fold): Fix typo in comments.
1073 2002-02-21  Diego Novillo  <dnovillo@redhat.com>
1075         * Makefile.in (langhooks.o): Update dependencies.
1077 2002-02-21  Diego Novillo  <dnovillo@redhat.com>
1079         * langhooks.c: Include flags.h.
1081 2002-02-21  Aldy Hernandez  <aldyh@redhat.com>
1083         * testsuite/gcc.dg/attr-alwaysinline.c: New.
1085         * c-common.c (c_common_post_options): Set inline trees by
1086         default.
1088         * doc/extend.texi (Function Attributes): Document always_inline
1089         attribute.
1090         Update documentation about inlining when not optimizing.
1092         * cp/decl.c (duplicate_decls): Merge always_inline attribute.
1094         * cp/tree.c (cp_cannot_inline_tree_fn): Do not inline at -O0
1095         unless DECL_ALWAYS_INLINE.
1097         * c-objc-common.c (c_cannot_inline_tree_fn): Do not inline at -O0
1098         unless DECL_ALWAYS_INLINE.
1099         (c_disregard_inline_limits): Disregard if always_inline set.
1101         * langhooks.c (lhd_tree_inlining_disregard_inline_limits):
1102         Disregard if always_inline set.
1103         (lhd_tree_inlining_cannot_inline_tree_fn): Do not inline at -O0
1104         unless DECL_ALWAYS_INLINE.
1106         * attribs.c (handle_always_inline_attribute): New.
1107         (c_common_attribute_table): Add always_inline.
1109         * config/rs6000/altivec.h: Add prototypes for builtins
1110         requiring the always_inline attribute.
1112 2002-02-21  Eric Christopher  <echristo@redhat.com>
1114         * expmed.c (store_bit_field): Try to simplify the subreg
1115         before generating a new one when when the mode size of
1116         value is less than maxmode.
1118 2002-02-21  Richard Henderson  <rth@redhat.com>
1120         * emit-rtl.c (offset_address): Use simplify_gen_binary rather
1121         than gen_rtx_PLUS to form the sum.
1122         * explow.c (force_reg): Rearrange to not allocate new pseudo
1123         when force_operand returns a register.
1124         * expr.c (expand_assignment): Allow offset_rtx expansion to
1125         return a sum.  Do not force addresses into registers.
1126         (expand_expr): Likewise.
1127         * simplify-rtx.c (simplify_gen_binary): Use simplify_plus_minus
1128         to canonicalize arithmetic that didn't simpify.
1129         (simplify_plus_minus): New argument force; update
1130         all callers.  Don't split CONST unless we can do something with it,
1131         and wouldn't lose the constness of the operands.
1133         * config/i386/i386.c (legitimize_pic_address): Recognize UNSPECs
1134         that we generated earlier.
1136 2002-02-21  Tom Tromey  <tromey@redhat.com>
1138         * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
1139         (output_line_info): Use constant `1', with a long explanatory
1140         comment.
1141         * system.h (DWARF_LINE_MIN_INSTR_LENGTH): Poison.
1143 Thu Feb 21 22:43:44 2002  J"orn Rennecke <joern.rennecke@superh.com>
1145         * jump.c (redirect_jump): If old label has no UID, don't try to
1146         delete it.
1148 Thu Feb 21 21:17:21 2002  J"orn Rennecke <joern.rennecke@superh.com>
1150         * sh.md (insv): Provide byte offsets for gen_rtx_SUBREG.
1151         If input is constant, do shifts at compile time.
1153 2002-02-21  Joseph S. Myers  <jsm28@cam.ac.uk>
1155         * doc/extend.texi: Fix some more overfull hboxes.
1157 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
1159         PR optimization/4994
1160         * config/i386/i386.md (movsi_1, movsf_1): Support MMX -> MMX
1161         register moves.
1163 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
1165         PR c++/4574
1166         * expr.h (expand_and): Add mode argument.
1167         * expmed.c (expand_and): Add mode argument.
1168         (expand_mult_highpart_adjust, emit_store_flag): Adjust callers.
1169         * expr.c (store_field, expand_expr, do_store_flag): Likewise.
1170         * except.c (expand_builtin_extract_return_addr): Likewise.
1171         * config/alpha/alpha.c (alpha_initialize_trampoline): Likewise.
1172         * config/sparc/sparc.c (sparc_initialize_trampoline): Likewise.
1173         * config/c4x/c4x.h (INITIALIZE_TRAMPOLINE): Likewise.
1174         Use GEN_INT (x) instead of gen_rtx (CONST_INT, VOIDmode, x).
1175         * config/c4x/c4x.md: Use GEN_INT (x) instead of
1176         gen_rtx (CONST_INT, VOIDmode, x).
1178 2002-02-21  Jakub Jelinek  <jakub@redhat.com>
1180         PR c/4697:
1181         * stmt.c (warn_if_unused_value): Move side effects test once more.
1183 2002-02-20  Torbjorn Granlund  <tege@swox.com>
1185         * config/avr/avr.md: Add more patterns for mized-mode add and subtract
1186         (addsi3_zero_extend, subhi3_zero_extend1, subsi3_zero_extend).
1188 Thu Feb 21 16:20:46 2002  Alexandre Oliva  <aoliva@redhat.com>
1190         * rtlanal.c (replace_rtx): Don't make a CONST_INT the operand of
1191         SUBREG or ZERO_EXTEND.
1193 Thu Feb 21 15:35:46 2002  J"orn Rennecke <joern.rennecke@superh.com>
1195         * sh.h (current_function_anonymous_args): Remove.
1196         (SETUP_INCOMING_VARARGS): Don't set it - just check that one
1197         of current_function_varargs and current_function_stdarg is set.
1198         * sh.c (sh_expand_prologue): Check current_function_varargs /
1199         current_function_stdarg / TARGET_SH5 instead of
1200         current_function_anonymous_args.
1202         * sh64.h (TARGET_VERSION): Define.
1204 2002-02-20  David Edelsohn  <edelsohn@gnu.org>
1206         * config/rs6000/rs6000.h (EPILOGUE_USES): Conditionalize
1207         VRSAVE_REGNO on TARGET_ALTIVEC.
1209 2002-02-20  Alan Modra  <amodra@bigpond.net.au>
1211         * config/rs6000/rs6000.c (includes_lshift_p): Mask irrelevant
1212         bits of SImode const_int.
1213         (includes_rshift_p): Likewise.
1214         (print_operand): Call mask_operand and mask64_operand with correct
1215         mode.
1216         (rs6000_output_function_epilogue): Pad traceback table to word.
1217         * config/rs6000/rs6000.h (MASK_64BIT): Correct comment.
1218         (EXTRA_CONSTRAINT, 'S' and 'T'): Call mask_operand and
1219         mask64_operand with correct mode.
1220         (FUNCTION_ARG_REGNO_P): Correct parentheses.
1222 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1224         PR debug/4461
1225         * varasm.c (get_pool_constant_mark): New.
1226         * rtl.h (get_pool_constant_mark): Add prototype.
1227         * dwarf2out.c (mem_loc_descriptor): A pool constant cannot
1228         be represented if it has not been output.
1230 2002-02-20  Alexandre Oliva  <aoliva@redhat.com>
1232         * combine.c (do_SUBST): Sanity check substitutions of
1233         CONST_INTs, and reject them in SUBREGs and ZERO_EXTENDs.
1234         (subst): Simplify SUBREG or ZERO_EXTEND instead of SUBSTing a
1235         CONST_INT into its operand.
1236         (known_cond): Likewise, for ZERO_EXTEND.
1237         * simplify-rtx.c (simplify_unary_operation): Fix condition to
1238         allow for simplification of wide modes.  Reject CONST_INTs in
1239         ZERO_EXTEND when their actual mode is not given.
1241 2002-02-20  Alexandre Oliva  <aoliva@redhat.com>
1243         * c-decl.c (pushdecl): If no global declaration is found for an
1244         extern declaration in block scope, try a limbo one.
1246 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1248         PR c++/4401
1249         * c-common.c (pointer_int_sum): Moved from...
1250         * c-typeck.c (pointer_int_sum): ...here.
1251         * c-common.h (pointer_int_sum): Add prototype.
1253 2002-02-20  Jakub Jelinek  <jakub@redhat.com>
1255         PR c++/5713
1256         * c-decl.c (duplicate_decls): Return 0 if issued error about
1257         redeclaration.
1259 2002-02-20  Roger Sayle  <roger@eyesopen.com>
1260             Jakub Jelinek  <jakub@redhat.com>
1262         PR c/4389
1263         * tree.c (host_integerp): Ensure that the constant integer is
1264         representable in a HOST_WIDE_INT or an unsigned HOST_WIDE_INT
1265         when pos is zero or non-zero respectively.  Clarify comment.
1266         * c-format.c (check_format_info_recurse): Fix host_integerp
1267         usage; the pos argument should be zero when assigning to a
1268         signed HOST_WIDE_INT.
1270 2002-02-20  Richard Henderson  <rth@redhat.com>
1272         * config/i386/i386.c (ix86_expand_vector_move): Use the mode
1273         of the operand, rather than assuming TImode.
1274         (ix86_expand_binop_builtin): Cope with commutative patterns
1275         using nonimmediate_operand for both operands.
1276         (ix86_expand_timode_binop_builtin): Likewise.
1277         (ix86_expand_store_builtin): Validate operand 1.
1278         (ix86_expand_unop1_builtin): Likewise.
1280 2002-02-20  Philip Blundell  <philb@gnu.org>
1282         PR 5705
1283         * config/arm/arm.h (HARD_REGNO_RENAME_OK): New macro.
1285 2002-02-20  Richard Henderson  <rth@redhat.com>
1287         PR c/5615
1288         * expr.h (ARGS_SIZE_TREE): Convert size.var to ssizetype.
1290 2002-02-20  Tom Tromey  <tromey@redhat.com>
1292         * config/fr30/fr30.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
1293         * config/sh/sh.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
1294         * config/pj/pj.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
1295         * config/cris/cris.h (DWARF_LINE_MIN_INSTR_LENGTH): Removed.
1296         * dwarf2out.c (DWARF_LINE_MIN_INSTR_LENGTH): Define
1297         unconditionally.
1299 Wed Feb 20 00:03:25 EST 2002 Alan Matsuoka <alanm@redhat.com>
1301         * config/rs6000/rs6000.h (LEGITIMATE_OFFSET_ADDRESS_P): Look
1302           for (const_int 0) in X not just INTVAL.
1304 2002-02-20  Joseph S. Myers  <jsm28@cam.ac.uk>
1306         * doc/extend.texi: Avoid or reduce overfull hboxes.
1308 2002-02-20  Diego Novillo  <dnovillo@redhat.com>
1310         * expmed.c (store_bit_field): Do not store bit fields using SUBREG
1311         operations if the field does not start at a mode boundary.
1313 2001-02-20      Joel Sherrill <joel@OARcorp.com>
1315         * config/a29k/rtems.h, config/arm/rtems-elf.h, config/h8300/rtems.h,
1316         config/mips/rtems.h: Use new style of -Asystem= rather than -Asystem().
1317         Also done for -Acpu and -Amachine.
1319 2002-02-20  Neil Booth  <neil@daikokuya.demon.co.uk>
1321         * cppinit.c (init_dependency_output): Take deps output file
1322         from -o if none given with -MF.  Suppress normal output.
1323         * gcc.c (cpp_unique_options): Have -M and -MM imply -E.
1324         * doc/cpp.texi, doc/invoke.texi: Update.
1326 2002-02-19  Zack Weinberg  <zack@codesourcery.com>
1328         * toplev.c (output_quoted_string): Write unprintable
1329         characters with octal escapes.
1331 2002-02-19  David Edelsohn  <edelsohn@gnu.org>
1333         * config/rs6000/rs6000.h (CONDITIONAL_REGISTER_USAGE): Set
1334         really_call_used[VRSAVE_REGNO] if not Altivec.
1336 2002-02-19  Alan Modra  <amodra@bigpond.net.au>
1338         * config/rs6000/rs6000.c (u_short_cint_operand): Mask op with
1339         MODE_MASK.
1340         (constant_pool_expr_1): Fix formatting.
1341         (rs6000_legitimize_reload_address): Likewise.
1343 Tue Feb 19 20:13:57 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1345         * config/sparc/sparc.md (nonlocal_goto): Use hard_frame_pointer_rtx
1346         now that we have one.
1348 2002-02-19  Zack Weinberg  <zack@codesourcery.com>
1350         * tree.h (struct tree_common): Remove aux.  Add unused_0 at
1351         end of first block of bitfields (which was only seven bits);
1352         rename dummy to unused_1; remove comment which is no longer true.
1354 2002-02-19  Gaute B Strokkenes <gs234@cam.ac.uk>
1356         * doc/c-tree.texi (Classes, TYPE_BINFO): Fix typo.
1358 2002-02-19  Philip Blundell  <pb@nexus.co.uk>
1360         PR 5399
1361         * config/arm/arm.h (THUMB_LEGITIMATE_CONSTANT_P): Accept anything
1362         if generating PIC.
1364         PR 5054
1365         * config/arm/arm.md (call_insn) [TARGET_THUMB]: Use
1366         arm_is_longcall_p rather than inspecting call-type cookie
1367         directly.
1368         (call_value_insn) [TARGET_THUMB]: Likewise.
1370 2002-02-19  Graham Stott  <grahams@redhat.com>
1372         * config/i386/i386.c (ix86_expand_builtin): Fix typo.
1374 2002-02-19  David Edelsohn  <edelsohn@gnu.org>
1376         * config/rs6000/linux64.h (LINK_OS_LINUX_SPEC): Look in /lib64.
1377         ({STARTFILE,ENDFILE}_LINUX_SPEC): Define.
1378         (FP_SAVE_INLINE): Delete.
1380         * config/rs6000/sysv4.h (ENDFILE_SPEC): Add crtsaveres.o.
1381         * config/rs6000/eabi.asm: Remove ABI save restore routines.
1382         * config/rs6000/t-ppccomm: Build crtsavres.o.
1383         * config/rs6000/crtsavres.asm: New file.
1385 2002-02-19  Philip Blundell  <philb@gnu.org>
1387         * config/arm/arm.c (use_return_insn): Don't reject interrupt
1388         functions.
1389         (arm_compute_save_reg_mask): Save LR for interrupt functions too.
1390         (output_return_instruction): Allow interrupt functions to return with
1391         ldmfd sp!, {... pc}^.  Use LDR to restore any single register.
1392         (arm_expand_prologue): Subtract 4 before stacking LR in an
1393         interrupt function.
1395 2002-02-19  Philip Blundell  <pb@nexus.co.uk>
1397         * config/arm/arm.c (arm_encode_call_attribute): Operate on any
1398         decl, not just FUNCTION_DECL.
1399         (legitimize_pic_address): Handle local SYMBOL_REF like LABEL_REF.
1400         (arm_assemble_integer): Likewise.
1401         * config/arm/arm.h (ARM_ENCODE_CALL_TYPE): Allow any decl to be
1402         marked local.
1404 2002-02-19  matthew green  <mrg@eterna.com.au>
1406         * config.gcc (sparc-*-netbsdelf*): Enable target.
1407         (sparc64-*-netbsd*): New target.
1408         * config/sparc/netbsd-elf.h: New file.
1409         * config/sparc/t-netbsd64: New file.
1411 2002-02-19  Gaute B Strokkenes <gs234@cam.ac.uk>
1413         * doc/rtl.texi (Flags, MEM_SCALAR_P): Fix typo.
1415 2002-02-19  Ryan T. Sammartino <ryants@shaw.ca>
1417         * doc/invoke.texi: explicitly list the style guidelines that
1418         -Weffc++ checks for.
1420 Tue Feb 19 12:37:23 CET 2002  Jan Hubicka  <jh@suse.cz>
1422         * regmove.c (regmove_optimize): Avoid increasing of register pressure.
1424 2002-02-19  Neil Booth  <neil@daikokuya.demon.co.uk>
1426         PR other/5718
1427         * gcc.c (cpp_unique_options): Treat -o as indicating object file
1428         only if not -E.  If -E, pass -o through to the preprocessor.
1430 2002-02-19  Kazu Hirata  <kazu@hxi.com>
1432         * config/h8300/h8300.h (REGNO_REG_CLASS): Replace a literal
1433         register number with an appropriate macro.
1435 2002-02-19  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
1437         * doc/rtl.texi (Constants): Close @code tag.
1439 2002-02-19  Aldy Hernandez  <aldyh@redhat.com>
1441         * config/i386/i386.md ("mmx_uavgv8qi3"): Use const_vector.
1442         ("mmx_uavgv4hi3"): Same.
1443         ("pmulhrwv4hi3"): Same.
1445         * tree-inline.c (walk_tree): Handle vectors.
1447         * c-common.c (constant_expression_warning): Handle vectors.
1448         (overflow_warning): Same.
1450         * sched-deps.c (sched_analyze_2): Handle vectors.
1452         * rtlanal.c (rtx_unstable_p): Handle vectors.
1453         (rtx_varies_p): Same.
1454         (count_occurrences): Same.
1455         (regs_set_between_p): Same.
1456         (modified_between_p): Same.
1457         (modified_in_p): Same.
1458         (volatile_insn_p): Same.
1459         (volatile_refs_p): Same.
1460         (side_effects_p): Same.
1461         (may_trap_p): Same.
1462         (inequality_comparisons_p): Same.
1463         (replace_regs): Same.
1464         (computed_jump_p_1): Same.
1466         * rtl.c (DEF_MACHMODE): Change all definitions to accept 8th
1467         argument.
1468         (inner_mode_array): New.
1469         (copy_rtx): Handle vectors.
1470         (copy_most_rtx): Same.
1471         (rtx_equal_p): Same.
1472         (get_mode_alignment): Adjust for vectors.
1474         * resource.c (mark_referenced_resources): Handle vectors.
1475         (mark_set_resources): Same.
1477         * reload1.c (eliminate_regs): Handle vectors.
1478         (elimination_effects): Same.
1479         (scan_paradoxical_subregs): Same.
1481         * reload.c (subst_reg_equivs): Handle vectors.
1483         * regrename.c (scan_rtx): Handle vectors.
1485         * regclass.c (reg_scan_mark_refs): Handle vectors.
1487         * recog.c (find_single_use_1): Handle vectors.
1489         * local-alloc.c (equiv_init_varies_p): Handle vectors.
1490         (contains_replace_regs): Same.
1491         (memref_referenced_p): Same.
1493         * integrate.c (copy_rtx_and_substitute): Handle vectors.
1494         (subst_constants): Same.
1496         * genattrtab.c (attr_copy_rtx): Handle vectors.
1497         (encode_units_mask): Same.
1498         (clear_struct_flag): Same.
1499         (count_sub_rtxs): Same.
1501         * gcse.c (want_to_gcse_p): Handle vectors.
1502         (oprs_unchanged_p): Same.
1503         (hash_expr_1): Same.
1504         (oprs_not_set_p): Same.
1505         (expr_killed_p): Same.
1506         (compute_transp): Same.
1507         (store_ops_ok): Same.
1509         * function.c (purge_addressof_1): Do not allow paradoxical subregs
1510         of vectors.
1511         (fixup_var_refs_1): Same.
1512         (instantiate_virtual_regs_1): Same.
1514         * fold-const.c (operand_equal_p): Handle vectors.
1515         (fold): Same.
1516         (rtl_expr_nonnegative_p): Same.
1518         * flow.c (mark_used_regs): Handle vectors.
1520         * df.c (df_uses_record): Handle vectors.
1522         * cselib.c (cselib_subst_to_values): Handle vectors.
1523         (cselib_mem_conflict_p): Same.
1524         (hash_rtx): Same.
1526         * cse.c (canon_reg): Handle vectors.
1527         (fold_rt): Same.
1528         (cse_process_notes): Same.
1529         (count_reg_usage): Same.
1530         (canon_hash): Same.
1532         * alias.c (nonlocal_mentioned_p): Add case for CONST_VECTOR.
1534         * combine.c (mark_used_regs_combine): Add case for CONST_VECTOR.
1536         * emit-rtl.c (init_emit_once): Generate const0_rtx for vectors.
1537         (gen_rtx): Handle CONST_VECTOR.
1538         (gen_const_vector_0): New.
1539         (copy_rtx_if_shared): CONST_VECTORs can be shared.
1540         (reset_used_flags): Same.
1541         (copy_insn_1): Same.
1542         (initializer_constant_valid_p): Handle VECTOR_CST.
1544         * doc/c-tree.texi (Expression trees): Document VECTOR_CST.
1546         * doc/rtl.texi (Constants): Document const_vector.
1547         (CONST0_RTX): Update for vectors.
1548         (RTL sharing): Same.
1550         * print-tree.c (print_node): Add case for VECTOR_CST.
1552         * tree.h (TREE_VECTOR_CST_ELTS): New.
1553         (struct tree_vector): New.
1554         (union tree_node): Add vector node.
1555         (build_vector): Add prototype.
1557         * tree.def (VECTOR_CST): New.
1559         * tree.c (build_vector): New.
1561         * expmed.c (make_tree): Handle CONST_VECTOR.
1563         * rtl.h (CONSTANT_P): CONST_VECTORs are constants too.
1564         (CONST_VECTOR_ELT): New.
1565         (CONST_VECTOR_NUNITS): New.
1567         * machmode.h (GET_MODE_INNER): New.
1568         (DEF_MACHMODE): Accept 8th arg.
1570         * machmode.def: Add 8th argument for vector inner mode.
1571         Add inner vector modes for vectors.
1573         * rtl.def (VEC_CONST): Remove.
1574         (CONST_VECTOR): New.
1576         * expr.c (clear_storage): Allow vectors.
1577         (is_zeros_p): Handle VECTOR_CST.
1579         * varasm.c (output_constant_pool): Handle vectors.
1580         (rtx_const): Add veclo and vechi fields.
1581         (kind): Add RTX_VECTOR.
1582         (decode_rtx_const): Add case for vector.
1584         * config/rs6000/rs6000-protos.h: Add zero_constant.
1586         * config/rs6000/rs6000.c (rs6000_emit_move): Handle vector
1587         constants.  Force easy vector constants into memory.
1588         (easy_vector_constant): New.
1589         (emit_easy_vector_constant): New.
1590         (rs6000_legitimize_reload_address): Do not generate bad reloads on
1591         darwin.
1593         * config/rs6000/rs6000.md ("altivec_lvx"): Reflect what
1594         instruction does.
1595         ("altivec_lvxl"): Same.
1596         (altivec_lvebx): Same.
1597         (altivec_lvehx): Same.
1598         (altivec_lvewx): Same.
1599         ("*movv4si_const0"): New.
1600         ("*movv4sf_const0"): New.
1601         ("*movv8hi_const0"): New.
1602         ("*movv16qi_const0"): New.
1604 2002-02-18  Kazu Hirata  <kazu@hxi.com>
1606         * config/h8300/h8300.c (notice_update_cc): Use
1607         cc_status.value2.
1609 2002-02-18  Kazu Hirata  <kazu@hxi.com>
1611         * config/h8300/h8300.md (divmod patterns): Change the
1612         constraints for operands[1] to register_operand.
1614 2002-02-18  Kazu Hirata  <kazu@hxi.com>
1616         * config/h8300/h8300-protos.h: Remove the prototype for
1617         p_operand.
1618         * config/h8300/h8300.c (p_operand): Remove.
1619         * config/h8300/h8300.md: Replace p_operand with
1620         const_int_operand.
1622 2002-02-18 Philip Blundell <pb@nexus.co.uk>
1624         * config/arm/arm.c (arm_compute_save_reg_mask): Fix typo in
1625         comment.
1626         (output_return_instruction): Allow use of LDR to unstack
1627         return addresss even for interrupt handlers or when
1628         interworking.  If compiling for ARMv5, use interworking-safe
1629         return instructions by default.  Remove duplicated code and
1630         lengthy "strcat" sequences.
1632 2002-02-18  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
1634         * config/rs6000/sysv4.h (STARTFILE_SPEC): Use crtbeginT.o for -static.
1635         (LINK_EH_SPEC): Define.
1636         * config/rs6000/t-ppccomm (EXTRA_MULTILIB_PARTS): Add crtbeginT.o.
1638 2002-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
1640         * config/s390/s390.c (s390_emit_prologue): Do not set the
1641         frame_related flag for call-clobbered registers.
1643 Mon Feb 18 15:07:35 CET 2002  Jan Hubicka  <jh@suse.cz>
1645         * i386.c (classify_argument): Properly classify SSE/MMX modes and VOIDmode.
1646         (construct_container): Fix handling of SSE operands.
1647         (ix86_expand_builtin): Fix handling of 64bit pointers.
1648         (mmx_maskmovq_rex): New pattern.
1650 Mon Feb 18 11:55:55 CET 2002  Jan Hubicka  <jh@suse.cz>
1652         * regrename.c (kill_set_value): Handle subregs properly.
1654 2002-02-18  David Billinghurst <David.Billinghurst@riotinto.com>
1656         * objc/objc-act.c (handle_impent): Remove leading '*'
1657         from objc_class_name.
1659 2002-02-17  Richard Henderson  <rth@redhat.com>
1661         * config/alpha/alpha.c (some_small_symbolic_operand,
1662         some_small_symbolic_operand_1, split_small_symbolic_operand,
1663         split_small_symbolic_operand_1): Rename from *symbolic_mem_op*.
1664         Handle small SYMBOL_REFs anywhere, not just inside memories.
1665         * config/alpha/alpha-protos.h: Update.
1666         * config/alpha/alpha.h (PREDICATE_CODES): Update.
1667         * config/alpha/alpha.md (small symbolic operand splitter): Update.
1669 2002-02-17  Roland McGrath  <roland@frob.com>
1671         * config.gcc (powerpc-*-gnu-gnualtivec*,
1672         powerpc-*-gnu*, powerpc64-*-gnu*): New configurations.
1673         * config/rs6000/gnu.h: New file.
1674         * config/rs6000/sysv4.h (SUBTARGET_OVERRIDE_OPTIONS):
1675         Grok "gnu" in rs6000_abi_name.
1676         (ASM_SPEC, CC1_SPEC, LINK_START_SPEC, LINK_OS_SPEC,
1677         CPP_ENDIAN_SPEC, CPP_SPEC, STARTFILE_SPEC, LIB_SPEC, ENDFILE_SPEC):
1678         Grok -mcall-gnu analogous to -mcall-linux et al.
1679         (LIB_GNU_SPEC, STARTFILE_GNU_SPEC, ENDFILE_GNU_SPEC,
1680         LINK_START_GNU_SPEC, LINK_OS_GNU_SPEC, CPP_OS_GNU_SPEC): New macros.
1681         (SUBTARGET_EXTRA_SPECS): Add *_os_gnu specs using them.
1683 2002-02-17  Jakub Jelinek  <jakub@redhat.com>
1685         PR c/3444:
1686         * c-typeck.c (build_binary_op) [BIT_XOR_EXPR]: Remove explicit
1687         shortening.
1689 2002-02-17  Philipp Thomas  <pthomas@suse.de>
1691         * config/cris/cris.h: Undefine STARTFILE_SPEC and
1692         ENDFILE_SPEC before (re)defining them.
1694 2002-02-17  Kazu Hirata  <kazu@hxi.com>
1696         * config/h8300/h8300.c: Fix formatting.
1697         * config/h8300/h8300.h: Likewise.
1699 2002-02-17  Philipp Thomas  <pthomas@suse.de>
1701         * doc/tm.texi: Explain why empty strings should not be
1702         marked for translation.
1704 2002-02-17  Philipp Thomas  <pthomas@suse.de>
1706         * final.c (output_operand_lossage): Changed to accept
1707         printf style arguments. Change calls where necessary.
1708         * output.h (output_operand_lossage): Change declaration
1709         accordingly. Update copyright.
1710         * config/arc/arc.c config/fr30/fr30.c config/m32r/m32r.c
1711         config/m88k/m88k.c : Adapt all calls to output_operand_lossage.
1712         Update copyright date where necessary.
1714         * config/i386/i386.c (print_operand): Likewise. Remove use of
1715         sprintf.
1717         * config/cris/cris.c (cris_operand_lossage): Likewise.
1718         Rename parameter so that exgettext recognizes it as
1719         translatable message.
1720         (LOSE_AND_RETURN): Rename parameter to msgid.
1722 2002-02-17  Kazu Hirata  <kazu@hxi.com>
1724         * config/h8300/h8300.h (CONDITIONAL_REGISTER_USAGE): Replace a
1725         hard coded register number with an appropriate macro.
1726         (HARD_REGNO_MODE_OK): Likewise.
1727         (ARG_POINTER_REGNUM): Likewise.
1728         (STATIC_CHAIN_REGNUM): Likewise.
1729         (RETURN_ADDRESS_POINTER_REGNUM): Likewise.
1730         * config/h8300/h8300.md (define_constants): Define more
1731         register numbers.
1733 2002-02-17  Philipp Thomas  <pthomas@suse.de>
1735         * config/i386/i386.h: Don't mark empty strings for translation.
1737 2002-02-16  H.J. Lu <hjl@gnu.org>
1739         * config/mips/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): New.
1741 2002-02-16  Zack Weinberg  <zack@codesourcery.com>
1743         * cppinit.c (merge_include_chains): Check for brack being
1744         NULL before attempting to merge it with qtail.
1746 2002-02-16  Andrew Cagney  <ac131313@redhat.com>
1748         * config/rs6000/netbsd.h (PREFERRED_DEBUGGING_TYPE): Set to
1749         DBX_DEBUG.
1751 2002-02-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1753         * pa/t-pa, pa/t-pro, som.h: Revert last patch.
1755 2002-02-16  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1757         * pa/t-pa (LIB2FUNCS_EXTRA): Don't build lib2funcs.asm.
1758         * pa/t-pro (LIB2FUNCS_EXTRA): Likewise.
1759         * som.h (DO_GLOBAL_DTORS_BODY): Delete define.
1761 Sat Feb 16 13:48:50 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1763         * config/alpha/alpha.md (*movsi_nt_vms_nofix): Was *movsi_nt_vms;
1764         now only if !TARGET_FIX.
1765         (*movsi_nt_vms_fix): New pattern.
1767 2002-02-16  Douglas B Rupp  <rupp@gnat.com>
1769         * config/alpha/alpha.c: Implement null frame procedure types on VMS.
1770         (alpha_procedure_type): Replaces alpha_is_stack_procedure.
1771         (alpha_sa_mask, alpha_sa_size): Reflect above change.
1772         (alpha_pv_save_size, alpha_expand_prologue): Likewise.
1773         (alpha_start_function, alpha_expand_epilogue): Likewise.
1774         (unicosmk_gen_dsib): Likewise.
1776 Sat Feb 16 13:39:09 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1778         * expr.c (store_constructor): Handle target REG case for ARRAY_TYPE.
1780 2002-02-16  Ulrich Weigand  <uweigand@de.ibm.com>
1782         * config/s390/s390.c (pool_stop_uid, other_chunk, far_away,
1783         check_and_change_labels, s390_final_chunkify): Delete.
1784         (s390_split_branches, s390_chunkify_pool): New functions.
1785         (s390_function_prologue): Call them.
1787         * config/s390/s390.h (S390_REL_MAX): Delete.
1788         (S390_CHUNK_MAX, S390_CHUNK_OV): Adjust values.
1790         * config/s390/s390.md (cjump, icjump, jump): Fix length
1791         attribute calculation.
1794 2002-02-15  David Edelsohn  <edelsohn@gnu.org>
1796         * config/rs6000/linux64.h (STRIP_NAME_ENCODING): Delete.
1797         * config/rs6000/ppc-asm.h (JUMP_TARGET): Define for powerpc64.
1799 2002-02-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
1801         * gcc.c (init_gcc_specs): Revert patch from 2002-02-15.
1802         * config/pa/pa-linux.h (LIB_SPEC): Likewise.
1803         * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Likewise.
1805 2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
1807         * c-decl.c (grokdeclarator): Prevent a segfault on unnamed decls.
1809 2002-02-15  Richard Sandiford  <rsandifo@redhat.com>
1811         * reload.c (find_dummy_reload): Check that an output register
1812         is valid for its mode.
1814 2002-02-14  Alexandre Oliva  <aoliva@redhat.com>
1816         * combine.c (known_cond): After replacing the REG of a SUBREG, try
1817         to simplify it.
1819         * function.c (assign_parms): Demote promoted argument passed by
1820         transparent reference.
1822 2001-02-14      Joel Sherrill <joel@OARcorp.com>
1824         * config/arm/rtems-elf.h, config/h8300/rtems.h: Removed redundant
1825         -Acpu() and -Amachine() to eliminate warnings.
1827 2002-02-14  Ulrich Weigand  <uweigand@de.ibm.com>
1829         * config/s390/linux.h (ASM_OUTPUT_ALIGNED_BSS): New.
1831 2002-02-14  Kazu Hirata  <kazu@hxi.com>
1833         * config/h8300/h8300-protos.h: Update the prototype for
1834         const_costs.
1835         * config/h8300/h8300.c (const_costs): Treat SET as a little
1836         more expensive operation.
1837         * config/h8300/h8300.h (DEFAULT_RTX_COSTS): Update the
1838         reference to const_costs.
1840 2002-02-14  Hans-Peter Nilsson  <hp@axis.com>
1842         * config.gcc (c4x-*-rtems*): Fix typo in tm_file setting.
1844 2002-02-14  Jakub Jelinek  <jakub@redhat.com>
1846         PR c/5503:
1847         * c-decl.c (duplicate_decls): If builtin type has TYPE_ARG_TYPES NULL,
1848         use arguments from newtype.
1850 2002-02-13  Eric Christopher  <echristo@redhat.com>
1852         * config/mips/mips.c (override_options): Add check for march/mipsX
1853         on the same command line. Fix error message in cpu processing.
1854         Remove architecture and ISA checks.
1856 2002-02-14  Aldy Hernandez  <aldyh@redhat.com>
1858         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Adjust for vectors.
1860         * config/rs6000/sysv4.h (ROUND_TYPE_ALIGN): Add MAX.
1862 2002-02-14  Aldy Hernandez  <aldyh@redhat.com>
1864         * config/rs6000/rs6000.md ("*movv4si_internal"): Add m<-r and r<-r
1865         alternatives.
1866         ("*movv8hi_internal1"): Same.
1867         ("*movv16qi_internal1"): Same.
1868         ("*movv4sf_internal1"): Same.
1870         * config/rs6000/rs6000.c (rs6000_legitimize_reload_address): Do
1871         not push_reload for altivec modes.
1873 2002-02-13  Joel Sherrill  <joel@OARcorp.com>
1875         * config.gcc (a29k-*-rtems), config/a29k/rtems.h: General cleanup across
1876         all RTEMS targets including removal of #includes from config/*/rtems*.h
1877         file and adding them to tm_file setting. Added xm_defines=POSIX to
1878         many targets.
1879         * config.gcc (c4x-*-rtems), config/c4x/rtems.h: Ditto.
1880         * config.gcc (h8300-*-rtems), config/h8300/rtems.h: Ditto.
1881         * config.gcc (hppa1.1-*-rtems), config/pa/rtems.h: Ditto.
1882         * config.gcc (i960-*-rtems), config/i960/rtems.h: Ditto.
1883         * config.gcc (m68k-*-rtems*), config/m68k/rtems.h,
1884         config/m68k/rtemself.h: Ditto.
1885         * config.gcc (mips*-*-rtems*), config/mips/rtems.h,
1886         config/mips/rtems64.h: Ditto.
1887         * config.gcc (powerpc-*-rtems*), config/rs6000/rtems.h: Ditto.
1888         * config.gcc (sh-*-rtems*), config/sh/rtems.h, config/sh/rtemself.h:
1889         Ditto.
1890         * config.gcc (sparc-*-rtems*), config/sparc/rtems.h,
1891         config/sparc/rtemself.h: Ditto.
1892         * config.gcc (v850-*-rtems*), config/v850/rtems.h: Ditto.
1893         * config.gcc (arm-rtems), config/arm/rtems-elf.h: Ditto plus moved
1894         arm-rtems stanza closer to other arm-elf targets and made arm-rtems
1895         more like arm-elf.
1896         * config.gcc (i[34567]86-*-rtems*), config/i386/djgpp-rtems.h,
1897         config/i386/rtems.h, config/i386/rtemself.h: Ditto plus i386-rtemself
1898         target made more similar to i386-elf.
1899         * config/i386/t-rtems-i386: Added soft float support and multilibs.
1900         * config/m68k/t-m68kbare: Add 68040 and 68060 as multilib alternatives to
1901         be similar to config/m68k/t-m68kelf.
1902         * gthr-rtems.h: Encapsulate with extern "C" for C++.
1904 Wed Feb 13 23:41:15 CET 2002  Jan Hubicka  <jh@suse.cz>
1906         * regmove.c (kill_value): Handle subregs.
1908 Wed Feb 13 23:34:30 CET 2002  Jan Hubicka  <jh@suse.cz>
1910         * i386.md (mul patterns): Allow memory operand to be first;
1911         add expanders where needed; fix constraints.
1912         (min?f_nonieee, max?f_nonieee, SSE TImode patterns):
1913         Allow memory operand to be the first.
1915         * i386.c (ix86_prepare_fp_compare_args): Fix condition for swapping
1916         operands.
1918 2002-02-13  Jakub Jelinek  <jakub@redhat.com>
1920         PR c/5681:
1921         * expr.c (safe_from_p): Pass VOIDmode to true_dependence instead of
1922         GET_MODE (x).
1924 2002-02-13  Jakub Jelinek  <jakub@redhat.com>
1926         PR optimization/5547:
1927         * config/i386/i386.c (i386_simplify_dwarf_addr): Simplify
1928         all valid IA-32 address modes involving non-scaled %ebx and
1929         GOT/GOTOFF as displacement.
1931 2002-02-13  Ulrich Weigand  <uweigand@de.ibm.com>
1933         * config/s390/s390.c (s390_final_chunkify): Re-run shorten_branches
1934         after emitting ltorg insns.
1936         * config/s390/s390.md (*cmpdf_ccs_0, *cmpdf_ccs, *cmpsf_ccs_0,
1937         *cmpsf_ccs, truncdfsf2_ieee, *adddf3, *addsf3, *subdf3, *subsf3,
1938         *muldf3, *mulsf3, *divdf3, *divsf3, *negdf2, *negsf2, *absdf2,
1939         *abssf2): Fix "op_type" attribute.
1941 2002-02-13  Douglas B Rupp  <rupp@gnat.com>
1943         * mkconfig.sh: Avoid using a subshell redirect.
1944         ($output.T): Change to $(output)T.
1945         (ENABLE_NLS): Remove unneeded undef.
1947         * config/alpha/vms.h (MD_EXEC_PREFIX, MD_STARTFILE_PREFIX): Define.
1948         * config/alpha/x-vms (libsubdir): Define.
1950         * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Handle
1951         register frame procedures. Optimize retrieving context.
1953         * config/alpha/t-vms (MULTILIB_OPTIONS): Define.
1954         (MULTILIB_DIRNAME, LIBGCC, INSTALL_LIBGCC): Likewise.
1955         * config/alpha/vms.h (ASM_FILE_START): Write .arch directive.
1957 Wed Feb 13 09:45:08 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1959         * alias.c (find_base_term, case ZERO_EXTEND, case SIGN_EXTEND):
1960         Make same change as for find_base_value.
1962 2002-02-13  Kazu Hirata  <kazu@hxi.com>
1964         * config/h8300/h8300.h (MODES_TIEABLE_P): Accept a combination
1965         of QImode and SImode.
1967 2002-02-13  Kazu Hirata  <kazu@hxi.com>
1969         * config/h8300/h8300.c (h8300_adjust_insn_length): Correct the
1970         length computation of movsi.
1971         * config/h8300/h8300.md (movsi_h8300hs): Correct the length.
1973 2002-02-13  Kazu Hirata  <kazu@hxi.com>
1975         * config/h8300/h8300.md (subqi3): Tighten the predicate for
1976         operands[2] to register_operand.
1978 Wed Feb 13 10:35:56 CET 2002  Jan Hubicka  <jh@suse.cz>
1980         * i386.md (fop_*_comm_*): allow nonimmediate in the first operand.
1982 2002-02-12  Aldy Hernandez  <aldyh@redhat.com>
1984         * config/rs6000/rs6000.md: Use predicate altivec_register_operand
1985         for altivec_lvx* and altivec_stvx*.
1986         ("*movv4si_internal"): Add constraint for loading from GPRs.
1987         ("*movv8hi_internal1"): Same.
1988         ("*movv16qi_internal1"): Same.
1989         ("*movv4sf_internal1"): Same.
1991         * config/rs6000/rs6000.c (altivec_register_operand): New.
1993         * config/rs6000/rs6000.h (PREDICATE_CODES): Add
1994         altivec_register_operand.
1996 2002-02-13  Hans-Peter Nilsson  <hp@bitrange.com>
1998         * config/mmix/mmix.c (mmix_assemble_integer) <case 4>: Don't
1999         handle SYMBOL_REF.
2001 2002-02-13  Stan Shebs  <shebs@apple.com>
2003         * c-typeck.c (digest_init): Handle vectors.
2004         (really_start_incremental_init): Same.
2005         (pop_init_level): Same.
2006         (process_init_element): Same.
2008         * varasm.c (output_constant): Same.
2010         * expr.c (clear_storage): Same.
2011         (store_constructor): Same.
2013 2002-02-12  Eric Christopher  <echristo@redhat.com>
2015         * explow.c (hard_function_value): Add comment explaining
2016         signed/unsigned comparison.
2018 2002-02-12  Jakub Jelinek  <jakub@redhat.com>
2020         * jump.c (never_reached_warning): Add finish argument.
2021         If finish is NULL, stop on CODE_LABEL, otherwise stop before first
2022         real insn after end.
2023         * rtl.h (never_reached_warning): Adjust prototype.
2024         * cse.c (cse_insn): Pass NULL as finish to never_reached_warning.
2025         * cfgrtl.c (flow_delete_block): Pass b->end as finish to
2026         never_reached_warning.
2028 2002-02-12  Graham Stott  <grahams@redhat.com>
2030         * config/hp/pa.h (GO_IF_LEGITIMATE_ADDRESS): Fix typos.
2032 2002-02-12  Kazu Hirata  <kazu@hxi.com>
2034         * config/h8300/h8300.c (shift_alg_hi): Improve the 15-bit
2035         logical shifts on H8/300.
2036         (shift_alg_si): Improve several shifts on H8/300.
2037         (get_shift_alg): Likewise.
2039 2002-02-12  Graham Stott  <grahams@redhat.com>
2041         * config/pa/pa.c (compute_movstrsi_length): Fix typos.
2043 Tue Feb 12 10:12:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
2045         * alias.c (find_base_value, case ZERO_EXTEND, case SIGN_EXTEND):
2046         Handle #ifdef POINTERS_EXTEND_UNSIGNED.
2048 2002-02-11  Hans-Peter Nilsson  <hp@bitrange.com>
2050         * config/mmix/mmix.c (mmix_assemble_integer) <case 1, 2>: Handle
2051         non-CONST_INT through default_assemble_integer.
2052         <case 4>: Likewise, for non-CONST_INT, non-SYMBOL_REF.
2053         <case 8>: Abort for CONST_DOUBLE.
2055 2002-02-11  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2057         * gcc.c (init_gcc_specs): Add static libgcc to link when "-shared"
2058         is specified.
2059         * config/pa/pa-linux.h (LIB_SPEC): Delete.
2060         * config/pa/pa32-linux.h (LINK_COMMAND_SPEC): Delete.
2062 2002-02-11  Andrew Haley  <aph@cambridge.redhat.com>
2064         * config/stormy16/stormy16.md (zero_extendqihi2): New.
2066 2002-02-11  Alexandre Oliva  <aoliva@redhat.com>
2068         * regrename.c (regrename_optimize): Don't accept a
2069         part-clobbered register if the replaced register is not part
2070         clobbered.
2072         * calls.c (store_one_arg): In the non-BLKmode non-partial case,
2073         take padding into account when computing the argument value.
2075         * config/sh/sh.h (FUNCTION_ARG_REGNO_P): Fix parenthesizing error.
2077         * combine.c (try_combine): Apply substitutions in
2078         CALL_INSN_FUNCTION_USAGE too.
2080 2002-02-11  Aldy Hernandez  <aldyh@redhat.com>
2082         * config/rs6000/rs6000.c (altivec_init_builtins): Handle
2083         __builtin_altivec_abs*.
2084         (bdesc_abs): New.
2086         * config/rs6000/rs6000.h (rs6000_builtins): Add
2087         ALTIVEC_BUILTIN_ABS*.
2089         * config/rs6000/altivec.h: Use const char for builtins expecting
2090         literals.
2091         (vec_abs): New versions for C and C++.
2092         (vec_abss): Same.
2094 2002-02-10  Kazu Hirata  <kazu@hxi.com>
2096         * config/h8300/h8300.h (INITIALIZE_TRAMPOLINE): Simplify by
2097         using Pmode.
2099 2002-02-10  Kazu Hirata  <kazu@hxi.com>
2101         * config/h8300/h8300.h (STACK_POINTER_REGNUM): Use the
2102         constant definition from h8300.md.
2103         (FRAME_POINTER_REGNUM): Likewise.
2104         * config/h8300/h8300.md (define_constants): Add FP_REG.
2106 2002-02-10  Kazu Hirata  <kazu@hxi.com>
2108         * config/h8300/h8300.c (print_operand): Remove redundant code.
2110 2002-02-10  Kazu Hirata  <kazu@hxi.com>
2112         * config/h8300/h8300-protos.h: Remove the prototype for byte_reg.
2113         * config/h8300/h8300.c (byte_reg): Make it static.
2115 2002-02-10  Richard Henderson  <rth@redhat.com>
2117         PR c/5623
2118         * c-typeck.c (incomplete_type_error): Handle flexible array members.
2120 2002-02-10  Richard Henderson  <rth@redhat.com>
2122         PR c++/5624
2123         * tree.c (append_random_chars): Don't abort if main_input_filename
2124         does not exist.
2126 2002-02-10  Hans-Peter Nilsson  <hp@bitrange.com>
2128         * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): Disable.
2130 2002-02-10  Kazu Hirata  <kazu@hxi.com>
2132         * config/h8300/h8300.md (pushhi1_h8300): Correct the mode used.
2133         (pushhi1): Likewise.
2135 2002-02-10  John David Anglin  <dave@hiauly1.hia.nrc.ca>
2137         * pa.c (reg_before_reload_operand): Don't accept a SUBREG operand.
2138         * pa.h (PREDICATE_CODES): Adjust codes for reg_before_reload_operand.
2140 2002-02-09  David O'Brien  <obrien@FreeBSD.org>
2142         * config/sparc/freebsd.h(TARGET_DEFAULT): Add MASK_EPILOGUE setting and
2143         remove MASK_VIS.
2144         (ASM_CPU_DEFAULT_SPEC): Remove.  Default setting is fine.
2146 2002-02-09  Kazu Hirata  <kazu@hxi.com>
2148         * config/h8300/h8300.c (output_logical_op): Use sub.w to clear
2149         a half of an SImode register on H8/300.
2151 Sat Feb  9 18:28:02 CET 2002  Jan Hubicka  <jh@suse.cz>
2153         * i386.md (movdi_2): Add missing '!'.
2155 2002-02-09  Kazu Hirata  <kazu@hxi.com>
2157         * config/h8300/h8300.h: Fix formatting.  Remove commented-out
2158         definitions.
2160 2002-02-09  Kazu Hirata  <kazu@hxi.com>
2162         * config/h8300/h8300.md (length): Correct the distance valid
2163         for the short branch.
2165 2002-02-09  Kazu Hirata  <kazu@hxi.com>
2167         * config/h8300/h8300.md (iorhi3): Tighten the predicates.
2169 2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
2171         * config/sh/sh.h (REGISTER_NATURAL_MODE): Save part-clobbered
2172         registers in SImode.
2173         (HARD_REGNO_CALL_PART_CLOBBERED) [TARGET_SHMEDIA32]: Set r18 as
2174         part-clobbered.
2176         * config/sh/sh.c (expand_prologue): Fix mis-applied 2001-11-09's
2177         patch.
2179         Contribute sh64-elf.
2180         2002-02-09  Alexandre Oliva  <aoliva@redhat.com>
2181         * config/sh/sh.c (TARGET_CANNOT_MODIFY_JUMPS_P): Define to...
2182         (sh_cannot_modify_jumps_p): New function.
2183         2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
2184         * config/sh/sh.c (TARGET_MS_BITFIELD_LAYOUT_P): Define to...
2185         (sh_ms_bitfield_layout_p): New function.
2186         2002-02-04  Alexandre Oliva  <aoliva@redhat.com>
2187                     Zack Weinberg  <zack@codesourcery.com>
2188         * config/sh/sh.h (TRAMPOLINE_ADJUST_ADDRESS): Use
2189         expand_simple_binop instead of expand_binop.
2190         2002-02-03  Alexandre Oliva  <aoliva@redhat.com>
2191         * config/sh/sh.h (OVERRIDE_OPTIONS) [! TARGET_SH5]: Disable
2192         use of .quad and .uaquad.
2193         * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP,
2194         TARGET_ASM_ALIGNED_DI_OP): Add comment pointing to the above.
2195         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
2196         * config/sh/sh.md (movdi_const, movdi_const_32bit,
2197         movdi_const_16bit): Make sure all CONSTs have modes.
2198         (sym2PIC): Ditto, but by adjusting all callers.
2199         * config/sh/sh.c (calc_live_regs) [TARGET_SHCOMPACT]: Set pr_live
2200         if the prologue calls the SHmedia argument decoder or register
2201         saver.
2202         2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
2203         * config/sh/sh.c (TARGET_ASM_UNALIGNED_DI_OP): Define.
2204         (TARGET_ASM_ALIGNED_DI_OP): Likewise.
2205         (sh_expand_epilogue): Don't emit USE of return target register.
2206         (prepare_move_operands): Legitimize DImode PIC addresses.
2207         (sh_media_register_for_return): Skip tr0, used to initialize the
2208         PIC register.
2209         (sh_expand_prologue): Remove explicit USE of return register.
2210         (nonpic_symbol_mentioned_p): PC is non-PIC.  Don't recurse in
2211         CONST_DOUBLEs.  UNSPEC_GOTPLT is PIC.
2212         * config/sh/sh.h (ASM_OUTPUT_DOUBLE_INT): Removed, obsolete.
2213         (OVERRIDE_OPTIONS): Don't disable PIC on SH5.
2214         (EXTRA_CONSTRAINT_S): Use MOVI_SHORI_BASE_OPERAND_P instead of
2215         EXTRA_CONSTRAINT_T.
2216         (GOT_ENTRY_P, GOTPLT_ENTRY_P, GOTOFF_P, PIC_ADDR_P): New.
2217         (MOVI_SHORI_BASE_OPERAND_P): New.
2218         (NON_PIC_REFERENCE_P, PIC_REFERENCE_P): New.
2219         (EXTRA_CONSTRAINT_T): Define in terms of them.
2220         (OUTPUT_ADDR_CONST_EXTRA): Handle UNSPEC_GOTPLT.
2221         * config/sh/sh.md (movsi_media, movsi_media_nofpu,
2222         movdi_media, movdi_media_nofpu): Add SIBCALL_REGS class to
2223         alternatives supporting TARGET_REGS.
2224         (UNSPEC_GOTPLT): New constant.
2225         (movdi split): Move incrementing of LABEL_NUSES...
2226         (movdi_const, movdi_const_32bit): Here.  Use
2227         MOVI_SHORI_BASE_OPERAND_P instead of EXTRA_CONSTRAINT_T.
2228         (movdi_const_16bit): New.
2229         (call, call_value) [flag_pic]: Use GOTPLT.
2230         (call_pop, call_value_pop): New expands.
2231         (call_pop_compact, call_pop_rettramp): New insns.
2232         (call_value_pop_compact, call_value_pop_rettramp): New insns.
2233         (sibcall) [flag_pic]: Use GOT.
2234         (builtint_setjmp_receiver): Remove bogus, unused expand.
2235         (GOTaddr2picreg): Implement for SHcompact and SHmedia.
2236         (*pt, *ptb, ptrel): New insns.
2237         (sym2GOT): Handle DImode GOT.
2238         (sym2GOTPLT, symGOTPLT2reg): New expands.
2239         (sym2PIC): New expand.
2240         (shcompact_return_tramp): Use GOTPLT to return trampoline.
2241         (shcompact_return_tramp_i): Use return register explicitly.
2242         * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SHMEDIA]: Don't
2243         disable flag_reorder_blocks.
2244         2002-01-19  Alexandre Oliva  <aoliva@redhat.com>
2245         * config/sh/sh.md (sibcall_compact): Reorder return, uses and
2246         clobbers, for clarity.
2247         (sibcall_epilogue) [TARGET_SHCOMPACT]: Mark saving and
2248         restoring of r0 in macl as MAYBE_DEAD.
2249         2002-01-18  Alexandre Oliva  <aoliva@redhat.com>
2250         * config/sh/sh.h (LONG_DOUBLE_TYPE_SIZE): Define.
2251         * config/sh/sh.md (movv4sf_i, movv16sf_i): Fix uses of
2252         alter_subreg all over.
2253         (jump) [TARGET_SHMEDIA]: FAIL to create new jumps after
2254         reload, instead of emitting instructions that would require
2255         reloading.
2256         (casesi_load_media): Add missing modes.
2257         2001-11-09  Alexandre Oliva  <aoliva@redhat.com>
2258         * config/sh/sh.c (sh_expand_prologue): Mark the PIC register
2259         as used if the argument decoder is called.
2260         2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
2261         * config/sh/sh.md (udivsi3, divsi3): Load libcall symbol name in
2262         Pmode, then extend it to DImode if necessary.
2263         2001-08-28  Stephen Clarke  <Stephen.Clarke@st.com>
2264         * config/sh/sh.h (LEGITIMATE_CONSTANT_P): Don't accept DFmode
2265         constants in FPU-enabled SHmedia, let them be loaded from memory.
2266         2001-08-28  Alexandre Oliva  <aoliva@redhat.com>
2267         * config/sh/sh.md (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media):
2268         Adjust whitespace in assembly output templates.
2269         2001-08-28  Stephen Clarke  <Stephen.Clarke@st.com>
2270         * config/sh/sh.md (movdicc_false, movdicc_true, movdicc): Adjust
2271         mode of if_then_else.
2272         2001-08-04  Alexandre Oliva  <aoliva@redhat.com>
2273         * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): Override definition in
2274         sh.h.
2275         2001-07-26  Andrew Haley  <aph@cambridge.redhat.com>
2276                     Joern Rennecke <amylaar@redhat.com>
2277         * config/sh/sh64.h (CPP_DEFAULT_CPU_SPEC): New.
2278         (SUBTARGET_CPP_PTR_SPEC): New.
2279         (SUBTARGET_CPP_SPEC): Remove.
2280         2001-07-06  Chandrakala Chavva  <cchavva@redhat.com>
2281         * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
2282         Fix typo in previous checkin.
2283         2001-07-11  Chandrakala Chavva  <cchavva@redhat.com>
2284         * config/sh/sh.h (MODES_TIEABLE_P): Fix redact indentations.
2285         2001-07-10  Chandrakala Chavva  <cchavva@cygnus.com>
2286                     Alexandre Oliva  <aoliva@redhat.com>
2287         * config/sh/sh.h (MODES_TIEABLE_P): Don't tie modes wider than
2288         what single FP register can hold for SHmedia target.
2289         2001-07-06  Chandrakala Chavva  <cchavva@redhat.com>
2290                     Alexandre Oliva  <aoliva@redhat.com>
2291         * config/sh/sh.md (movsf_media_nofpu+1, movdf_media_nofpu+1):
2292         Do not split into SUBREG.
2293         2001-06-14  Alexandre Oliva  <aoliva@redhat.com>
2294         * config/sh/ushmedia.h, config/sh/sshmedia.h: Updated signatures
2295         and added new functions as specified in SH5 ABI r9.
2296         2001-06-04  Alexandre Oliva  <aoliva@redhat.com>
2297         * config/sh/lib1funcs.asm (GCC_nested_trampoline): Align to an
2298         8-byte boundary.
2299         2001-06-03  Alexandre Oliva  <aoliva@redhat.com>
2300         * config/sh/sh.c (dump_table): Add const0_rtx in calls of
2301         gen_consttable_4 and gen_consttable_8.  Emit multiple labels
2302         and consttable_window_ends.
2303         2001-06-03  Graham Stott  <grahams@redhat,com>
2304         * config/sh/sh.md (movdi split): Remove unused variable last_insn.
2305         2001-05-16  Alexandre Oliva  <aoliva@redhat.com>
2306         * config/sh/sh.c (print_operand): Handle floating-point pair,
2307         vector and matrix registers.
2308         * config/sh/sh.h (REGISTER_MOVE_COST): Take floating-pointer
2309         vector modes into account.
2310         * config/sh/sh.md (movv2sf): Split move between registers into
2311         movdf.
2312         (movv4sf, movv16sf): Introduce insns that get split only after
2313         reload.
2314         * config/sh/shmedia.h: Fix Copyright dates.
2315         * config/sh/ushmedia.h: Likewise.  Move loop counter
2316         declarations into conditionals that uses them.
2317         (sh_media_FVADD_S, sh_media_FVSUB_S): Fix off-by-one error in
2318         loop boundary.
2319         * config/sh/sshmedia.h: Fix Copyright dates.
2320         (sh_media_PUTCFG): Fix constraints.
2321         2001-05-12  Alexandre Oliva  <aoliva@redhat.com>
2322         * config/sh/sh.h (TARGET_PTRMEMFUNC_VBIT_LOCATION): Define to
2323         ptrmemfunc_vbit_in_delta for SH5.
2324         2001-05-08  Alexandre Oliva  <aoliva@redhat.com>
2325         * config/sh/sh.h (TARGET_SWITCHES): Document -m5-*.
2326         * invoke.texi: Likewise.
2327         2001-04-14  Alexandre Oliva  <aoliva@redhat.com>
2328         * config/sh/lib1funcs.asm (GCC_push_shmedia_regs,
2329         GCC_push_shmedia_regs_nofpu, GCC_pop_shmedia_regs,
2330         GCC_pop_shmedia_regs_nofpu): New global symbols.
2331         * config/sh/t-sh64 (LIB1ASMFUNCS): Add them.
2332         * config/sh/sh.h (SHMEDIA_REGS_STACK_ADJUST): New macro.
2333         * config/sh/sh.c (calc_live_regs): Account for PR's saving in
2334         compact function with nonlocal labels.
2335         (sh_expand_prologue) [SHcompact]: Push SHmedia regs if needed.
2336         (sh_expand_epilogue) [SHcompact]: Pop them when appropriate.
2337         (initial_elimination_offset): Account for their stack space.
2338         * config/sh/sh.md (shmedia_save_restore_regs_compact): New insn.
2339         * config/sh/sh.md (movsi_media, movsi_media_nofpu, movqi_media,
2340         movhi_media, movdi_media, movdi_media_nofpu, movdf_media,
2341         movdf_media_nofpu, movsf_media, movsf_media_nofpu): Require at
2342         least one of the operands to be a register.
2343         (movv2sf): Likewise.  Renamed to movv2sf_i.
2344         (movdi, movdf, movv2sf, movv4sf, movv16sf, movsf):
2345         prepare_move_operands() before emitting SHmedia insns.
2346         2001-04-03  Alexandre Oliva  <aoliva@redhat.com>
2347         * config/sh/crti.asm (init, fini) [__SH5__ && ! __SHMEDIA__]:
2348         Don't save nor initialize r12.  Don't mis-align the stack.
2349         Pad the code with a nop.
2350         * config/sh/crti.asm: Don't restore r12.  Don't mis-align the
2351         stack.
2352         2001-03-13  Alexandre Oliva  <aoliva@redhat.com>
2353         * gcc/longlong.h (__umulsidi3, count_leading_zeros)
2354         [__SHMEDIA__]: Implement.
2355         2001-03-11  Alexandre Oliva  <aoliva@redhat.com>
2356         * config/sh/sh.md: Set latency of `pt' closer to reality.
2357         (movsi_media, movsi_media_nofpu, movdi_media, movdi_media_nofpu,
2358         movdf_media, movdf_media_nofpu, movsf_media, movsf_media_nofpu):
2359         Set move, load and store type attributes.
2360         * config/sh/sh.c (sh_loop_align) [TARGET_SH5]: Set to 3.
2361         * config/sh/sh.h (OVERRIDE_OPTIONS) [TARGET_SH5]: Disable
2362         profiling.
2363         * config/sh/sh.h (PROMOTE_MODE): Sign-extend SImode to DImode.
2364         * config/sh/sh-protos.h (sh_media_register_for_return): Declare.
2365         * config/sh/sh.c (sh_media_register_for_return): New function.
2366         (sh_expand_prologue) [TARGET_SHMEDIA]: Copy r18 to an available
2367         branch-target register.
2368         (sh_expand_epilogue) [TARGET_SHMEDIA]: Explicitly USE it.
2369         * config/sh/sh.md (return_media_i): Use any call-clobbered
2370         branch-target register.
2371         (return_media): If r18 wasn't copied in the prologue, copy it
2372         here.
2373         * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE) [TARGET_SHMEDIA]:
2374         Clear class FP0_REGS.
2375         * config/sh/sh64.h (LINK_SPEC): Removed incorrect default copied
2376         from elf.h.
2377         2001-03-08  DJ Delorie  <dj@redhat.com>
2378         * config/sh/sh.h (OVERRIDE_OPTIONS): Disable relaxing for SHMEDIA.
2379         2001-02-09  Alexandre Oliva  <aoliva@redhat.com>
2380         * config/sh/sh.md (sibcall_compact): Set fp_mode to single.
2381         2001-02-07  Alexandre Oliva  <aoliva@redhat.com>
2382         * config/sh/sh.h (INT_ASM_OP) [SHMEDIA64]: Use `.quad'.
2383         2001-02-03  Alexandre Oliva  <aoliva@redhat.com>
2384         * config/sh/sh.h (INIT_CUMULATIVE_ARGS): Compute size of BLKmode
2385         return value correctly for call_cookie.
2386         2001-02-01  Alexandre Oliva  <aoliva@redhat.com>
2387         * config/sh/crt1.asm (start): Modified so as to call
2388         ___setup_argv_and_call_main.
2389         2001-01-26  Alexandre Oliva  <aoliva@redhat.com>
2390         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't count stack_regs in
2391         SHmedia mode.
2392         2001-01-20  Alexandre Oliva  <aoliva@redhat.com>
2393         * config/sh/sh.h (STRIP_DATALABEL_ENCODING): New macro.
2394         (STRIP_NAME_ENCODING): Use it.
2395         (ASM_OUTPUT_LABELREF): Likewise.  Don't call assemble_name().
2396         2001-01-19  Alexandre Oliva  <aoliva@redhat.com>
2397         * config/sh/sh.md (sgeu) [! SHMEDIA]: Fix invocation of
2398         prepare_scc_operands().
2399         * config/sh/sh.h (SH_DATALABEL_ENCODING): Change to "#"...
2400         (DATALABEL_SYMNAME_P): ... so that we don't need memcmp here.
2401         2001-01-17  Alexandre Oliva  <aoliva@redhat.com>
2402         * config/sh/sh.h (STRIP_NAME_ENCODING): Strip leading `*'.
2403         2001-01-13  Alexandre Oliva  <aoliva@redhat.com>
2404         * config/sh/sh.md (shcompact_incoming_args): Use R0_REG.
2405         * config/sh/sh.md (R7_REG, R8_REG, R9_REG): Define as constants,
2406         used in shcompact_incoming_args.
2407         * config/sh/sh.c (sh_expand_epilogue): Fix thinko in previous
2408         change.
2409         * config/sh/crt1.asm (start) [SH5]: Switch to single-precision
2410         mode.
2411         * config/sh/lib1funcs.asm (sdivsi3_i4, udivsi3_i4, set_fpscr):
2412         Adjust accordingly.
2413         * config/sh/sh.c (sh_expand_prologue, sh_expand_epilogue):
2414         Simplify.  Adjust.  Add sanity check.
2415         * config/sh/sh.h (TARGET_SWITCHES) [5-compact]: Set
2416         FPU_SINGLE_BIT.
2417         * config/sh/sh.md (udivsi3_i4_single, divsi3_i4_single): Match
2418         TARGET_SHCOMPACT.
2419         (udivsi3, divsi3): Use them.
2420         (force_mode_for_call): New insn.
2421         (call, call_value, sibcall_value): Emit it before SHcompact
2422         calls.
2423         2001-01-11  Alexandre Oliva  <aoliva@redhat.com>
2424         * config/sh/sh.md (call, call_value, sibcall): Make sure the
2425         call cookie is non-NULL before taking its value.
2426         2001-01-10  Alexandre Oliva  <aoliva@redhat.com>
2427         * config.gcc (sh64): Set target_requires_64bit_host_wide_int.
2428         2001-01-09  Alexandre Oliva  <aoliva@redhat.com>
2429         * config/sh/sh.md (shcompact_incoming_args): Set argument memory
2430         block.
2431         * config/sh/sh.h (STATIC_CHAIN_REGNUM) [SH5]: Use r1.
2432         * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r0 as
2433         temporary for stack adjusts.  Use MACL and MACH to pass
2434         arguments to shcompact_incoming_args.
2435         * config/sh/sh.md (shcompact_incoming_args): Adjust.  Don't
2436         clobber r1.
2437         * config/sh/lib1funcs.asm (shcompact_incoming_args): Likewise.
2438         (nested_trampoline): Load static chain address into r1.
2439         * config/sh/sh.md (movdi_media splits): Fix sign-extension.
2440         2001-01-07  Alexandre Oliva  <aoliva@redhat.com
2441         * config/sh/sh.c (fpul_operand) [SHMEDIA]: Just call
2442         fp_arith_reg_operand().
2443         2001-01-06  Alexandre Oliva  <aoliva@redhat.com>
2444         * config/sh/sh.md (casesi): Sign-extend the first two operands,
2445         and use signed compares for them.
2446         * config/sh/sh.c (dump_table): Don't emit 8-byte constants after
2447         4-byte ones.  Instead, inter-leave them, maintaining the 8-byte
2448         ones properly aligned.
2449         (find_barrier): Account for extra alignment needed for 8-byte wide
2450         constants.
2451         (machine_dependent_reorg): Require a label for the second 4-byte
2452         constant after an 8-byte one.
2453         * config/sh/lib1funcs.asm (sdivsi3): Fix typo in yesterday's
2454         change.
2455         2001-01-05  Alexandre Oliva  <aoliva@redhat.com>
2456         * config/sh/sh.c (machine_dependent_reorg) [SHCOMPACT]: Reset
2457         last_float when switching float modes.
2458         * config/sh/sh.md (movdf) [SH5]: Don't use stack-pointer
2459         auto-increment for general-purpose registers.
2460         * config/sh/lib1funcs.asm (sdivsi3) [SHMEDIA]: Sign-extend the
2461         result.
2462         * config/sh/sh.c (sh_expand_prologue) [SH5]: Use r1 as temporary
2463         for stack adjust.
2464         * config/sh/sh.c (sh_builtin_saveregs): Support using all
2465         registers for varargs.
2466         2001-01-01  Alexandre Oliva  <aoliva@redhat.com>
2467         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Simplify.
2468         * config/sh/sh.h (CALL_COOKIE_STACKSEQ,
2469         CALL_COOKIE_STACKSEQ_SHIFT, CALL_COOKIE_STACKSEQ_GET): New macros.
2470         (CALL_COOKIE_INT_REG_SHIFT): Adjust.
2471         (FUNCTION_ARG_ADVANCE): Use SHCOMPACT_FORCE_ON_STACK.  Adjust
2472         call_cookie accordingly.
2473         (FUNCTION_ARG): Test SHCOMPACT_FORCE_ON_STACK.
2474         (SHCOMPACT_BYREF): Likewise.
2475         (SHCOMPACT_FORCE_ON_STACK): New macro.
2476         * config/sh/sh.c (sh_expand_prologue): Use new call_cookie format.
2477         (sh_builtin_saveregs): Likewise.
2478         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
2479         shcompact_incoming_args): Use new shift values.  Support
2480         sequences of consecutive and non-consecutive pushes/pops.
2481         * config/sh/sh.md (return): Don't explicitly use PR_REG.
2482         2001-01-05  Hans-Peter Nilsson  <hpn@cygnus.com>
2483         * config/sh/sh.h (TEXT_SECTION): Define.
2484         * config/sh/elf.h (ASM_FILE_START): Output TEXT_SECTION_ASM_OP.
2485         2001-01-05  Alexandre Oliva  <aoliva@redhat.com>
2486         * config/sh/sh.h (INIT_CUMULATIVE_LIBCALL_ARGS): New macro.
2487         * config/sh/sh.h (BASE_RETURN_VALUE_REG): Use FP regs for
2488         return values on FPU-enabled SHmedia.
2489         (FUNCTION_VALUE_REGNO_P): Mark FIRST_FP_RET_REG as used on
2490         FPU-enabled SHmedia.
2491         (INIT_CUMULATIVE_ARGS): Set up return trampoline only if
2492         value is returned in a non-FP reg and is not returned by
2493         reference.
2494         * config/sh/sh.md (shcompact_return_tramp_i): Change type to
2495         jump_ind.
2496         2000-01-04  Alexandre Oliva  <aoliva@redhat.com>
2497         * config/sh/sh.h (SH_MIN_ALIGN_FOR_CALLEE_COPY): New.
2498         (FUNCTION_ARG_CALLEE_COPIES): Require argument to be
2499         quad-aligned to be passed by callee-copy reference.
2500         2001-01-03  Alexandre Oliva  <aoliva@redhat.com>
2501         * config/sh/elf.h (MAX_WCHAR_TYPE_SIZE): Define.
2502         * config/sh/sh64.h (MAX_WCHAR_TYPE_SIZE): Undefine.
2503         2001-01-02  Alexandre Oliva  <aoliva@redhat.com>
2504         * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix error in
2505         copying low-numbered FP regs to r7 and r8.
2506         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Don't request copying of
2507         FP regs to general-purpose regs only if the copy was passed on the
2508         stack.
2509         * config/sh/lib1funcs.asm (shcompact_call_trampoline): Fix typo in
2510         copying FP reg to r9.
2511         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Use trampoline to
2512         copy FP regs to general-purpose regs only in outgoing calls.
2513         * config/sh/sh.md (movdf_media, movsf_media): Revert incorrect
2514         change from     2000-10-30.  Adjust for 64-bit (or 32-bit)
2515         HOST_WIDE_INT.
2516         * config/sh/sh.h (struct sh_args): Document all fields.
2517         (FUNCTION_OK_FOR_SIBCALL): Functions that receive arguments
2518         passed partially on the stack should not consider making
2519         sibcalls.
2520         * config/sh/sh.h (FUNCTION_ARG_ADVANCE): Add byref regs to
2521         stack_regs only for incoming calls.  When passing FP args,
2522         make sure there are FP regs available before modifying
2523         call_cookie.
2524         (SHCOMPACT_BYREF): Pass double args in general-purpose
2525         registers by reference.
2526         2000-12-30  Alexandre Oliva  <aoliva@redhat.com>
2527         * config/sh/sh.h (FUNCTION_OK_FOR_SIBCALL) [SHCOMPACT]: Don't
2528         attempt to generate sibcalls if the caller got any arguments
2529         by reference.
2530         * config/sh/lib1funcs.asm (set_fpscr) [SH5]: Default to double.
2531         * config/sh/sh.c (dump_table) [SHCOMPACT]: Align DImode and DFmode
2532         to 8-byte boundaries.
2533         * config/sh/sh.md (shcompact_preserve_incoming_args): New insn.
2534         * config/sh/sh.h (CALL_COOKIE_INT_REG_GET): New macro.
2535         * config/sh/sh.c (sh_expand_prologue): Preserve args that will be
2536         stored in the stack.
2537         * config/sh/lib1funcs.asm (ct_main_table, ia_main_table): Arrange
2538         for the offsets to have the ISA bit set.
2539         (shcompact_call_trampoline): Document.  Swap r0 and r1, to match
2540         invocation.  Use beq instead of bgt to mark end of sequence of
2541         loads.
2542         (shcompact_incoming_args): Fix store of r2.  Use beq instead of
2543         bgt to mark end of sequence of stores.
2544         * config/sh/sh.c (arith_operand): Don't check whether
2545         CONST_OK_FOR_J for now.
2546         * config/sh/sh.md (movdf_media, movsf_media): Use HOST_WIDE_INT
2547         instead of long for conversion.
2548         2000-12-29  Alexandre Oliva  <aoliva@redhat.com>
2549         * config/sh/sh.c (print_operand_address): Convert INTVAL to int
2550         before passing it to fprintf.
2551         2000-12-28  Alexandre Oliva  <aoliva@redhat.com>
2552         * config/sh/crt1.asm (start): Reset SR.FD, to enable the FP unit.
2553         Call set_fpscr before reading/writing SR.
2554         * config/sh/crt1.asm (start): Set SR.SZ and SR.PR, but not SR.FR.
2555         Call set_fpscr.
2556         * config/sh/lib1funcs.asm: Add `.align 2' directives before
2557         SHmedia code.
2558         (FMOVD_WORKS): Define on SH5 with FPU.
2559         (set_fpscr): Define on SH5.  Remove separate _fpscr_values
2560         setting.
2561         * config/sh/t-sh64 (LIB1ASMFUNCS): Add _set_fpscr instead of
2562         _fpscr_values.
2563         2000-12-28  Hans-Peter Nilsson  <hpn@cygnus.com>
2564         * config/sh/lib1funcs.asm (ct_main_table): Align contents to even
2565         address.
2566         (ia_main_table): Ditto.
2567         2000-12-27  Alexandre Oliva  <aoliva@redhat.com>
2568         * config/sh/sh.h (MAX_WCHAR_TYPE_SIZE): Don't define.
2569         * config/sh/sh64.h (WCHAR_TYPE, WCHAR_TYPE_SIZE): Reinstate
2570         the definitions from sh.h.
2571         * config/sh/sh.h (PTRDIFF_TYPE): Define as conditional on
2572         TARGET_SH5.
2573         (SUBTARGET_CPP_SPEC): Arrange for __PTRDIFF_TYPE__ to be defined.
2574         * config/sh/elf.h (PTRDIFF_TYPE): Likewise.
2575         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
2576         2000-12-26  Alexandre Oliva  <aoliva@redhat.com>
2577         * config/sh/sh.md (movdi_media split): Don't add REG_LABEL notes.
2578         Increment LABEL_NUSES.
2580         * config/sh/sh.h (SIZE_TYPE): Define as conditional on
2581         TARGET_SH5.
2582         (SUBTARGET_CPP_SPEC): Arrange for __SIZE_TYPE__ to be always
2583         defined.
2584         * config/sh/elf.h (SIZE_TYPE): Likewise.
2585         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Likewise.
2586         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
2587         shcompact_incoming_args): Load switch table addresses using
2588         datalabel.
2589         * config/sh/sh.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
2590         (NO_BUILTIN_SIZE_TYPE): Define.
2591         (SIZE_TYPE): Don't define.
2592         * config/sh/sh64.h (SUBTARGET_CPP_SPEC): Define __SIZE_TYPE__.
2593         * config/sh/sh.h (CPP_SPEC): Fixed typo that prevented the
2594         definition of __SH5__=32 for -m5-compact-nofpu.
2595         * config/sh/sh.c (barrier_align): Ensure 32-bit alignment after
2596         ADDR_DIFF_VEC.
2597         2000-12-24  Alexandre Oliva  <aoliva@redhat.com>
2598         * config/sh/sh.h (FUNCTION_ARG_PADDING): Removed.
2599         2000-12-23  Alexandre Oliva  <aoliva@redhat.com>
2600         * config/sh/sh.h (TARGET_CACHE32): Enable on SH5.
2601         (FUNCTION_BOUNDARY): Ensure 32-bit alignment for SHmedia.
2602         (INSN_LENGTH_ALIGNMENT): Likewise.
2603         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
2604         * config/sh/sh.md (call, call_value, sibcall): Simplify
2605         copying of non-branch-target register.
2606         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
2607         * glimits.h (__LONG_MAX__): Revert      2000-12-13's patch.
2608         * config/sh/sh.h (CPP_SPEC): Define it here for 64-bit SHmedia.
2609         2000-12-22  Alexandre Oliva  <aoliva@redhat.com>
2610         * config/sh/sh.h (GET_SH_ARG_CLASS): Handle complex
2611         floating-point values as structs.
2612         (FUNCTION_ARG): Use SH5_PROTOTYPED_FLOAT_ARG.
2613         (SH5_PROTOTYPELESS_FLOAT_ARG): List FP registers before
2614         general-purpose register.
2615         (SH5_PROTOTYPED_FLOAT_ARG): New macro.
2616         2000-12-20  Alexandre Oliva  <aoliva@redhat.com>
2617         * config/sh/sh.md (addsi3): Force operand1 to reg for SHmedia.
2618         * config/sh/sh.md (movsi_media): Split CONST_DOUBLE loads too.
2619         * config/sh/sh.h (DATALABEL_REF_P): Don't require the CONST.
2620         (ENCODE_SECTION_INFO): Enclose variables and constants in
2621         DATALABEL unspecs.
2622         (SH_DATALABEL_ENCODING, DATALABEL_SYMNAME_P): Define.
2623         (STRIP_NAME_ENCODING): Strip SH_DATALABEL_ENCODING off.
2624         (ASM_OUTPUT_LABELREF, AMS_OUTPUT_SYMBOL_REF): Define.
2625         * config/sh/sh.c (gen_datalabel_ref): Use UNSPEC_DATALABEL
2626         only for LABEL_REFs.  For SYMBOL_REFs, prepend
2627         SH_DATALABEL_ENCODING to the symbol name.
2628         * config/sh/sh.md (indirect_jump): Use SUBREG instead of
2629         convert_mode().
2630         2000-12-20  Alexandre Oliva  <aoliva@redhat.com>
2631         * config/sh/sh.md (casesi): Enclose ADDR_DIFF_VEC address in
2632         UNSPEC_DATALABEL.
2633         * config/sh/sh.c (gen_datalabel_ref): Accept LABEL_REFs.
2634         * config/sh/sh.h (DATALABEL_REF_NO_CONST_P): Likewise.
2635         (DATALABEL_REF_P): Don't require CONST.
2636         (ASM_OUTPUT_ADDR_DIFF_ELT): On SH5, output datalabel before
2637         REL label.
2638         2000-12-19  Alexandre Oliva  <aoliva@redhat.com>
2639         * config/sh/sh.md (extendhidi2, extendqidi2): Use arithmetic shift
2640         right.
2641         2000-12-18  Alexandre Oliva  <aoliva@redhat.com>
2642         * config/sh/sh.md (movsi_media, call, call_value, sibcall):
2643         Use shallow_copy_rtx and PUT_MODE to change the mode of
2644         SYMBOL_REFs, LABEL_REFs, CONSTs, etc.
2645         * config/sh/sh.h (PREFERRED_RELOAD_CLASS): Reload SYMBOL_REFs
2646         on SHmedia using GENERAL_REGs.
2647         * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
2648         bltu_media_i): Fix reversion of conditions.
2649         2000-12-18  Alexandre Oliva  <aoliva@redhat.com>
2650         * config/sh/sh.md (zero_extendhidi2): Use logical shift right.
2651         * config/sh/sh.c (output_far_jump): Save r13 in macl.
2652         2000-12-17  Alexandre Oliva  <aoliva@redhat.com>
2653         * config/sh/sh.c (gen_datalabel_ref): Fix mode of the UNSPEC.
2654         2000-12-16  Alexandre Oliva  <aoliva@redhat.com>
2655         * config/sh/lib1funcs.asm (ic_invalidate): Define for SH5.
2656         (GCC_nested_trampoline): Likewise.
2657         * config/sh/sh-protos.h (gen_datalabel_ref): Declare.
2658         * config/sh/sh.c (gen_datalabel_ref): Define.
2659         * config/sh/sh.h (TRAMPOLINE_SIZE): Adjust for SH5.
2660         (INITIALIZE_TRAMPOLINE): Likewise.
2661         (TRAMPOLINE_ADJUST_ADDRESS): Define.
2662         (DATALABEL_REF_NO_CONST_P, DATALABEL_REF_P): Define.
2663         (EXTRA_CONSTRAINT_T): Match DATALABEL unspecs.
2664         (OUTPUT_ADDR_CONST_EXTRA): Handle DATALABEL unspecs.
2665         * config/sh/sh.md (UNSPEC_DATALABEL): New constant.
2666         (ic_invalidate): Adjust for SH5.
2667         (ic_invalidate_line_media, ic_invalidate_line_compact): New insns.
2668         * config/sh/t-sh64 (LIB1ASMFUNCS): Added _ic_invalidate and
2669         _nested_trampoline.
2670         2000-12-15  Alexandre Oliva  <aoliva@redhat.com>
2671         * config/sh/sh.h (MOVE_MAX): Set to 8 for SHmedia, 4 elsewhere.
2672         (MOVE_MAX_PIECES): Set to 8 on SHmedia too.
2673         2000-12-14  Alexandre Oliva  <aoliva@redhat.com>
2674         * config/sh/sh.h (DBX_REGISTER_NUMBER): Adjust for sh64-elf-gdb.
2675         * config/sh/elf.h (DBX_REGISTER_NUMBER): Likewise.
2676         2000-12-14  Alexandre Oliva  <aoliva@redhat.com>
2677         * config/sh/sh.c (target_reg_operand): Match only target-branch
2678         registers and pseudos that aren't virtual registers.
2679         * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
2680         Copy operands that don't match target_reg_operand to pseudos.
2681         (call_media, call_value_media, sibcall_media): Use
2682         target_reg_operand instead of target_operand.
2683         2000-12-13  Alexandre Oliva  <aoliva@redhat.com>
2684         * glimits.h (__LONG_MAX__) [SH5 == 64]: Adjust for 64 bits.
2685         * config/sh/sh.c (target_reg_operand): Match hardware registers
2686         other than branch-target registers.
2687         * config/sh/sh.md (zero_extendqidi2): Input operand is %1.
2688         * config/sh/lib1funcs.asm (sdivsi3) [SH5]: Make it global.
2689         (fpscr_values) [SH5 == 32]: Define.
2690         * config/sh/t-sh64 (LIB1ASMFUNCS): Add fpscr_values.
2691         * config/sh/sh.md (call, call_value, sibcall) [TARGET_SHMEDIA]:
2692         Handle function addresses coming in SUBREGs.
2693         2000-12-12  Alexandre Oliva  <aoliva@redhat.com>
2694         * config/sh/lib1funcs.asm (shcompact_call_trampoline,
2695         shcompact_return_trampoline): Use datalabel where appropriate.
2696         2000-12-09  Alexandre Oliva  <aoliva@redhat.com>
2697         * config/sh/sh.h (SECONDARY_OUTPUT_RELOAD_CLASS): Use a
2698         general-purpose register to copy one branch-target register to
2699         another.
2700         2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
2701         * config/sh/sh.c (target_operand): Accept LABEL_REFs and
2702         SYMBOL_REFs with VOIDmode.
2703         * config/sh/sh.md (ble_media_i, blt_media_i, bleu_media_i,
2704         bltu_media_i): New insns.
2705         2000-12-06  Alexandre Oliva  <aoliva@redhat.com>
2706         * config/sh/sh.h (RETURN_IN_MEMORY): Adjust for SH5 ABI.
2707         (INIT_CUMULATIVE_ARGS): Likewise.
2708         2000-12-01  Alexandre Oliva  <aoliva@redhat.com>
2709         * machmode.def (V16SFmode): New mode.
2710         * c-common.c (type_for_mode): Support V2SF and V16SF.
2711         * tree.c (build_common_tree_nodes_2): Likewise.
2712         * tree.h (tree_index): Likewise.
2713         * calls.c (emit_call_1): Take args_so_far.  Adjust all
2714         callers.  Introduce CALL_POPS_ARGS.
2715         * tm.texi (CALL_POPS_ARGS): Document.
2716         * config/sh/crt1.asm: Implement in SHmedia mode.
2717         * config/sh/crti.asm, config/sh/crtn.asm: Likewise
2718         * config/sh/elf.h (ASM_SPEC, LINK_SPEC): Support SH5 flags.
2719         (DBX_REGISTER_NUMBER): Renumber registers for SH5.
2720         * config/sh/lib1funcs.asm: Disable functions unused in SH5.
2721         Implement divsi and udivsi in SHmedia mode.  Introduce
2722         SHcompact trampolines.
2723         * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): Use DImode
2724         only in SHmedia64.
2725         (regno_reg_class): Rewrite.
2726         (fp_reg_names): Remove.
2727         (sh_register_names, sh_additional_register_names): New.
2728         (print_operand): Added `u'.  Support SUBREGs in addresses.
2729         Add parentheses around shifted CONSTs.
2730         (output_file_start): Output .mode and .abi directives.
2731         (shiftcosts, addsubcosts, multcosts): Adjust.
2732         (output_stack_adjust): Compute alignment.  Sanity-check SIZE.
2733         (push_regs): Take array of HOST_WIDE_INTs.  Adjust callers.
2734         (calc_live_regs): Output to array of HOST_WIDE_INTs.  Count
2735         bytes, not registers.  Take into account the need for the
2736         SHcompact incoming args trampoline.  Adjust all callers.
2737         (sh_expand_prologue): Take stack_regs into account.  Call
2738         incoming args trampoline.  Keep stack aligned as per SH5 ABI.
2739         (sh_expand_epilogue): Take stack_regs into accoutn.  Keep
2740         stack aligned as per SH5 ABI.
2741         (sh_builtin_saveregs): Support SH5 ABI.
2742         (sh_build_va_list, sh_va_start): Likewise.
2743         (initial_elimination_offset): Take alignment into account.
2744         Compute location of PR according to the SH5 stack frame.
2745         (arith_reg_operand): Reject branch-target registers.
2746         (shmedia_6bit_operand): New.
2747         (logical_operand): Use CONST_OK_FOR_P on SHmedia.
2748         (target_reg_operand): Match DImode only.  Accept SUBREGs.
2749         (target_operand): New.
2750         * config/sh/sh.h (CPP_SPEC, SUBTARGET_CPP_SPEC): Support SH5 flags.
2751         (CONDITIONAL_REGISTER_USAGE): Implement SH5 ABI.  Initialize
2752         SIBCALL_REGS for SHmedia.
2753         (TARGET_SH3E, TARGET_SH4): Only if SH1_BIT is set too.
2754         (TARGET_FPU_DOUBLE, TARGET_FPU_ANY): New.
2755         (TARGET_SHMEDIA32, TARGET_SHMEDIA64): New.
2756         (TARGET_SWITCHES): New SH5 flags.
2757         (OVERRIDE_OPTIONS): Set SH5-specific options.  Use
2758         VALID_REGISTER_P to disable unsupported registers.
2759         (LONG_TYPE_SIZE, LONG_LONG_TYPE_SIZE): Set.
2760         (POINTER_SIZE, PARM_BOUNDARY): Adjust.
2761         (FUNCTION_ARG_PADDING): Define.
2762         (FASTEST_ALIGNMENT): Adjust.
2763         (SH_REGISTER_NAMES_INITIALIZER): New.
2764         (sh_register_names): Declare.
2765         (DEBUG_REGISTER_NAMES): Define.
2766         (REGISTER_NAMES): Define based on sh_register_names.
2767         (SH_ADDITIONAL_REGISTER_NAMES_INITIALIZER): New.
2768         (sh_additional_register_names): Declare.
2769         (LAST_GENERAL_REG, LAST_FP_REG, LAST_XD_REG): Adjust for SHmedia.
2770         (FIRST_TARGET_REG, LAST_TARGET_REG): Define.
2771         (TARGET_REGISTER_P, SHMEDIA_REGISTER_P, VALID_REGISTER_P): Define.
2772         (REGISTER_NATURAL_MODE): Define.
2773         (FIRST_PSEUDO_REGISTER): Adjust.
2774         (FIXED_REGISTERS, CALL_USED_REGISTERS): Adjust.
2775         (HARD_REGNO_CALL_PART_CLOBBERED): Define.
2776         (HARD_REGNO_NREGS, HARD_REGNO_MODE_OK): Adjust.
2777         (VECTOR_MODE_SUPPORTED_P): Define.
2778         (REG_CLASS_CONTENTS): Adjust.
2779         (SMALL_REGISTER_CLASSES): Adjust.
2780         (REG_ALLOC_ORDER): Adjust.
2781         (INDEX_REG_CLASS): Adjust.
2782         (CONST_OK_FOR_O, CONST_OK_FOR_P): New.
2783         (CONST_OK_FOR_LETTER_P): Adjust.
2784         (PREFERRED_RELOAD_CLASS): Adjust.
2785         (SECONDARY_OUTPUT_RELOAD_CLASS): Adjust.
2786         (SECONDARY_INPUT_RELOAD_CLASS): Adjust.
2787         (NPARM_REGS, FIRST_PARM_REG, FIRST_RET_REG): Adjust.
2788         (FIRST_FP_PARM_REG): Adjust.
2789         (CALL_POPS_ARGS): Define.
2790         (FUNCTION_ARG_REGNO_P): Adjust.
2791         (struct sh_args): New fields.
2792         (GET_SH_ARG_CLASS): Adjust.
2793         (INIT_CUMULATIVE_ARGS): Adjust.
2794         (INIT_CUMULATIVE_INCOMING_ARGS): Define.
2795         (FUNCTION_ARG_ADVANCE): Adjust.
2796         (FUNCTION_ARG): Adjust.
2797         (FUNCTION_ARG_PASS_BY_REFERENCE, SHCOMPACT_BYREF): Define.
2798         (FUNCTION_ARG_CALLEE_COPIES): Define.
2799         (SH5_PROTOTYPELESS_FLOAT_ARG): Define.
2800         (STRICT_ARGUMENT_NAMING): Define.
2801         (PRETEND_OUTGOING_VARARGS_NAMED): Adjust.
2802         (FUNCTION_ARG_PARTIAL_NREGS): Adjust.
2803         (SH5_WOULD_BE_PARTIAL_NREGS): Define.
2804         (SETUP_INCOMING_VARARGS): Adjust.
2805         (HAVE_POST_INCREMENT, HAVE_PRE_DECREMENT): Adjust.
2806         (USE_LOAD_POST_INCREMENT, USE_STORE_PRE_DECREMENT): Adjust.
2807         (REGNO_OK_FOR_INDEX_P, REG_OK_FOR_INDEX_P): Adjust.
2808         (SUBREG_OK_FOR_INDEX_P): Adjust.
2809         (EXTRA_CONSTRAINT_S): Update.
2810         (EXTRA_CONSTRAINT_T): New.
2811         (EXTRA_CONSTRAINT): Adjust.
2812         (GO_IF_LEGITIMATE_INDEX): Adjust.
2813         (GO_IF_LEGITIMATE_ADDRESS): Adjust.
2814         (LEGITIMIZE_ADDRESS, LEGITIMIZE_RELOAD_ADDRESS): Adjust.
2815         (MOVE_MAX): Adjust.
2816         (MAX_MOVE_MAX): Define.
2817         (Pmode): Adjust.
2818         (CONST_COSTS): Adjust.
2819         (REGISTER_MOVE_COST): Adjust.
2820         (BRANCH_COST): Adjust.
2821         (TEXT_SECTION_ASM_OP): Adjust.
2822         (DBX_REGISTER_NUMBER): Adjust.
2823         (ASM_OUTPUT_DOUBLE_INT): New.
2824         (UNALIGNED_DOUBLE_INT_ASM_OP): New.
2825         (PREDICATE_CODES): Adjust.
2826         (PROMOTE_MODE): Adjust.
2827         (CRT_CALL_STATIC_FUNCTION): Do not define for SHmedia.
2828         * config/sh/sh.md (AP_REG, PR_REG, T_REG, GBR_REG): Renumber.
2829         (MACH_REG, MACL_REG, FPUL_REG, RAP_REG, FPSCR_REG): Renumber.
2830         (PR_MEDIA_REG, T_MEDIA_REG, R10_REG): New.
2831         (DR0_REG, DR2_REG, DR4_REG): Renumber.
2832         (TR0_REG, TR1_REG, TR2_REG): New.
2833         (XD0_REG): Renumber.
2834         (UNSPEC_COMPACT_ARGS): New.
2835         (type): Added pt and ptabs.
2836         (length): Default to 4 on SHmedia.  Default pt length to 12
2837         and     20 on SHmedia32 and SHmedia64, respectively.
2838         (pt): New function unit.
2839         (movdi, movsi): Add types pt and ptabs.  Don't increment LABEL_NUSES.
2840         Add whitespace between operands of SHmedia instructions.
2841         (movdicc): Fix.
2842         (adddi3_media, addsi3_media): Adjust constraints.
2843         (subsi3) [SHmedia]: Force operand 1 into a register.
2844         (udivsi3_i1_media, udivsi3_i4_media): New.
2845         (udivsi3): Support SHmedia.
2846         (divsi3_i1_media, divsi3_i4_media): New.
2847         (divsi3): Support SHmedia.
2848         (anddi3, iordi3, xordi3): Adjust constraints.
2849         (zero_extendhidi2, zero_extendqidi2): New.
2850         (extendsidi2, extendhidi2, extendqidi2): New.
2851         (push, pop, push_e, push_fpul, push_4): Disable on SH5.
2852         (pop_e, pop_fpul, pop_4): Likewise.
2853         (movsi_media): Support FP and BT registers.
2854         (movsi_media_nofpu): New.  Adjust splits to DImode.
2855         (lduw, ldub): Renamed to zero_extend* above.
2856         (movqi_media): Fix typo.
2857         (movdi_media): Support FP and BT registers.
2858         (movdi_media_nofpu): New.  Adjust splits for SHmedia32.
2859         (movdi_const_32bit): New.
2860         (shori_media): Require immediate operand.  Use `u' for output.
2861         (movdf_media, movsf_media): Simplified.
2862         (movdf_media_nofpu, movsf_media_nofpu): New.
2863         (movdf, movsf): Adjust
2864         (movv2sf, movv2sf, movv16sf): New.
2865         (beq_media, beq_media_i): Adjust constraints.  Don't use
2866         scratch BT register.
2867         (bne_media, bne_media_i): Likewise.
2868         (bgt_media, bgt_media_i): Likewise.
2869         (bge_media, bge_media_i): Likewise.
2870         (bgtu_media, bgtu_media_i): Likewise.
2871         (bgeu_media, bgeu_media_i): Likewise.
2872         (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu,
2873         bunordered): Emit jump insn.  Force operands to registers when
2874         needed.
2875         (jump_media, jump): Simplify.
2876         (call_compact, call_compact_rettramp): New.
2877         (call_value_compact, call_value_compact_rettramp): New.
2878         (call_media, call_value_media): Simplify.
2879         (sibcall_compact, sibcall_media): New.
2880         (call, call_value): Adjust for SHmedia and SHcompact.
2881         (sibcall, sibcall_value, untyped_call): Likewise.
2882         (sibcall_epilogue): Preserve r0 across epilogue for SHcompact.
2883         (indirect_jump): Adjust for SHmedia.
2884         (casesi_jump_media): New.
2885         (nop): Re-enable for SHmedia.
2886         (call_site): Restrict to SH1.
2887         (casesi): Adjust for SHmedia.
2888         (casesi_shift_media, casesi_load_media): New.
2889         (return): Explicitly use PR register.  Call return trampoline
2890         on SHcompact.
2891         (return_i): Explicitly use PR register.
2892         (shcompact_return_tramp, shcompact_return_tramp_i): New.
2893         (return_media): Adjust.
2894         (shcompact_incoming_args): New.
2895         (epilogue): Adjust.
2896         (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
2897         (movstrsi): Disable on SH5.
2898         (fpu_switch0, fpu_switch1, movpsi): Enable on SH4.
2899         (addsf3, addsf3_media): Test TARGET_SHMEDIA_FPU.
2900         (subsf3, subsf3_media): Likewise.
2901         (mulsf3, mulsf3_media, mac_media): Likewise.
2902         (divsf3, divsf3_media): Likewise.
2903         (floatdisf2, floatsisf2_media): Likewise.  Adjust constraints.
2904         (floatsisf2, fux_truncsfsi2): Likewise.
2905         (fix_truncsfdi2, fix_truncsfsi2_media): Likewise.  Adjust
2906         constraints.
2907         (cmpeqsf_media, cmpgtsf_media, cmpgesf_media): Likewise.
2908         (cmpunsf_media, cmpsf): Likewise.
2909         (negsf2, negsf2_media, sqrtsf2, sqrtsf2_media): Likewise.
2910         (abssf2, abssf2_media): Likewise.
2911         (adddf3, adddf3_media, subdf3, subdf3_media): Likewise.
2912         (muldf3, muldf3_media, divdf3, divdf3_media): Likewise.
2913         (floatdidf2, floatsidf2_media): Likewise.  Adjust constraints.
2914         (floatsidf2, fix_truncdfsi2): Likewise.
2915         (fix_truncdfdi2, fix_truncdfsi2_media): Likewise.  Adjust
2916         constraints.
2917         (cmpeqdf_media, cmpgtdf_media): Likewise.
2918         (cmpgedf_media, cmpundf_media, cmpdf): Likewise.
2919         (negdf2, negdf2_media, sqrtdf2, sqrtdf2_media): Likewise.
2920         (absdf2, absdf2_media): Likewise.
2921         (extendsfdf2, extendsfdf2_media): Likewise.
2922         (truncsfdf2, truncsfdf2_media): Likewise.
2923         * config/sh/sh64.h: New file.
2924         * config/sh/t-sh64: New file.
2925         * config/sh/shmedia.h: New file.
2926         * config/sh/ushmedia.h: New file.
2927         * config/sh/sshmedia.h: New file.
2928         * configure.in: Added sh64-*-elf.
2929         * configure: Rebuilt.
2930         2000-10-10  Alexandre Oliva  <aoliva@redhat.com>
2931         * config/sh/sh.c (GEN_MOV, GEN_ADD3, GEN_SUB3): New macros.
2932         (reg_class_from_letter): Use `b' for TARGET_REGS.
2933         (print_operand): Support `%M', `%m', `AND' and
2934         `ASHIFTRT'.  Do not precede constants with `#' on SHmedia.
2935         (andcosts): Adjust for SHmedia.
2936         (output_stack_adjust, sh_expand_prologue, sh_expand_epilogue):
2937         Likewise.
2938         (target_reg_operand): New function.
2939         * config/sh/sh-protos.h (target_reg_operand): Declare.
2940         * config/sh/sh.h (CONDITIONAL_REGISTER_USAGE): Don't disable
2941         FP registers on SH5.
2942         (HARD_REGNO_MODE_OK): Accept them whenever they're acceptable
2943         on SH4.
2944         (TARGET_REGISTER_P): New macro.
2945         (reg_class, REG_CLASS_NAMES, REG_CLASS_CONTENTS): Added TARGET_REGS.
2946         (FUNCTION_VALUE): Use DImode for promoted types on SHmedia.
2947         (EXTRA_CONSTRAINT_S): New macro.
2948         (EXTRA_CONSTRAINT): Adjust.
2949         (FLOAT_TYPE_SIZE): Define to 32.
2950         (Pmode): DImode on SHmedia.
2951         (CONST_COSTS): Adjust for SHmedia literals.
2952         (PREDICATE_CODES): Added target_reg_operand.
2953         (PROMOTE_MODE): Promote signed types to DImode on SHmedia.
2954         * config/sh/sh.md: Remove all attrs from SHmedia insns.
2955         (cmpeqdi_media, cmpgtdi_media, cmpgtudi_media): New insns.
2956         (cmpdi): Accept SHmedia.
2957         (movdicc_false, movdicc_true): New insns.
2958         (movdicc): New expand.
2959         (adddi3): Accept arith_operand for op2, but FAIL on SH1 if
2960         no_new_pseudos.
2961         (addsi3_media): Match `S' constraint.
2962         (anddi3, andcdi3, iordi3, xordi3, negdi_media): New insns.
2963         (negdi2): Expand for SHmedia.
2964         (one_cmpldi2): New expand.
2965         (zero_extendsidi2): Change from expand to insn.
2966         (extendsidi2): Add constraints.
2967         (movdi_media, movsi_media): Change `%x' to `%M'.  Use `%m' for
2968         LD/ST address.  Fix SI immediate loading split.
2969         (movhi_media, movqi_media, lduw, ldub): New insns.
2970         (movhi, movqi): Accept SHmedia.
2971         (shori_media, movdi_media): Relax input constraints.  Split
2972         symbolic constants.
2973         (movdf_media, movsf_media): New insn.  New split to movdi.
2974         (movdf, movsf): Match on SHmedia.
2975         (beq_media, bne_media, bgt_media, bge_media, bgtu_media,
2976         bgeu_media): New insns and splits.  New insns with `_i' suffix.
2977         (beq, bne, bgt, blt, ble, bge, bgtu, bltu, bgeu, bleu): Adjust.
2978         (bunordered): New expand.
2979         (jump_compact): Renamed from `jump'.
2980         (jump_media): New insn.
2981         (jump): New expand.
2982         (call_media, call_value_media): New insns.
2983         (call, call_value): Adjust.
2984         (indirect_jump_compact): Renamed from `indirect_jump'.
2985         (indirect_jump_media): New insn.
2986         (indirect_jump): New expand.
2987         (untyped_call, return): Accept SHmedia.
2988         (return_media): New insn.
2989         (prologue, epilogue, blockage): Accept SHmedia.
2990         (seq, slt, sle, sgt, sge, sgtu, sltu, sleu, sgeu, sne): Adjust.
2991         (sunordered): New expand.
2992         (addsf3, subsf3, mulsf3, divsf3, floatsisf2, fix_truncsfsi2,
2993         cmpsf, negsf2, sqrtsf2, abssf2): Adjust for SHmedia.
2994         (addsf3_media, subsf3_media, mulsf3_media, mac_media,
2995         divsf3_media, floatdisf2, floatsisf2_media, fix_truncsfdi2,
2996         fix_truncsfsi2_media, cmpeqsf_media, cmpgtsf_media,
2997         cmpgesf_media, cmpunsf_media, negsf2_media, sqrtsf2_media,
2998         abssf2_media): New insns.
2999         (adddf3, subdf3, muldf3, divdf3, floatsidf2, fix_truncdfsi2,
3000         cmpdf, negdf2, sqrtdf2, absdf2): Adjust for SHmedia.
3001         (adddf3_media, subdf3_media, muldf3_media, divdf3_media,
3002         floatdidf2, floatsidf2_media, fix_truncdfdi2,
3003         fix_truncdfsi2_media, cmpeqdf_media, cmpgtdf_media,
3004         cmpgedf_media, cmpundf_media, negdf2_media, sqrtdf2_media,
3005         absdf2_media): New insns.
3006         (extendsfdf2, truncdfsf2): Adjust for SHmedia.
3007         (extendsfdf2_media, truncdfsf2_media): New insns.
3008         2000-09-14  Alexandre Oliva  <aoliva@redhat.com>
3009         * config/sh/sh.c (machine_dependent_reorg): On shmedia, skip for now.
3010         * config/sh/sh.h (CONST_OK_FOR_J): Document.
3011         (LEGITIMATE_CONSTANT_P): Accept CONST_DOUBLEs on shmedia.
3012         * config/sh/sh.md (adddi3): New expand.
3013         (adddi3_media, adddi3z_media): New insns.
3014         (adddi3_compact): Renamed from adddi3.
3015         (addsi3_media): Use add.l r63 to add constant zero.
3016         (subdi3): New expand.
3017         (subdi3_media): New insn.
3018         (subdi3_compact): Renamed from subdi3.
3019         (mulsidi3): New expand.
3020         (mulsidi3_media): New insn.
3021         (mulsidi3_compact): Renamed from mulsidi3.
3022         (umulsidi3): New expand.
3023         (umulsidi3_media): New insn.
3024         (umulsidi3_compact): Renamed from umulsidi3.
3025         (ashlsi3_media, ashrsi3_media, lshrsi3_media): New insns.
3026         (ashlsi3, ashrsi3, lshrsi3): Use them.
3027         (ashldi3_media, ashrdi3_media, lshrdi3_media): New insns.
3028         (ashldi3, ashrdi3, lshrdi3): Use them.
3029         (zero_extendsidi2): New expand.
3030         (extendsidi2): New insn.
3031         (movsi_media): New insn.  Split to movdi to load constants.
3032         (movsi): Enable for shmedia.
3033         (movdi_media): New insn.  Use shori_media to load wide constants.
3034         (short_media): New insn.
3035         (movdi): Enable for shmedia.
3036         2000-09-08  Alexandre Oliva  <aoliva@redhat.com>
3037         * config/sh/sh.h (CPP_SPEC): Added `m5'.
3038         (SUBTARGET_CPP_SPEC): Added `!m5'.
3039         (SH5_BIT, TARGET_SH5, TARGET_SHMEDIA, TARGET_SHCOMPACT): New macros.
3040         (TARGET_SWITCHES): Added `5' and `5-compact'.  Added SH1_BIT
3041         to all other SH variants.
3042         (TARGET_DEFAULT): Set to SH1_BIT.
3043         (OVERRIDE_OPTIONS): Recognize sh5 CPU.
3044         (BITS_PER_WORD): Raise to 64 on shmedia.
3045         (MAX_BITS_PER_WORD): Change to 64.
3046         (MAX_LONG_TYPE_SIZE, MAX_WCHAR_TYPE_SIZE): Set to MAX_BITS_PER_WORD.
3047         (INT_TYPE_SIZE): Keep as 32.
3048         (UNITS_PER_WORD): Raise to 8 on shmedia.
3049         (MIN_UNITS_PER_WORD): Keep as 4.
3050         (POINTER_SIZE): Raise to 64 on shmedia.
3051         (CONST_OK_FOR_J): New macro.
3052         (CONST_OK_FOR_LETTER_P): Use it.
3053         (processor_type): Add PROCESSOR_SH5.
3054         * config/sh/sh.md: Conditionalize all expands, insns and
3055         splits to TARGET_SH1.
3056         (cpu): Added sh5.
3057         (addsi3_compact): Renamed from...
3058         (addsi3): Now an expand.
3059         (addsi3_media, subsi3_media): New insns.
3060         (subsi3): Don't negate constants with SHmedia.
3062         * hooks.c: New file.
3063         * hooks.h: New file.
3064         * Makefile.in (HOOKS_H): New.
3065         (TARGET_DEF_H): Added $(HOOKS_H).
3066         (OBJS): Added hooks.o.
3067         (cfgcleanup.o, bb-reorder.o): Added target.h.
3068         (hooks.o): Added dependencies.
3069         * target-def.h (TARGET_CANNOT_MODIFY_JUMPS_P): New, added to...
3070         (TARGET_INITIALIZER): this.
3071         * doc/tm.texi (TARGET_CANNOT_MODIFY_JUMPS_P): Document.
3072         * target.h (struct gcc_target): Added cannot_modify_jumps_p.
3073         * bb-reorder.c: Include target.h.
3074         (reorder_basic_blocks): Skip if cannot modify jumps.
3075         * cfgcleanup.c: Include target.h.
3076         (try_optimize_cfg): Skip merge blocking if cannot modify jumps.
3078 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
3080         * config/mips/mips.md (casesi_internal, casesi_internal_di):
3081         Protect jump delay slot instructions with .set noreorder and
3082         .set nomacro.
3084 2002-02-08  Chris Demetriou  <cgd@broadcom.com>
3086         * config/mips/mips.md (casesi_internal_di): Calculate
3087         the index into the target offset table correctly.
3089 2002-02-08  Richard Henderson  <rth@redhat.com>
3091         * expr.c (expand_expr): Mind EXPAND_INITIALIZER for truncation also.
3092         * final.c (output_addr_const): Accept and discard SUBREG.
3093         * varasm.c (decode_addr_const): Don't abort on unknown expressions --
3094         mark them unknown instead.
3095         (simplify_subtraction): Handle RTX_UNKNOWN.
3096         (initializer_constant_valid_p): Strip NOP_EXPRs that narrow the mode.
3098 2002-02-08  David Edelsohn  <edelsohn@gnu.org>
3100         * doc/invoke.texi (RS/6000 and PowerPC Options): Fix typo.
3102 2002-02-08  Richard Henderson  <rth@redhat.com>
3104         * config/alpha/elf.h (ASM_OUTPUT_ALIGNED_BSS): New.
3106 2002-02-08  Andreas Jaeger  <aj@suse.de>
3108         * config.gcc (x86_64-*-linux): Add t-linux64 makefile fragment.
3109         * config/i386/t-linux64: New file.
3111 2002-02-08  Jakub Jelinek  <jakub@redhat.com>
3113         * c-common.c (c_expand_expr): Revert 2002-02-06 patch.
3114         * c-parse.in (compstmt): Clear last_expr_type.
3116 2002-02-07  Richard Henderson  <rth@redhat.com>
3118         * loop.c (strength_reduce): Sink final_value when not
3119         eliminating a biv.
3121 2002-02-07  David O'Brien  <obrien@FreeBSD.org>
3123         * config/sparc/freebsd.h: Fix mismatched spec {.
3125 2002-02-07  Richard Henderson  <rth@redhat.com>
3127         * cfgrtl.c: Include recog.h and insn-config.h.
3128         (keep_with_call_p): Fix general_operand invocation.
3129         * Makefile.in (cfgrtl.o): Update dependencies.
3131 2002-02-07  Kazu Hirata  <kazu@hxi.com>
3133         * config/h8300/h8300.c (two_insn_adds_subs_operand): Revise a
3134         comment.  Accept HImode only if TARGET_H8300.
3136 2002-02-07  Eric Christopher  <echristo@redhat.com>
3138         * config/mips/crtn.asm: Cleanup #ifdefs.
3140 2002-02-07  Eric Christopher  <echristo@redhat.com>
3142         * config/mips/crti.asm: Add changes for mips16. mips16 uses
3143         register 7 as RA instead of $31.
3144         * config/mips/crtn.asm: Ditto.
3145         * config/mips/mips.c (mips_move_2words): Add case for
3146         TARGET_MIPS16 when HOST_BITS_PER_WIDE_INT >= 64.
3147         (compute_frame_size): Fix typo.
3148         (save_restore_insns): Ditto.  Make documentation about using
3149         register $7 as return register more precise.
3150         (mips_expand_epilogue): Fix comment. Add code to work around not
3151         being able to add to the stack pointer directly.
3152         * config/mips/mips.h (EH_RETURN_DATA_REGNO): Change register number
3153         to 2 for TARGET_MIPS16 as we need 6 and 7 as clobbers in the
3154         epilogue.
3156 2002-02-07  Tom Rix  <trix@redhat.com>
3158         * config/rs6000/rs6000.c (reg_or_aligned_short_operand): New. For
3159         immediates in ldu and stdu DS opcode field.
3160         * config/rs6000/rs6000.md (movdi_update, movdi_update1): Use.
3161         * config/rs6000/rs6000-protos.h: Add reg_or_aligned_short_operand.
3162         * config/rs6000/rs6000.h (PREDICATE_CODES): Same.
3164 2002-02-07  Jeff Sturm  <jsturm@one-point.com>
3166         * config/sparc/sparc.c (compute_frame_size): Don't correct frame
3167         offset for stack bias.
3169 2002-02-07  H.J. Lu <hjl@gnu.org>
3171         * config/mips/linux.h (SUBTARGET_ASM_DEBUGGING_SPEC): Defined.
3173 2002-02-07  Ulrich Weigand  <uweigand@de.ibm.com>
3175         * testsuite/gcc.dg/cpp/charconst-2.c: Add -fsigned-char option.
3177 Thu Feb  7 12:14:17 CET 2002  Jan Hubicka  <jh@suse.cz>
3179         * i386-protos.h (x86_order_regs_for_local_alloc): Declare
3180         * i386.c (x86_order_regs_for_local_alloc): New global function.
3181         * i386.h (REG_ALLOC_ORDER): CLeanup.
3182         (ORDER_REGS_FOR_LOCAL_ALLOC): New.
3184 2002-02-07  Richard Henderson  <rth@redhat.com>
3186         PR optimization/2463
3187         * alias.c (find_base_value): Recall base values for fixed hard regs.
3188         * loop.c (loop_regs_update): Don't use single_set on non-insns.
3190 2002-02-07  Alexandre Oliva  <aoliva@redhat.com>
3192         * config/mips/mips.md (define_delay) [mips16]: Adjust required
3193         length.
3195 2002-02-06  Richard Henderson  <rth@redhat.com>
3197         PR c/5609
3198         * stmt.c (resolve_operand_name_1): Take more care with mixed
3199         named and unnamed operands.
3201 2002-02-06  Janis Johnson  <janis187@us.ibm.com>
3202             Jan Hubicka  <jh@suse.cz>
3204         * loop.c (remove_constant_addition): Avoid clobbering a shared
3205         CONST expression.
3207 2002-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
3209         * config.gcc (s390x-*-linux*): Add t-linux64 makefile fragment.
3210         * config/s390/t-linux64: New file.
3211         * config/s390/libgcc-glibc.ver: New file.
3213 2002-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
3215         * config/s390/linux64.h: Delete file.
3216         * config/s390/s390x.h: New file.
3217         * config.gcc (s390x-*-linux*): Use s390x.h instead of linux64.h
3218         as target header file.
3219         * config/s390/linux.h (TARGET_VERSION): Define depending on
3220         DEFAULT_TARGET_64BIT.
3221         (CPP_SPEC, ASM_SPEC, LINK_SPEC): Likewise.
3222         (SIZE_TYPE, PTRDIFF_TYPE): Likewise.
3223         (NO_BUILTIN_SIZE_TYPE, NO_BUILTIN_PTRDIFF_TYPE): Define.
3224         (CPP_ARCH31_SPEC, CPP_ARCH64_SPEC): New defines.
3225         (LINK_ARCH31_SPEC, LINK_ARCH64_SPEC): New defines.
3226         (EXTRA_SPEC): New define.
3227         * config/s390/s390.h (TARGET_VERSION): Define depending on
3228         DEFAULT_TARGET_64BIT.
3229         (MASK_RETURN_ADDR): Add run-time check for TARGET_64BIT.
3231 2002-02-06  Jason Merrill  <jason@redhat.com>
3233         * c-decl.c (finish_function): Warn about a non-void function with
3234         no return statement and no abnormal exit.
3235         (current_function_returns_abnormally): New variable.
3236         (start_function): Clear it.
3237         (struct c_language_function): Add returns_abnormally.
3238         (push_c_function_context): Save it.
3239         (pop_c_function_context): Restore it.
3240         (builtin_function): Set TREE_THIS_VOLATILE on return fns.
3241         (grokdeclarator): Set C_FUNCTION_IMPLICIT_INT on functions without
3242         an explicit return type.
3243         * c-tree.h: Declare current_function_returns_abnormally.
3244         (C_FUNCTION_IMPLICIT_INT): New macro.
3245         * c-typeck.c (build_function_call): Set it.
3246         (c_expand_return): Set current_function_returns_value even if the
3247         value is erroneous.
3249 2002-02-06  Jakub Jelinek  <jakub@redhat.com>
3251         PR c/5420:
3252         * c-common.c (c_unsafe_for_reeval): Make COMPOUND_LITERAL_EXPR
3253         unsafe for reevaluation.
3255 2002-02-06  Jakub Jelinek  <jakub@redhat.com>
3257         PR c/5482:
3258         * c-common.c (c_expand_expr) [STMT_EXPR]: If last expression is not
3259         EXPR_STMT, but COMPOUND_STMT, recurse into it.
3261 2002-02-06  Richard Henderson  <rth@redhat.com>
3263         * cfganal.c (keep_with_call_p): Source for fixed_reg dest must
3264         be a general_operand.  Dest for function value must be a pseudo.
3266 2002-02-06  Nick Clifton  <nickc@cambridge.redhat.com>
3268         * dbxout.c (dbxout_symbol_location): Accept LABEL_REFs as well
3269         as SYMBOL_REFs from the constant pool.
3271 2002-02-06  Alexandre Oliva  <aoliva@redhat.com>
3273         * dbxout.c (dbxout_parms): Apply DEBUGGER_ARG_OFFSET to parameters
3274         passed by invisible reference.
3276 2002-02-05  Richard Henderson  <rth@redhat.com>
3278         * config/sparc/sparc.h (ARG_POINTER_CFA_OFFSET): No stack bias.
3280 2002-02-06  Hans-Peter Nilsson  <hp@bitrange.com>
3282         Implement using "base addresses" in insn operands as default.
3283         * config/mmix/mmix.c (mmix_conditional_register_usage): if
3284         -mabi=gnu, modify fixed_regs to fit the GNU ABI.
3285         (mmix_extra_constraint): Use 'R' to indicate that GETA should be
3286         used to read the rtx value.
3287         (mmix_target_asm_function_epilogue): Fix spacing.
3288         (mmix_constant_address_p): Handle TARGET_BASE_ADDRESSES.
3289         (mmix_legitimate_address): Ditto.
3290         (mmix_encode_section_info): Set SYMBOL_REF_FLAG on rtx:es that
3291         should be loaded with a GETA insn.  Don't allocate needless extra
3292         char for nul termination and fix misleading comment.
3293         (mmix_print_operand_address): Handle constants if
3294         TARGET_BASE_ADDRESSES.
3295         (mmix_output_register_setting): Use base addressing if
3296         TARGET_BASE_ADDRESSES and the number of insns is 3.
3297         * config/mmix/t-mmix (MULTILIB_EXTRA_OPTS): New.
3298         * config/mmix/mmix.md ("movdi"): Change the alternative with GETA
3299         to use R as constraint, add LDA to match s.
3300         * config/mmix/mmix.h (TARGET_BASE_ADDRESSES): New.
3301         (TARGET_DEFAULT): Add TARGET_MASK_BASE_ADDRESSES.
3302         (TARGET_SWITCHES): Add -mbase-addresses, -mno-base-addresses.
3303         (FIXED_REGISTERS): Make registers $231..$246 fixed by default.
3304         (MMIX_MMIXWARE_ABI_REG_ALLOC_ORDER): Move $231..$246 last, in
3305         order with other fixed registers.
3306         (MMIX_GNU_ABI_REG_ALLOC_ORDER): Put forward $231, in order with
3307         other parameter/call-clobbered registers.
3308         * doc/invoke.texi (Option Summary) <MMIX Options>: Add
3309         -mbase-addresses, -mno-base-addresses.
3310         (MMIX Options): Ditto.
3312 2002-02-05  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3314         * pa.h (PREDICATE_CODES): Add reg_before_reload_operand.
3316 2002-02-06  Aldy Hernandez  <aldyh@redhat.com>
3318         * config/rs6000/altivec.h: Change elem to _S_elem.
3320 2002-02-05  Jason Thorpe  <thorpej@wasabisystems.com>
3322         * config/netbsd.h (WCHAR_TYPE): Define.
3323         (WCHAR_TYPE_SIZE): Ditto.
3324         (WINT_TYPE): Ditto.
3325         * config/alpha/netbsd.h (WCHAR_TYPE): Remove.
3326         (WCHAR_UNSIGNED): Ditto.
3327         (WCHAR_TYPE_SIZE): Ditto.
3328         (WINT_TYPE): Ditto.
3329         * config/arm/netbsd.h: Likewise.
3330         * config/i386/netbsd-elf.h: Likewise.
3331         * config/i386/netbsd.h: Likewise.
3332         * config/m68k/netbsd-elf.h: Likewise.
3333         * config/m68k/netbsd.h: Likewise.
3334         * config/ns32k/netbsd.h: Likewise.
3335         * config/sparc/netbsd.h: Likewise.
3336         * config/vax/netbsd.: Likewise.
3338 2002-02-05  Alexandre Oliva  <aoliva@redhat.com>
3340         * target.h (struct gcc_target): Added ms_bitfield_layout_p.
3341         * target-def.h (TARGET_MS_BITFIELD_LAYOUT_P): New.  Added to...
3342         (TARGET_INITIALIZER): this.
3343         * doc/tm.texi (TARGET_MS_BITFIELD_LAYOUT_P): Document.
3344         (BITFIELD_NBYTES_LIMITED): Markup fix.
3345         * tree.h (default_ms_bitfield_layout_p): Declare.
3346         (record_layout_info): Added prev_field.
3347         * tree.c (default_ms_bitfield_layout_p): New fn.
3348         * c-decl.c (finish_struct): Disregard EMPTY_FIELD_BOUNDARY and
3349         PCC_BITFIELD_TYPE_MATTERS for MS bit-field layout.
3350         * stor-layout.c: Include target.h.
3351         (start_record_layout): Initialize prev_field.
3352         (place_field): Handle MS bit-field layout, and disregard
3353         EMPTY_FIELD_BOUNDARY, BITFIELD_NBYTES_LIMITED and
3354         PCC_BITFIELD_TYPE_MATTERS in this case.  Update prev_field.
3355         * Makefile.in (stor-layout.o): Adjust dependencies.
3357 2002-02-05  Jason Merrill  <jason@redhat.com>
3359         * collect2.c (dump_file): Pass DMGL_VERBOSE to cplus_demangle.
3361 2002-02-05  Andreas Jaeger  <aj@suse.de>
3363         * crtstuff.c: Fix comments.
3365 2002-02-05  Richard Henderson  <rth@redhat.com>
3367         PR fortran/3393
3368         * loop.c (loop_iv_add_mult_emit_before): Copy multiplier as well.
3369         (loop_iv_add_mult_sink, loop_iv_add_mult_hoist): Likewise.
3371         PR fortran/3392
3372         * config/mips/mips.c (function_arg): Handle TImode.
3373         (function_arg_advance): Likewise.
3375 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
3377         * config/rs6000/altivec.h (vec_step_help): Rename to
3378         __vec_step_help.
3380 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
3382         * config/rs6000/altivec.h: Fix typos.
3384 2002-02-05  Jason Thorpe  <thorpej@wasabisystems.com>
3386         * config/arm/netbsd.h: Correct a comment.
3388 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
3390         * config/rs6000/rs6000.c (altivec_init_builtins): Fix typo
3391         building void typed builtins.
3393         * config/rs6000/altivec.h (vec_ld*): Fix typos.
3394         (vec_step): Implement for C++.
3396 Mon Feb  4 19:23:19 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3398         * final.c (final_scan_insn): Add case for NOTE_INSN_LOOP_END_TOP_COND.
3400 2002-02-04  Richard Henderson  <rth@redhat.com>
3402         * combine.c (nonzero_bits): Re-introduce special case for
3403         sp/fp/ap wrt REGNO_POINTER_ALIGN.
3405 2002-02-05  Aldy Hernandez  <aldyh@redhat.com>
3407         * doc/extend.texi: Warn about unsupported usage of altivec
3408         builtins.
3410         * config/rs6000/rs6000.md (altivec_vcmp*_p): Remove.
3411         (altivec_predicate_*): New.
3413         * config/rs6000/altivec.h: Rewrite predicates to use new builtins.
3414         Add C++ version of vec_*() functions.
3416         * config/rs6000/rs6000.c (bdesc_altivec_preds): New.
3417         (bdesc_2arg): Remove altivec predicates.
3418         (altivec_expand_builtin): Handle predicates.
3419         (altivec_init_builtins): Handle predicates.
3420         (altivec_expand_predicate_builtin): New.
3422 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3424         * pa.c (DO_FRAME_NOTES): Move forward.
3425         (store_reg): Revise handling of frame notes.
3426         (load_reg): Likewise.
3427         (set_reg_plus_d): Likewise.
3428         (hppa_expand_prologue): Likewise.
3429         (hppa_expand_epilogue): Likewise.
3431 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3433         * unwind-dw2-fde-glibc.c: Define _GNU_SOURCE if not defined.
3435 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
3437         PR c/4475, c++/3780:
3438         * c-common.def (SWITCH_STMT): Add SWITCH_TYPE operand.
3439         * c-common.h (SWITCH_TYPE): Define.
3440         * c-typeck.c (c_start_case): Set SWITCH_TYPE.
3441         * stmt.c (all_cases_count): Set lastval to thisval at end of loop.
3442         Rename spareness variable to sparseness.
3443         (expand_end_case_type): Renamed from expand_end_case, use orig_type
3444         if non-NULL instead of TREE_TYPE (orig_index).
3445         * tree.h (expand_end_case_type): Renamed from expand_end_case.
3446         (expand_end_case): Define using expand_end_case_type.
3447         * c-semantics.c (genrtl_switch_stmt): Pass SWITCH_TYPE
3448         to expand_end_case_type.
3449         * doc/c-tree.texi (SWITCH_STMT): Document SWITCH_TYPE.
3451 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3453         * pa.h (PREFERRED_STACK_BOUNDARY): Define to match standard rounding.
3454         (BIGGEST_ALIGNMENT): Change to 128.
3456 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3458         * pa32-linux.h (LINK_COMMAND_SPEC): Define.
3460 2002-02-04  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3462         * pa.md (call_internal_reg_64bit): Remove unused variable.
3464 2002-02-04  Nick Clifton  <nickc@cambridge.redhat.com>
3466         * config/arm/arm.h (machine_function): Add uses_anonymous_args
3467         field.
3468         (SETUP_INCOMING_VARARGS): Set uses_anonymous_args.
3469         * config/arm/arm.c (current_function_anonymous_args): Delete,
3470         replace uses with cfun->machine->uses_anonymous_args.
3471         (arm_reorg): Do not reset uses_anonymous_args.
3473         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any value in
3474         any geenral register.
3476 2001-02-04  Bernd Schmidt  <bernds@redhat.com>
3478         * cfgrtl.c (force_nonfallthru_and_redirect): Don't try to redirect
3479         the entry block.
3481 2002-02-04  Richard Henderson  <rth@redhat.com>
3483         * combine.c (force_to_mode): Remove STACK_BIAS code.
3484         (nonzero_bits): Likewise.  Replace sp/fp special case with
3485         REGNO_POINTER_ALIGN.
3487         * config/sparc/sparc.h (FRAME_POINTER_REGNUM): Change to SFP.
3488         (HARD_FRAME_POINTER_REGNUM): New.
3489         (FIRST_PSEUDO_REGISTER, REG_CLASS_CONTENTS): Update.
3490         (FIXED_REGS, CALL_USED_REGS): Update.
3491         (REG_ALLOC_ORDER, REGISTER_NAMES): Update.
3492         (CONDITIONAL_REGISTER_USAGE): Update for HFP.
3493         (HARD_REGNO_NREGS): Update for SFP.
3494         (STACK_POINTER_OFFSET): Include bias here ...
3495         (FIRST_PARM_OFFSET): ... not here.
3496         (STACK_BIAS): Remove.
3497         (INIT_EXPANDERS): New.
3498         (STARTING_FRAME_OFFSET): Do not include bias.
3499         (ELIMINABLE_REGS, CAN_ELIMINATE, INITIAL_ELIMINATION_OFFSET): New.
3500         (REGNO_OK_FOR_INDEX_P, REGNO_OK_FOR_BASE_P): Update for SFP.
3501         (REG_OK_FOR_INDEX_P, REG_OK_FOR_BASE_P): Likewise.
3502         * config/sparc/aout.h (DBX_REGISTER_NUMBER): Update for HFP.
3503         * config/sparc/litecoff.h, config/sparc/sol2.h: Likewise.
3504         * config/sparc/sparc.c (mem_min_alignment): Update for HFP.
3505         (sparc_nonflat_function_prologue, epilogue_renumber): Likewise.
3506         (MUST_SAVE_REGISTER): Likewise.
3507         (sparc_flat_function_prologue): Likewise.
3508         (sparc_flat_function_epilogue): Likewise.
3509         (HARD_FRAME_POINTER_MASK): Rename from FRAME_POINTER_MASK.
3510         (sparc_init_modes): SFP is GENERAL_REGS.
3511         (sparc_builtin_saveregs): SFP does not have bias applied.
3513 2002-02-04  Richard Henderson  <rth@redhat.com>
3515         * config/alpha/alpha.c (current_function_is_thunk): Don't check
3516         current_function_is_thunk.
3517         (alpha_sa_mask): Distinguish between current_function_is_thunk
3518         called from ASM_OUTPUT_MI_THUNK and not.
3519         (alpha_does_function_need_gp): Thunks always need gp.
3520         (alpha_start_function, alpha_output_function_end_prologue): Likewise.
3521         (alpha_output_mi_thunk_osf): New.
3522         * config/alpha/alpha-protos.h: Update.
3523         * config/alpha/alpha.h (ASM_OUTPUT_MI_THUNK): New.
3525 2002-02-04  Richard Sandiford  <rsandifo@redhat.com>
3527         * c-typeck.c (build_c_cast): Warn when qualifiers are added to
3528         function types, not when they're taken away.
3530 Mon Feb  4 09:05:58 2002  Jeffrey A Law  (law@redhat.com)
3532         * cfgrtl.c (try_redirect_by_replacing_jump): Remove associated
3533         CODE_LABEL and jump table when replacing a table jump with a
3534         simple jump.
3536 2002-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
3538         * config/s390/s390-protos.h (legitimize_la_operand,
3539         s390_secondary_input_reload_class, s390_plus_operand,
3540         s390_expand_plus_operand): Add prototypes.
3542         config/s390/s390.c (s390_secondary_input_reload_class,
3543         s390_plus_operand, s390_expand_plus_operand): New functions.
3545         (struct s390_address): New member 'pointer'.
3546         (s390_decompose_address): Compute it.
3547         (legitimate_la_operand_p): Use it.
3548         (legitimize_la_operand): New function.
3549         (movti, movdi, movdf splitters): Call it.
3551         config/s390/s390.h (SECONDARY_INPUT_RELOAD_CLASS): Define.
3552         (PREDICATE_CODES): Add s390_plus_operand.
3554         config/s390/s390.md (adddi3_inv_64, addaddr_ccclobber): Delete.
3555         (la_ccclobber): Allow GENERAL_REGS as output operand.
3557         (reload_load_address, *reload_load_address_reg_0, *la, *do_la_reg_0,
3558         *reload_la_64, *reload_la_31 and splitters): Delete, replace by ...
3559         (*la_64, *la_31, reload_indi, reload_insi): ... these.
3561 2002-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
3563         * gcc/config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Fixed
3564         register names for regular asm () construct.
3566 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
3568         * config/i386/i386.md (movsf_1): Allow moving SF values in MMX
3569         registers.
3571 2002-02-04  Jakub Jelinek  <jakub@redhat.com>
3573         * combine.c (recog_for_combine): Create a dummy insn with PATTERN
3574         pat for recog.
3576 2002-02-04  Hartmut Penner  <hpenner@de.ibm.com>
3578         * varasm.c (decode_rtx_const): Allow unspec (symbol_ref) in
3579         constant pool to be identical by string address and index.
3581 2002-02-04  Anthony Green  <green@redhat.com>
3583         * output.h (SECTION_OVERRIDE): Define.
3584         * varasm.c (named_section): Obey SECTION_OVERRIDE.
3586 2002-02-03  Jason Thorpe  <thorpej@wasabisystems.com>
3588         * config.gcc (arm*-*-netbsdelf*): Placeholder to prevent match
3589         by existing arm*-*-netbsd* (a.out) target.
3590         (ns32k-*-netbsdelf*): Likewise.
3591         (sparc-*-netbsdelf*): Likewise.
3592         (vax-*-netbsdelf*): Likewise.
3594 2002-02-03  Danny Smith <dannysmith@users.sourceforge.net>
3596         * gthr-win32.h: Protect against conflicting typedef for BOOL in windows
3597         headers and libobjc headers.
3599 2002-02-03  Mumit Khan  <khan@nanotech.wisc.edu>
3601         * gthr-win32.h (__mingwthr_key_dtor): Use extern "C" linkage for C++.
3602         (_mingw.h): Remove duplicate include.
3604 2002-02-03  Jason Thorpe  <thorpej@wasabisystems.com>
3606         * config.gcc: Set cpu_type to m68k for 68010, as well.
3607         (m68010-*-netbsdelf*): New...
3608         (m68k*-*-netbsdelf*): ...targets.
3609         * config/m68k/netbsd-elf.h: New file.
3611 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3613         * config/h8300/h8300.c (hand_list): Move inside function_arg.
3615 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3617         * config/h8300/h8300.c (h8_push_ops): Move inside
3618         h8300_init_once.
3619         (h8_pop_ops): Likewise.
3620         (h8_move_ops): Likewise.
3622 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3624         * config/h8300/h8300.c (os_task): Make it static.
3625         (monitor): Likewise.
3626         (pragma_saveall): Likewise.
3628 2002-02-02  Alexandre Oliva  <aoliva@redhat.com>
3630         * config/sh/sh.md (ic_invalidate_line): Make sure the immediate
3631         constant is a valid sign-extension for Pmode.
3633 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3635         * config/h8300/h8300.c: Fix formatting.
3637 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3639         * config/h8300/h8300.md: Fix formatting.
3641 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3643         * config/h8300/h8300.md (one_cmpl patterns): Tighten the
3644         predicates of operands[1].  Split the patterns for each
3645         processor variant.
3647 2002-02-02  Kazu Hirata  <kazu@hxi.com>
3649         * config/h8300/h8300.md (xor patterns): Tighten the predicates
3650         of operands[1] to register_operand.
3652 2002-02-02  Neil Booth  <neil@daikokuya.demon.co.uk>
3654         * cpphash.h (struct spec_nodes): Remove n__CHAR_UNSIGNED__.
3655         * cpphash.c (_cpp_init_hashtable): Similarly.
3656         * cppinit.c (cpp_create_reader): Default the signed_char flag.
3657         (init_builtins): Define __CHAR_UNSIGNED__ appropriately.
3658         (COMMAND_LINE_OPTIONS): Recognise -f{un,}signed-char.
3659         (cpp_handle_option): Handle the new options.
3660         * cpplex.c (cpp_interpret_charconst): Use new flag.
3661         * cpplib.h (struct cpp_options): New member signed_char.
3662         * gcc.c (cpp_unique_options): Remove %c spec and documentation.
3663         (cpp_options): Handle -fsigned-char and -funsigned-char.
3664         (static_specs): Remove signed_char_spec.
3665         (do_spec1): Don't handle %c.
3666         * system.h: Poison SIGNED_CHAR_SPEC.
3667         * tradcif.y (yylex): Use flag_signed_char.
3668         * tradcpp.h (flag_signed_char): New.
3669         * tradcpp.c (flag_signed_char): New.
3670         (main): Handle new command-line options.
3671         (initialize_builtins): Define __CHAR_UNSIGNED__ if appropriate.
3672 config:
3673         * alpha/alpha.h (SIGNED_CHAR_SPEC): Remove.
3674         * avr/avr.h: Remove old comments.
3675         * i960/i960.h (CPP_SPEC): Pass -fsigned-char if -mic*.
3676         (CC1_SPEC): Pass -fsigned-char if -mic*.
3677         (SIGNED_CHAR_SPEC): Remove.
3678 doc:
3679         * tm.texi (SIGNED_CHAR_SPEC): Remove documentation.
3681 2002-02-01  Eric Christopher  <echristo@redhat.com>
3683         From Daniel Jacobowitz <dmj+@andrew.cmu.edu>
3684         * config/mips/mips.h (FUNCTION_PROFILER): Fix function profiling.
3685         * config/mips/linux.h (ASM_OUTPUT_REG_PUSH): Undefine.
3686         (ASM_OUTPUT_REG_POP): Ditto.
3688 2002-02-02  Neil Booth  <neil@daikokuya.demon.co.uk>
3690         * c-decl.c, tree.c, tree.h, objc/objc-act.c: Revert bitfield
3691         patch.
3693 2002-02-02  Jakub Jelinek  <jakub@redhat.com>
3695         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Add missing | separators.
3697 2002-02-02  Jakub Jelinek  <jakub@redhat.com>
3699         PR c/5304:
3700         * expmed.c (expand_mult_highpart): Use immed_double_const for wide_op1
3701         unconditionally.
3703 2002-02-01  Janis Johnson  <janis187@us.ibm.com>
3705         * cfganal.c: Include tm_p.h.
3706         (keep_with_call_p): Fix the test that determines if a register holds
3707         the return value of a call.
3709 2002-02-01  DJ Delorie  <dj@redhat.com>
3711         * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): If
3712         we are given conflicting registers, switch to the other one we
3713         had allocated for us.
3714         * config/sparc/sparc.md (reload_indi, reload_outdi): Pass op[2]
3715         as TImode so we know when the "other" register is available.
3717 2002-02-01  David O'Brien  <obrien@FreeBSD.org>
3719         * config/sparc/sol2-sld-64.h: Include sparc/biarch64.h rather than
3720         sparc/sparc_bi.h.
3722 2002-02-01  Janis Johnson  <janis187@us.ibm.com>
3724         * cfganal.c (keep_with_call_p): New function.
3725         (flow_call_edges_add): Prevent splitting a block between a call and
3726         a single-set instruction that should be kept in the same block.
3728 2002-02-01  Craig Rodrigues  <rodrigc@gcc.gnu.org>
3730         * doc/install.texi (avr): Update outdated URL.
3732 2002-01-30  Andrew Haley  <aph@cambridge.redhat.com>
3734         * config/stormy16/stormy16.md (pushqi): New.
3735         (popqi): New.
3736         (pushhi): New.
3737         (pophi): New.
3738         (movhi): Remove stack operands.
3739         (movqi): Likewise.
3740         * config/stormy16/stormy16.h (PREDICATE_CODES): Add
3741         nonimmediate_nonstack_operand.
3742         * config/stormy16/stormy16.c (nonimmediate_nonstack_operand):
3743         New.
3744         * config/stormy16/stormy16-protos.h (nonimmediate_nonstack_operand)
3745         New.
3747 2002-01-31  Jason Merrill  <jason@redhat.com>
3749         * Makefile.in (c-parse.c): Handle .output file.
3750         * objc/Make-lang.in (objc-parse.c): Likewise.
3752 2002-02-01  Alexandre Oliva  <aoliva@redhat.com>
3754         * config/mips/mips.h (ENDIAN_SPEC): Output the endianness flag if
3755         the -me[lb] option is given.  Don't output the default flag
3756         twice.
3758 2002-01-31  Zack Weinberg  <zack@codesourcery.com>
3760         * c-lex.c (yyparse): Call debug_hooks->start_source_file for
3761         the primary source file; this has not been done yet.
3762         * c-decl.c (c_expand_body): Reset input_filename from
3763         DECL_SOURCE_FILE (fndecl) before calling init_function_start.
3765 2002-01-31  Kazu Hirata  <kazu@hxi.com>
3767         * rtlanal.c (subreg_regno_offset): Do not use
3768         SUBREG_REGNO_OFFSET.
3769         * system.h: Add SUBREG_REGNO_OFFSET to the GCC poison list.
3770         * doc/tm.texi (SUBREG_REGNO_OFFSET): Remove.
3772 2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
3774         * gccbug.in: Follow GNU Coding Standards for --version.  Use GCC
3775         version rather than GNATS version in --version output.
3777 2002-01-31  Richard Sandiford  <rsandifo@redhat.com>
3779         * ifcvt.c (noce_process_if_block): Make a copy of the destination
3780         when copying back from a temporary.
3782 2002-01-30  Richard Henderson  <rth@redhat.com>
3784         * ifcvt.c (dead_or_predicable): Handling merging when other_bb
3785         and new_dest are the same.
3787 2002-01-30  Richard Henderson  <rth@redhat.com>
3789         PR opt/5076
3790         * rtl.h (NOTE_INSN_LOOP_END_TOP_COND): New.
3791         * rtl.c (note_insn_name): Update.
3792         * emit-rtl.c (remove_unnecessary_notes): Kill it.
3793         * stmt.c (expand_end_loop): Kill jump opt code.  Use LOOP_END_TOP_COND
3794         to perform loop rotation.
3795         (expand_exit_loop_top_cond): New.
3796         * tree.h (expand_exit_loop_top_cond): Declare it.
3797         * c-semantics.c (genrtl_while_stmt): Use it.
3798         (genrtl_for_stmt): Likewise.
3800 2002-01-30  Alexandre Oliva  <aoliva@redhat.com>
3802         * config/mips/mips.h (PARM_BOUNDARY): Guarantee alignment of
3803         arguments to 64-bit boundaries on 64-bit ABIs.
3805 2002-01-30  Steve Ellcey  <sje@cup.hp.com>
3807         * loop.c (loop_invariant_p): Special case pic_offset_table_rtx.
3809 2002-01-31  Joseph S. Myers  <jsm28@cam.ac.uk>
3811         * c-decl.c (grokdeclarator): Handle type being a typedef for an
3812         invalid type.
3814 2002-01-30  David O'Brien  <obrien@FreeBSD.org>
3816         * config.gcc: Include sparc/biarch64.h rather than sparc/sparc_bi.h.
3817         * config/sparc/sparc_bi.h: Remove file.
3818         * config/sparc/biarch64.h: New file (rename of sparc_bi.h).
3820 2002-01-30  Richard Henderson  <rth@redhat.com>
3822         * sched-deps.c (sched_analyze): Make a call read the frame pointer.
3824 2002-01-30  Zack Weinberg  <zack@codesourcery.com>
3826         * expmed.c (emit_store_flag): Call protect_from_queue on op0 and op1.
3828 2002-01-30  Jason Merrill  <jason@redhat.com>
3830         * dwarf2out.c (dwarf_cfi_name): Add other DWARF 3 codes.
3831         (output_cfi): Likewise. Disable DW_CFA_GNU_negative_offset_extended.
3832         (reg_save): Use DW_CFA_offset_extended_sf instead.
3834         * dwarf2out.c (dwarf2out_finish): Don't abort if there were errors.
3836 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
3838         * cselib.c (cselib_record_sets): Use IF_THEN_ELSE result
3839         in cselib_lookup.
3841 2002-01-29  Aldy Hernandez  <aldyh@redhat.com>
3843         * rs6000.md ("*call_value_local32"): Remove constraints.
3844         ("*call_value_local64"): Same.
3845         ("*call_value_indirect_nonlocal_aix32"): Same.
3846         ("*call_value_nonlocal_aix32"): Same.
3847         ("*call_value_indirect_nonlocal_aix64"): Same.
3848         ("*call_value_nonlocal_aix64"): Same.
3849         ("*call_value_nonlocal_sysv"): Same.
3851 2002-01-29  Richard Henderson  <rth@redhat.com>
3853         * config/alpha/elf.h (SDB_DEBUGGING_INFO): Undef.
3855 2002-01-29  Richard Henderson  <rth@redhat.com>
3857         * expr.c (force_operand): Ignore flag_pic for detecting pic
3858         address loads.
3859         * regclass.c (init_reg_sets_1): Test fixed_regs not flag_pic
3860         for determining if PIC_OFFSET_TABLE_REGNUM is call-clobbered.
3861         * resource.c (mark_target_live_regs): Use regs_invalidated_by_call
3862         instead of open-coded loop.
3863         * doc/tm.texi (PIC_OFFSET_TABLE_REGNUM): Clarify that it must
3864         be fixed when in use.
3866 2002-01-29  Richard Henderson  <rth@redhat.com>
3868         * sched-int.h (struct deps_reg): Add uses_length, clobbers_length.
3869         * sched-rgn.c (propagate_deps): Update them.
3870         * sched-deps.c (sched_analyze_insn): Update them.  Flush the
3871         clobbers list when either gets too long.
3873 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
3875         * config/i386/i386.h (LIMIT_RELOAD_CLASS): Handle LEGACY_REGS
3876         and INDEX_REGS the same as GENERAL_REGS.
3877         (SECONDARY_OUTPUT_RELOAD_CLASS): Likewise.
3879 2002-01-29  Neil Booth  <neil@daikokuya.demon.co.uk>
3881         * tree.c (build_nonstandard_integer_type): Correct prototype.
3883 2002-01-29  Ulrich Weigand  <uweigand@de.ibm.com>
3885         * config/s390/s390.md (movstrsico, movstrdix_64,
3886         movstrsix_31): Remove, replace by ...
3887         (movstrdi_short, movstrsi_short, movstrdi_long,
3888         movstrsi_long): ... these.  New.
3889         (movstrdi, movstrsi): Adapt.
3891         (rotldi3, rotlsi3, ashldi3, *ashldi3_31, *ashldi3_64,
3892         ashlsi3, lshrdi3, *lshrdi3_31, *lshrdi3_64, lshrsi3):
3893         Remove unnecessary CC clobber.
3894         (*ashrdi3_cc_31, *ashrdi3_cconly_31, *ashrdi3_cc_64,
3895         *ashrdi3_cconly_64, *ashrsi3_cc, *ashrsi3_cconly): New.
3897         (divmoddi4): Don't partially initialize TImode register.
3899 2002-01-29  Geoffrey Keating  <geoffk@redhat.com>
3901         * doc/sourcebuild.texi (C Tests): Document gcc.dg/debug directory.
3903 2002-01-29  Richard Henderson  <rth@redhat.com>
3905         * flow.c (print_rtl_and_abort): Remove.
3906         (print_rtl_and_abort_fcn): Remove.
3907         (verify_local_live_at_start): Use dump_bb instead.
3908         (verify_wide_reg): Likewise. Take a basic_block, not rtl endpoints.
3909         (verify_wide_reg_1): Return 2 on mode test failure.
3911 2002-01-29  Neil Booth  <neil@daikokuya.demon.co.uk>
3913         PR c/3325, c/3326, c/2511, c/3347
3914         * c-decl.c (enum_decl_context): Remove BITFIELD.
3915         (grokdeclarator): Take bitfield width as an input.
3916         Ensure bitfields are given the correct type.  Perform
3917         bitfield width validation with build_bitfield_integer_type
3918         rather than waiting for finish_struct.
3919         (grok_typename, grok_typename_in_parm_context, start_decl,
3920         push_parmdecl, grokfield, start_function): Update calls to
3921         grokdeclarator.
3922         (build_bitfield_integer_type): New function.
3923         (finish_struct): Move bitfield validation to grokdeclarator
3924         and build_bitfield_integer_type.
3925         * tree.c (build_nonstandard_integer_type): New function.
3926         * tree.h (build_nonstandard_integer_type): New prototype.
3927 objc:
3928         * objc-act.c (objc_copy_list): Remove DECL_INITIAL kludge.
3930 2002-01-29  Jakub Jelinek  <jakub@redhat.com>
3932         PR other/1502:
3933         * cppinit.c (cpp_handle_option): Add ignore argument, if it is zero,
3934         don't ignore unrecognized -W* options.
3935         (cpp_handle_options): Pass 1 as last argument to cpp_handle_option.
3936         * cpplib.h (cpp_handle_option): Adjust prototype.
3937         * c-decl.c (c_decode_options): Pass 0 as last argument to
3938         cpp_handle_option.
3940         PR c/2896:
3941         * gcc.c (cpp_unique_options): Split from cpp_options.
3942         (cpp_options): Source cpp_unique_options.
3943         (default_compilers): Use cpp_unique_options instead of cpp_options
3944         when used together with cc1_options.
3945         (static_specs): Add cpp_unique_options.
3946         * objc/lang-specs.h: Use cpp_unique_options instead of cpp_options
3947         when used together with cc1_options.
3949 2002-01-29  Kazu Hirata  <kazu@hxi.com>
3951         * config/h8300/h8300-protos.h: Update the prototype of
3952         output_a_shift.
3953         * config/h8300/h8300.c (output_a_shift): Remove an unused
3954         argument 'insn'.  Remove redundant code.
3955         * config/h8300/h8300.md: Adust to the new prototype of
3956         output_a_shift.
3958 2002-01-29  Kazu Hirata  <kazu@hxi.com>
3960         * config/h8300/h8300-protos.h: Update the prototypes of
3961         emit_a_rotate and expand_a_rotate.
3962         * config/h8300/h8300.c (emit_a_rotate): Change the type of the
3963         first argument to 'enum rtx_code'.
3964         (expand_a_rotate): Likewise.
3966 2002-01-28  Kazu Hirata  <kazu@hxi.com>
3968         * config/h8300/h8300-protos.h: Update the prototype of
3969         output_simode_bld.
3970         * config/h8300/h8300.c (output_simode_bld): Remove an argumen
3971         'log2'.
3972         * config/h8300/h8300.md: Adjust to the new prototype.
3974 2002-01-28  Kazu Hirata  <kazu@hxi.com>
3976         * conifg/h8300/h8300.c (h8300_adjust_insn_length): Remove
3977         redundant code.
3979 2002-01-28  John David Anglin  <dave@hiauly1.hia.nrc.ca>
3981         * emit-rtl.c (gen_rtx_REG): Check that the PIC_OFFSET_TABLE_REGNUM
3982         is a fixed register before returning pic_offset_table_rtx.
3983         * loop.c (scan_loop): Don't hoist insns that set pic_offset_table_rtx
3984         when PIC_OFFSET_TABLE_REG_CALL_CLOBBERED is defined.
3986 2002-01-28  Jason Merrill  <jason@redhat.com>
3988         * dwarf2.h: Sync with src version.
3990 2002-01-28  Paul Koning  <pkoning@equallogic.com>
3992         * builtin-types.def (BT_FN_VOID_CONST_PTR_VAR): Replace
3993         BT_FN_VOID_PTR_VAR.
3994         * builtins.def (BUILT_IN_PREFETCH): Change first argument to be const.
3995         * doc/extend.texi (__builtin_prefetch): Update documentation:
3996         first argument is now const void ptr.
3998 2002-01-28  Kazu Hirata  <kazu@hxi.com>
4000         * config/h8300/h8300-protos.h: Remove an unused prototype.
4002 2002-01-28  Roman Zippel  <zippel@linux-m68k.org>
4004         * toplev.c (lang_independent_init): Round up identifier size.
4006 2002-01-28  Richard Earnshaw  <rearnsha@arm.com>
4008         * config.gcc: Revert previous change.
4010 2002-01-28  Andris Pavenis  <pavenis@latnet.lv>
4012         * config/i386/djgpp.h: Use STRIP_NAME_ENCODING in macro UNIQUE_SECTION
4014 2002-01-28  Richard Earnshaw  <rearnsha@arm.com>
4016         * config.gcc (*-*-netbsdelf*): Set up generic parameters.
4017         (*-*-netbsd*): Always use collect2.  Remove collect2 settings from
4018         other non-elf netbsd config frags.
4019         * config/netbsd-aout.h (STARTFILE_SPEC): Don't pull in c++rt0 since
4020         collect2 will does that.
4021         * config/netbsd.h (LIBGCC_SPEC): Add white space before -lgcc, so that
4022         shared-lib frobbing will work.
4024 2002-01-28  Kazu Hirata  <kazu@hxi.com>
4026         * config/h8300/h8300.h: Fix formatting.
4027         * config/h8300/h8300.md: Likewise.
4029 2002-01-28  Loren J. Rittle  <ljrittle@acm.org>
4031         * fixinc/inclhack.def (strict_ansi_not): Add a bypass based on
4032         the old, removed AAA_standards fix.
4033         * fixinc/fixincl.x: Rebuilt.
4035 2002-01-28  Hans-Peter Nilsson  <hp@axis.com>
4037         * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Change to emit
4038         atexit call in crtbegin, hooked in after call to frame_dummy;
4039         register EH before registering __fini__start.
4041 2002-01-28  Aldy Hernandez  <aldyh@redhat.com>
4043         * config/rs6000/altivec.h: Remove spurious semicolons.
4045 2002-01-27  Kazu Hirata  <kazu@hxi.com>
4047         * config/h8300/h8300.md: Replace dead bit extraction patterns
4048         with ones that work.
4050 Sun Jan 27 13:23:40 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4052         * emit-rtl.c (get_mem_attrs): Don't default alignment for non-BLKmode
4053         if not STRICT_ALIGNMENT.
4054         * rtl.h (MEM_ALIGN): Likewise.
4056 2002-01-27  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4058         * doc/invoke.texi (-fdump-translation-unit): Revert this
4059         patch: 2001-10-21  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4061 2002-01-27  Kazu Hirata  <kazu@hxi.com>
4063         * config/h8300/h8300.md (define_constants): New.
4064         (anonymous patterns) Use defined constants appropriately.
4066 2002-01-27  Kazu Hirata  <kazu@hxi.com>
4068         * config/h8300/h8300.c (function_arg): Remove redundant code.
4070 2002-01-26  Richard Henderson  <rth@redhat.com>
4072         * sched-deps.c (reg_pending_uses_head): New.
4073         (reg_pending_barrier): Rename from reg_pending_sets_all.
4074         (find_insn_list): Don't mark inline.
4075         (find_insn_mem_list): Remove.
4076         (add_dependence_list, add_dependence_list_and_free): New.
4077         (flush_pending_lists): Replace only_write param with separate
4078         for_read and for_write parameters.  Update all callers.  Use
4079         add_dependence_list_and_free.
4080         (sched_analyze_1): Do not add reg dependencies here; just set
4081         the pending bits.  Use add_dependence_list.
4082         (sched_analyze_2): Likewise.
4083         (sched_analyze_insn): Replace schedule_barrier_found with
4084         reg_pending_barrier.  Add all dependencies for pending reg
4085         uses, sets, and clobbers.
4086         (sched_analyze): Don't add reg dependencies for calls, just
4087         set pending bits.  Use regs_invalidated_by_call.  Treat
4088         sched_before_next_call as a normal list, not a fake insn.
4089         (init_deps): No funny init for sched_before_next_call.
4090         (free_deps): Free pending mems lists.  Don't zero reg_last.
4091         (init_deps_global): Init reg_pending_uses.
4092         (finish_deps_global): Free it.
4093         * sched-int.h (deps): Make in_post_call_group_p boolean.  Update docs.
4094         (find_insn_mem_list): Remove.
4095         * sched-rgn.c (concat_INSN_LIST, concat_insn_mem_list): New.
4096         (propagate_deps): Use them.  Zero temp mem lists.
4098 2002-01-26  Richard Henderson  <rth@redhat.com>
4100         * Makefile.in (CRTSTUFF_CFLAGS): New.
4101         (crtbegin.o, crtend.o, crtbeginS.o, crtendS.o, crtbeginT.o): Use it.
4102         * config.gcc (alpha-linux, alpha-freebsd, alpha-netbsd): Use plain
4103         crtstuff.c instead of alpha assembly version.
4104         * crtstuff.c (CRT_CALL_STATIC_FUNCTION): Rewrite to assume the
4105         entire dummy function sequence.  Use FORCE_CODE_SECTION_ALIGN
4106         not FORCE_{INIT,FINI}_SECTION_ALIGN.
4107         (__do_global_dtors_aux): Mark used.
4108         (frame_dummy, __do_global_ctors_aux): Mark used.
4109         (fini_dummy, init_dummy): Remove.
4111         * config/alpha/crtbegin.asm: Remove file.
4112         * config/alpha/crtend.asm: Remove file.
4113         * config/alpha/t-crtbe: Remove file.
4114         * config/alpha/elf.h (CRT_CALL_STATIC_FUNCTION): New.
4115         (LINK_EH_SPEC): New.
4117         * config/cris/cris.h (CRT_CALL_STATIC_FUNCTION): Rewrite old
4118         FORCE_INIT_SECTION_ALIGN hack.  Register __fini_start before
4119         calling constructors.
4120         * config/cris/linux.h (CRT_CALL_STATIC_FUNCTION): Undef.
4122         * config/i386/i386.h (CRT_CALL_STATIC_FUNCTION): New.
4123         * config/i386/linux.h (CRT_CALL_STATIC_FUNCTION): Replace old
4124         CRT_END_INIT_DUMMY hack.
4125         * config/i386/sol2.h (FORCE_CODE_SECTION_ALIGN): Replace
4126         FORCE_{INIT,FINI}_SECTION_ALIGN.
4128         * config/mcore/mcore-elf.h (FORCE_CODE_SECTION_ALIGN): Replace
4129         FORCE_{INIT,FINI}_SECTION_ALIGN.
4131         * config/s390/s390.h (CRT_CALL_STATIC_FUNCTION): Update for new
4132         invocation sequence.
4133         * config/sh/sh.h (CRT_CALL_STATIC_FUNCTION): Likewise.
4135         * doc/tm.texi (CRT_CALL_STATIC_FUNCTION): Update.
4136         (FORCE_CODE_SECTION_ALIGN): New.
4138 2002-01-26  Richard Henderson  <rth@redhat.com>
4140         * config/cris/cris.c (cris_print_operand): Handle 64-bit CONST_INT.
4142 2002-01-26  Richard Henderson  <rth@redhat.com>
4144         * config/alpha/alpha.c (alpha_sa_mask): Mark RA for unicos here too.
4145         (alpha_sa_size): Use alpha_sa_mask to compute size of saved regs.
4147 2002-01-26  Kazu Hirata  <kazu@hxi.com>
4149         * config/h8300/h8300.md: Remove bit extraction patterns that
4150         cannot be triggered.
4151         Restrict each bit extraction pattern to a variant on which the
4152         pattern is tested.
4154 2002-01-26  Joseph S. Myers  <jsm28@cam.ac.uk>
4156         * doc/include/texinfo.tex: Update to version 2002-01-04.07.
4158 2002-01-26  Kazu Hirata  <kazu@hxi.com>
4160         * config/h8300/h8300.md: Remove bit test patterns that cannot
4161         be triggered.
4162         Restrict each bit test pattern to a variant on which the
4163         pattern is tested.
4165 2002-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
4167         * builtins.c (expand_builtin_strncat): Remove redundant check for
4168         INTEGER_CST.
4170 2002-01-25  David O'Brien  <obrien@FreeBSD.org>
4172         * config/i386/x86-64.h (DEFAULT_PCC_STRUCT_RETURN): Do not overide
4173         default setting.
4174         * config/i386/freebsd64.h (DEFAULT_PCC_STRUCT_RETURN): Do not override
4175         existing setting.
4177 2002-01-25  Geoffrey Keating  <geoffk@redhat.com>
4179         * dbxout.c (dbxout_init): Use assemble_name rather than just
4180         stripping off the first character.
4181         (dbxout_source_file): Likewise.
4183 2002-01-25  DJ Delorie  <dj@redhat.com>
4185         * config/sparc/sparc.c (sparc_emit_set_symbolic_const64): Compare
4186         using rtx_equal_p, not by comparing pointers.
4188 2002-01-25  Steve Ellcey  <sje@cup.hp.com>
4190         * emit-rtl.c (gen_rtx_REG): Always return the same rtx
4191         for PIC_OFFSET_TABLE_REGNUM.
4192         (init_emit_once): Use gen_raw_REG to initialize pic_offset_table_rtx.
4194 2002-01-25  David O'Brien  <obrien@FreeBSD.org>
4196         * config.gcc (x86_64-*-freebsd*): New target.
4197         (x86_64-*-netbsd*,x86_64-*-linux*): Use ${tm_file} rather than its
4198         value.
4199         (i[34567]86-*-freebsd*): Don't include svr4.h.
4200         * config/i386/freebsd64.h: New file.
4202 2002-01-25  Douglas B Rupp  <rupp@gnat.com>
4204         * config/alpha/x-vms (version): Make static.
4206         * config/alpha/vms.h (MD_FALLBACK_FRAME_STATE_FOR): Fix error
4207         in previous checkin.
4209         * Makefile.in (install-headers-cp): New target.
4210         * config.gcc (alpha-dec-*vms*): Install headers with
4211         install-headers-cp
4213 Fri Jan 25 22:42:49 CET 2002  Jan Hubicka  <jh@suse.cz>
4215         * unroll.c (unroll_loop): Lower final_value to nonmemory operand;
4216         avoid it's copies.
4218 Fri Jan 25 08:26:19 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4220         * builtins.c (expand_builtin_strncpy): Use integer_zerop instead
4221         of compare_tree_int.
4222         (expand_builtin_strncat): Likewise.
4223         * c-decl.c (finish_struct): Use tree_low_cst.
4224         * tree.h (compare_tree_int): Arg is unsigned HOST_WIDE_INT.
4225         * tree.c (compare_tree_int): Likewise.
4227 2002-01-25  Ulrich Weigand  <uweigand@de.ibm.com>
4229         * reload1.c (eliminate_regs_in_insn): Recognize frame pointer
4230         adjustments even if they are implemented by more than two insns.
4232 Fri Jan 25 20:43:56 CET 2002  Jan Hubicka  <jh@suse.cz>
4234         * df.c (df_ref_create, df_ref_record_1, df_ref_record): Kill BB arg.
4235         * df.h (struct ref): Kill B.
4236         (DF_REF_BB, DF_REF_BBNO): Use BLOCK_FOR_INSN.
4238         * basic-block.h (PROP_EQUAL_NOTES): New flag.
4239         * flow.c (propagate_one_insn): Use it.
4240         (mark_used_regs): Handle NIL.
4242 2002-01-25  Geoffrey Keating  <geoffk@redhat.com>
4244         * config/stormy16/stormy16.md (tablejump_pcrel): Use a MEM
4245         to help folding.
4247 2002-01-25  David Edelsohn  <edelsohn@gnu.org>
4249         * rs6000.md (prefetch): Make address V4SI mode so that the address
4250         is restricted to legitimate form for instruction.
4252 2002-01-25  Bob Wilson  <bob.wilson@acm.org>
4254         * doc/install.texi (xtensa-*-elf): New target.
4255         (xtensa-*-linux*): New target.
4256         * doc/contrib.texi: Add myself.
4258 2002-01-25  Nick Clifton  <nickc@cambridge.redhat.com>
4260         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow any general
4261         purpose register to hold an SImode (or smaller) value.
4263 2002-01-25  Jakub Jelinek  <jakub@redhat.com>
4265         * unwind-dw2-fde-glibc.c: If inhibit_libc, use __register_frame*
4266         registry only.
4267         * crtstuff.c: Likewise.
4269 2002-01-25  Kazu Hirata  <kazu@hxi.com>
4271         * config/h8300/h8300.md (negation patterns): Tighten
4272         predicates to register_operand.
4274 2002-01-24  Aldy Hernandez  <aldyh@redhat.com>
4276         * loop.c (emit_prefetch_instructions): Use the prefetch insn's
4277         mode, not Pmode.
4279         * builtins.c (expand_builtin_prefetch): Same.
4281 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
4283         * config/sh/sh.md (sym_label2reg): Make sure all CONSTs have
4284         modes.
4286 2002-01-24  Kazu Hirata  <kazu@hxi.com>
4288         * config/h8300/h8300.c (print_operand): Remove support for
4289         operand character 'A'.
4290         * config/h8300/h8300.md (three anonymous patterns): Replace
4291         operand character 'A' with either 'T' or 'S'.
4293 2002-01-24  Kazu Hirata  <kazu@hxi.com>
4295         * config/h8300/h8300.c (print_operand): Remove support for
4296         operand character 'U'.
4298 2002-01-24  Andris Pavenis  <pavenis@latnet.lv>
4300         * config/i386/t-djgpp: Use NATIVE_SYSTEM_HEADER_DIR.
4302 2002-01-24  Nick Clifton  <nickc@cambridge.redhat.com>
4304         * config/arm/arm.c (arm_hard_regno_mode_ok): Allow SImode
4305         values to be assigned to the stack pointer.
4307 2002-01-14  Hartmut Penner  <hpenner@de.ibm.com>
4309         * emit_rtl.c (gen_lowpart_common): Conversion from const_int
4310         to const_double needs to be done right for big-endian systems.
4312 2002-01-24  Jason Merrill  <jason@redhat.com>
4314         PR c++/2432
4315         * config/sparc/sparc.md (call-jump peepholes): Pass the right insn
4316         to can_throw_internal.
4318 2002-01-23  Richard Henderson  <rth@redhat.com>
4320         * fold-const.c (fold): Change UINT_MAX test to check vs precision
4321         rather than TYPE_MAX_VALUE.  Fix indentation and a bogus negation.
4323 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
4325         * config/sh/sh.md (symGOT_load, sym2GOT, sym2GOTOFF): New expands.
4326         (symGOT2reg): Use them, then set as GOT value as unchanging.
4327         (symGOTOFF2reg): Set REG_EQUAL note.  Use a different pseudo
4328         as a temporary, if possible.
4329         (symPLT_label2reg): Enclose (pc) in UNSPEC_PIC.  Emit
4330         sym@PLT-(.LPCS#+2-.) instead of sym@PLT+.-(.LPCS#+2).
4332 2002-01-23  Kazu Hirata  <kazu@hxi.com>
4334         * config/h8300/h8300.md: Fix xorqi and xorqi so that they will
4335         accept to accept 0x80 as operands[2].
4337 2002-01-24  Alexandre Oliva  <aoliva@redhat.com>
4339         * config/sparc/sparc.md (fix_trunctfdi2): Correct typo in mode.
4341 2002-01-23  Richard Henderson  <rth@redhat.com>
4343         * config/alpha/alpha.md (call_value_osf_1_er peepholes): Fix typo.
4345 2002-01-23  Aldy Hernandez  <aldyh@redhat.com>
4347         * c-parse.in (parmlist_or_identifiers): Add maybe_attribute.
4348         (parmlist_or_identifiers_1): Verify that only a parmlist follows
4349         an attribute.
4351 2002-01-23  Richard Henderson  <rth@redhat.com>
4353         * expr.c (move_by_pieces_1): Extend size before negation.
4355         * config/m68k/t-m68kbare (MULTILIB_OPTIONS): Add 68040 and 68060.
4356         (MULTILIB_MATCHES): Remove 68040 and 68060 aliases.
4357         (MULTILIB_EXCEPTIONS): Ignore 68881 and soft-float for 68040 and 68060.
4358         * config/m68k/t-m68kelf: Likewise.
4360 2002-01-23  Bob Wilson  <bob.wilson@acm.org>
4362         * config/xtensa/elf.h: New file.
4363         * config/xtensa/lib1funcs.asm: New file.
4364         * config/xtensa/lib2funcs.S: New file.
4365         * config/xtensa/linux.h: New file.
4366         * config/xtensa/t-xtensa: New file.
4367         * config/xtensa/xtensa-config.h: New file.
4368         * config/xtensa/xtensa-protos.h: New file.
4369         * config/xtensa/xtensa.c: New file.
4370         * config/xtensa/xtensa.h: New file.
4371         * config/xtensa/xtensa.md: New file.
4372         * config.gcc (xtensa-*-elf*): New target.
4373         (xtensa-*-linux*): New target.
4374         * cse.c (canon_hash): Compare rtx pointers instead of register
4375         numbers.  This is required for the Xtensa port.
4376         * integrate.c (copy_insn_list): Handle case where the static
4377         chain is in memory and the memory address has to be copied to
4378         a register.
4379         * doc/invoke.texi (Option Summary): Add Xtensa options.
4380         (Xtensa Options): New node.
4381         * doc/md.texi (Machine Constraints): Add Xtensa machine constraints.
4383 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
4385         * diagnostic.c (internal_error): Do ICE suppression only
4386         when ENABLE_CHECKING is not defined.
4388         * c-typeck.c (require_complete_type): Return error_mark_node
4389         if type is error_mark_node.
4391 2002-01-23  Janis Johnson  <janis187@us.ibm.com>
4393         * toplev.c (process_options): Disable -fprefetch-loop-arrays with
4394         -Os and issue a warning.
4396 2002-01-23  Zack Weinberg  <zack@codesourcery.com>
4398         * doc/fragments.texi, doc/hostconfig.texi: Update to reflect
4399         current (lack of) need for host configuration by hand.
4401         * doc/gccint.texi, doc/rtl.texi, doc/tm.texi: Adjust cross
4402         references.  Documentation of some target macros moved from
4403         hostconfig.texi to tm.texi.
4405 2002-01-23  Will Cohen  <wcohen@redhat.com>
4407         * config/arm/arm.h (THUMB_FUNCTION_PROFILER): Define if not currently
4408         defined.
4410 2002-01-23  Kazu Hirata  <kazu@hxi.com>
4412         * config/h8300/h8300.md (*andorhi3): Accept 0x8000 as an
4413         operand[3].
4415 2002-01-23  Jason Merrill  <jason@redhat.com>
4417         * tree.c (build1): Don't set TREE_READONLY on INDIRECT_REF.
4419         * function.c (assign_parms): Don't put args of inline functions
4420         into registers when not optimizing.
4422 2002-01-23  Nick Clifton  <nickc@cambridge.redhat.com>
4424         * config/arm/arm.md (UNSPEC_PROLOGUE_USE): New unspec constant.
4425         (prologue_use): New pattern.
4426         * config/arm/arm.c (expand_prologue): Use gen_prologue_use in
4427         preference to gen_rtx_USE.
4428         (thumb_expand_prologue): Use gen_prologue_use in preference to
4429         gen_rtx_USE.
4430         (thumb_expand_epilogue): Use gen_prologue_use in preference to
4431         gen_rtx_USE.
4433 2002-01-23  Hans-Peter Nilsson  <hp@bitrange.com>
4435         * loop.c [!HAVE_prefetch] (CODE_FOR_prefetch): Define to 0.
4437 2002-01-23  Neil Booth  <neil@daikokuya.demon.co.uk>
4439         PR c/3504
4440         * doc/extend.texi: Correct documentation of __alignof__.
4442 2002-01-22  Zack Weinberg  <zack@codesourcery.com>
4444         * params.h: Rename arguments of DEFPARAM so that it will be
4445         recognized as a translation keyword.
4447 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
4449         * extend.texi: Document altivec functions.
4450         Fix N-bit adjectives in X86 builtin documentation.
4452 2002-01-22  Alexandre Oliva  <aoliva@redhat.com>
4454         * reload.c (reg_overlap_mentioned_for_reload_p): Handle PLUS and
4455         auto_inc_dec values.
4457 2002-01-22  Richard Earnshaw  <rearnsha@arm.com>
4459         * config/netbsd-aout.h (SWITCH_TAKES_ARG): Remove bogus white space
4460         after backslash.
4461         (ASM_DECLARE_OBJECT_NAME): Add missing backslash before final line.
4463 2002-01-22  Alexandre Oliva  <aoliva@redhat.com>
4465         * config/i386/freebsd-aout.h (ASM_QUAD): Undefine.
4467 2002-01-22  Richard Henderson  <rth@redhat.com>
4469         * config/alpha/alpha.c (split_small_symbolic_mem_operand): Use
4470         copy_insn not copy_rtx.
4472 2002-01-23  Alan Modra  <amodra@bigpond.net.au>
4474         * combine.c (simplify_and_const_int): Don't trunc_int_for_mode
4475         "nonzero" as that might add "1" bits.  Ensure "constop" is
4476         properly sign extened.
4477         (force_to_mode): Tweak for sign extended constop.
4479 2002-01-22  Richard Henderson  <rth@redhat.com>
4481         * config/alpha/alpha.c (some_small_symbolic_mem_operand) Use
4482         for_each_rtx instead of assuming we're already looking at the MEM.
4483         (split_small_symbolic_mem_operand): Likewise.
4484         * config/alpha/alpha.h (PREDICATE_CODES): Update.
4485         * config/alpha/alpha.md (small symbolic memory splitters): Update.
4487 2002-01-22  Richard Henderson  <rth@redhat.com>
4489         * config/alpha/alpha.md (divmodsi_internal_er): Generate lituse
4490         sequence number for the literal.
4491         (divmoddi_internal_er): Likewise.
4493 2002-01-22  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4495         PR java/4972
4496         * aclocal.m4 (AM_ICONV): Put linking flags for libiconv
4497         in LIBICONV variable.
4498         * configure: Regenerated.
4500 2002-01-22  Krister Walfridsson  <cato@df.lth.se>
4502         * dependence.c (build_def_use): Remove array_idx.
4504         * dwarfout.c (last_filename): Remove.
4505         (output_compile_unit_die): Remove last_filename.
4507 2002-01-22  Roger Sayle  <roger@eyesopen.com>
4508             Richard Henderson  <rth@redhat.com>
4510         PR opt/3640
4511         * fold-const.c (fold): Optimize unsigned comparisons against
4512         UINT_MAX (and similar unsigned constants).
4514 2002-01-22  Janis Johnson  <janis187@us.ibm.com>
4516         * Makefile.in (loop.o): Depend on OPTABS_H.
4517         * loop.c (emit_prefetch_instructions): Check the prefetch operand
4518         against the predicate.
4520         PR target/5379
4521         * config/i386/i386.md (prefetch_sse): Specify "p" as a constraint
4522         for the address operand.
4524 2002-01-22  Richard Henderson  <rth@redhat.com>
4526         * config/alpha/freebsd.h (FUNCTION_PROFILER): Remove.
4528 2002-01-22  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4530         PR other/5450
4531         * config/i386/sysv4.h (CPP_SPEC): Define, and add CPU
4532         preprocessor flags.
4534 2002-01-22  Jason Thorpe  <thorpej@wasabisystems.com>
4536         * config.gcc (x86_64-*-netbsd*): New target.
4537         * config/i386/netbsd64.h: New file.
4539 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
4541         * regrename.c (kill_value): Fix typo.
4543 2002-01-22  Aldy Hernandez  <aldyh@redhat.com>
4545         * doc/tm.texi: Remove STARTING_FRAME_PHASE.
4547         * config/rs6000/rs6000.h: Same.
4549         * function.c (instantiate_virtual_regs): Remove
4550         STARTING_FRAME_PHASE.
4551         (assign_stack_local_1): Same.
4552         Calculate frame phase.
4554 2002-01-22  Nick Clifton  <nickc@redhat.com>
4556         * config/arm/arm.h (CONDITIONAL_REGISTER_USAGE): Move 'regno'
4557         variable declaration to outer scope in order to simplify
4558         future extensions.
4559         (HARD_REGNO_MODE_OK): Replace macro body with a with a call to
4560         arm_hard_regno_mode_ok.
4561         * config/arm/arm-protos.h: Add a prototype for
4562         arm_hard_regno_mode_ok.
4563         * config/arm/arm.c (soft_df_operand): Remove now redundant
4564         check for DImode values using IP_REGNUM.
4565         (nonimmediate_soft_df_operand): Remove now redundant check for
4566         DImode values using IP_REGNUM.
4567         (arm_hard_regno_mode_ok): New function. New check: make sure
4568         that DImode values are not stored in IP_REGNUM.
4570         * config/arm/arm.c (arm_expand_prologue): Replace REG_MAYBE_DEAD
4571         note with a USE.
4572         (thumb_expand_prologue): Replace REG_MAYBE_DEAD note with a USE.
4574 2002-01-22  Jason Merrill  <jason@redhat.com>
4576         * c-semantics.c (genrtl_compound_stmt): Only check nesting
4577         consistency if this COMPOUND_STMT is scoped.
4579 2002-01-22  Kazu Hirata  <kazu@hxi.com>
4581         * predict.c: Fix formatting.
4582         * print-tree.c: Likewise.
4583         * protoize.c: Likewise.
4584         * real.h: Likewise.
4585         * rtl.h: Likewise.
4586         * sbitmap.h: Likewise.
4587         * scan.c: Likewise.
4588         * sched-deps.c: Likewise.
4589         * sched-vis.c: Likewise.
4590         * sdbout.c: Likewise.
4591         * sibcall.c: Likewise.
4592         * ssa.c: Likewise.
4593         * ssa-ccp.c: Likewise.
4594         * ssa-dce.c: Likewise.
4595         * stmt.c: Likewise.
4596         * stor-layout.c: Likewise.
4597         * system.h: Likewise.
4599 Tue Jan 22 06:26:33 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4601         * tree.c (int_fits_type_p): If bounds of a subtype are variable, see
4602         if fits in bounds of base type.
4604         * dwarf2out.c (equate_decl_number_to_die): Add "int" to decls.
4605         (loc_descriptor_from_tree, case CALL_EXPR, case ADDR_EXPR): New.
4606         (add_bound_info, default): If can't find a context, make a
4607         SAVE_EXPR.
4608         (dwarf2out_finish): Check for SAVE_EXPR in node->created_for.
4610 2002-01-22  Hans-Peter Nilsson  <hp@axis.com>
4612         * c-typeck.c (parser_build_binary_op): If result from
4613         build_binary_op is ERROR_MARK just return error_mark_node without
4614         further processing.
4616 2002-01-21  Jason Thorpe  <thorpej@wasabisystems.com>
4618         * config/netbsd.h (TARGET_HAS_F_SETLKW): define.
4619         Split a.out-specific bits into...
4620         * config/netbsd-aout.h: ...this.
4621         * config/netbsd-elf.h: New file.
4622         * config/alpha/netbsd-elf.h: Remove.
4623         * config/alpha/netbsd.h: Rewrite for a NetBSD/alpha ELF target.
4624         * config/i386/netbsd-elf.h (LIB_SPEC): Remove.
4625         (STARTFILE_SPEC): Remove redundant definition.
4626         (ENDFILE_SPEC): Likewise.
4627         (LINK_SPEC): Likewise.
4628         (CPP_SPEC): Likewise.
4629         (ASM_SPEC): Likewise.
4630         (LIB_SPEC): Likewise.
4631         (SWITCH_TAKES_ARG): Likewise.
4632         (TARGET_MEM_FUNCTIONS): Likewise.
4633         (CPP_PREDEFINES): Redefine.
4634         (ASM_FINAL_SPEC): Remove redefinition.
4635         (ASM_COMMENT_START): Redefine.
4636         (FUNCTION_PROFILER): Define.
4637         (TARGET_VERSION): Redefine.
4638         Comment and formatting cleanup.
4639         * config/i386/netbsd.h: Include <netbsd-aout.h>.
4640         * config/m68k/netbsd.h: Include <netbsd-aout.h>.
4641         * config/mips/netbsd.h: Rewrite for NetBSD/mips ELF target,
4642         big- or little-endian.
4643         * config/ns32k/netbsd.h: Include <netbsd-aout.h>.
4644         * config.gcc (*-*-netbsd*): Add definitions common to all
4645         NetBSD configs.
4646         (alpha*-*-netbsd*): Remove redundant xm_defines, gas, and
4647         gnu_ld definitions.  Add netbsd-elf.h to and remove
4648         alpha/netbsd-elf.h from tm_file.  Remove alpha/t-crtfm from
4649         tmake_file, and don't lose previous tmake_file contents.
4650         (arm*-*-netbsd*): Add netbsd-aout.h to tm_file.
4651         (i[34567]86-*-netbsdelf*): Remove redundant xm_defines, gas, and
4652         gnu_ld definitions.  Add netbsd-elf.h to tm_file.
4653         (mips-dec-netbsd*): Remove as alias for mipsel-*-netbsd*.
4654         (mipsel-*-netbsd*): Rename this to...
4655         (mips*-*-netbsd*): ...this.  Add elfos.h to tm_file.  Add
4656         mips/little.h to tm_file for mips*el-*.
4657         (powerpc-*-netbsd*): Remove redundant xm_defines definition.
4658         (sparc-*-netbsd*): Add netbsd-aout.h to tm_file.
4659         (vax-*-netbsd*): Add netbsd-aout.h to tm_file.
4661 2002-01-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4663         * pa-protos.h (reg_before_reload_operand): New function prototype.
4664         * pa.c (reg_before_reload_operand): New function implementation.
4665         * pa.md (decrement_and_branch_until_zero, movb): Use it.  Change "!*m"
4666         contraints to "*m".
4668 2002-01-21  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4670         * combine.c (simplify_and_const_int): Properly sign-extend CONSTOP.
4672 2002-01-21  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4674         * pa64-hpux.h (MD_EXEC_PREFIX): Set to "/usr/ccs/bin".
4675         (MD_STARTFILE_PREFIX): Set to "/usr/ccs/lib/pa20_64/".
4676         (MD_STARTFILE_PREFIX_1): Set to "/opt/langtools/lib/pa20_64/".
4677         (EH_FRAME_IN_DATA_SECTION): Define and update comment on init sections.
4678         (ENDFILE_SPEC): Undefine.
4679         (STARTFILE_SPEC): Redefine for PA.
4681 2002-01-21  Franz Sirl  <Franz.Sirl-kernel@lauterbach.com>
4683         * config/rs6000/t-ppccomm (CRTSTUFF_T_CFLAGS_S): Re-add -fPIC.
4685 2002-01-21  Daniel Jacobowitz  <drow@mvista.com>
4687         * config.gcc: Add entries to supported PowerPC --with-cpu
4688         types.
4690 2002-01-21  Jakub Jelinek  <jakub@redhat.com>
4692         * config/i386/i386.c (ix86_function_arg_regno_p): Never return
4693         true for 64-bit mode only SSE registers in 32-bit mode.
4695 2002-01-21  Kazu Hirata  <kazu@hxi.com>
4697         * unwind-dw2.c: Fix formatting.
4698         * unwind-dw2-fde.c: Likewise.
4699         * unwind-dw2-fde.h: Likewise.
4700         * unwind-pe.h: Likewise.
4701         * varasm.c: Likewise.
4702         * varray.h: Likewise.
4704 2002-01-21  Hans-Peter Nilsson  <hp@bitrange.com>
4706         Remove workaround for register stack overwrite bug in mmix.
4707         * config/mmix/mmix.c (mmix_target_asm_function_prologue): Remove
4708         support for TARGET_REG_STACK_FILL_BUG.
4709         * config/mmix/mmix.h: Remove member has_call_without_parameters.
4710         (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_REG_STACK_FILL_BUG):
4711         Delete.
4712         (TARGET_DEFAULT): Remove TARGET_MASK_REG_STACK_FILL_BUG.
4713         (TARGET_SWITCHES): Remove -mreg-stack-fill-bug-workaround and
4714         -mno-reg-stack-fill-bug-workaround.
4715         * config/mmix/mmix.md ("call", "call_value"): Don't set struct
4716         machine member has_call_without_parameters.
4717         * doc/invoke.texi (Option Summary) <MMIX Options>: Remove
4718         -mreg-stack-fill-bug-workaround and
4719         -mno-reg-stack-fill-bug-workaround.
4720         (MMIX Options): Ditto.
4722 2002-01-21  Kazu Hirata  <kazu@hxi.com>
4724         * config/h8300/h8300.c (function_arg): Replace 0 with NULL_RTX
4725         as appropriate.
4726         Remove redundant code.
4728 2002-01-21  Joseph S. Myers  <jsm28@cam.ac.uk>
4730         * config/alpha/alpha.h, config/arc/arc.h, config/avr/avr.h,
4731         config/c4x/c4x.h, config/d30v/d30v.h, config/dsp16xx/dsp16xx.h,
4732         config/fr30/fr30.h, config/ia64/ia64.h, config/m68hc11/m68hc11.h,
4733         config/mips/mips.h, config/rs6000/rs6000.h, config/sparc/sparc.h,
4734         config/stormy16/stormy16.h, config/v850/v850.h: Remove commented
4735         out target macro definitions and non-target-specific comments
4736         mostly taken from old versions of the manual.
4738 2002-01-20  Kazu Hirata  <kazu@hxi.com>
4740         * config/h8300/h8300.h: Fix comment formatting.
4741         * config/ia64/aix.h: Likewise.
4742         * config/ia64/ia64-protos.h: Likewise.
4743         * config/ia64/ia64.c: Likewise.
4744         * config/ia64/ia64.h: Likewise.
4745         * config/ia64/ia64intrin.h: Likewise.
4746         * config/ia64/linux.h: Likewise.
4747         * config/ia64/unwind-aix.c: Likewise.
4748         * config/ia64/unwind-ia64.c: Likewise.
4750 2002-01-20  Kazu Hirata  <kazu@hxi.com>
4752         * config/h8300/h8300.c: Revise comments about shift code.
4754 2002-01-20  Kazu Hirata  <kazu@hxi.com>
4756         * config/h8300/h8300.c (function_arg): Update a comment.
4758 2002-01-20  Kazu Hirata  <kazu@hxi.com>
4760         * config/h8300/h8300.md: Update the comments at the beginning
4761         of the file.
4763 2002-01-20  Kazu Hirata  <kazu@hxi.com>
4765         * config/i370/i370.c: Fix comment formatting.
4766         * config/i370/i370.h: Likewise.
4767         * config/i370/i370.md: Likewise.
4768         * config/i370/linux.h: Likewise.
4770 Sun Jan 20 18:40:14 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4772         * reg-stack.c (subst_stack_regs): Properly check for deleted insn.
4774         * dwarf2out.c (loc_descriptor_from_tree): Add TRUTH_*_EXPR cases.
4775         (gen_struct_or_union_type_die): Don't SIGSEGV if no TYPE_STUB_DECL
4776         in incomplete case.
4778 2002-01-20  Graham Stott  <grahams@redhat.com>
4780         * cfgloop.c (flow_loop_preheader_scan): Fix typo.
4782 2002-01-19  John David Anglin  <dave@hiauly1.hia.nrc.ca>
4784         * config.gcc (hppa*64*-*-hpux11*): Fix tmake_file.
4786 2002-01-19  Tom Rix  <trix@redhat.com>
4788         * config/rs6000/rs6000.md: Fix DF split for 64 bit hosts.
4790 2002-01-18  Aldy Hernandez  <aldyh@redhat.com>
4792         * doc/tm.texi (STARTING_FRAME_PHASE): Document.
4794         * function.c (assign_stack_local_1): Adjust x_frame_offset with
4795         STARTING_FRAME_PHASE.
4796         (STARTING_FRAME_PHASE): New.
4797         (instantiate_virtual_regs): Check saneness of
4798         STARTING_FRAME_PHASE.
4800         * config/rs6000/rs6000.h (STARTING_FRAME_PHASE): New.
4802 2002-01-19  Alexandre Oliva  <aoliva@redhat.com>
4804         * config/sh/sh.md (movdf_i4 split): Fix alter_subreg calls.
4806 2002-01-18  Craig Rodrigues  <rodrigc@gcc.gnu.org>
4808         * doc/install.texi (hppa*-hp-hpux11): Clarify that GCC 2.95.x cannot
4809         be used for bootstrapping GCC 3.0.
4811 2002-01-18  Kazu Hirata  <kazu@hxi.com>
4813         * config/h8300/h8300.md: Fix an insn length.
4815 2002-01-18  Kazu Hirata  <kazu@hxi.com>
4817         * bitmap.h: Fix comment formatting.
4818         * combine.c: Likewise.
4819         * cppfiles.c: Likewise.
4820         * c-pragma.h: Likewise.
4821         * c-typeck.c: Likewise.
4822         * df.c: Likewise.
4823         * dwarf2out.c: Likewise.
4824         * function.c: Likewise.
4825         * gcc.c: Likewise.
4826         * genattrtab.c: Likewise.
4827         * gthr-win32.h: Likewise.
4828         * haifa-sched.c: Likewise.
4829         * predict.c: Likewise.
4830         * rtlanal.c: Likewise.
4831         * rtl.h: Likewise.
4832         * unwind-dw2-fde.h: Likewise.
4833         * unwind-pe.h: Likewise.
4834         * vmsdbgout.c: Likewise.
4836 Thu Jan 17 15:28:26 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4838         * attribs.c (decl_attributes): Clear ATTR_FLAG_TYPE_IN_PLACE
4839         if type_required and passed decl.
4841 2002-01-17  Aldy Hernandez  <aldyh@redhat.com>
4843         * config.gcc (cpu_type): Include altivec.h in powerpc
4844         extra_headers.
4845         Same for darwin.
4847         * config/rs6000/altivec.h: New.
4849 2002-01-17  David Edelsohn  <edelsohn@gnu.org>
4851         * doc/install.texi (*-ibm-aix*): Update assembler and exception
4852         handling information.
4853         * doc/trouble.texi (Interoperation): Add libstdc++ information
4854         for AIX.
4855         (Misunderstandings): Add template instantiation and static template
4856         member information for AIX.
4858 2002-01-17  Jason Merrill  <jason@redhat.com>
4860         * dbxout.c (dbxout_type): Support const and volatile.
4862         * except.c (add_partial_entry): Remove backwards compatibility code.
4863         (end_protect_partials): Likewise.
4865 2002-01-17  Jakub Jelinek  <jakub@redhat.com>
4867         * config/ia64/ia64.md (prologue_use): New.
4868         * config/ia64/ia64.c (ia64_expand_prologue): Use
4869         gen_prologue_use instead of gen_rtx_USE.
4870         (group_barrier_needed_p): Handle CODE_FOR_prologue_use the same way
4871         as CODE_FOR_pred_rel_mutex.
4872         (ia64_sched_reorder2): Likewise.
4874 2002-01-16  Eric Christopher  <echristo@redhat.com>
4876         * config/mips/r3900.h: Reformat.
4877         (SUBTARGET_CPP_SIZE_SPEC): Remove.
4878         * config/mips/isa3264.h (SUBTARGET_CPP_SIZE_SPEC): Ditto.
4879         * config/mips/mips.h (ABI_GAS_ASM_SPEC): Default to "".
4880         (SUBTARGET_CPP_SIZE_SPEC): Rewrite.
4881         * config/mips/t-elf: Remove mips3 multilib.
4883 2002-01-16  H.J. Lu <hjl@gnu.org>
4885         * config/mips/linux.h: Include "mips/abi64.h".
4887 2002-01-16  H.J. Lu <hjl@gnu.org>
4889         * config/mips/t-linux: New.
4891         * config.gcc: Add mips/t-linux to tmake_file for mips*-*-linux*.
4893         * config/mips/linux.h: Don't include "gofast.h".
4894         (INIT_SUBTARGET_OPTABS): Removed.
4896 2002-01-16  Kazu Hirata  <kazu@hxi.com>
4898         * config/h8300/h8300-protos.h: Replace emit_a_shift with
4899         output_a_shift.
4900         * config/h8300/h8300.c: Likewise.
4901         * config/h8300/h8300.md: Likewise.
4903 2002-01-16  Kazu Hirata  <kazu@hxi.com>
4905         * config/h8300/h8300.md (pushqi1_h8300): Use a tab instead of
4906         spaces after an opcode name.
4907         (pushqi1_h8300hs): Likewise.
4908         (pushhi1_h8300hs): Likewise.
4910 2002-01-16  Kazu Hirata  <kazu@hxi.com>
4912         * doc/extend.texi: Replace "option" with "attribute"
4913         appropriately.
4915 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
4917         * config/alpha/alpha.c (some_small_symbolic_mem_operand): Look into
4918         (and:DI () (const_int -8)).
4919         (split_small_symbolic_mem_operand): Split
4920         (mem (and:DI () (const_int -8)).
4922 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
4924         PR target/5309:
4925         * config/sparc/sparc.c (ultrasparc_adjust_cost): Handle TYPE_IDIV the
4926         same way as TYPE_IMUL.
4927         (ultrasparc_sched_reorder): Likewise.
4928         * config/sparc/sparc.md (type): Add comment to update
4929         ultrasparc_sched_reorder when making changes.
4931 2002-01-16  Kazu Hirata  <kazu@hxi.com>
4933         * doc/invoke.texi: Change the dump file name of block
4934         reordering pass from 28.bbro to 29.bbro.
4935         Mention -dk option.
4937 Wed Jan 16 17:54:22 CET 2002  Jan Hubicka  <jh@suse.cz>
4939         * i386.md (minsf splitter): Fix pasto.
4941 2002-01-16  Nick Clifton  <nickc@cambridge.redhat.com>
4943         * config/arm/arm.c (arm_expand_prologue): Add REG_MAYBE_DEAD note
4944         to frame pointer initialisation instruction.
4945         (thumb_expand_prologue): Add REG_MAYBE_DEAD note to frame pointer
4946         initialisation instruction.
4947         (soft_df_operand): Do not accept the IP register.
4948         (nonimmediate_soft_df_operand): Do not accept the IP register.
4950 2002-01-16  Jakub Jelinek  <jakub@redhat.com>
4952         PR target/5357:
4953         * config/sparc/sparc.c (sparc_override_options): Avoid MASK_V9 and
4954         MASK_V8 being both set.
4956 2002-01-16  Ulrich Weigand  <uweigand@de.ibm.com>
4958         * config/s390/s390.c (s390_emit_prologue): Do not emit USE
4959         insn for GOT register; add REG_MAYBE_DEAD notes instead.
4960         config/s390/s390.md (call, call_value): Add GOT register to
4961         CALL_INSN_FUNCTION_USAGE where needed.
4962         (call_exp, call_value_exp): New.
4964 2002-01-16  Nick Clifton  <nickc@cambridge.redhat.com>
4966         * config/arm/arm.c: General formatting tidy up.
4968 2002-01-16  Graham Stott  <grahams@redhat.com>
4970         * calls.c (try_to_integrate): Use "(size_t)" intermediate
4971         cast and when casting an integer literal to "rtx" pointer.
4972         (expand_call): Likewise.
4973         * flow.c (try_pre_increment): Likewise.
4974         (find_use_as_address): Likewise.
4975         * integrate.c (expand_iline_function): Likewise.
4976         * regmove.c (try_auto_increment): Likewise.
4978 2002-01-16  Graham Stott  <grahams@redhat.com>
4980         * sched-rgn.c (passed): Use sbitmap_free.
4981         (header): Likewise.
4982         (inner): Likewise.
4983         (in_queue): Likewise.
4984         (in_stack): Likewise.
4986 2002-01-15  Eric Christopher  <echristo@redhat.com>
4988         * flow.c (propagate_one_insn): Change to use fatal_insn.
4990 2002-01-15  Kazu Hirata  <kazu@hxi.com>
4992         * expmed.c (extract_fixed_bit_field): Remove unused code.
4993         * system.h: Poison SLOW_ZERO_EXTEND.
4994         * doc/tm.texi: Remove.
4995         * config/1750a/1750a.h (SLOW_ZERO_EXTEND): Remove.
4996         * config/arm/arm.h: Likewise.
4997         * config/avr/avr.h: Likewise.
4998         * config/clipper/clipper.h: Likewise.
4999         * config/convex/convex.h: Likewise.
5000         * config/d30v/d30v.h: Likewise.
5001         * config/dsp16xx/dsp16xx.h: Likewise.
5002         * config/elxsi/elxsi.h: Likewise.
5003         * config/fr30/fr30.h: Likewise.
5004         * config/h8300/h8300.h: Likewise.
5005         * config/i370/i370.h: Likewise.
5006         * config/i386/i386.h: Likewise.
5007         * config/m68k/m68k.h: Likewise.
5008         * config/mips/mips.h: Likewise.
5009         * config/ns32k/ns32k.h: Likewise.
5010         * config/pdp11/pdp11.h: Likewise.
5011         * config/pj/pj.h: Likewise.
5012         * config/s390/s390.h: Likewise.
5013         * config/sh/sh.h: Likewise.
5014         * config/stormy16/stormy16.h: Likewise.
5015         * config/v850/v850.h: Likewise.
5016         * config/vax/vax.h: Likewise.
5017         * config/we32k/we32k.h: Likewise.
5019 2002-01-15  Aldy Hernandez  <aldyh@redhat.com>
5021         * config/rs6000/rs6000.md (altivec_stvx): Add parallels to stvx.
5022         (altivec_lvsl): Change constraint to b.
5023         (altivec_lvsr): Same.
5024         (altivec_lvebx): Same.
5025         (altivec_lvehx): Same.
5026         (altivec_lvewx): Same.
5027         (altivec_lvxl): Same.
5028         (altivec_lvx): Same.
5029         (altivec_stvx): Add parallel.
5030         (altivec_stvxl): Same.
5031         (altivec_stvehx): Same.
5032         (altivec_stvebx): Same.
5033         (altivec_stvebx): Same.
5035 2002-01-15  Aldy Hernandez  <aldyh@redhat.com>
5037         * config.gcc: Change altivec.h to altivec-defs.h.
5039         * config/rs6000/altivec.h: Delete.
5041         * config/rs6000/altivec-defs.h: Add.
5043 2002-01-15  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5045         * vax.c (vax_rtx_cost): Return MAX_COST for unsupported MULT, UDIV
5046         and UMOD modes.
5048         * vax.h (INDEX_TERM_P): Restrict indexing to modes which have a size
5049         less than or equal to eight bytes.
5051         * vax.md (andsi3): Remove constraints and change SET destination
5052         operand type to nonimmediate_operand.
5053         (andhi3, andqi3): Likewise.  Don't clear high order bits of operand 1
5054         when it is a CONST_INT.
5056 2002-01-15  Jason Merrill  <jason@redhat.com>
5058         * c-common.def (FILE_STMT): New code.
5059         * c-common.c (statement_code_p): It's a statement.
5060         * c-common.h (stmt_tree_s): Add x_last_filename.
5061         (FILE_STMT_FILENAME_NODE, FILE_STMT_FILENAME): New macros.
5062         (last_expr_filename): New macro.
5063         * c-semantics.c (begin_stmt_tree): Initialize it.
5064         (add_stmt): If the filename changed, also insert a
5065         FILE_STMT.
5066         (expand_stmt): Handle seeing one.
5068 2002-01-15  Eric Christopher  <echristo@redhat.com>
5070         * flow.c (propagate_one_insn): Add error message and print out
5071         insn for debugging.
5073 2002-01-15  Joseph S. Myers  <jsm28@cam.ac.uk>
5075         * system.h (ASM_IDENTIFY_GCC, STDC_VALUE, TRAMPOLINE_ALIGN,
5076         ASM_IDENTIFY_GCC_AFTER_SOURCE): Poison.
5077         * config/pdp11/pdp11.h (TRAMPOLINE_ALIGN): Rename to
5078         TRAMPOLINE_ALIGNMENT.
5079         * config/arm/arm.h, config/mcore/mcore.h: Likewise.  Change value
5080         to be in bits.
5081         * config/i386/cygwin.h (PCC_BITFIELDS_TYPE_MATTERS): Rename to
5082         PCC_BITFIELD_TYPE_MATTERS.
5083         * config/interix.h (STDC_VALUE): Remove.  Use
5084         STDC_0_IN_SYSTEM_HEADERS.
5085         * config/darwin.h (ASM_IDENTIFY_GCC), config/dsp16xx/dsp16xx.h
5086         (ASM_IDENTIFY_GCC), config/stormy16/stormy16.h (ASM_IDENTIFY_GCC,
5087         ASM_IDENTIFY_GCC_AFTER_SOURCE): Remove.
5089 2002-01-15  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5091         * doc/install.texi (hppa*-hp-hpux11): --enable-threads does
5092         not work on this platform currently.
5094 2002-01-15  Joseph S. Myers  <jsm28@cam.ac.uk>
5096         * c-typeck.c (build_unary_op): Don't wrap msgid argument of
5097         readonly_warning in _().
5099 2002-01-15  Douglas B Rupp  <rupp@gnat.com>
5101         * gcc.c (delete_if_ordinary): Backout previous change.
5103 2002-01-15  Kazu Hirata  <kazu@hxi.com>
5105         * config/h8300/h8300.c (print_operand): Remove support for
5106         unused operand characters.
5108         * read-rtl.c: Fix formatting.
5109         * real.c: Likewise.
5110         * recog.c: Likewise.
5111         * regclass.c: Likewise.
5112         * regmove.c: Likewise.
5113         * reg-stack.c: Likewise.
5114         * reload1.c: Likewise.
5115         * rtlanal.c: Likewise.
5117 2002-01-15  Kazu Hirata  <kazu@hxi.com>
5119         * config/i386/i386.c: Fix formatting.
5121 2002-01-15  Jakub Jelinek  <jakub@redhat.com>
5123         * c-typeck.c (process_init_element): Don't save_expr
5124         COMPOUND_LITERAL_EXPR if just its initializer will be used.
5126 2002-01-15  David Edelsohn  <edelsohn@gnu.org>
5128         * config/rs6000/rs6000.c (rs6000_output_function_epilogue): Do not
5129         emit optional traceback table if optimize_size or TARGET_ELF.
5130         * config/rs6000/rs6000.md (prefetch): New.
5132 2002-01-15  Andreas Jaeger  <aj@suse.de>
5134         * config.gcc (x86_64-*-*): Install mmintrin.h and xmmintrin.h.
5136 2002-01-15  Kazu Hirata  <kazu@hxi.com>
5138         * mips-tfile.c: Fix formatting.
5140 Tue Jan 15 00:56:11 CET 2002  Jan Hubicka  <jh@suse.cz>
5142         * unroll.c (final_reg_note_copy): Fix previous commit.
5144 2002-01-14  Kazu Hirata  <kazu@hxi.com>
5146         * config/h8300/h8300-protos.h: Remove the prototype for
5147         eq_operator.
5148         * config/h8300/h8300.c (eq_operator): Remove.
5150 2002-01-14  Richard Henderson  <rth@redhat.com>
5152         * config/i386/i386.md (prefetch): Tidy.
5153         (prefetch_3dnow): Fix locality operand.
5155 2002-01-14  Richard Henderson  <rth@redhat.com>
5157         * config/mips/mips.h (HI_AND_FP_REGS): New register class.
5158         (CLASS_CANNOT_CHANGE_MODE): Disallow HI in little-endian mode.
5160 2002-01-14  Hans-Peter Nilsson  <hp@bitrange.com>
5162         * reload1.c (reload_combine): Pass reg_sum replacement through
5163         copy_rtx in loop performing multiple changes.
5165 2002-01-14  Jakub Jelinek  <jakub@redhat.com>
5167         * except.c (remove_unreachable_regions): New.
5168         (free_eh_status): Clear exception_handler_labels.
5169         (convert_from_eh_region_ranges): Call remove_unreachable_regions.
5170         (find_exception_handler_labels): Don't add the same label more than
5171         once.
5172         (remove_exception_handler_label): Don't die if
5173         find_exception_handler_labels hasn't been called for the current
5174         function yet.
5176 Mon Jan 14 21:26:13 CET 2002  Jan Hubicka  <jh@suse.cz>
5178         * toplev.c (rest_of_compilation): Rebuild jump labels after
5179         gcse.
5181 2002-01-14  Joseph S. Myers  <jsm28@cam.ac.uk>
5183         * doc/extend.texi: Move documentation of X86 built-in functions
5184         here.
5185         * doc/invoke.texi: From here.
5186         * doc/sourcebuild.texi: Document location of documentation for
5187         machine built-in functions.
5189 2002-01-13  Christopher Faylor  <cgf@redhat.com>
5191         * cppfiles.c (TEST_THRESHOLD): New macro.
5192         (SHOULD_MMAP): Ditto.
5193         (read_include_file): Use SHOULD_MMAP macro to decide when mmap should
5194         be used.
5196 Mon Jan 14 20:23:34 CET 2002  Jan Hubicka  <jh@suse.cz>
5198         * unroll.c (final_reg_note_copy): Properly handle
5199         REG_LABEL
5200         (unroll_loops): Fix LOOP_CONDITION heuristics.
5202 2002-01-14  Geoffrey Keating  <geoffk@redhat.com>
5204         * doc/invoke.texi (Xstormy16 Options): Add xstormy16 option.
5205         * doc/md.texi (Machine Constraints): Use @minus{} where appropriate.
5207 Mon Jan 14 20:18:19 CET 2002  Jan Hubicka  <jh@suse.cz>
5209         * cfgcleanup.c (try_forward_edges): Avoid infinite loop at infinite
5210         threaded loop.
5212 2002-01-14  Tom Rix  <trix@redhat.com>
5214         * config/rs6000/rs6000.md: Fix typo with sradi.
5216 2002-01-14  Ulrich Weigand  <uweigand@de.ibm.com>
5218         * config/s390/s390.md (movstrdix_64, movstrsix_31, movstrdi_64,
5219         movstrsi_31, clrstrsi_64, clrstrsi_31): Improve RTL templates.
5220         (clrstrdi, clrstrsi): Adapt callers.
5222         (extendsidi2, zero_extendsidi2): Remove no-conflict blocks.
5224         (movti splitter): Never use register 0 as base register.
5226 2002-01-14  Hartmut Penner  <hpenner@de.ibm.com>
5228         * combine.c (simplify_shift_const): Always generate new rtx
5229         for shift expression instead of reusing given expression.
5231 Mon Jan 14 07:08:55 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5233         * config/alpha/alpha.c (alpha_expand_mov): Don't call
5234         alpha_legitimize_address unless mode is Pmode.
5236 2002-01-13  Geoffrey Keating  <geoffk@redhat.com>
5238         * doc/md.texi (Modifiers): Document the '*' constraint for the
5239         user.
5241         * doc/md.texi (Machine Constraints): Add constraints for xstormy16.
5242         * doc/extend.texi (Function Attributes): 'interrupt' is valid
5243         for xstormy16 too.
5245 2002-01-13  Richard Henderson  <rth@redhat.com>
5247         * reload.c (find_reloads): Use a hard reg destination as reload reg
5248         for an input reload of the source.
5250 2002-01-13  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5252         * doc/install.texi (Binaries): Make link to ftp.writtenword.com
5253         more generic.
5255 Sun Jan 13 07:23:01 2002  Douglas B Rupp  <rupp@gnat.com>
5257         * Makefile.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
5258         * mklibgcc.in (LIB2FUNCS): Split into LIB2FUNCS_1 and LIB2FUNCS_2.
5260         * config/alpha/x-vms (USE_COLLECT2): Set to empty.
5262 Sun Jan 13 06:55:31 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5264         * dwarf2out.c (mem_loc_descriptor, case ADDRESSOF): New case.
5266 2002-01-12  Tom Rix  <trix@redhat.com>
5268         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Use ior for
5269         TARGET_POWERPC64.
5271 2002-01-12  Richard Henderson  <rth@redhat.com>
5273         * config/i386/i386.c (bdesc_2arg): Mark psadbw MASK_3DNOW_A.
5275         * doc/invoke.texi: Update Alpha options.
5277         * doc/invoke.texi: Update i386 built-in function lists.
5279 Sat Jan 12 17:38:11 CET 2002  Jan Hubicka  <jh@suse.cz>
5281         * unroll.c (final_reg_note_copy): Avoid crash on REG_LABEL note
5282         referencing outside.
5284 Sat Jan 12 08:54:51 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
5286         * diagnostic.c (warn_deprecated_use): Rework to lower indentation.
5287         * expr.c (emit_move_insn_1): Remove warning, use HOST_WIDE_INT for
5288         offsets, and change line folding.
5289         * optabs.c (expand_binop): Remove warnings.
5290         * sdbout.c (sdbout_record_type_name): Constify NAME to avoid warning.
5292 2002-01-12  Graham Stott <grahams@redhat.com>
5294         * attribs.c (handle_deprecated_attribute): constify WHAT.
5295         * diagnostic.c (warn_deprecated_use): Add braces, fixes
5296         dangling else warning and constify WHAT.
5297         * except.h (struct function, struct inline_remap): Move
5298         struct tag forward defs before all prototypes.
5299         (duplicate_eh_regions): Whitespace.
5301 2002-01-12  Nick Clifton  <nickc@cambridge.redhat.com>
5303         * config/arm/arm.h (ARM_LEGITIMIZE_RELOAD_ADDRESS): Use
5304         MODE_BASE_REG_CLASS.
5305         (THUMB_LEGITIMIZE_RELOAD_ADDRESS): Use MODE_BASE_REG_CLASS.
5307 2002-01-12  Richard Henderson  <rth@redhat.com>
5309         * config/i386/i386.c (override_options): If SSE, enable sse prefetch.
5310         (ix86_expand_vector_move): New.
5311         (bdesc_2arg): Remove andps, andnps, orps, xorps.
5312         (ix86_init_mmx_sse_builtins): Make static.  Remove composite builtins.
5313         Remove old prefetch builtins.  Special case the logicals removed above.
5314         (ix86_expand_builtin): Likewise.
5315         (safe_vector_operand): Use V4SFmode, not TImode.
5316         (ix86_expand_store_builtin): Remove shuffle arg.  Update callers.
5317         (ix86_expand_timode_binop_builtin): New.
5318         * config/i386/i386-protos.h: Update.
5319         * config/i386/i386.h (enum ix86_builtins): Update.
5320         * config/i386/i386.md: Correct predicates on MMX/SSE patterns.
5321         Use ix86_expand_vector_move in vector move expanders.
5322         (movti_internal, movti_rex64): Add xorps alternative.
5323         (sse_clrv4sf): Rename and adjust from sse_clrti.
5324         (prefetch): Don't work so hard.
5325         (prefetch_sse, prefetch_3dnow): Use PREFETCH rtx, not UNSPEC.
5326         * config/i386/xmmintrin.h (__m128): Use V4SFmode.
5327         (_mm_getcsr, _mm_setcsr): Fix typo in builtin name.
5329 2002-01-11  Richard Henderson  <rth@redhat.com>
5331         * config/i386/mmintrin.h: New file.
5332         * config/i386/xmmintrin.h: New file.
5333         * config.gcc (i?86-*-*): Add extra_headers.
5334         * simplify-rtx.c (simplify_unary_operation): Handle saturating
5335         truncation codes.
5336         (simplify_binary_operation): Handle saturating arithmetic codes.
5337         * config/i386/i386.c (ix86_expand_sse_comi): Return the full result,
5338         not the lowpart subreg.
5339         (ix86_expand_builtin): Return a TImode dummy register instead of 0
5340         on error.
5341         * config/i386/i386.md (mmx_clrdi): Override memory attribute.
5343 2002-01-12  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5345         * conflict.c (conflict_graph_compute): Free regsets when finished.
5346         * ssa.c (compute_coalesced_reg_partition): Likewise.
5348 2002-01-12  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
5350         * global.c (find_reg): Check for HARD_REGNO_CALL_PART_CLOBBERED
5351         every where we allocate a register.
5353 2002-01-12  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5355         * gcse.c (compute_pre_data, pre_gcse): Use sbitmap_free.
5356         * lcm.c (compute_earliest, compute_farthest): Likewise.
5358 2002-01-11  Janis Johnson  <janis187@us.ibm.com>
5360         * expr.c (expand_assignment): Fix misuse of MEM_KEEP_ALIAS_SET.
5362 2002-01-11  Janis Johnson  <janis187@us.ibm.com>
5364         * doc/rtl.texi (Insns): Fix 2 typos.
5366 2002-01-11  Joseph S. Myers  <jsm28@cam.ac.uk>
5368         * doc/invoke.texi: Avoid overfull hboxes.  Add summary of D30V
5369         options.  Use @table @gcctabopt for MMIX options.  Add index
5370         entries for MMIX options.  Start new paragraph with first
5371         heading of the machine-dependent options.
5373 2002-01-11  Craig Rodrigues  <rodrigc@gcc.gnu.org>
5375         PR other/5299
5376         * config/ns32k/ns32k.md: Fix spelling mistake of "than" in comments.
5377         * combine.c (force_to_mode): Same.
5378         * reload1.c (clear_reload_reg_in_use): Same.
5380 2002-01-11  Nick Clifton  <nickc@cambridge.redhat.com>
5382         * config/arm/arm.c (arm_gen_constant): Correct test of 'remainder'
5383         and 'subtargets'.
5385 2002-01-11  Andreas Jaeger  <aj@suse.de>,
5386             Brad Lucier <lucier@math.purdue.edu>
5388         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove wrong
5389         mcpu.
5391 Fri Jan 11 07:35:12 2002  Douglas B Rupp  <rupp@gnat.com>
5393         * config/alpha/vms.h: (MD_FALLBACK_FRAME_STATE_FOR): Fix errors.
5394         Protect with IN_LIBGCC.
5395         (LINK_EH_SPEC): Add required trailing space.
5397 Fri Jan 11 09:25:05 2002  Nicola Pero  <n.pero@mi.flashnet.it>
5399         * c-tree.h: Move function declarations so that they are listed
5400         under the filename which contains them.
5401         (check_identifier, finish_decl_top_level,
5402         lookup_name_current_level_global, shadow_record_fields): Remove.
5404 2002-01-11  Andreas Jaeger  <aj@suse.de>
5406         * config/i386/i386.h (CPP_CPUCOMMON_SPEC): Remove duplicated
5407         march.
5409 2002-01-10  Richard Henderson  <rth@redhat.com>
5411         * config/alpha/alpha.c (print_operand): Add 'J'.
5412         * config/alpha/alpha.md (call_osf_1_er, call_value_osf_1_er): Take a
5413         new operand with the sequence number for the lituse.  When splitting
5414         the insns, use gen_movdi_er_high_g and generate a sequence number.
5415         (gen_movdi_er_high_g): Print the sequence number if non-zero.
5417 2002-01-10  Aldy Hernandez  <aldyh@redhat.com>
5419         * config/rs6000/rs6000.c (altivec_init_builtins): Add support for
5420         lvebx, lvehx, lvewx, lvxl, lvx, stvx, stvebx, stvehx, stvewx,
5421         stvxl.
5422         (altivec_expand_builtin): Same.
5423         (altivec_expand_stv_builtin): New.
5425         * config/rs6000/rs6000.h (rs6000_builtins): Same.
5427         * config/rs6000/rs6000.md ("altivec_lvebx"): New.
5428         ("altivec_lvehx"): New.
5429         ("altivec_lvewx"): New.
5430         ("altivec_lvxl"): New.
5431         ("altivec_lvx"): New.
5432         ("altivec_stvx"): New.
5433         ("altivec_stvebx"): New.
5434         ("altivec_stvehx"): New.
5435         ("altivec_stvewx"): New.
5436         ("altivec_stvxl"): New.
5438 2002-01-10  Richard Henderson  <rth@redhat.com>
5440         * cfgrtl.c (delete_insn): Assert insn hasn't been deleted yet.
5441         * reload1.c (delete_output_reload): Zap spill_reg_store.  Take
5442         care not to delete instructions twice.
5444 2002-01-10  Zack Weinberg  <zack@codesourcery.com>
5446         * toplev.c: Don't declare environ (it's not used anywhere).
5447         * configure.in: Don't check for declaration of environ.
5448         * config/i386/xm-mingw32.h: Don't #define environ.
5449         * config.in, configure: Regenerate.
5451 2002-01-10  Zack Weinberg  <zack@codesourcery.com>
5453         * configure.in: Set stage1_cflags for powerpc-*-darwin*.
5454         * configure: Regenerate.
5456         * config/interix.h: Set DO_GLOBAL_CTORS_BODY and
5457         DO_GLOBAL_DTORS_BODY here, not in xm-interix.h.
5458         * config/alpha/vms.h: Set INCLUDE_DEFAULTS here, not in
5459         alpha/xm-vms.h.
5460         * config/m68k/t-next: Set OTHER_FIXINCLUDES_DIRS and
5461         LIMITS_H_TEST here, not in m68k/x-next.
5462         * config/rs6000/beos.h: Set STANDARD_INCLUDE_DIR and
5463         SYSTEM_INCLUDE_DIR here, not in rs6000/xm-beos.h.
5465         * config/x-interix: Don't set RANLIB, RANLIB_TEST, SHELL,
5466         LIBGCC2_INCLUDES, or SYSTEM_HEADER_DIR.
5467         * config/alpha/x-vms: Don't set USE_COLLECT2.  Add comments.
5469         * config/i386/x-djgpp: Renamed i386/t-djgpp.
5470         * config/m88k/x-dolph: Renamed m88k/t-dolph.
5471         * config/m88k/x-texXD88: Renamed m88k/t-texXD88.
5472         * config/pa/x-pa-mpeix: Renamed pa/t-mpeix.  Update for
5473         replacement of quadlib.asm with quadlib.c.
5475         * config/x-interix3, config/xm-interix.h, config/i386/x-beos,
5476         config/i386/xm-osf1elf.h, config/rs6000/x-darwin,
5477         config/rs6000/xm-beos.h: Delete file.
5479         * config.gcc: Update to match above changes.
5481 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5483         * config/h8300/h8300.h: Fix comment typos.
5484         * config/h8300/h8300.md: Likewise.
5485         * config/h8300/lib1funcs.asm: Likewise.
5487 2002-01-10  Dale Johannesen  <dalej@apple.com>
5489         PR optimization/5269
5490         * unroll.c (precondition_loop_p): Make *increment be the correct
5491         sign when n_iterations known, to avoid confusing caller.
5493 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5495         * doc/extend.texi (deprecated): Fix a typo.
5497 Thu Jan 10 22:35:54 CET 2002  Jan Hubicka  <jh@suse.cz>
5499         * basic-block.h (update_br_prob_note): Declare.
5500         * cfgcleanup.c (try_simplify_condjump): Call update_br_prob_note.
5501         (try_forward_edges): Care negative frequencies and update note.
5502         (outgoing_edges_match): Tweek conditional merging heuristics.
5503         (try_crossjump_to_edge): use update_br_prob_note.
5504         * cfglayout.c (fixup_reorder_chain): Likewise.
5505         * cfrtl.c (update_br_prob_note): New.
5506         * ifcvt.c (dead_or_predicable): Call update_br_prob_note.
5508         * i386.c (ix86_decompose_address): Return -1 if address contains
5509         shift.
5510         (legitimate_address_p): Require ix86_decompose_address to return 1.
5512         * gcse.c (hash_scan_set): Use CONSTANT_INSN_P.
5513         (cprop_insn): Likewise.
5515 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5517         * toplev.c: Fix formatting.
5518         * tree.c: Likewise.
5519         * tree-dump.c: Likewise.
5520         * unroll.c: Likewise.
5521         * unwind-dw2.c: Likewise.
5522         * unwind-dw2-fde.c: Likewise.
5523         * unwind-dw2-fde-glibc.c: Likewise.
5524         * unwind-sjlj.c: Likewise.
5526 2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
5528         * doc/invoke.texi: Document PDP-11 options.
5530 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5532         * config/h8300/h8300.h: Fix formatting.
5534 2002-01-10  Ira Ruben   <ira@apple.com>
5536         Add __attribute__ ((deprecated)).
5537         * extend.texi: Document __attribute__ ((deprecated)).
5538         * invoke.texi: Document -Wno-deprecated-declarations.
5539         * testsuite/g++.dg/other/deprecated.C: New C++ test.
5540         * testsuite/gcc.dg/deprecated.c: New C test.
5541         * attribs.c (enum attrs): Declare handle_deprecated_attribute().
5542         (c_common_attribute_table): Add "deprecated" entry.
5543         (handle_deprecated_attribute): New function.
5544         * c-decl.c (deprecated_states): New enum.
5545         deprecated_state: State of "deprecated" handling.
5546         (start_decl): Set deprecated_state based on attributes.
5547         (grokdeclarator): Test for deprecated uses, propagate attribute.
5548         * c-typeck.c (build_component_ref): Test for deprecated fields.
5549         (build_external_ref): Test for deprecated primaries.
5550         * diagnostic.c (warn_deprecated_use) New function to issue
5551         warnings about __attribute__ ((depricated)) references.
5552         * flags.h (warn_deprecated_decl): Extern declared for
5553         -W[no-]deprecated-declarations option.
5554         * print-tree.c (print_node): Show deprecated flag status.
5555         * toplev.c (warn_deprecated_decl): Defined.
5556         (W_options): Added "deprecated-declaration".
5557         * toplev.h (warn_deprecated_use): Extern declared.
5558         * tree.h (struct tree_common): Define deprecated_flag.
5559         (TREE_DEPRECATED): New macro to access flag.
5560         * cp/call.c (build_call): Test for deprecated calls.
5561         * cp/class.c (add_implicitly_declared_members): Set global
5562         flag to tell grokdeclarator to not issue deprecated warnings.
5563         * cp/cp-tree.h: Add extern for adding_implicit_members.
5564         * cp/decl.c (deprecated_states): New enum.
5565         (start_decl): Set deprecated_state based on attributes.
5566         (grokdeclarator): Test for deprecated uses, propagate attribute.
5567         * cp/lex.c (do_identifier): Test for deprecated primaries.
5568         * cp/typeck.c (build_component_ref): Test for deprecated fields.
5570 2002-01-10  Ira Ruben   <ira@apple.com>
5572         Fix to assign attributes to inline member functions.
5573         * cp/decl.c (start_method): Handle attrlist.
5575 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5577         * combine.c (expand_field_assignment): Use subreg_lsb().
5579 2002-01-10  David Edelsohn  <edelsohn@gnu.org>
5581         * alias.c (find_base_value): Add cases for HIGH, PRE_INC, PRE_DEC,
5582         POST_INC, POST_DEC, PRE_MODIFY, and POST_MODIFY.
5583         (find_base_term): Add cases for TRUNCATE, PRE_MODIFY, and POST_MODIFY.
5584         Recurse for any operand of AND as long as constant is non-zero.
5586 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5588         * config/h8300/h8300.md: Remove constraints from expanders.
5590 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5592         * varasm.c: Fix formatting.
5593         * varray.c: Likewise.
5594         * vmsdbgout.c: Likewise.
5595         * xcoffout.c: Likewise.
5597 Thu Jan 10 17:19:12 CET 2002  Jan Hubicka  <jh@suse.cz>
5599         * cfgcleanup.c (try_forward_edges): Properly initialize nthreaded_edges;
5600         update edge probabilities to match.
5602 2002-01-10  Joseph S. Myers  <jsm28@cam.ac.uk>
5604         * Makefile.in ($(docdir)/gccint.info, gccint.dvi): Add additional
5605         dependencies.
5606         * doc/languages.texi, doc/sourcebuild.texi: New files.
5607         * doc/configfiles.texi: Make a subsubsection.  Update.
5608         * doc/configterms.texi: Add @node.  Remove warning that this isn't
5609         instructions for building GCC.
5610         * doc/makefile.texi: Make a subsection.
5611         * doc/gccint.texi: Update.
5613 Thu Jan 10 16:39:58 CET 2002  Jan Hubicka  <jh@suse.cz>
5615         * i386.md (sse_mov?fcc_const0_?): Fix constraints.
5617 Thu Jan 10 12:45:50 2002  Nicola Pero  <n.pero@mi.flashnet.it>
5619         * doc/cpp.texi: Document the __OBJC__ preprocessor macro.
5621 Thu Jan 10 11:19:18 CET 2002  Jan Hubicka  <jh@suse.cz>
5623         * optabs.c (expand_fix): Look for wider integer modes first.
5625         * i386.md (mov?f): Avoid the fake const double trick for medium
5626         memory model.
5627         (min?f*/max?f*): Prohibit memory operands for i387 variant.
5628         (fop_df_4): Disable for SSE compilation.
5630 2002-01-10  Graham Stott  <grahams@redhat.com>
5632         * dwarf2out.c (indirect_string_alloc, output_indirect_string):
5633         Move prototype into DWARF2_DEBUGGING_INFO conditional block.
5635 2002-01-10  Richard Henderson  <rth@redhat.com>
5637         * config/alpha/alpha.md (extendsidi2_fix): Penalize f/f alternative.
5639 2002-01-10  Richard Henderson  <rth@redhat.com>
5641         * regrename.c (find_oldest_value_reg): Fix typo in mode change check.
5642         (copyprop_hardreg_forward_1): Likewise.  Use mode_change_ok.
5644 2002-01-10  Kazu Hirata  <kazu@hxi.com>
5646         * combine.c (can_combine_p): Fix a comment typo.
5648 2002-01-09  Zack Weinberg  <zack@codesourcery.com>
5650         * Makefile.in (s-gencheck, s-options, s-specs): Handle an
5651         empty list correctly.  Change loop index $t to $f for
5652         consistency with rest of Makefile.
5654 2002-01-08  Aldy Hernandez  <aldyh@redhat.com>
5656         * testuite/gcc.dg/altivec-4.c: Add test for mtvscr, dssall,
5657         mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
5659         * config/rs6000/rs6000.c (altivec_expand_builtin): Add support for
5660         mtvscr, dssall, mfvscr, dss, lvsl, lvsr, dstt, dst, dstst, dststt.
5661         (altivec_init_builtins): Same.
5662         (altivec_expand_unop_builtin): Return NULL_RTX on error.
5663         (altivec_expand_binop_builtin): Same.
5664         (altivec_expand_ternop_builtin): Same.
5665         (bdesc_dst): New.
5667         * config/rs6000/rs6000.md ("altivec_mtvscr"): New.
5668         ("altivec_vctuxs"): Fix typo.
5669         ("altivec_vnmsubfp"): Same.
5670         ("altivec_dssall"): New.
5671         ("altivec_mfvscr"): New.
5672         ("altivec_dss"): New.
5673         ("altivec_lvsl"): New.
5674         ("altivec_lvsr"): New.
5675         ("altivec_dstt"): New.
5676         ("altivec_dstst"): New.
5677         ("altivec_dststt"): New.
5678         ("altivec_dst"): New.
5680         * config/rs6000/rs6000.h (rs6000_builtins): Add mtvscr, dssall,
5681         mfvscr, dss, lvsl, lvsr, dstt, dstst, dststt, dst.
5683 2002-01-09  Richard Henderson  <rth@redhat.com>
5685         * config/alpha/alpha.md (prologue_mcount): Remove lituse_jsr reloc.
5687 2002-01-10  Hans-Peter Nilsson  <hp@bitrange.com>
5689         * config/mmix/mmix.c (mmix_asm_identify_gcc): Remove unused
5690         function.
5691         * config/mmix/mmix-protos.h (mmix_asm_identify_gcc): Don't
5692         prototype.
5693         * config/mmix/mmix.h (ASM_IDENTIFY_GCC): Remove unused macro.
5695 2002-01-09  Kazu Hirata  <kazu@hxi.com>
5697         * read-rtl.c: Fix formatting.
5698         * real.c: Likewise.
5699         * regclass.c: Likewise.
5700         * regrename.c: Likewise.
5701         * reg-stack.c: Likewise.
5702         * reload1.c: Likewise.
5703         * reload.c: Likewise.
5704         * rtl.c: Likewise.
5706 2002-01-09  Kazu Hirata  <kazu@hxi.com>
5708         * rtlanal.c (find_reg_fusage): Use XEXP instead of SET_DEST
5709         to extract items in the expr_list chain.
5711 2002-01-09  Richard Henderson  <rth@redhat.com>
5713         * config/vax/vax.c (vax_rtx_cost): Never abort.
5715         * config/vax/vax.h (REAL_ARITHMETIC): Define.
5717 2002-01-09  Jan Hubicka  <jh@suse.cz>
5719         * gcse.c (cprop_jump): Delete insn if simplified jump is no-op.
5721 2002-01-09  Richard Henderson  <rth@redhat.com>
5723         * config/arm/arm.c (arm_gen_constant): Use trunc_int_for_mode.
5724         Unify code from various alternatives.
5726 2002-01-09  Richard Henderson  <rth@redhat.com>
5728         * regrename.c (copy_value): Ignore the copy if the source register
5729         is present in the value chain with a narrower mode.
5731 2002-01-09  Herman A.J. ten Brugge  <Haj.Ten.Brugge@net.HCC.nl>
5733         * real.c (c4xtoe, toc4x): Do some special conversion on long doubles
5734         for the c4x target. Also improve layout.
5736 2002-01-09  Richard Henderson  <rth@redhat.com>
5738         * config/m32r/m32r.c (move_src_operand): Fix 32-bit int test.
5739         * config/m32r/m32r.md (and ior xor splitters): Swap operands
5740         to match insn patterns.
5742 2002-01-09  Richard Henderson  <rth@redhat.com>
5744         * regrename.c (find_oldest_value_reg): Use gen_rtx_raw_REG.
5745         (copyprop_hardreg_forward_1): Likewise.
5747 2002-01-09  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5749         * pa.md (decrement_and_branch_until_zero): Change predicate for
5750         operand 0 from register_operand to reg_or_nonsymb_mem_operand.
5752 2002-01-09  Bryce McKinlay  <bryce@waitaki.otago.ac.nz>
5754         * ginclude/stddef.h: Define _BSD_WCHAR_T_DEFINED_ if _BSD_WCHAR_T_
5755         gets undefined. For Darwin.
5757 2002-01-09  Herman A.J. ten Brugge <Haj.Ten.Brugge@net.HCC.nl>
5759         * config/c4x/c4x.h: Use PUSH_ARGS and PUSH_ROUNDING for stack passing.
5761 2002-01-09  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
5763         * config/c4x/c4x/md: Remove extraneous constraints from define_splits.
5765 2002-01-08  Richard Henderson  <rth@redhat.com>
5767         * regrename.c (copy_value): Ignore overlapping copies.
5769 2002-01-08  Richard Henderson  <rth@redhat.com>
5771         * config/alpha/alpha.c (alpha_split_conditional_move): Call copy_rtx
5772         as needed to avoid shared structure.
5774 2002-01-08  Kazu Hirata  <kazu@hxi.com>
5776         * config/h8300/h8300.c (get_shift_alg): Fix 15-bit LSHIFTRT on
5777         H8/300H and H8/S.
5779 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
5781         * doc/tm.texi (EASY_DIV_EXPR, IMPLICIT_FIX_EXPR,
5782         LONGJMP_RESTORE_FROM_STACK, MAX_INT_TYPE_SIZE): Remove
5783         documentation of obsolete macros.
5784         * system.h: Poison these macros.
5785         * config/1750a/1750a.h, config/a29k/a29k.h, config/alpha/alpha.h,
5786         config/arc/arc.h, config/arm/arm.h, config/avr/avr.h,
5787         config/c4x/c4x.h, config/clipper/clipper.h,
5788         config/convex/convex.h, config/cris/cris.h, config/d30v/d30v.h,
5789         config/dsp16xx/dsp16xx.h, config/elxsi/elxsi.h,
5790         config/fr30/fr30.h, config/h8300/h8300.h, config/i370/i370.h,
5791         config/i386/i386.h, config/i860/i860.h, config/i960/i960.h,
5792         config/ia64/ia64.h, config/m32r/m32r.h, config/m68hc11/m68hc11.h,
5793         config/m68k/m68k.h, config/m88k/m88k.h, config/mcore/mcore.h,
5794         config/mips/mips.h, config/mmix/mmix.h, config/mn10200/mn10200.h,
5795         config/mn10300/mn10300.h, config/ns32k/ns32k.h, config/pa/pa.h,
5796         config/pdp11/pdp11.h, config/pj/pj.h, config/romp/romp.h,
5797         config/rs6000/rs6000.h, config/s390/s390.h, config/sh/sh.h,
5798         config/sparc/sparc.h, config/stormy16/stormy16.h,
5799         config/v850/v850.h, config/vax/vax.h, config/we32k/we32k.h: Remove
5800         definitions and commented out definitions of obsolete macros.
5801         * config/mips/iris5.h (MAX_WCHAR_TYPE_SIZE): Don't define in terms
5802         of MAX_INT_TYPE_SIZE.
5804 2002-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
5806         * config/s390/s390.c (s390_preferred_reload_class): Never
5807         return ADDR_REGS if it isn't a subset of the given class.
5808         * config/s390/s390.h (REGISTER_MOVE_COST): Penalize not just
5809         FP_REGS, but all superclasses as well.
5811         * config/s390/s390.c (s390_function_profiler): Fix thinko.
5813         * config/s390/s390.md (cmpdi_ccu_mem, cmpsi_ccu_mem,
5814         cmphi_ccu_mem, cmpqi_ccu_mem): First operand of compare
5815         must not be a const_int.
5817 2002-01-08  Richard Henderson  <rth@redhat.com>
5819         * Makefile.in (toplev.o): Depend on options.h.
5820         (gcc.o): Depend on specs.h.
5822 2002-01-08  Jakub Jelinek  <jakub@redhat.com>
5824         * expr.c (store_expr): Convert VOIDmode constants back to target's
5825         mode.
5827 2002-01-08  Gerald Pfeifer  <pfeifer@dbai.tuwien.ac.at>
5829         * doc/invoke.texi: Markup gcc as @command.  Refer to
5830         http://gcc.gnu.org/onlinedocs/gcc/Contributors.html instead
5831         of http://gcc.gnu.org/thanks.html.
5833 2002-01-08  Dale Johannesen  <dalej@apple.com>
5835         * config/rs6000/rs6000.md: Add missing int register
5836         target case to movdf_low.
5838 2002-01-08  Zack Weinberg  <zack@codesourcery.com>
5840         * Makefile.in (cs-tconfig.h): Don't depend on $(CONFIG_H) or
5841         except.h.  Remove commands to define USING_SJLJ_EXCEPTIONS.
5842         (cppinit.o): Depend on except.h.
5843         (gencheck.h, options.h, specs.h, s-gencheck, s-options,
5844         s-specs): New rules.
5846         * configure.in: Don't AC_DEFINE_UNQUOTED PACKAGE or VERSION.
5847         Don't create specs.h/options.h/gencheck.h here.  Remove
5848         unnecessary variable settings from last argument of AC_OUTPUT.
5849         * config.in, configure: Regenerate.
5850         * intl.c: Hardcode package name as "gcc".
5852         * cppinit.c: Include except.h.
5853         (builtin_array): Define __USING_SJLJ_EXCEPTIONS__ when
5854         appropriate.
5855         * unwind-dw2.c, unwind-sjlj.c, config/ia64/unwind-ia64.c:
5856         Use #if(n)def __USING_SJLJ_EXCEPTIONS, not #if
5857         (!)USING_SJLJ_EXCEPTIONS.
5858         * doc/cpp.texi: Document __USING_SJLJ_EXCEPTIONS__.
5860 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
5862         * doc/tm.texi (ASM_OUTPUT_EH_REGION_BEG, ASM_OUTPUT_EH_REGION_END,
5863         ASM_OUTPUT_LABELREF_AS_INT, DOESNT_NEED_UNWINDER, EH_TABLE_LOOKUP,
5864         OBJC_SELECTORS_WITHOUT_LABELS, OMIT_EH_TABLE): Remove
5865         documentation of obsolete macros.
5866         * system.h: Poison these macros.
5867         * config/d30v/d30v.h, config/ns32k/encore.h,
5868         config/stormy16/stormy16.h: Remove definitions and commented out
5869         definitions of obsolete macros.
5871 Tue Jan  8 15:56:41 2002  Nicola Pero  <nicola@brainstorm.co.uk>
5873         * objc/objc-act.c (handle_class_ref): Mark the declaration of
5874         %sobjc_class_ref_%s as used - to prevent unwanted compiler
5875         warnings.
5877 2002-01-08  Ulrich Weigand  <uweigand@de.ibm.com>
5879         * config/s390/linux.h (ASM_OUTPUT_LABELREF): Remove.
5880         * config/s390/s390.c (s390_emit_epilog): Add REG_FRAME_RELATED_EXPR
5881         to insn adjusting stack/frame pointer.
5882         * config/s390/s390.md (reload_la_64, reload_la_31): Do not
5883         accept operands that cause the insn to be non-splittable.
5885 2002-01-08  Graham Stott  <grahams@redhat.com>
5887         * c-tree.h (C_TYPE_FIELDS_READONLY): Uppercase macro parameter.
5888         (C_TYPE_FIELDS_VOLATILE): Likewise.
5889         (C_TYPE_BEING_DEFINED): Likewise.
5890         (C_IS_RESERVED_WORD): Likewise.
5891         (C_TYPE_VARIABLE_SIZE): Likewise.
5892         (C_DECL_VARIABLE_SIZE): Likewise.
5893         (C_MISSING_PROTOTYPE_WARNED): Likewise.
5894         (C_SET_EXP_ORIGINAL_CODE): Likewise.
5895         (C_TYPEDEF_EXPLICITLY_SIGNED): Uppercase macro parameter and remove
5896         parenthesis.
5897         (C_DECL_ANTICIPATED): Likewise.
5898         (c_build_type_variant): Add parenthesis.
5900 2002-01-08  Joseph S. Myers  <jsm28@cam.ac.uk>
5902         * gcc.c (option_map): Remove --version.
5903         (process_command): Handle -fversion following the GNU Coding
5904         Standards.  Partially addresses PR other/704.
5906 2002-01-08  Graham Stott  <grahams@redhat.com>
5908         * combine.c (combine_instructions): Fix typo.
5910 2002-01-08  Graham Stott  <grahams@redhat.com>
5912         * debug.h: Use "tree" and "rtx" throughout.
5914         * debug.c: Likewise.
5916 2002-01-08  Nick Clifton  <nickc@cambridge.redhat.com>
5918         * dbxout.c (dbxout_symbol_location): If a symbol ref is in the
5919         constant pool, use the pool's version of the symbol instead.
5921 2002-01-07  Richard Henderson  <rth@redhat.com>
5923         * regrename.c (find_oldest_value_reg): Ignore the value chain if
5924         the original register was copied in a mode with a fewer number of
5925         hard registers than the desired mode.
5926         (copyprop_hardreg_forward_1): Likewise.
5927         (debug_value_data): Fix loop test.
5928         * toplev.c (parse_options_and_default_flags): Reenable
5929         -fcprop-registers at -O1.
5931 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
5933         * config/rs6000/rs6000.c (bdesc_2arg): Add altivec predicates.
5934         (altivec_init_builtins): New node v4si_ftype_v16qi_v16qi.
5936         * config/rs6000/rs6000.h (rs6000_builtins): Add enums for altivec
5937         predicates.
5939         * config/rs6000/rs6000.md: Add altivec predicate patterns.
5941 2002-01-07  John David Anglin  <dave@hiauly1.hia.nrc.ca>
5943         * pa.c (FUNC_BEGIN_PROLOG_LABEL, current_function_number): Define.
5944         (pa_output_function_prologue): Output local label at the beginning of
5945         the prologue when profiling.
5946         (hppa_profile_hook): Use the local label rather than the function label.
5947         * pa.h (PROFILE_BEFORE_PROLOGUE): Define.
5949 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
5951         * config/rs6000/rs6000.c (print_operand): Remove extra space.
5952         (altivec_expand_unop_builtin): Fix thinko.
5953         (altivec_expand_binop_builtin): Same.
5954         (altivec_expand_ternop_builtin): Same.
5955         (altivec_expand_builtin): Same.
5957 2002-01-07  Richard Henderson  <rth@redhat.com>
5959         * config/rs6000/xcoff.h (ASM_FILE_START): Reverted to profile_flag.
5961 2002-01-07  Jason Merrill  <jason@redhat.com>
5963         * unwind-dw2.c (execute_cfa_program): Use < again.
5965 2002-01-07  Jakub Jelinek  <jakub@redhat.com>
5967         * predict.c (combine_predictions_for_insn): Avoid division by zero.
5969 2002-01-07  Jakub Jelinek  <jakub@redhat.com>
5971         * simplify-rtx.c (simplify_plus_minus): Bump n_ops for NOT.
5972         Don't allow -1 - x -> ~x simplifications in the first pass.
5974 2002-01-07  Aldy Hernandez  <aldyh@redhat.com>
5976         * rs6000.c (altivec_expand_ternop_builtin): Don't die on invalid
5977         arguments.
5978         (altivec_expand_binop_builtin): Same.
5979         (altivec_expand_unop_builtin): Same.
5980         (print_operand): Fix typo.
5981         (bdesc_1arg): Add vupk* variants.
5983         * rs6000.h (rs6000_builtins): Add vupk* enums.
5985         * rs6000.md: Add altivec_vupk* variants.
5987 2002-01-07  Joseph S. Myers  <jsm28@cam.ac.uk>
5989         * doc/gcc.texi, doc/gccint.texi, doc/cppinternals.texi,
5990         doc/install.texi, doc/invoke.texi, doc/rtl.texi: Update copyright
5991         and last update dates.
5993 2002-01-07  Janis Johnson  <janis187@us.ibm.com>
5995         * doc/rtl.texi (Flags): Clean up documentation of RTL flags
5997 2002-01-07  Marek Michalkiewicz  <marekm@amelek.gda.pl>
5999         * config/avr/avr.c (avr_mcu_types): Add new MCU types.
6000         * config/avr/avr.h (CPP_SPEC): Likewise.
6001         (LINK_SPEC): Likewise.
6002         (CRT_BINUTILS_SPECS): Likewise.
6003         * config/avr/t-avr (MULTILIB_MATCHES): Likewise.
6004         * doc/invoke.texi (AVR Options): Document them.
6006 Mon Jan  7 11:59:34 CET 2002  Jan Hubicka  <jh@suse.cz>
6008         * unroll.c (copy_loop_body): Always properly update JUMP_LABEL and
6009         LABEL_NUSES.
6011 2002-01-07  Graham Stott  <grahams@redhat.com>
6013         * config/i386/i386.h: Update copyright date.
6014         (HALF_PIC_PTR): Add parenthesis.
6015         (OPTIMIZATION_OPTIONS): Whitespace, add parenthesis and wrap.
6016         (CONSTANT_ALIGNMENT): Add parenthesis.
6017         (DATA_ALIGNMENT): Likewise.
6018         (LOCAL_ALIGNMENT): Likewise.
6019         (FUNCTION_ARG_BOUNDARY): Whitespace, add parenthesis and wrap.
6020         (IS_STACK_MODE): Uppercase macro parameter, add parenthesis and wrap.
6021         (CONDITIONAL_REGISTER_USAGE): Wrap in do {...} while (0).
6022         (HARD_REGNO_NREGS): Add paranethesis.
6023         (VALID_SSE_REG_MODE): Whitespace.
6024         (VALID_MMX_REG_MODE): Whitespace.
6025         (VALID_FP_MODE_P): Uppercase macros parameter and whitespace.
6026         (ix86_hard_regno_mode_ok): Add parenthesis.
6027         (HARD_REGNO_CALLER_SAVE_MODE): Whitespace.
6028         (RETURN_IN_MEMORY): Whitespace.
6029         (N_REG_CLASSES): Add parenthesis.
6030         (INTEGER_CLASS_P): Add parenthesis and wrap.
6031         (FLOAT_CLASS_P): Likewise.
6032         (SSE_CLASS_P): Likewise.
6033         (MMX_CLASS_P): Likewise.
6034         (MAYBE_INTEGER_CLASS_P): Likewise.
6035         (MAYBE_FLOAT_CLASS_P): Likewise.
6036         (MAYBE_SSE_CLASS_P): Likewise.
6037         (MAYBE_MMX_CLASS_P): Likewise.
6038         (Q_CLASS_P): Likewise.
6039         (GENERAL_REGNO_P): Uppercase macro parameter.
6040         (REX_INT_REGNO_P): Uppercase macro parameter and wrap.
6041         (FP_REGNO_P): Likewise.
6042         (ANY_FP_REGNO_P): Uppercase macro parameter.
6043         (SSE_REGNO_P): Likewise.
6044         (SSE_REGNO): Likewise.
6045         (SSE_REG_P): Likewise.
6046         (SSE_FLOAT_MODE_P): Likewise.
6047         (MMX_REGNO_P): Likewise.
6048         (MMX_REG_P):Likewise.
6049         (STACK_REG_P): Likewise.
6050         (NON_STACK_REG_P): Likewise.
6051         (STACK_TOP_P): Likewise.
6052         (CONVERT_HARD_REGISTER_TO_SSA_P): Add parenthesis.
6053         (PREFERRED_RELOAD_CLASS): Add parenthesis and whitespace.
6054         (SECONDARY_MEMORY_NEEDED): Likewise.
6055         (SECONDARY_OUTPUT_RELOAD_CLASS): Whitespace.
6056         (MD_ASM_CLOBBERS): Whitespace and wrap.
6057         (MUST_PASS_IN_STACK): Whitespace and wrap.
6058         (RETURN_POPS_ARGS): Add parenthesis.
6059         (INIT_CUMULATIVE_ARGS): Likewise.
6060         (FUNCTION_ARG): Likewise.
6061         (FUNCTION_OK_FOR_SIBCALL): Add parenthesis and whitespace.
6062         (SETUP_INCOMING_VARARGS): Likewise.
6063         (BUILD_VA_LIST_TYPE):  Add parenthesis.
6064         (EXPAND_BUILTIN_VA_START): Uppercase macro paremeters and add
6065         parenthsis.
6066         (EXPAND_BUILTIN_VA_ARG): Likewise.
6067         (FUNCTION_PROFILER): Wrap in do { ... } while (0) and add parenthesis.
6068         (INITIALIZE_TRAMPOLINE): Add parenthesis.
6069         (INITIAL_ELIMINATION_OFFSET): Likewise.
6070         (REGNO_OK_FOR_INDEX_P): Add parenthesis.
6071         (REGNO_OK_FOR_BASE_P): Likewise.
6072         (REGNO_OK_FOR_SIREG_P): Add parenthesis and wrap.
6073         (REGNO_OK_FOR_DIREG_P): Likewise.
6074         (REG_OK_FOR_INDEX_P): Whitespace.
6075         (REG_OK_FOR_BASE_P): Whitespace.
6076         (GO_IF_LEGITIMATE_ADDRESS): Wrap in do { ... } while (0) and add
6077         parenthesis.
6078         (FIND_BASE_TERM): Fix typo.
6079         (LEGITIMIZE_ADDRESS): Wrap in  { .. } while (0) and add parenthesis.
6080         (REWRITE_ADDRESS): Uppercase macro parameter and whitespace.
6081         (SYMBOLIC_CONST; Whitespace.
6082         (GO_IF_MODE_DEPENDENT_ADDRESS):Wrap in  { .. } while (0) and wrap.
6083         (ENCODE_SECTION_INFO): Whitespace.
6084         (FINALIZE_PIC): Remove do { ... } while (0).
6085         (PROMOTE_MODE): Wrap in do { ... } while (0).
6086         (CONST_COSTS): Whitespace.
6087         (RTX_COSTS): Add paramethesis, whitespace and wrap.
6088         (REGISTER_MOVE_COST): Add parenthesis.
6089         (MEMORY_MOVE_COST): Likewise.
6090         (EXTRA_CC_MODES): Whitespace.
6091         (SELECT_CC_MODE): Add parenthesis and whitespace.
6092         (DBX_REGISTER_NUMBER): Uppercase macro parameter and add parenthsis.
6093         (ASM_PREFERRED_EH_DATA_FORMAT): Add parenthesis and whitespace.
6094         (ASM_OUTPUT_LABEL): Add paramethesis.
6095         (ASM_OUTPUT_REG_PUSH): Add parenthesis and whitespace.
6096         (ASM_OUTPUT_REG_POP): Likewise.
6097         (ASM_OUTPUT_ADDR_VEC_ELT): Add parenthesis.
6098         (ASM_OUTPUT_ADDR_DIFF_ELT): Likewise.
6100         * config/i386/i386.c: Update copyright.
6101         (CHECK_STACK_LIMIT): Add parenthesis.
6102         (AT_BP): Uppercase macro parameter.
6103         (x86_64_int_parameter_registers): Constify.
6104         (x86_64_int_return_registers): Likewise.
6105         (ix86_compare_op0): Use rtx.
6106         (construct_container): Constify INTREG parameter.
6107         (function_arg): Use rtx.
6109         * diagnostic.h: Update copyright date.
6110         (output_buffer_state): Add parenthesis.
6111         (output_buffer_format_args): Likewise.
6113         * combine.c (combine_instructions): Replace XEXP (links, 0)
6114         with link.
6116 2002-01-06  H.J. Lu <hjl@gnu.org>
6118         * cfgcleanup.c (thread_jump): Fix 2 typos.
6120 2002-01-06  Aldy Hernandez  <aldyh@redhat.com>
6122         * config.gcc: Add support for --enable-altivec.
6124 2002-01-06  Craig Rodrigues  <rodrigc@gcc.gnu.org>
6126         * emit-rtl.c (gen_highpart): Add check for NULL_RTX.
6128 2002-01-06  Jakub Jelinek  <jakub@redhat.com>
6130         * objc/objc-act.c (handle_impent): Use assemble_variable to emit
6131         __objc_class_name_*.
6133 2002-01-06  Craig Rodrigues  <rodrigc@gcc.gnu.org>
6135         * doc/install.texi (sparcv9-*-solaris2*): Add documentation.
6137 2002-01-06  Richard Henderson  <rth@redhat.com>
6139         * reorg.c (emit_delay_sequence): Remove death notes, not merely
6140         nop them out.  Increment label reference count for REG_LABEL.
6141         (fill_slots_from_thread): Frob label reference count around
6142         delete_related_insns.
6144 2002-01-05  Richard Henderson  <rth@redhat.com>
6146         * cfgcleanup.c (try_forward_edges): Detect infinite loops while
6147         jump threading.
6149 2002-01-05  Richard Henderson  <rth@redhat.com>
6151         * c-decl.c (c_expand_body): Don't call outlining_inline_function.
6152         * integrate.c (output_inline_function): Likewise.
6153         * toplev.c (rest_of_compilation): Do it here instead.  Move call
6154         to remove_unnecessary_notes after emitting abstract instance.
6155         Force an emitted nested function to have its parent emited as well.
6156         * dwarf2out.c (loc_descriptor_from_tree): Read mode after checking
6157         for null.
6158         (rtl_for_decl_location): Do not look at reload data structures
6159         before reload has run.
6161 2002-01-05  Kazu Hirata  <kazu@hxi.com>
6163         * cse.c: Fix formatting.
6164         * dwarf2asm.c: Likewise.
6165         * dwarf2out.c: Likewise.
6166         * explow.c: Likewise.
6167         * expmed.c: Likewise.
6168         * function.c: Likewise.
6169         * gcov.c: Likewise.
6170         * gencheck.c: Likewise.
6171         * genrecog.c: Likewise.
6172         * ggc-common.c: Likewise.
6173         * ggc-page.c: Likewise.
6174         * global.c: Likewise.
6176 2002-01-05  Kazu Hirata  <kazu@hxi.com>
6178         * combine.c: Fix formatting.
6180 2002-01-05  Craig Rodrigues  <crodrigu@bbn.com>
6182         PR middle-end/1557
6183         * config/ia64/ia64.h (RENAME_EXTENDED_BLOCKS): Remove.
6185 2002-01-05  David Edelsohn  <edelsohn@gnu.org>
6187         * config/rs6000/rs6000.h (TARGET_POWERPC): For IN_LIBGCC2, define
6188         as 1 for __powerpc64__ as well.
6190         * config/rs6000/t-aix43 (T_ADAFLAGS): Define.
6192         * alias.c (find_base_value, PLUS/MINUS): If we found a base,
6193         return it.
6195 2002-01-05  Daniel Berlin  <dan@dberlin.org>
6197         * lcm.c: Revert change, due to performance regression it causes on
6198         SPEC because it's slightly more conservative (sigh, I hate
6199         edge-based LCM).
6201 Sat Jan  5 11:52:05 CET 2002  Jan Hubicka  <jh@suse.cz>
6203         * cfgcleanup.c (try_forward_edges): Allow multiple jump threading.
6205 2002-01-05  Neil Booth  <neil@daikokuya.demon.co.uk>
6207         * doc/cppinternals.texi: Update.
6209 2002-01-05  Hans-Peter Nilsson  <hp@bitrange.com>
6211         * doc/invoke.texi (Option Summary) <MMIX Options>: Document
6212         -mbranch-predict, -mreg-stack-fill-bug-workaround and their
6213         negatives.
6214         (MMIX Options): Ditto.  Fix item/itemx typo for -mno-zero-extend.
6215         * config/mmix/mmix.c (mmix_target_asm_function_prologue): Rework
6216         kludge for pre-october-14th mmix versions to handle new-found bug
6217         with PUSHJ/PUSHGO and the register stack.
6218         * config/mmix/mmix.h (struct machine_function): Rename member
6219         has_call_value_without_parameters to has_call_without_parameters.
6220         All referers changed.
6221         (TARGET_MASK_REG_STACK_FILL_BUG, TARGET_DEFAULT
6222         TARGET_MASK_BRANCH_PREDICT): New macros.
6223         (TARGET_SWITCHES): New options -mreg-stack-fill-bug-workaround,
6224         -mno-reg-stack-fill-bug-workaround.
6225         * config/mmix/mmix.md ("call"): Set struct machine member
6226         has_call_without_parameters.
6228 Sat Jan  5 02:20:22 CET 2002  Jan Hubicka  <jh@suse.cz>
6230         * cfgcleanup.c (thread_jump): Fix handling of reversed branches.
6232 Sat Jan  5 01:35:29 CET 2002  Jan Hubicka  <jh@suse.cz>
6234         * cfgcleanup.c: Include tm_p.h
6235         (mark_effect): Fix handling of hard register; fix handling of SET
6237 2002-01-04  Kazu Hirata  <kazu@hxi.com>
6239         * config/h8300/h8300.md (anonymous patterns): Check that
6240         operands are registers before using REGNO on them.
6242 2002-01-03  Roland McGrath  <roland@frob.com>
6244         * doc/invoke.texi (RS/6000 and PowerPC Options): Add -mcall-gnu.
6246 2002-01-04  Jakub Jelinek  <jakub@redhat.com>
6248         * tree.h (expand_expr_stmt_value): Add maybe_last argument.
6249         * c-common.h (genrtl_expr_stmt_value): Likewise.
6250         * stmt.c (expand_expr_stmt): Pass 1 as maybe_last.
6251         (expand_expr_stmt_value): Add maybe_last argument.
6252         Don't warn about statement with no effect if it is the last statement
6253         in expression statement.
6254         * c-semantics.c (genrtl_expr_stmt): Pass 1 as maybe_last.
6255         (genrtl_expr_stmt_value): Add maybe_last argument, pass it down to
6256         expand_expr_stmt_value.
6257         (expand_stmt) [EXPR_STMT]: Pass 1 as maybe_last to
6258         genrtl_expr_stmt_value if t is the last EXPR_STMT in its scope.
6259         * expr.c (expand_expr) [LABELED_BLOCK_EXPR, LOOP_EXPR]: Pass 1
6260         as maybe_last to expand_expr_stmt_value.
6262 Fri Jan  4 11:45:05 2002  Jeffrey A Law  (law@redhat.com)
6264         * c-common.c (c_expand_start_cond): Expect the IF_STMT node to
6265         be passed in, do not build it.
6266         (c_begin_if_stmt): New function.
6267         (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
6268         * c-common.h (c_expand_start_cond): Update prototype.
6269         (c_begin_if_stmt): Prototype new function.
6270         (c_begin_while_stmt, c_finish_while_stmt_cond): Likewise.
6271         * c-parse.in (if_prefix): Use c_begin_if_stmt,
6272         c_begin_while_stmt and c_finish_while_stmt_cond.
6274 2002-01-04  William Cohen  <wcohen@redhat.com>
6276         * config/pa/elf.h (ASM_FILE_START): Reverted to profile_flag.
6277         * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
6278         * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
6279         * config/pa/som.h (ASM_FILE_START): Likewise.
6281 2002-01-04  Daniel Berlin  <dan@cgsoftware.com>
6283         * lcm.c: Include df.h.
6284         Add available_transfer_function prototype.
6285         (compute_available): Rework to use iterative dataflow framework.
6286         (struct bb_info): s/bb_info/lcm_bb_info/g to avoid conflict
6287         with bb_info in df.h
6288         (available_transfer_function): New function.
6290         * Makefile.in (lcm.o): add df.h to dependencies.
6292 2002-01-04  Richard Henderson  <rth@redhat.com>
6294         * config/alpha/alpha.c (some_operand): Accept HIGH.
6295         (input_operand): Likewise; accept simple references to globals.
6296         (alpha_const_ok_for_letter_p): New, outlined from alpha.h.
6297         (alpha_const_double_ok_for_letter_p): Likewise.
6298         (alpha_extra_constraint): Likewise.
6299         (alpha_preferred_reload_class): Likewise.  Do not force
6300         symbolic constants to memory.
6301         (alpha_legitimate_address_p): Accept simple references
6302         to small_symbolic_operand.
6303         (alpha_legitimize_address): New arg scratch.  Be prepared to be
6304         called when no_new_pseudos.  Emit simple symbolic references.
6305         Split integers into low, high, and rest.
6306         (alpha_expand_mov): Use alpha_legitimize_address.
6307         (some_small_symbolic_mem_operand): New.
6308         (split_small_symbolic_mem_operand): New.
6309         * config/alpha/alpha-protos.h: Update.
6310         * config/alpha/alpha.h (CONST_OK_FOR_LETTER_P): Out-line.
6311         (CONST_DOUBLE_OK_FOR_LETTER_P): Likewise.
6312         (EXTRA_CONSTRAINT): Likewise.
6313         (PREFERRED_RELOAD_CLASS): Likewise.
6314         (LEGITIMIZE_ADDRESS): Update for alpha_legitimize_address change.
6315         (PREDICATE_CODES): Update.
6316         * config/alpha/alpha.md: New post-reload splitters to convert
6317         simplfied symbolic operands to the form that references $29.
6318         (divide expanders): Use emit_move_insn, not gen_movdi_er_high_g.
6319         (movdi_er_nofix, movdi_er_fix): Accept any symbolic operand.
6321 2002-01-03  Richard Henderson  <rth@redhat.com>
6323         * local-alloc.c (function_invariant_p): Update commentary.
6325 2002-01-04  H.J. Lu <hjl@gnu.org>
6327         * toplev.c (rest_of_compilation): Fix a typo when calling
6328         cleanup_cfg.
6330 2002-01-03  Kazu Hirata  <kazu@hxi.com>
6332         * c-common.c: Fix formatting.
6333         * diagnostic.c: Likewise.
6334         * doloop.c: Likewise.
6335         * dwarf2out.c: Likewise.
6337 2002-01-03  Kazu Hirata  <kazu@hxi.com>
6339         * config/h8300/h8300.c (output_logical_op): Use 'not.w' instead
6340         of 'neg.w' when xoring with 0x0000ffff or 0xffff0000.
6342 2002-01-03  Neil Booth  <neil@daikokuya.demon.co.uk>
6344         * cpperror.c: Update comments and copyright.
6345         * cppexp.c, cppfiles.c, cpphash.c, cpphash.h, cppinit.c,
6346         cpplex.c, cpplib.c, cpplib.h, cppmacro.c, cppmain.c: Similarly.
6348 2002-01-03  John David Anglin  <dave@hiauly1.hia.nrc.ca>
6350         * collect2.c (main): Use strcmp when testing for "-shared".
6352 2002-01-03  Neil Booth  <neil@daikokuya.demon.co.uk>
6354         * cppmacro.c: Don't include intl.h.  Update comments.
6355         (new_number_token): Allocate enough buffer for 64-bit unsigned
6356         integers; update prototype.
6357         * cppmain.c: Update comments.
6359 2002-01-03  William Cohen  <wcohen@redhat.com>
6361         * function.h (struct function): Add profile.
6362         (current_function_profile): New.
6363         doc/extend.texi: Update documentation.
6364         * final.c (final_start_function): Use current_function_profile
6365         instead of profile_flag.
6366         (profile_after_prologue): Likewise.
6367         * function.c (expand_function_start): Likewise.
6368         (expand_function_start): Likewise.
6369         * config/alpha/alpha.c (direct_call_operand):
6370         (alpha_does_function_need_gp): Likewise.
6371         (alpha_expand_prologue): Likewise.
6372         * config/arm/arm.c (arm_expand_prologue): Likewise.
6373         thumb_expand_prologue: Likewise.
6374         * config/d30v/d30v.c (d30v_stack_info): Likewise.
6375         * config/fr30/fr30.c (MUST_SAVE_RETURN_POINTER): Likewise.
6376         (fr30_expand_prologue): Likewise.
6377         * config/i386/cygwin.h (SUBTARGET_PROLOGUE): Likewise.
6378         * config/i386/i386.c (ix86_osf_output_function_prologue): Likewise.
6379         * config/i386/i386.h (FINALIZE_PIC): Likewise.
6380         * config/i386/win32.h (SUBTARGET_PROLOGUE): Likewise.
6381         * config/i960/i960.c (i960_output_function_prologue): Likewise.
6382         * config/ia64/ia64.c (ia64_compute_frame_size): Likewise.
6383         * config/m32r/m32r.c (MUST_SAVE_RETURN_ADDR): Likewise.
6384         (m32r_expand_prologue): Likewise.
6385         * config/m88k/m88k.c (m88k_layout_frame): Likewise.
6386         (m88k_expand_prologue): Likewise.
6387         * config/m88k/m88k.h (ADJUST_INSN_LENGTH): Likewise.
6388         * config/mips/mips.c (compute_frame_size): Likewise.
6389         (mips_expand_prologue): Likewise.
6390         (mips_can_use_return_insn): Likewise.
6391         * config/pa/elf.h (ASM_FILE_START): Likewise.
6392         * config/pa/pa-linux.h (ASM_FILE_START): Likewise.
6393         * config/pa/pa64-hpux.h (ASM_FILE_START): Likewise.
6394         * config/pa/som.h (ASM_FILE_START): Likewise.
6395         * config/romp/romp.c (romp_using_r14): Likewise.
6396         * config/rs6000/rs6000.c (first_reg_to_save): Likewise.
6397         (rs6000_stack_info): Likewise.
6398         * config/rs6000/sysv4.h (ASM_DECLARE_FUNCTION_NAME): Likewise.
6399         * config/rs6000/xcoff.h (ASM_FILE_START): Likewise.
6400         * config/v850/v850.c (compute_register_save_size): Likewise.
6402 2002-01-03  Jakub Jelinek  <jakub@redhat.com>
6404         * simplify-rtx.c (simplify_binary_operation) [DIV]: If
6405         gen_lowpart_common fails, use gen_lowpart_SUBREG.
6407 2002-01-03  Turly O'Connor  <turly@apple.com>
6409         * darwin.c (machopic_output_possible_stub_label): Don't generate
6410         stub routines for pseudo-stubs which we've just defined.
6412 2002-01-03  Kazu Hirata  <kazu@hxi.com>
6414         * builtins.c: Fix formatting.
6415         * c-typeck.c: Likewise.
6416         * combine.c: Likewise.
6417         * expr.c: Likewise.
6418         * loop.c: Likewise.
6420 2002-01-03  Andreas Schwab  <schwab@suse.de>
6422         * cppfiles.c (_cpp_pop_file_buffer): Change return type to bool
6423         and return true if _cpp_push_next_buffer pushed a new include
6424         file.
6425         * cpplib.c (_cpp_pop_buffer): Only call obstack_free if
6426         _cpp_pop_file_buffer did not push a new file.
6427         * cpphash.h (_cpp_pop_file_buffer): Update declaration.
6429 2002-01-02  Eric Christopher  <echristo@redhat.com>
6431         * final.c (final_scan_insn): Change 0 -> NULL_RTX in
6432         FIND_REG_INC_NOTE call. Update copyright.
6433         * loop.c (canonicalize_condition): Ditto.
6434         * reorg.c (delete_scheduled_jump): Ditto.
6436 2002-01-03  Kazu Hirata  <kazu@hxi.com>
6438         * gcse.c: Fix formatting.
6440 2002-01-03  Graham Stott  <grahams@redhat.com>
6442         * mkconfig.sh: Output to config.h, hconfig.h and tconfig.h
6443         forward defs for struct tags rtx_def, union_tree, rtvec_def
6444         also output corresponding typedefs for rtx, tree, and rtvec.
6446         * system.h: Move forward defs for struct tags rtx_def, union_tree,
6447         rtvec_def along with corresponding typedefs for rtx, tree, and
6448         rtvec to config.h, hconfig.h, tconfig.h.
6450 2002-01-03  Graham Stott  <grahams@redhat.com>
6452         * tree.h: Update copyright date.
6453         (IS_EXPR_CODE_CLASS): Add parenthesis.
6454         (TREE_SET_CODE): Add whitespace.
6455         (TREE_CHECK): Add parenthesis.
6456         (TREE_CLASS_CODE): Add parenthesis and wrap long line.
6457         (CST_OR_CONSTRUCTOR_CHECK):
6458         (EXPR_CHECK): Add parenthis, whitespace and wrap line.
6459         (TREE_SYMBOL_REFERENCED): Whitespace.
6460         (INT_CST_LT): Likewise.
6461         (INT_CST_LT_UNSIGNED): Likewise.
6462         (tree_real_cst): Unwrap comment.
6463         (tree_string): Likewise.
6464         (tree_complex): Likewise.
6465         (IDENTIFIER_POINTER): correct cast.
6466         (SAVE_EXPR_CONTEXT): Whitespace.
6467         (EXPR_WFL_FILENAME_NODE): Likewise.
6468         (EXPR_WFL_FILENAME): Remove parenthesis.
6469         (DECL_ORIGIN): Add parenthesis.
6470         (DECL_FROM_INLINE): Use NULL_TREE.
6471         (build_int_2): Whitespace.
6472         (build_type_variant): Add parenthesis.
6474         * gcc/jcf-parse.c: Update copyright date.
6475         (yyparse): Constify resource_filename.
6477 2002-01-03  Graham Stott  <grahams@redhat.com>
6479         * rtl.h: Update copyright date.
6480         (RTL_CHECK1): Wrap long line.
6481         (RTL_CHECK2): Likewise.
6482         (RTL_CHECKC1): Wrap long line and whitespace.
6483         (RTL_CHECKC2): Likewise.
6484         (XWINT): Whitespace.
6485         (XINT): Likewise.
6486         (XSTR): Likewise.
6487         (XEXP): Likewise.
6488         (XVEC): Likewise.
6489         (XMODE): Likewise.
6490         (XBITMAP): Likewise.
6491         (XTREE): Likewise.
6492         (XBBDEF): Likewise.
6493         (XTMPL): Likewise.
6494         (X0WINT): Likewise.
6495         (X0INT):Likewise.
6496         (X0UINT): Likewise.
6497         (X0STR): Likewise.
6498         (X0EXP): Likewise.
6499         (X0VEC): Likewise.
6500         (X0MODE): Likewise.
6501         (X0BITMAP): Likewise.
6502         (X0TREE): Likewise.
6503         (X0BBDEF): Likewise.
6504         (X0ADVFLAGS): Likewise.
6505         (X0CSELIB): Likewise.
6506         (X0MEMATTR): Likewise.
6507         (XCWINT): Likewise.
6508         (XCINT): Likewise.
6509         (XCUINT): Likewise.
6510         (XCSTR): Likewise.
6511         (XCEXP): Likewise.
6512         (XCVEC): Likewise.
6513         (XCMODE): Likewise.
6514         (XCBITMAP): Likewise.
6515         (XCTREE): Likewise.
6516         (XCBBDEF): Likewise.
6517         (XCADVFLAGS): Likewise.
6518         (XCCSELIB): Likewise.
6519         (XC2EXP): Likewise.
6520         (INSN_UID): Likewise.
6521         (PREV_INSN): Likewise.
6522         (PATTERN): Likewise.
6523         (INSN_CODE): Likewise.
6524         (PUT_REG_NOTE_KIND): Likewise.
6525         (CODE_LABEL_NUMBER): Likewise.
6526         (NOTE_SOURCE_FILE): Likewise.
6527         (NOTE_BLOCK): Likewise.
6528         (NOTE_EH_HANDLER): Likewise.
6529         (NOTE_RANGE_INFO): Likewise.
6530         (NOTE_LIVE_INFO): Likewise.
6531         (NOTE_BASIC_BLOCK): Likewise.
6532         (NOTE_EXPECTED_VALUE): Likewise.
6533         (NOTE_LINE_NUMBER): Likewise.
6534         (LABEL_NAME): Likewise.
6535         (LABEL_NUSES): Likewise.
6536         (LABEL_ALTERNATE_NAME): Likewise.
6537         (ADDRESSOF_DECL): Likewise.
6538         (JUMP_LABEL): Likewise.
6539         (LABEL_NEXTREF): Likewise.
6540         (REGNO): Likewise.
6541         (ORIGINAL_REGNO: Likewise.
6542         (HARD_REGISTER_NUM_P): Add parenthesis.
6543         (SUBREG_REG): Whitespace.
6544         (SUBREG_BYTE): Likewise.
6545         (ASM_OPERANDS_TEMPLATE): Remove parenthesis.
6546         (ASM_OPERANDS_OUTPUT_CONSTRAINT): Likewise.
6547         (ASM_OPERANDS_OUTPUT_IDX): Likewise.
6548         (ASM_OPERANDS_INPUT_VEC): Likewise.
6549         (ASM_OPERANDS_INPUT_CONSTRAINT_VEC): Likewise.
6550         (ASM_OPERANDS_INPUT): Likewise.
6551         (ASM_OPERANDS_INPUT_LENGTH): Likewise.
6552         (ASM_OPERANDS_INPUT_CONSTRAINT_EXP): Likewise.
6553         (ASM_OPERANDS_INPUT_CONSTRAINT): Likewise.
6554         (ASM_OPERANDS_INPUT_MODE): Likewise.
6555         (ASM_OPERANDS_SOURCE_FILE): Likewise.
6556         (ASM_OPERANDS_SOURCE_LINE): Likewise.
6557         (MEM_SET_IN_STRUCT_P): Minor reformat.
6558         (TRAP_CONDITION): Whitespace.
6559         (TRAP_CODE): Likewise.
6560         (COND_EXEC_TEST): Likewise.
6561         (COND_EXEC_CODE): Likewise.
6562         (FIND_REG_INC_NOTE): Uppercase macro args and add parenthesis.
6563         (PHI_NODE_P): Add parenthesis.
6564         (plus_constant): Whitespace and add parenthesis.
6566 2002-01-03  Kazu Hirata  <kazu@hxi.com>
6568         * config/avr/avr.c: Fix comment typos.
6569         * config/c4x/c4x.md: Likewise.
6570         * config/dsp16xx/dsp16xx.h: Likewise.
6571         * config/dsp16xx/dsp16xx.md: Likewise.
6572         * config/i386/i386.md: Likewise.
6573         * config/ia64/ia64.c: Likewise.
6574         * config/m32r/m32r.h: Likewise.
6575         * config/m68hc11/m68hc11.md: Likewise.
6576         * config/mmix/mmix.c: Likewise.
6577         * config/mn10200/mn10200.c: Likewise.
6578         * config/romp/romp.c: Likewise.
6579         * config/sh/sh.c: Likewise.
6580         * config/stormy16/stormy16.c: Likewise.
6581         * config/stormy16/stormy16.h: Likewise.
6582         * config/stormy16/stormy16.md: Likewise.
6584 2002-01-03  Graham Stott  <grahams@redhat.com>
6586         * loop.h: Update copyright date.
6587         (LOOP_MOVABLES): Fix typo.
6588         (LOOP_REGS): Likewise.
6589         (LOOP_IVS): Likewise.
6591 2002-01-03  Graham Stott  <grahams@redhat.com>
6593         * cppinit.c: Update copyright date.
6594         Don't include output.h
6595         * Makefile.in: Update copyright date.
6596         Update dependency.
6598 2002-01-02  Craig Rodrigues  <rodrigc@gcc.gnu.org>
6600         PR c/5226
6601         * invoke.texi (-mthreads): Remove from documented RS/6000 options.
6602         (-pthread) Add to RS/6000 options.
6604 2002-01-02  Kazu Hirata  <kazu@hxi.com>
6606         * except.c: Fix comment typos.
6607         * loop.c: Likewise.
6608         * varasm.c: Likewise.
6609         * doc/tm.texi: Fix a typo.
6611 2002-01-02  Jakub Jelinek  <jakub@redhat.com>
6613         * c-typeck.c (output_init_element): Allow initializing static storage
6614         duration objects with compound literals.
6616 2002-01-02  Richard Henderson  <rth@redhat.com>
6618         * objc/objc-act.c (hack_method_prototype): Clear current_function_decl
6619         after abusing it.
6621 2002-01-02  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
6623         * gcc.c (default_compilers): Const-ify.
6624         * mips-tdump.c (stab_names): Likewise.
6625         * mips-tfile.c (map_coff_types, map_coff_storage,
6626         map_coff_sym_type, map_coff_derived_type, stabs_symbol,
6627         pseudo_ops_t, pseudo_ops): Likewise.
6628         * protoize.c (default_include): Likewise
6630         * real.c (GET_REAL, PUT_REAL): Don't cast away const-ness.
6631         (ezero, ehalf, eone, etwo, e32, elog2, esqrt2, epi): Const-ify.
6632         Add array size in declaration.
6633         (endian, emov, eisneg, eisinf, eisnan, eiisnan, eiisneg, emovi,
6634         emovo, emovz, eiisinf, ecmpm, eaddm, esubm, m16m, edivm, emulm,
6635         esub, eadd, eadd1, ediv, emul, e53toe, e64toe, e113toe, e24toe,
6636         etoe113, etoe64, etoe53, etoe24, ecmp, eround, ltoe, ultoe,
6637         eifrac, euifrac, e24toasc, e53toasc, e64toasc, e113toasc, etoasc,
6638         efloor, efrexp, eldexp, eremain, dectoe, etodec, ibmtoe, etoibm,
6639         c4xtoe, etoc4x, uditoe, ditoe, etoudi, etodi, esqrt, etens,
6640         emtens, make_nan): Const-ify.
6641         (TFbignan, TFlittlenan, XFbignan, XFlittlenan, DFbignan,
6642         DFlittlenan, SFbignan, SFlittlenan): Make static and const-ify.
6644 2002-01-02  Joseph S. Myers  <jsm28@cam.ac.uk>
6646         * config.gcc (ia64-*-*): Set extra_headers.
6647         (alpha*-dec-osf*): Likewise.  Don't use alpha/t-osf.
6648         * config/alpha/t-osf: Remove.
6649         * config/ia64/t-ia64 (EXTRA_HEADERS): Remove.
6651 2002-01-02  David Edelsohn  <edelsohn@gnu.org>
6653         * config/rs6000/t-aix43: Revert previous change.
6655 2002-01-02  Jason Merrill  <jason@redhat.com>
6657         * c-decl.c (c_expand_body): Call outlining_inline_function when
6658         emitting an inline function out of line.
6660 2002-01-02  Richard Henderson  <rth@redhat.com>
6662         * dwarf2out.c (limbo_die_node): Add created_for member.
6663         (new_die): New argument created_for.  Update all callers.
6664         (mark_limbo_die_list): New.
6665         (dwarf2out_init): Register limbo_die_list as a root.
6666         (dwarf2out_finish): Force insert limbo dies into their function
6667         context.
6669 2002-01-02  Nathan Sidwell  <nathan@codesourcery.com>
6671         PR c++/5089
6672         * doc/invoke.texi (-Wold-style-cast): Only warn about non-void casts.
6674 2002-01-02  Kazu Hirata  <kazu@hxi.com>
6676         * config/h8300/fixunssfsi.c: Update copyright.
6677         Fix comment typos.
6678         Fix formatting.
6679         * config/h8300/h8300.c: Update copyright.
6680         Eliminate warnings.
6682 2002-01-02  Kazu Hirata  <kazu@hxi.com>
6684         * config/romp/romp.c: Fix comment formatting.
6685         * config/romp/romp.h: Likewise.
6686         * config/romp/romp.md: Likewise.
6687         * config/s390/s390.c: Likewise.
6688         * config/stormy16/stormy16.c: Likewise.
6689         * config/stormy16/stormy16.h: Likewise.
6691 2002-01-02  Alexandre Oliva  <aoliva@redhat.com>
6693         * c-common.h (genrtl_expr_stmt_value): Declare.
6694         * c-semantics.c (genrtl_goto_stmt): Redirect to...
6695         (genrtl_goto_stmt_value): ... this new function.  Pass new
6696         argument down to expand_expr_stmt_value, taking
6697         TREE_ADDRESSABLE into account.
6698         * c-common.c (c_expand_expr): Mark the last EXPR_STMT of a
6699         STMT_EXPR as addressable, i.e., one whose result we want.
6700         * expr.c (expand_expr): Don't save expression statement value
6701         of labeled_blocks or loop_exprs.
6702         * stmt.c (expand_expr_stmt): Redirect to...
6703         (expand_expr_stmt_value): ... this new function.  Use new
6704         argument to tell whether to save expression value.
6705         (expand_end_stmt_expr): Reset last_expr_type and
6706         last_expr_value if we don't have either.
6707         * tree-inline.c (declare_return_variable): Mark its use
6708         statement as addressable.
6709         * tree.h: Document new use of TREE_ADDRESSABLE.
6710         (expand_expr_stmt_value): Declare.
6712 2002-01-01  Tom Rix  <trix@redhat.com>
6714         * config/rs6000/rs6000.c (rs6000_emit_set_long_const): Fix for use by
6715         rs6000_emit_allocate_stack.
6717 2002-01-01  Joseph S. Myers  <jsm28@cam.ac.uk>
6719         * configure.in: Prepend ${srcdir}/config/${cpu_type}/ instead of
6720         ${srcdir}/ginclude/ to every entry in extra_headers.
6721         * configure: Regenerate.
6722         * ginclude/math-3300.h: Rename to config/m68k/math-3300.h.
6723         * ginclude/math-68881.h: Rename to config/m68k/math-68881.h.
6724         * ginclude/ppc-asm.h: Rename to config/rs6000/ppc-asm.h.
6725         * ginclude/proto.h: Rename to config/convex/proto.h.
6727 Tue Jan  1 17:12:56 2002  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6729         * attribs.c (handle_vector_size_attribute): Use host_integerp
6730         and tree_int_cst; remove warnings.
6731         * caller-save.c (insert_restore): Add cast to get rid of warning.
6732         (insert_save): Likewise.
6733         * emit-rtl.c (adjust_address_1, offset_address): Likewise.
6734         * regmove.c (find_matches): Add temporary var to kill a warning.
6736 2002-01-01  Douglas B Rupp  <rupp@gnat.com>
6738         * config/alpha/vms.h (DWARF2_UNWIND_INFO, EH_RETURN_HANDLER_RTX,
6739         LINK_EH_SPEC, MD_FALLBACK_FRAME_STATE_FOR): Define.
6740         * config/alpha/t-vms (EXTRA_PARTS): Add vms-dwarf2eh.o
6741         (vms-dwarf2eh.o): Add Makefile rule.
6742         * config/alpha/vms-ld.c (main): Handle vms-dwarf2eh.o.
6743         * config/alpha/vms-dwarf2eh.asm: New file.
6745         * gcc.c (delete_if_ordinary): Delete all versions.
6747 2002-01-01  Hans-Peter Nilsson  <hp@bitrange.com>
6749         * config/mmix/mmix.md: Update FIXME to not mention
6750         define_constants.
6751         (MMIX_rJ_REGNUM): New define_constants constant.
6752         ("movqi", "movsi", "movdi", "*movdicc_real_foldable",
6753         "*movdicc_real"): Adjust contraints formatting.
6754         ("*bCC_foldable"): Add %+ for P in output format and delete FIXME
6755         for branch prediction.
6756         ("*bCC", "*bCC_inverted_foldable", "*bCC_inverted"): Add %+ in
6757         output template.
6758         ("*call_real", "*call_value_real", "nonlocal_goto_receiver",
6759         "*nonlocal_goto_receiver_expanded"): Use MMIX_rJ_REGNUM instead of
6760         number.  Delete related FIXMEs.
6761         * config/mmix/mmix.h (MMIX_INCOMING_RETURN_ADDRESS_REGNUM): Change
6762         from number to MMIX_rJ_REGNUM.
6763         (TARGET_MASK_BRANCH_PREDICT): New.
6764         (TARGET_DEFAULT): Change to TARGET_MASK_BRANCH_PREDICT.
6765         (TARGET_SWITCHES): Update comment.  Correct -mno-toplevel-symbols
6766         value.  Add -mbranch-predict and -mno-branch-predict.
6767         (TARGET_VERSION): Drop date.
6768         (ADDITIONAL_REGISTER_NAMES): Use MMIX_rJ_REGNUM, not number.
6769         * config/mmix/mmix.c (mmix_encode_section_info): Correct condition
6770         for finding out global symbols.
6771         (mmix_asm_output_labelref): Revert condition for global symbol.
6772         (mmix_print_operand): <case '+'>: Emit P for a likely branch.
6773         (mmix_print_operand_punct_valid_p): A '+' is valid.
6775 See ChangeLog.6 for earlier changes.