OSDN Git Service

PR 12267, 12391, 12560, 13129, 14114, 14113
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2004-03-23  Zack Weinberg  <zack@codesourcery.com>
2
3         PR 12267, 12391, 12560, 13129, 14114, 14113
4
5         * c-tree.h: Forward declare struct c_binding.  Declare
6         c_override_bindings_to_false.  Update prototypes.
7         (struct lang_identifier): Update comments.  Change fields to be
8         struct c_binding *.
9         (IDENTIFIER_SYMBOL_VALUE, IDENTIFIER_TAG_VALUE)
10         (IDENTIFIER_LABEL_VALUE, C_DECL_INVISIBLE)
11         (KEEP_NO, KEEP_YES, KEEP_MAYBE): Delete.
12         (C_DECL_IN_EXTERNAL_SCOPE, C_DECL_DECLARED_BUILTIN): New.
13         * c-common.h: Update prototypes.
14         * c-decl.c (struct c_scope): Update commentary.  Remove names,
15         names_last, parms, parms_last, tags, and shadowed fields.  Add
16         bindings and depth fields.
17         (scope_freelist): Move to more appropriate location.
18         (c_print_identifier): Update for changes to struct lang_identifier.
19         (objc_mark_locals_volatile): Update for new bindings structures.
20         (global_bindings_p): Honor c_override_global_bindings_to_false.
21         (pushlevel): Rename to push_scope; take no arguments; use the
22         scope_freelist; initialize scope->depth and check for overflow.
23         (poplevel): Rename to pop_scope; totally rewritten for new bindings
24         structures.
25         (diagnose_mismatched_decls): Use C_DECL_DECLARED_BUILTIN, not
26         C_DECL_INVISIBLE, for certain decisions.  Adjust some diagnostics.
27         Improve some commentary.  Adjust handling of forward parm decls.
28         (merge_decls): Set C_DECL_DECLARED_BUILTIN when appropriate.
29         Preserve C_DECL_IN_EXTERNAL_SCOPE.
30         (warn_if_shadowing): Correct indentation.  Improve diagnostics.
31         (pushdecl): Remove unnecessary assertion.  Short-circuit anonymous
32         decls.  Rewrite for new bindings structures.  Improve commentary.
33         Eliminate the copy_node call.
34         (implicit_decl_warning): Use the "diag" idiom (as seen in
35         locate_old_decl) to reduce code duplication; call locate_old_decl
36         if appropriate.  Relocate to remove need for forward declaration.
37         (implicitly_declare): Adjust for new bindings structures.  Kludge
38         around Objective-C not-really-builtin functions.
39         (undeclared_variable): Improve diagnostics.  If current_function_decl
40         is nonnull but current_function_scope is null, use current_scope.
41         Use bind.
42         (lookup_tag): Adjust for new bindings structures.  Kludge around
43         Objective-C's tag declarations that wind up in the external scope.
44         (lookup_name): Adjust for new bindings structures.  Kludge around
45         c-common.c's pseudo-typedefs that wind up in the external scope.
46         (lookup_name_current_level): Rename lookup_name_in_scope; take a
47         second argument indicating the scope to examine; rewrite for
48         new bindings structures.
49         (c_init_decl_processing): Adjust for renamed functions.  Do not
50         initialize current_file_decl, first_builtin_decl, last_builtin_decl.
51         First scope pushed is the external scope, not the global scope.
52         (builtin_function): Use bind, not pushdecl.  Adjust other bits
53         for new data structures.  Keep track of builtins that should be
54         made visible automatically.
55         (start_decl): Adjust diagnostics.  Remove unnecessary call to
56         expand_decl.
57         (grokparms): Return 0 if arg_types is error_mark_node.
58         (get_parm_info): Rename "void_at_end" argument to "ellipsis", with
59         reversed sense.  Rewrite for new bindings structures.  Do not
60         leave any decls in the scope, to prevent pop_scope from doing
61         contradictory things with them.
62         (finish_struct, finish_enum): Remove redundant diagnostics.
63         (build_enumerator): Don't cascade diagnostics for error_mark_node.
64         Mark location where -pedantic changes the meaning of the program.
65         (store_parm_decls_newstyle, store_parm_decls_oldstyle): Load the
66         parameter decls into the function's scope structure using bind.
67         Warn here about function definitions in the wrong style.
68         Adjust diagnostics.
69         (store_parm_decls): Correct the determination of whether a
70         function was defined with a prototype.
71         (c_write_global_declarations): Operate on all file decls and on
72         the external scope.  Split body of the loop to...
73         (c_write_global_declarations_1): ... this new function, to avoid
74         code duplication.
75         (truly_local_externals, first_builtin_decl, last_builtin_decl)
76         (make_scope, pop_scope, in_parm_level_p, set_block)
77         (any_external_decl, record_external_decl, bind_label, getdecls)
78         (link_hash_hash, link_hash_eq, merge_translation_unit_decls)
79         (c_reset_state): Delete.
80         (visible_builtins, c_override_global_bindings_to_false)
81         (c_binding, I_SYMBOL_BINDING, I_SYMBOL_DECL, I_TAG_BINDING)
82         (I_TAG_DECL, I_LABEL_BINDING, I_LABEL_DECL, file_scope)
83         (external_scope, binding_freelist, bind, free_binding_and_advance)
84         (push_file_scope, pop_file_scope): New.
85         (pushtag, pushdecl_top_level, lookup_label, declare_label)
86         (define_label, c_make_fname_decl, finish_decl)
87         (mark_forward_parm_decls, build_compound_literal)
88         (grokdeclarator, start_function, check_for_loop_decls)
89         (identifier_global_value, record_builtin_type): Minor adjustments
90         for new bindings structures.  Improve diagnostics and commentary.
91         * c-objc-common.c (start_cdtor, finish_cdtor): Adjust calls to
92         pushlevel/poplevel respectively.
93         (c_objc_common_finish_file): Don't call merge_translation_unit_decls.
94         * c-opts.c (c_common_parse_file): Remove spurious ATTRIBUTE_UNUSED.
95         Warn about YYDEBUG not being defined only if -dy.  Remove no-longer-
96         correct loop over multiple translation units; call fatal_error if
97         requested to compile more than one file at once.  (This disables
98         IMA temporarily - an up-front error being preferable to a crash.)
99         * c-parse.in (pushlevel, poplevel rules): Rename push_scope, pop_scope.
100         (all actions): Adjust calls to pushlevel/poplevel.
101         (parsing_iso_function_signature): Delete.
102         (extdef_1): Fold into extdef.
103         (old_style_parm_decls_1): Fold into old_style_parm_decls.  Don't
104         warn here about function definitions in the wrong style.
105         (after_tyle_declarator, parm_declarator_starttypename)
106         (parm_declarator_nostarttypename, notype_declarator): Remove
107         commented-out productions.
108         (parmlist_1, parmlist_2): Use make_node, not tree_cons, to create
109         an empty TREE_LIST node.  Adjust calls to get_parm_info.
110         (parmlist_2 : ELLIPSIS): Tag the arg-info block with error_mark_node
111         to suppress -Wold-style-definition after this error.
112         (c_parse_file): Don't clear the binding stack or call
113         finish_fname_decls here.  Correct comment.
114         * c-typeck.c (same_translation_unit_p): Export.
115         (common_type): Use c_override_global_bindings_to_false, not
116         pushlevel/poplevel/declare_parm_level.
117         * c-lang.c: Override LANG_HOOKS_CLEAR_BINDING_STACK,
118         LANG_HOOKS_PUSHLEVEL, LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK,
119         and LANG_HOOKS_GETDECLS with do-nothing stubs.
120         * objc/objc-lang.c: Likewise.
121         * objc/objc-act.c: Adjust all calls to pushlevel, poplevel,
122         get_parm_info.
123         (OBJC_VOID_AT_END): Delete; replace all uses
124         with void_list_node.
125         (generate_forward_declaration_to_string_table): Delete.
126         * objc/objc-act.h (OCTI_STRG_DECL, UOBJC_STRINGS_decl): Delete.
127
128         * coverage.c (create_coverage): Don't pushdecl anything.
129         * langhooks.c (lhd_clear_binding_stack): Call
130         lang_hooks.decls.poplevel, not poplevel.
131         * tree.c (list_length): If ENABLE_TREE_CHECKING, abort on a
132         circular list rather than going into an infinite loop.
133
134 2004-03-23  Olivier Hainque  <hainque@act-europe.fr>
135
136         * optabs.c (expand_binop): When synthesizing double word rotates
137         from single word shifts, use a new register target if the provided
138         target is not a REG already.
139
140 2004-03-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
141
142         * alias.c (get_alias_set): Add support for TYPE_REF_CAN_ALIAS_ALL.
143         * c-common.c (handle_mode_attribute): Add extra arg to
144         build_pointer_type_for_mode and build_reference_type_for_mode.
145         * c-typeck.c (build_c_cast): Only look at TREE_CONSTANT_OVERFLOW
146         for INTEGER_CST.
147         * tree.c (build_pointer_type_for_mode): Add arg CAN_ALIAS_ALL.
148         Chain pointers via TYPE_NEXT_PTR_TO.
149         (build_reference_type_for_mode): Similarly.
150         (build_type_no_quals): Add extra arg to build_pointer_type_for_mode
151         and build_reference_type_for_mode.
152         (tree_check4_failed): New function.
153         * tree.h (TREE_CHECK4, PTR_OR_REF_CHECK): New macros.
154         (TYPE_REF_CAN_ALIAS_ALL, TYPE_NEXT_PTR_TO, TYPE_NEXT_REF_TO): Likewise.
155         (TREE_NO_UNSUED_WARNING, TREE_VIA_VIRTUAL, TREE_CONSTANT_OVERFLOW):
156         Add check.
157
158 2004-03-23  Roger Sayle  <roger@eyesopen.com>
159
160         * fold-const.c (tree_expr_nonnegative_p): A&B is nonnegative when
161         A is nonnegative or B is nonnegative.  Similarly A|B is nonnegative
162         when both A and B are nonnegative.
163         (tree_expr_nonzero_p): A|B is nonzero when A is nonzero or B is
164         nonzero.
165
166 2004-03-23  Kazu Hirata  <kazu@cs.umass.edu>
167
168         * fold-const.c (fold): Remove cases for INTEGER_CST, REAL_CST,
169         VECTOR_CST, STRING_CST, COMPLEX_CST, and CONSTRUCTOR.
170
171 2004-03-23  Kazu Hirata  <kazu@cs.umass.edu>
172
173         PR optimization/14669
174         * fold-const.c (fold): Only unwiden integer comparisons for equality
175         and inequality operators, or when the signedness doesn't change.
176
177 2004-03-23  Jakub Jelinek  <jakub@redhat.com>
178
179         * config.gcc (sparc-*-linux*): Add sparc/t-linux to tmake_file.
180         * config/sparc/t-linux64 (TARGET_LIBGCC2_CFLAGS): Set.
181         * config/sparc/t-linux: New file.
182
183 2004-03-23  Richard Sandiford  <rsandifo@redhat.com>
184
185         * gcse.c (can_assign_to_reg_p): New function, split out from...
186         (want_to_gcse_p): ...here.
187         (compute_ld_motion_mems): Use can_assign_to_reg_p to validate
188         the rhs of a store.
189
190 2004-03-22  Diego Novillo  <dnovillo@redhat.com>
191
192         * c-typeck.c (same_translation_unit_p): Fix pasto.
193
194 2004-03-22  David Edelsohn  <edelsohn@gnu.org>
195
196         * params.def (PARAM_MAX_SCHED_REGION_BLOCKS): New.
197         (PARAM_MAX_SCHED_REGION_INSNS): New.
198         * sched-rgn.c: Include params.h
199         (MAX_RGN_BLOCKS): Delete.
200         (MAX_RGN_INSNS): Delete.
201         (too_large): Return bool.  Convert to PARAM_VALUE.
202         * Makefile.in (sched-rgn.o): Depend on $(PARAMS_H).
203         * doc/invoke.texi (param): Document max-sched-region-blocks and
204         max-sched-region-insns.
205
206 2004-03-22  Joel Brobecker  <brobecker@gnat.com>
207
208         * dwarf2out.c (is_subrange_type): Do not emit a subrange_type DIE
209         for base types.
210
211 2004-03-22  Joel Brobecker  <brobecker@gnat.com>
212
213         * dwarf2out.c (is_subrange_type): Minor code rework. No behavior
214         change.
215
216 2004-03-22  Jakub Jelinek  <jakub@redhat.com>
217
218         PR c/14069
219         * c-decl.c (finish_struct): Change type of incorrect flexible array
220         field into error_mark_node.
221
222 2004-03-22  Andrew Pinski  <pinskia@physics.uc.edu>
223
224         PR target/14580
225         * config/rs6000/rs6000.c (symbol_ref_operand): Reject symbols
226         who are not local for Darwin PIC.
227
228 2004-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
229
230         * regrename.c (regrename_optimize): Set regs_ever_live for all
231         registers introduced as replacement.
232
233 2004-03-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
234
235         PR middle-end/14470
236         * expr.c (mark_queue): New function.
237         (emit_insns_enqueued_after_mark): New function replacing
238         emit_queue.  Clear the body of emitted queued insns.
239         (emit_queue): Call emit_insns_enqueued_after_mark.
240         (store_expr): Mark the increment queue on entry.  Emit
241         only the incrementations queued when expanding the source.
242
243 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
244
245         * configure.ac: Allow --disable-coverage-flags (for the future benefit
246         of top level bootstrap, and consistency).  Reindent.
247         * configure: Regenerate.
248
249 2004-03-21  Kazu Hirata  <kazu@cs.umass.edu>
250
251         * bt-load.c, builtins.c, cfghooks.c, cfgrtl.c, gcse.c,
252         ggc-page.c, integrate.c, var-tracking.c, web.c: Remove
253         unnecessary casts.
254
255 2004-03-22  Danny Smith  <dannysmith@users.sourceforge.net>
256
257         PR target/14291
258         * gcov-io.h (gcov_truncate): Define ftruncate as _chsize for
259         __MINGW32__.
260
261 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
262
263         * config/s390/s390.md ("*doloop_si"): Change predicate for operand 2
264         to nonimmediate_operand.
265         ("*doloop_di"): Likewise.
266
267 2004-03-21  Alexandre Oliva  <aoliva@redhat.com>
268
269         * real.h (struct real_value): Use the same type for all
270         bitfields.  Rename exp to uexp.
271         (REAL_EXP, SET_REAL_EXP): New accessor macros for uexp.
272         Adjust all uses of exp...
273         * builtins.c: ... here, ...
274         * emit-rtl.c: ... here, and ...
275         * real.c: ... and here.
276
277 2004-03-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
278
279         * pretty-print.c (pp_base_maybe_space): New function.
280         * pretty-print.h (pp_base_maybe_space): Declare.
281         (pp_maybe_space): New macro.
282
283 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
284
285         * config/s390/s390.md ("addti3", "subti3"): New insns and splitters.
286
287 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
288
289         * expmed.c (choose_mult_variant): Pass MULT_COST as argument instead
290         of using register multiplication cost.
291         (expand_mult): Adapt choose_mult_variant call.
292         (expand_mult_highpart): Call choose_mult_variant with WIDER_MODE
293         of MODE; pass appropriate cost bound.  Adjust result when
294         performing signed multiplication by a negative constant.
295         Don't use intermediate modes larger than word_mode.
296
297 2004-03-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
298
299         * alias.c (get_alias_set): Remove handling of PLACEHOLDER_EXPR.
300         * emit-rtl.c (component_ref_for_mem_expr): Likewise.
301         (set_mem_attributes_minus_bitpos): Call SUBSTITUTE_PLACEHOLDER_IN_EXPR.
302         * explow.c (expr_size): Likewise.
303         * expr.h (placeholder_list, find_placeholder): Deleted.
304         * expr.c (store_constructor): Likewise.
305         (get_inner_reference): Likewise.  Also don't call find_placeholder.
306         (placeholder_list, find_placeholder): Deleted.
307         (is_aligning_offset): Don't handle WITH_RECORD_EXPR, PLACEHOLDER_EXPR.
308         (expand_expr_real, cases PLACEHOLDER_EXPR, WITH_RECORD_EXPR): Likewise.
309         (highest_pow2_factor, case WITH_RECORD_EXPR): Remove.
310         * dojump.c (do_jump, case WITH_RECORD_EXPR): Likewise.
311         * dwarf2out.c (loc_descriptor_from_tree, case WITH_RECORD_EXPR):
312         Likewise.
313         * fold-const.c (invert_truthvalue, case WITH_RECORD_EXPR): Likewise.
314         (extract_muldiv, case WITH_RECORD_EXPR): Likewise.
315         * tree.c (expr_align, case WITH_RECORD_EXPR): Likewise.
316         (contains_placeholder_p): Don't handle WITH_RECORD_EXPR.
317         Clean up by using first_rtl_op.
318         (substitute_in_expr): Use SUBSTITUTE_IN_EXPR for recursive call.
319         (substitute_placeholder_in_expr): New function.
320         * tree.def (WITH_RECORD_EXPR): Deleted.
321         * tree.h (SUBSTITUTE_IN_EXPR, SUBSTITUTE_PLACEHOLDER_IN_EXPR): New.
322         (substitute_placeholder_in_expr): New.
323
324 2004-03-21  Andrew Pinski  <pinskia@gcc.gnu.org>
325
326         * dojump.c (prefer_and_bit_test): Fix which part of
327         the and_test is replaced.
328
329 2004-03-21  Joseph S. Myers  <jsm@polyomino.org.uk>
330
331         * frontends.texi: Add missing line.
332
333 2004-03-21  Zack Weinberg  <zack@codesourcery.com>
334             Chris Devers  <cdevers@pobox.com>
335             Joseph S. Myers  <jsm@polyomino.org.uk>
336
337         * doc/frontends.texi: Rewrite.
338         * doc/gcc.texi: Update last modification date.
339
340 2004-03-21  Josef Zlomek  <zlomekj@suse.cz>
341
342         * cfgrtl.c (cfg_layout_redirect_edge_and_branch): Print the debug
343         message before redirecting the edge.
344
345 2004-03-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
346
347         * emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_POINTER
348         flag.
349         * explow.c (force_not_mem): Set REG_POINTER flag according to
350         MEM_POINTER one.
351         * rtl.h (MEM_POINTER): New macro.
352         (struct rtx_def): Use integrated for MEM_SCALAR_P and frame_related
353         for MEM_POINTER.
354
355 2004-03-20  Roger Sayle  <roger@eyesopen.com>
356
357         PR target/13889
358         * cse.c (fold_rtx): Avoid substituting constants into unary
359         conversion operations.
360
361 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
362
363         * fold-const.c (fold): Replace "expr" with "t".
364
365 2004-03-20  Ian Lance Taylor  <ian@wasabisystems.com>
366
367         PR c/12373
368         * c-typeck.c (tagged_types_tu_compatible_p): Don't use
369         DECL_ORIGINAL_TYPE if there isn't one.
370
371 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
372
373         * fold-const.c (fold): Replace "final_type" with "type".
374         Remove variable "final_type".
375
376 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
377
378         * fold-const.c (fold): Constify "type".
379         Replace "TREE_TYPE (t)" with "type".
380
381 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
382
383         * bb-reorder.c, bt-load.c, c-decl.c, cfgcleanup.c, coverage.c,
384         dwarf2asm.c, ifcvt.c, stor-layout.c, varasm.c: Replace calls
385         via (*targetm.foo) () with targetm.foo ().
386
387 2004-03-20  Joseph S. Myers  <jsm@polyomino.org.uk>
388
389         PR other/14630
390         * doc/install.texi: Add info directory category and entry.
391
392 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
393
394         * fold-const.c (fold): Replace "t" with "tem" where it is used
395         as a temporary variable.  Remove "orig_t" and all of its uses.
396
397 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
398
399         * fold-const.c (fold): Remove variable "invert".
400         Move the handling of relational expressions that can be folded
401         to a constant ...
402         (fold_relational_const): ... here.
403         (tree_expr_nonzero_p): New.
404
405 2004-03-20  Joseph S. Myers  <jsm@polyomino.org.uk>
406
407         PR c/14635
408         * builtins.def (nan, nanf, nanl, nans, nansf, nansl): Change to
409         DEF_GCC_BUILTIN.
410
411 2004-03-20  Richard Sandiford  <rsandifo@redhat.com>
412
413         * Makefile.in (dojump.o): Depend on $(GGC_H) and dojump.h.
414         (GTFILES): Add $(srcdir)/dojump.h.
415         (gt-dojump.h): New dependency.
416         * dojump.c (and_reg, and_test, shift_test): New static variables.
417         (prefer_and_bit_test): New function.
418         (do_jump): Use it to choose between (X & (1 << C)) and (X >> C) & 1.
419
420 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
421
422         * c-common.c, cfgcleanup.c, cgraphunit.c, c-pretty-print.c,
423         expmed.c, ggc-common.c, jump.c, passes.c, recog.c, regmove.c,
424         reorg.c, tree.h: Fix comment typos.
425
426 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
427
428         * alias.c, attribs.c, bt-load.c, builtins.c, c-common.c,
429         c-decl.c, c-objc-common.c, c-typeck.c, calls.c, cfglayout.c,
430         cse.c, dbxout.c, dwarf2out.c, except.c, final.c,
431         haifa-sched.c, integrate.c, passes.c, rtlanal.c, sched-rgn.c,
432         sched-vis.c, simplify-rtx.c, stor-layout.c, tree.c, varasm.c,
433         vmsdbgout.c: Replace calls via (*targetm.foo) () with
434         targetm.foo ().
435
436 2004-03-19  Ziemowit Laski  <zlaski@apple.com>
437
438         * config/rs6000/altivec.h (vec_dst, vec_dstst, vec_dststt,
439         vec_dstt, vec_sld, vec_splat): Add prototypes, marked with
440         always_inline attribute.
441         * config/rs6000/rs6000.c (altivec_expand_dst_builtin):
442         Treat expansion as completed even if literal argument is
443         invalid (so that other expansions are not tried in vain).
444
445 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
446
447         * loop-doloop.c (add_test): Replace GEN_INT (0) with
448         const0_rtx.
449
450 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
451
452         * fold-const.c (fold) <ABS_EXPR>: Move the handling of constants
453         ...
454         (fold_abs_const): ... here.
455
456 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
457
458         * tree.h (TYPE_ARRAY_MAX_SIZE): Use type.maxval directly.
459
460 2004-03-19  Denis Chertykov  <denisc@overta.ru>
461
462         PR target/11520
463         * config/avr/avr.md ("call_insn"): Handle explicit integer
464         specially.
465         (call_value_insn): Likewise.
466
467 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
468
469         * tree.c (substitute_in_expr): Rewrite to simplify and be more generic.
470
471 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
472
473         * fold-const.c (negate_expr): Move the handling of constants
474         ...
475         (fold_negate_const): ... here.
476
477 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
478
479         * langhooks-def.h (LANG_HOOKS_HASH_TYPES): New macro and hook.
480         * langhooks.h (struct lang_hooks_for_types): New field hash_types.
481         * tree.c (debug_no_type_hash): Deleted.
482         (type_hash_canon): Abort if passed a variant.
483         Check lang_hooks.types.hash_types.
484         (build_type_no_quals): Copy mode of POINTER_TYPE and REFERENCE_TYPE.
485         (build_array_type): Remove unnecessary allocation of pointer type.
486         (build_complex_type): Properly qualify resulting type.
487
488 2004-03-19  Paolo Bonzini  <bonzini@gnu.org>
489
490         * config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.
491
492 2004-03-19  Richard Sandiford  <rsandifo@redhat.com>
493
494         * expmed.c (choose_mult_variant, expand_mult_const): New, split from...
495         (expand_mult): ...here.
496         (extract_high_half): New, split out from expand_mult_highpart.
497         (expand_highpart_optab): Likewise.  Don't clobber target prematurely.
498         (expand_highpart): Evaluate the cost of a shift/add sequence,
499         then see if any of the specialized optabs are cheaper.
500
501 2004-03-18  Ian Lance Taylor  <ian@wasabisystems.com>
502
503         * mklibgcc.in: Remove obsolete MAYBE_USE_COLLECT2.
504
505 2004-03-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
506
507         * convert.c (convert_to_real): Add more math builtins.
508
509 2004-03-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
510
511         * convert.c (convert_to_real): Reformat using switch stmt.
512
513 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
514
515         * c-common.c (pointer_int_sum): Do not complain about using
516         pointers to pointers-to-members.
517
518 2004-03-18  Kazu Hirata  <kazu@cs.umass.edu>
519
520         * system.h (MD_ASM_CLOBBERS): Move to "Old target macros that
521         have moved to the target hooks structure".
522
523 2004-03-18  James E Wilson  <wilson@specifixinc.com>
524
525         * config/mips/mips.md (type): Split move into arith and fmove.  Split
526         hilo into mthilo and mfhilo.  Add trap.  Delete icmp.  Fix all uses.
527         * config/mips/5400.md (ir_vr54_hilo, ir_vr54_arith, ir_vr54_fabs):
528         Likewise.
529         * config/mips/5500.md (ir_vr55_hilo, ir_vr55_arith, ir_vr55_fabs):
530         Likewise.
531         * config/mips/7000.md (rm7_int_other, rm7_mthilo, rm7_mfhilo,
532         rm7_fp_quick): Likewise.
533         * config/mips/9000.md (rm9k_int, rm9k_mfhilo, rm9k_mthilo,
534         rm9k_fquick): Likewise.
535         * config/mips/sr71k.md (ir_sr70_hilo, ir_sr70_arith, ir_sr70_fabs):
536         Likewise.
537         (ir_sr70_icmp): Delete.
538
539 2004-03-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
540
541         * tree.h (TREE_CHECK2, TREE_CHECK3, TREE_CHECK5): New macros.
542         (tree_check2_failed, tree_check3_failed, tree_check5_failed): New decl.
543         (FUNC_OR_METHOD_CHECK, SET_ARRAY_OR_VECTOR_CHECK): New macros.
544         (REC_OR_UNION_CHECK, NUMERICAL_TYPE_CHECK): Likewise.
545         (TYPE_VALUES, TYPE_DOMAIN, TYPE_FIELDS, TYPE_METHODS, TYPE_VFIELD):
546         Protect with proper check.
547         (TYPE_ARG_TYPES, TYPE_METHOD_BASETYPE, TYPE_OFFSET_BASETYPE): Likewise.
548         (TYPE_MIN_VALUE, TYPE_MAX_VALUE): Likewise.
549         * tree.c (type_hash_eq): Rewrite to access proper fields for each type.
550         (tree_check2_failed, tree_check3_failed, tree_check5_failed): New.
551         * c-typeck.c (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES.
552         * dwarf2out.c (gen_enumeration_type_die): Use TYPE_VALUES,
553         not TYPE_FIELDS.
554         * stor-layout.c (set_sizetype): Use TYPE_ORIG_SIZE_TYPE.
555
556 2004-03-18  Mostafa Hagog  <mustafa@il.ibm.com>
557
558         * gcse.c (eliminate_partially_redundant_loads): Reject change if
559         dest is set between beginning and current insn.
560
561 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
562
563         * c-decl.c (grokdeclarator): Do not complain about redeclaring
564         visible "static" identifiers "extern" in a local scope.
565         * dwarf2out.c (loc_descriptor_from_tree): Handle pre- and
566         post-increments/decrements.
567
568 2004-03-18  Bob Wilson  <bob.wilson@acm.org>
569
570         * config/xtensa/xtensa.c (current_function_arg_words): Delete.
571         (xtensa_builtin_saveregs): Use current_function_args_info.arg_words.
572         (xtensa_va_start): Remove assignment to current_function_arg_words.
573
574 2004-03-18  Richard Sandiford  <rsandifo@redhat.com>
575
576         * alias.c (record_set): Detect the case where a register is assigned
577         a new value that has the same base term as the old one.
578
579 2004-03-18  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
580
581         * doloop.c: Removed.
582         * loop-doloop.c: New file.
583         * Makefile.in (doloop.o): Remove.
584         (loop-doloop.o): New.
585         * cfgloop.h (get_loop_level, doloop_optimize_loops): Declare.
586         * cfgloopanal.c (get_loop_level): New function.
587         * loop-iv.c (iv_number_of_iterations): Handle case when loop
588         is leaved immediatelly.
589         * loop.c (strength_reduce): Do not call doloop optimization.
590         * loop.h (LOOP_BCT): Removed.
591         * passes.c (rest_of_handle_loop_optimize): Do not use LOOP_BCT.
592         (rest_of_handle_loop2): Call doloop_optimize_loops.
593         (rest_of_compilation): Test for optimizations moved to
594         rest_of_handle_loop2.
595
596 2004-03-17  Fariborz Jahanian <fjahanian@apple.com>
597
598         * config/rs6000/rs6000.c (rs6000_stack_info): correct reg_size
599         for mixed mode.
600         (rs6000_emit_prologue): Ditto.
601         (rs6000_emit_epilogue): Ditto.
602         * config/rs6000/rs6000.h: Definition of DWARF_CIE_DATA_ALIGNMENT
603         macro for mixed mode.
604
605 2004-03-18  Jan Hubicka  <jh@suse.cz>
606
607         * predict.c (propagate_freq): Compute correctly frequency of
608         EXIT_BLOCK.
609
610 2004-03-17  Eric Christopher  <echristo@redhat.com>
611
612         * builtins.c (apply_args_size): Use reg_raw_mode.
613         (apply_result_size): Ditto.
614
615 2004-03-17  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
616
617         PR target/14620
618         * config/rtems.h: Add STD_LIB_SPEC and LIB_SPEC.
619
620 2004-03-17  Jakub Jelinek  <jakub@redhat.com>
621
622         * config/rs6000/t-linux64 (bispecs): Don't add -mlong-double-128 for
623         32-bit builds when defaulting to 32-bit.
624
625 2004-03-17  Jan Hubicka  <jh@suse.cz>
626
627         * cfgrtl.c (rtl_create_basic_block): Pre-allocate basic_block_info
628         array.
629
630 2004-03-17  James E Wilson  <wilson@specifixinc.com>
631
632         * config/mips/mips.md (zero_extendsidi2): Add length attribute.
633         (hazard_nop): Change type to nop.
634         (type): Split arith into arith, shift, slt, clz.  Delete darith.
635         Fix all uses.  Change arith to multi if more than one insn emitted.
636         * config/mips/5400.md (ir_vr54_arith): Likewise.
637         * config/mips/5500.md (ir_vr55_arith): Likewise.
638         * config/mips/7000.md (rm7_int_other): Likewise.
639         * config/mips/9000.md (rm9k_int): Likewise.
640         * config/mips/sr71k.md (ir_sr70_arith): Likewise.
641
642 2004-03-17  Joel Brobecker  <brobecker@gnat.com>
643
644         * dwarf2out.c (subrange_type_die): Define new variable "subtype"
645         to hold the subtype tree instead of recomputing it several times.
646
647 2004-03-17  Kazu Hirata  <kazu@cs.umass.edu>
648
649         * config/mn10300/mn10300.c (notice_update_cc): Don't handle
650         CC_INVERT.
651         * config/mn10300/mn10300.md (cc): Remove "invert".
652
653 2004-03-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
654
655         * builtins.c (integer_valued_real_p): Add builtin rint.
656         (fold_builtin): Likewise.
657         * convert.c (convert_to_real): Likewise.
658
659         * convert.c (convert_to_real): Fix typos in `long double'
660         builtins.
661
662 2004-03-16  Mark Mitchell  <mark@codesourcery.com>
663
664         PR c++/14481
665         * fold-const.c (fold): Set TREE_NO_UNUSED_WARNING on implicitly
666         generated COMPOUND_EXPRs.
667
668 2004-03-16  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
669
670         * config/h8300/t-rtems (h8300-*-rtems*): New.
671
672 2004-03-16  Eric Christopher  <echristo@redhat.com>
673
674         * doc/cppopts.texi(fwide-exec-charset): Fix typo.
675
676 2004-03-16  Kazu Hirata  <kazu@cs.umass.edu>
677
678         * config/i386/i386-protos.h: Add a prototype for
679         ix86_reverse_condition.
680         * config/i386/i386.c (ix86_reverse_condition): New.
681         * config/i386/i386.h (REVERSE_CONDITION): Use
682         ix86_reverse_condition.
683         * config/i386/i386.md: Use ix86_reverse_condition instead of
684         REVERSE_CONDITION.
685
686 2004-03-16  J. Brobecker  <brobecker@gnat.com>
687
688         * dwarf2out.c (loc_descriptor_from_tree): Add handling for MIN_EXPR.
689
690 2004-03-16  Nathanael Nerode  <neroden@gcc.gnu.org>
691
692         PR bootstrap/12974
693         * Makefile.in: Pass $(INCLUDES) down to libgcc.mk explicitly.
694
695 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
696
697         * c-common.c (c_common_type_for_mode): Build vector types on
698         demand.
699         (handle_mode_attribute): Deprecate using the mode attribute
700         to create vector types.  Fix indentation.
701         (vector_type_node_list): Remove.
702         (handle_vector_size_attribute): Create vector types on demand.
703         Strip a NON_LVALUE_EXPR from the attribute if there is one.
704         * c-typeck.c (comptypes): Make vector types compatible if they
705         have the same underlying mode.
706         (convert_for_assignment): Use comptypes to convert between
707         vector types.
708         * tree.c (build_common_tree_nodes_2): Do not create vector types.
709         * config/arm/arm.c (arm_init_iwmmxt_builtins): Create necessary
710         vector types.
711         * tree.h: Remove vector types.
712         * config/i386/i386.c (i386_init_mmx_sse_builtins): Likewise.
713         * config/rs6000/rs6000.c (rs6000_init_builtins): Likewise.
714         (V16QI_type_node, V2SI_type_node, V2SF_type_node, V4HI_type_node,
715         V4SI_type_node, V4SF_type_node, V8HI_type_node): New globals.
716         * doc/extend.texi (Vector Types): Document how to use the
717         vector_size attribute to create vectors, rather than mode.
718
719         * config/arm/mmintrin.h: Use vector_size attribute, not mode.
720         * config/i386/emmintrin.h: Likewise.
721         * config/i386/mmintrin.h: Likewise.
722         * config/i386/xmmintrin.h: Likewise.
723         * config/sh/ushmedia.h: Likewise.
724
725 2004-03-16  Kazu Hirata  <kazu@cs.umass.edu>
726
727         * config/freebsd-spec.h, config/arc/arc-protos.h,
728         config/arm/aout.h, config/arm/elf.h, config/arm/freebsd.h,
729         config/arm/linux-gas.h, config/arm/semi.h,
730         config/cris/cris-protos.h, config/i386/xm-djgpp.h,
731         config/ia64/freebsd.h, config/mips/7000.md,
732         config/mips/9000.md, config/ns32k/ns32k-protos.h,
733         config/sparc/pbd.h: Update copyright.
734
735 2004-03-16  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
736
737         PR target/14577
738         * config.gcc: Switch sh-*-rtems* to ELF.  Add sh-*-rtemscoff.
739
740 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
741
742         * combine.c (combine_simplify_rtx): Remove the "last"
743         parameter and its documentation.  Adjust recursive calls.
744         (simplify_logical): Always perform the only simplification
745         controlled by "last", if the simplified expression is
746         actually different.
747         (try_combine): Do not pass the "last" parameter to
748         combine_simplify_rtx.
749
750 2004-03-16  Richard Sandiford  <rsandifo@redhat.com>
751
752         PR target/14599
753         * config/mips/mips.md (UNSPEC_GP): New constant.
754         * config/mips/mips.c (CONST_GP_P): Expect the CONST to contain
755         an UNSPEC instead of (reg $gp).
756         (mips16_gp_pseudo_reg): Change accordingly.
757         (print_operand): Print $gp directly when handling CONST_GP_P.
758
759 2004-03-16  Richard Zidlicky  <rz@linux-m68k.org>
760
761         * config.gcc, config/m68k/linux.h: Implement with-cpu for m68k-linux.
762         * longlong.h: Make code 68060 clean when compiling for m68060.
763
764 2004-03-16  Richard Zidlicky  <rz@linux-m68k.org>
765
766         * config/m68k/m68k.md: Fix constraints for bitfield instructions.
767         * doc/md.texi: Clarify description of "i" constraint.
768
769 2004-03-15  James E Wilson  <wilson@specifixinc.com>
770
771         * config/mips/mips.md (type): Split load into load, fpload, fpidxload.
772         Split store into store, fpstore, fpidxstore.  Fix all uses.
773         * config/mips/5400.md (ir_vr54_load, ir_vr54_store, ir_vr54_fstore):
774         Likewise.
775         * config/mips/5500.md (ir_vr55_load, i5_vr55_store): Likewise.
776         * config/mips/7000.md (rm7_ld, rm7_st): Likewise.
777         * config/mips/9000.md (rm9k_load, rm9k_store): Likewise.
778         * config/mips/sr71k.md (ir_sr70_load, ir_sr70_store, ir_sr70_fload,
779         ir_sr70_fstore): Likewise.
780
781 2004-03-15  Richard Henderson  <rth@redhat.com>
782
783         PR middle-end/14535
784         * except.c (collect_one_action_chain): Record action for cleanup
785         outer of exception spec.
786
787 2004-03-15  Ian Lance Taylor  <ian@wasabisystems.com>
788
789         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
790         Fix the check for abort and only do the mmap if we can.
791
792 2004-03-15  Eric Botcazou  <ebotcazou@act-europe.fr>
793
794         * config/sparc/sparc.h: Rework comments about the code model
795         in 64-bit environment and the mode 'Pmode'.
796         * doc/invoke.texi (SPARC options): Rework description of the
797         different code models supported in 64-bit environment.
798
799 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
800
801         * defaults.h (REVERSIBLE_CC_MODE): Define.
802         * jump.c (reversed_comparison_code_parts): Don't check if
803         REVERSIBLE_CC_MODE is defined.
804
805 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
806
807         * c-incpath.c, c-incpath.h, c-pch.c, c.opt, cppexp.c,
808         et-forest.h, genattr.c, ggc-none.c, hosthooks-def.h,
809         hosthooks.h, params.h, ra-colorize.c, web.c,
810         config/darwin-c.c, config/alpha/freebsd.h, config/arm/pe.c,
811         config/avr/avr-protos.h, config/avr/avr.md,
812         config/fr30/fr30-protos.h, config/fr30/fr30.md,
813         config/h8300/fixunssfsi.c, config/i386/darwin.h,
814         config/i386/freebsd.h, config/i386/freebsd64.h,
815         config/ia64/hpux.h, config/ia64/unwind-ia64.c,
816         config/ip2k/libgcc.S, config/m32r/xm-m32r.h,
817         config/mmix/mmix-modes.def, config/ns32k/netbsd.h,
818         config/ns32k/ns32k.md, config/pa/pa64-hpux.h,
819         config/pa/pa64-regs.h, config/rs6000/aix41.h,
820         config/rs6000/aix43.h, config/rs6000/host-darwin.c,
821         config/sparc/aout.h, config/sparc/freebsd.h,
822         config/sparc/litecoff.h, config/vax/vax-protos.h,
823         doc/hostconfig.texi, doc/include/gcc-common.texi: Update
824         copyright.
825
826 2004-03-15  Paul Brook  <paul@codesourcery.com>
827
828         * config/arm/arm.c (thumb_expand_prologue): Tie prologue insns to fp.
829
830 2004-03-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
831
832         * c-pretty-print.c (pp_c_semicolon): Fix formatting.
833         (pp_c_cv_qualifier): Document.
834         (pp_c_space_for_pointer_operator): Likewise.
835         (pp_c_integer_constant): Likewise.
836         (pp_c_identifier): Likewise.
837         (pp_c_init_declarator): Don't print function body.
838
839 2004-03-14  Joseph S. Myers  <jsm@polyomino.org.uk>
840
841         * doc/contrib.texi, doc/extend.texi, doc/gcov.texi,
842         doc/install.texi, doc/invoke.texi, doc/makefile.texi,
843         doc/sourcebuild.texi, doc/tm.texi, doc/trouble.texi: Capitalize
844         "gcc", "g++" and "g77" or mark up with appropriate markup.  Adjust
845         wording and grammar.
846
847 2004-03-14  Roger Sayle  <roger@eyesopen.com>
848
849         * alias.c (get_alias_set): Replace calls via (*lang_hooks.foo) ()
850         with lang_hooks.foo ().
851         * builtins.c (expand_builtin_va_arg): Likewise.
852         * c-common.c (fname_as_string, c_common_truthvalue_conversion,
853         c_common_type_for_mode, c_common_nodes_and_builtins,
854         handle_mode_attribute, handle_vector_size_attribute): Likewise.
855         * c-convert.c (convert): Likewise.
856         * c-format.c (check_format_types): Likewise.
857         * c-objc-common.c (c_tree_printer): Likewise.
858         * c-typeck.c (build_unary_op, build_conditional_expr,
859         build_binary_op): Likewise.
860         * calls.c (try_to_integrate, expand_call,
861         emit_library_call_value_1): Likewise.
862         * cgraph.c (cgraph_node_name, cgraph_function_possibly_inlined_p):
863         Likewise.
864         * cgraphunit.c (record_call_1, cgraph_analyze_function,
865         cgraph_expand_function): Likewise.
866         * convert.c (convert_to_pointer, convert_to_integer): Likewise.
867         * coverage.c (build_fn_info_type, build_ctr_info_type,
868         build_gcov_info, create_coverage): Likewise.
869         * dbxout.c (dbxout_init): Likewise.
870         * diagnostic.c (diagnostic_report_current_function): Likewise.
871         * dojump.c (do_jump): Likewise.
872         * dwarf2out.c (dwarf2_name): Likewise.
873         * except.c (init_eh): Likewise.
874         * explow.c (expr_size, int_expr_size): Likewise.
875         * expmed.c (make_tree, const_mult_add_overflow_p, expand_mult_add):
876         Likewise.
877         * expr.c (store_expr, store_constructor, safe_from_p,
878         expand_expr_real, do_store_flag, try_casesi): Likewise.
879         * function.c (push_function_context_to, pop_function_context_from,
880         free_after_parsing, assign_stack_local_1, assign_stack_temp_for_type,
881         put_var_into_stack, allocate_struct_function, current_function_name):
882         Likewise.
883         * integrate.c (copy_decl_for_inlining, expand_inline_function):
884         Likewise.
885         * langhooks.c (lhd_clear_binding_stack, write_global_declarations,
886         lhd_print_error_function): Likewise.
887         * opts.c (handle_option, decode_options): Likewise.
888         * passes.c (open_dump_file): Likewise.
889         * print-tree.c (print_node): Likewise.
890         * stmt.c (expand_fixup, fixup_gotos, expand_asm_operands,
891         expand_decl_cleanup, emit_case_nodes): Likewise.
892         * stor-layout.c (variable_size): Likewise.
893         * toplev.c (announce_function, wrapup_global_declarations,
894         check_global_declarations, compile_file, default_tree_printer,
895         process_options, lang_dependent_init, finalize): Likewise.
896         * tree-dump.c (dequeue_and_dump): Likewise.
897         * tree-inline.c (remap_decl, remap_block, copy_body_r,
898         initialize_inlined_parameters, declare_return_variable,
899         inlinable_function_p, expand_call_inline, optimize_inline_calls,
900         walk_tree, copy_tree_r): Likewise.
901         * tree-optimize.c (tree_rest_of_compilation): Likewise.
902         * tree.c (decl_assembler_name, tree_size, size_in_bytes, staticp,
903         unsafe_for_reeval, get_unwidened, get_narrower, get_callee_fndecl,
904         variably_modified_type_p, dump_tree_statistics): Likewise.
905         * varasm.c (assemble_variable, compare_constant, copy_constant,
906         force_const_mem, compute_reloc_for_constant, output_constant,
907         output_addressed_constants, initializer_constant_valid_p): Likewise.
908
909 2004-03-14  Kelley Cook  <kcook@gcc.gnu.org>
910
911         * doc/install.texi: Make autoconf 2.13 the exception, not the rule.
912
913 2004-03-14  Andreas Tobler  <a.tobler@schweiz.ch>
914
915         * doc/install.texi: Reflect autoconf and automake version for
916         libffi. Update autoconf version to 2.59.
917
918 2004-03-13  Roger Sayle  <roger@eyesopen.com>
919
920         * fold-const.c (negate_expr, operand_equal_for_comparison_p,
921         optimize_bit_field_compare, decode_field_reference, all_ones_mask_p,
922         make_range, build_range_check, fold_range_test, unextend,
923         constant_boolean_node, fold_binary_op_with_conditional_arg,
924         fold_truthop, fold_mathfn_compare, fold_inf_compare,
925         fold_single_bit_test, fold): Replace calls via (*lang_hooks.foo) ()
926         with lang_hooks.foo ().
927
928 2004-03-14  Richard Earnshaw  <rearnsha@arm.com>
929
930         * arm.h (EXTRA_CONSTRAINT_STR_ARM): Update comment.
931
932 2004-03-13  Dara Hazeghi  <dhazeghi@yahoo.com>
933
934         * doc/install.texi: Note status of -fnew-ra.
935
936 2004-03-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
937
938         PR middle-end/14470
939         * expr.c (store_expr): Call emit_queue before generating the move
940         from the temporary to the original target.  Protect the temporary
941         from emit_queue.
942
943 2004-03-13  Jakub Jelinek  <jakub@redhat.com>
944
945         PR target/14533
946         * config/s390/s390.c (legitimize_pic_address): Don't abort on UNSPEC
947         other than UNSPEC_GOTOFF.
948
949 2004-03-13  Richard Earnshaw  <rearnsha@arm.com>
950
951         * arm.c (arm_legitimate_address_p): New argument, OUTER.  Pass through
952         to arm_legitimate_index_p.  Update all callers with SET as default
953         value.
954         (arm_legitimate_index_p): New argument, OUTER.  Restrict the index
955         range if OUTER is a sign-extend operation on QImode.  Correctly
956         reject shift operations on sign-extended QImode addresses.
957         (bad_signed_byte_operand): Delete.
958         (arm_extendqisi_mem_op): New function.
959         * arm.h (EXTRA_CONSTRAINT_ARM): Delete.  Replace with...
960         (EXTRA_CONSTRAINT_STR_ARM): ... this.  Handle extended address
961         constraints.
962         (CONSTRAINT_LEN): New.
963         (EXTRA_CONSTRAINT): Delete.  Replace with...
964         (EXTRA_CONSTRAINT_STR): ... this.
965         (PREDICATE_CODES): Remove bad_signed_byte_operand.
966         * arm.md (extendqihi_insn): Use new constraint Uq.  Rework.  Length
967         is now always default.
968         (define_splits for bad sign-extend loads): Delete.
969         (arm_extendqisi, arm_extendqisi_v5): Likewise.
970         * arm/vfp.md (arm_movsi_vfp, arm_movdi_vfp, movsf_vfp, movdf_vfp):
971         Rework 'U' constraint to 'Uv'.
972         * arm-protos.h: Remove bad_signed_byte_operand.  Add
973         arm_extendqisi_mem_op.
974         * doc/md.texi (ARM constraints): Rename VFP constraint (now Uv).
975         Add Uq constraint.
976
977 2004-03-13  Alan Modra  <amodra@bigpond.net.au>
978
979         * config/rs6000/rs6000.c (rs6000_va_arg): Replace SPLIT_COMPLEX_ARGS
980         with targetm version.
981
982         PR target/14567
983         * config/rs6000/rs6000.h (UNITS_PER_ARG, RS6000_ARG_SIZE): Delete.
984         (HARD_REGNO_MODE_OK): Disallow TFmode for fp31.
985         * config/rs6000/rs6000.c (rs6000_arg_size): New function.
986         Update all users of RS6000_ARG_SIZE.
987         (function_arg_advance): Count fregno using mode size.
988         (function_arg): Handle long double split over regs and memory.
989         (function_arg_partial_nregs): Likewise.
990         (rs6000_va_arg): Repackage complex args.
991
992 2004-03-13  Dean Ferreyra <dferreyra@igc.org>
993
994         PR target/14047
995         * config/avr/avr.c (avr_progmem_p): Add "attributes" parameter.
996         (avr_insert_attributes): Pass "attributes" to avr_progmem_p.
997         * config/avr/avr-protos.h (avr_progmem_p): Change prototype.
998
999 2004-03-12  Jakub Jelinek  <jakub@redhat.com>
1000
1001         * config/rs6000/rs6000-protos.h (rs6000_output_dwarf_dtprel): Add
1002         prototype.
1003         * config/rs6000/rs6000.c (rs6000_output_dwarf_dtprel): New.
1004         * config/rs6000/rs6000.h (ASM_OUTPUT_DWARF_DTPREL): Define.
1005
1006 2003-03-12  Andrew Pinski  <apinski@apple.com>
1007
1008         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
1009         Use ret instead of result. Use addr instead of base.
1010
1011 2004-03-12  David Edelsohn  <edelsohn@gnu.org>
1012
1013         * doc/install.texi (*-ibm-aix*): Document assembler and achiver
1014         fixes required by libstdc++ and update installation instructions
1015         for libstdc++.a.
1016
1017 2004-03-12  Danny Smith  <dannysmith@users.sourceforge.net>
1018
1019         * config/i386/winnt.c (i386_pe_strip_name_encoding_full): Strip
1020         leading '@' on fastcall symbols before stripping suffix.
1021
1022 2004-03-12  Roger Sayle  <roger@eyesopen.com>
1023
1024         * combine.c (unmentioned_reg_p): New function to check whether an
1025         expression is a "specialization" of another, i.e. that there are
1026         no registers or memory references mentioned in the first that don't
1027         appear in the second.
1028         (unmentioned_reg_p_1): New helper subroutine of unmentioned_reg_p.
1029         (combine_instructions): Also try combining instructions using the
1030         REG_EQUAL note from a preceding log-linked instruction.
1031
1032 2004-03-12  Roger Sayle  <roger@eyesopen.com>
1033
1034         * config/i386/i386.c (ix86_split_ashrdi): Optimize shift by 63.
1035
1036 2004-03-12  Matt Austern  <austern@apple.com>
1037
1038         * target.h (struct gcc_target): New target hook, unwind_label.
1039         * target-def.h (TARGET_ASM_EMIT_UNWIND_LABEL): New hook.
1040         * output.h (default_emit_unwind_label): New function.
1041         * default.h (TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY): New macro.
1042         (TARGET_USES_WEAK_UNWIND_INFO): New target macro.
1043         (TARGET_SUPPORTS_HIDDEN): New target macro.
1044         * dwarf2out.c (struct dw_fde_struct): Add field for function decl
1045         that corresponds to this FDE.
1046         (FRAME_BEGIN_LABEL): Allow target to override default label.
1047         (output_call_frame_info): If FDEs are linknonce, then use extra
1048         indirection for FDE encoding, output a label for each FDE, and
1049         output an empty label for each function without an FDE.
1050         (dwarf2out_begin_prologue): Set up decl field when creating an FDE.
1051         * varasm.c (globalize_decl): Call ASM_MAKE_LABEL_LINKONCE for
1052         decls with DECL_ONE_ONLY set, if that macro is defined.
1053         (make_decl_one_only): Don't use DECL_COMMON if we're compiling
1054         for a SUPPORTS_ONE_ONLY target.
1055         * config/darwin-protos.h (darwin_unique_section): Declare.
1056         (darwin_asm_named_section): Likewise.
1057         (darwin_section_type_flags): Likewise.
1058         (darwin_non_lazy_pcrel): Likewise.
1059         (darwin_emit_unwind_label): Likewise.
1060         (darwin_make_decl_one_only): Likewise.
1061         * config/darwin.c (machopic_finish): Get rid of tweak that
1062         eliminate stubs for symbols that are defined.
1063         (darwin_encode_section_info): Don't treat weak functions as defined.
1064         (darwin_make_decl_one_only): Define.
1065         (darwin_asm_named_section): Likewise.
1066         (darwin_section_type_flags): Likewise.
1067         (darwin_unique_section): Likewise.
1068         (darwin_emit_unwind_label): Likewise.
1069         (darwin_non_lazy_pcrel): Likewise.
1070         (darwin_asm_output_dwarf_delta): Difference between two labels is
1071         local only if both labels are local.
1072         * config/darwin.h (MAKE_DECL_ONE_ONLY): Define.
1073         (ASM_MAKE_LABEL_LINKONCE): Likewise.
1074         (TARGET_SUPPORTS_HIDDEN): Likewise.
1075         (TARGET_USES_WEAK_UNWIND_INFO): Likewise.
1076         (TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY): Likewise.
1077         (FRAME_BEGIN_LABEL): Likewise.
1078         (ASM_DECLARE_OBJECT_NAME): Make references to weak symbols indirect.
1079         (ASM_DECLARE_FUNCTION_NAME): Likewise.
1080         (darwin_eh_frame_section): Give __eh_frame section the coalesced flag.
1081         (TARGET_ASM_UNIQUE_SECTION): Define.
1082         (EH_FRAME_SECTION_NAME): Define.
1083         (EH_FRAME_SECTION_ATTR): Likewise.
1084         (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX): Likewise.
1085         (TARGET_ASM_NAMED_SECTION): Likewise.
1086         (TARGET_SECTION_TYPE_FLAGS): Likewise.
1087         * doc/tm.texi: Document TARGET_USES_WEAK_UNWIND_INFO,
1088         TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY, TARGET_SUPPORTS_HIDDEN,
1089         TARGET_ASM_EMIT_UNWIND_LABEL.
1090
1091 2004-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1092
1093         * builtins.c (expand_builtin_mathfn): Add pow10* to the
1094         existing exp10* case.
1095         (expand_builtin): Likewise.
1096
1097 2004-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
1098
1099         * doc/tm.texi (registers) <Values in Registers>: Add
1100         entry for REGMODE_NATURAL_SIZE.
1101
1102 2004-03-12  Richard Henderson  <rth@redhat.com>
1103
1104         PR target/14547
1105         * target.h (struct gcc_target): Move calls substructure before
1106         booleans.  Add split_complex_arg.
1107         * function.c (assign_parms, split_complex_args): Use it.
1108         * calls.c (expand_call): Likewise.
1109         (split_complex_values): Likewise.  Check for splittable types
1110         before allocating memory.
1111         (split_complex_types): Likewise.
1112         * system.h (SPLIT_COMPLEX_ARGS): Poison.
1113         * expr.h (SPLIT_COMPLEX_ARGS): Remove.
1114         * target-def.h (TARGET_SPLIT_COMPLEX_ARG): New.
1115         * config/alpha/alpha.c (alpha_split_complex_arg): New.
1116         (TARGET_SPLIT_COMPLEX_ARG): New.
1117         * config/alpha/alpha.h (SPLIT_COMPLEX_ARGS): Remove.
1118         * config/rs6000/rs6000.c (TARGET_SPLIT_COMPLEX_ARG): New.
1119         (rs6000_override_options): Zap it for non-AIX.
1120         (rs6000_function_value): Use targetm.calls.split_complex_arg.
1121         * config/rs6000/rs6000.h (SPLIT_COMPLEX_ARGS): Remove.
1122         * config/xtensa/xtensa.c (TARGET_SPLIT_COMPLEX_ARG): New.
1123         * config/xtensa/xtensa.h (SPLIT_COMPLEX_ARGS): Remove.
1124         * doc/tm.texi (TARGET_SPLIT_COMPLEX_ARG): Modify from old
1125         SPLIT_COMPLEX_ARGS entry.
1126
1127 2004-03-11  Richard Henderson  <rth@redhat.com>
1128
1129         * config/alpha/alpha.c (xfloating_ops, vax_cvt_ops): New.
1130         (alpha_lookup_xfloating_lib_func): Use them, return rtx.
1131         (alpha_emit_xfloating_arith): Update to match.
1132         (alpha_emit_xfloating_compare): Likewise.
1133         (alpha_emit_xfloating_cvt): Likewise.
1134         (alpha_emit_xfloating_libcall): Take already built symbol,
1135         mark call const.
1136         * config/alpha/alpha.md (extendsftf2, extenddftf2): Take
1137         op1 in a register.
1138
1139 2004-03-11  Richard Henderson  <rth@redhat.com>
1140
1141         PR target/14539
1142         * config/alpha/alpha.h (STACK_BOUNDARY): Set to 128.
1143
1144         * simplify-rtx.c (simplify_relational_operation): Fix typo.
1145
1146 2004-03-11  Richard Henderson  <rth@redhat.com>
1147
1148         PR middle-end/14477
1149         * except.c (remove_unreachable_regions): Look thru CALL_PLACEHOLDER.
1150
1151 2004-03-11  Ulrich Weigand  <uweigand@de.ibm.com>
1152
1153         PR target/14262
1154         * calls.c (load_register_parameters): If BLOCK_REG_PADDING is not
1155         defined, pass small BLKmode values in registers in the low-order part.
1156
1157 2004-03-11  Ulrich Weigand  <uweigand@de.ibm.com>
1158
1159         * combine.c (if_then_else_cond): Check for NULL return value of
1160         simplify_gen_subreg.
1161
1162 2004-03-11  Richard Sandiford  <rsandifo@redhat.com>
1163
1164         PR target/14496
1165         * config/mips/mips.h (UNITS_PER_FPVALUE): Fix value for
1166         TARGET_SINGLE_FLOAT.
1167
1168 2004-03-11  Steve Ellcey  <sje@cup.hp.com>
1169
1170         * config/ia64/hpux.h (TARGET_INIT_LIBFUNCS): Add undef.
1171         * config/ia64/ia64.h (TARGET_INIT_LIBFUNCS): Add define.
1172         * config/ia64/ia64.c (ia64_init_libfuncs): New.
1173         (ia64_hpux_init_libfuncs): Add call to ia64_init_libfuncs.
1174
1175 2004-03-11  Roger Sayle  <roger@eyesopen.com>
1176
1177         * fold-const.c (negate_expr_p) <RSHIFT_EXPR>: We can optimize
1178         -((int)X>>C) where C is an integer constant one bit less than the
1179         size of X into (unsigned)X>>C.  Similarly for unsigned->signed.
1180         (negate_expr) <RSHIFT_EXPR>: Implement the above transformations.
1181
1182         * simplify-rtx.c (simplify_unary_operation): Also implement the
1183         above transformations at the RTL level.
1184
1185 2004-03-11  Alan Modra  <amodra@bigpond.net.au>
1186
1187         * real.c (encode_ibm_extended): Do round low word.
1188
1189 2004-03-11  Ben Elliston  <bje@wasabisystems.com>
1190
1191         * config/arm/arm.md (is_xscale): Comment this attribute and move
1192         it a bit further up in the file, closer to related attributes.
1193
1194 2004-03-11  Eric Botcazou  <ebotcazou@libertysurf.fr>
1195
1196         * config/host-solaris.c (sol_gt_pch_use_address): Add
1197         missing terminating marker to comment.
1198
1199 2004-03-11  Richard Sandiford  <rsandifo@redhat.com>
1200
1201         * config/mips/mips.md: Use move_operand in splitters for 64-bit moves.
1202         (movdi, movsi, movhi, movqi, movsf, movdf): Remove predicates.
1203         (*movdi_32bit_mips16, *movsi_mips16, *movhi_mips16, *movqi_mips16)
1204         (*movsf_mips16, *movdf_mips16):  Name unnamed patterns.  Use
1205         move_operand as source predicate in all cases.
1206         (*movdi_32bit): Renamed from movdi_internal.  Remove 'F' constraint.
1207         Test reg_or_0_operand.  Use move_operand as source predicate.
1208         (*movdi_64bit): Renamed from movdi_internal2.  Test reg_or_0_operand.
1209         (*movdi_64bit_mips16): Renamed from movdi_internal2_mips16.
1210         (*movsi_internal): Renamed from movsi_internal.  Test reg_or_0_operand.
1211         (movhi, movqi, movsf, movdf): Use mips_legitimize_move.
1212         (*movhi_internal): Renamed from movhi_internal.  Test reg_or_0_operand.
1213         Use move_operand as source predicate.  Remove 'K' constraint.
1214         (*movqi_internal): Likewise movqi_internal.
1215         (*movsf_hardfloat): Renamed from movsf_internal1.  Test
1216         reg_or_0_operand.  Use move_operand as source predicate.
1217         (*movsf_softfloat): Likewise movsf_internal2.
1218         (*movdf_hardfloat_64bit): Likewise movsf_internal1a.
1219         (*movdf_hardfloat_32bit): Likewise movsf_internal1b.
1220         (*movdf_softfloat): Likewise movdf_internal2.
1221         * config/mips/mips.c (move_operand): Match arbitrary CONST_INTs
1222         for DImode if !TARGET_64BIT.
1223         (mips_legitimize_move): Simplify accordingly.
1224
1225 2004-03-11  Josef Zlomek  <zlomekj@suse.cz>
1226
1227         PR/14362
1228         * var-tracking.c (struct variable_def): Added field refcount.
1229         (variable_htab_free): Decrease the refcount and delete variable
1230         only if there are no more references.
1231         (unshare_variable): New function.
1232         (vars_copy_1): Increase refcount instead of copying the variable.
1233         (variable_union): Share the variables where possible, unshare
1234         the variables if needed.
1235         (variable_different_p): Return false if var1 and var2 are
1236         the same structure.
1237         (variable_was_changed): Init the refcount of new variable.
1238         (set_frame_base_location): Unshare variable if needed.
1239         (set_variable_part): Init the refcount of new variable.
1240         Unshare the variables if needed.
1241         (delete_variable_part): Unshare the variables if needed.
1242         (emit_notes_for_differences_1): Init the refcount of new variable.
1243         (vt_add_function_parameters): Do not add function parameters to
1244         IN set of ENTRY_BLOCK_PTR because it is unused anyway.
1245         (vt_initialize): Do not add frame_base_decl to IN set of
1246         ENTRY_BLOCK_PTR because it is unused anyway.
1247
1248 2004-03-11  Josef Zlomek  <zlomekj@suse.cz>
1249
1250         * var-tracking.c (vars_copy_1): Cleanup and speedup chain operations.
1251         (vars_copy): Likewise.
1252         (variable_union): Likewise.
1253         (set_variable_part): Likewise.
1254         (delete_variable_part): Likewise.
1255
1256 2004-03-11  Kazu Hirata  <kazu@cs.umass.edu>
1257
1258         * c-typeck.c, combine.c, cse.c, dominance.c, et-forest.h,
1259         ggc-page.c, var-tracking.c, config/fp-bit.c, config/c4x/c4x.c,
1260         config/cris/cris.c, config/i386/ppro.md, config/i860/i860.c,
1261         config/i860/i860.h, config/m32r/m32r.h, config/m32r/xm-m32r.h,
1262         config/m68hc11/m68hc11.h, config/m68hc11/m68hc11.md,
1263         config/mips/mips.c, config/mmix/mmix.c, config/ns32k/ns32k.h,
1264         config/pa/pa.c, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
1265         config/pdp11/pdp11.h, config/rs6000/rs6000.c,
1266         config/stormy16/stormy16.c: Fix comment typos and formatting.
1267
1268 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
1269
1270         * configure: Regenerate, since I forgot to while committing Paolo's
1271         changes.
1272
1273 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
1274
1275         PR ada/14131
1276         Move language detection to the top level.
1277         * configure.ac: Remove code to detect languages,
1278         it now lives exclusively in the top level.
1279         * aclocal.m4 (gcc_AC_PROG_GNAT): Moved to the
1280         top level, renamed to ACX_PROG_GNAT.
1281
1282 2004-03-10  Richard Henderson  <rth@redhat.com>
1283
1284         * c-pch.c (c_common_no_more_pch): Update for gt_pch_use_address
1285         extra arguments.
1286         * config.host (*-*-solaris2*, *-*-linux*): Add out_host_hook_obj
1287         and host_xmake_file fragments.
1288         * ggc-common.c (gt_pch_save): Update for gt_pch_get_address change.
1289         (gt_pch_restore): Similarly for gt_pch_use_address.
1290         (default_gt_pch_get_address): New.
1291         (mmap_gt_pch_get_address): Split out of gt_pch_save.
1292         (default_gt_pch_use_address): Split out of gt_pch_restore.
1293         (mmap_gt_pch_use_address): Likewise.
1294         * hooks.c (hook_voidp_size_t_null): Remove.
1295         (hook_bool_voidp_size_t_false): Remove.
1296         * hooks.h: Likewise.
1297         * hosthooks-def.h (HOST_HOOKS_GT_PCH_GET_ADDRESS): Use one of the
1298         default_ or mmap_ definitions.
1299         (HOST_HOOKS_GT_PCH_USE_ADDRESS): Likewise.
1300         * hosthooks.h (struct host_hooks): Update gt_pch_get_address
1301         and gt_pch_use_address.
1302         * config/host-linux.c, config/host-solaris.c: New files.
1303         * config/x-linux, config/x-solaris: New files.
1304         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_get_address):
1305         Update for changed definition.
1306         (darwin_rs6000_gt_pch_use_address): Likewise.
1307         * doc/hostconfig.texi: Update docs.
1308
1309 2004-03-10  Richard Henderson  <rth@redhat.com>
1310
1311         PR c/14517
1312         * c-decl.c (grokdeclarator): Don't warn for duplicate qualifiers
1313         except for pedantic c90 mode.
1314
1315 2004-03-10  Kelley Cook  <kcook@gcc.gnu.org>
1316
1317         * configure.ac: Bump AC_PREREQ to 2.59.
1318         * configure: Regenerate.
1319
1320 2004-03-10  Uros Bizjak  <uros@kss-loka.si>
1321
1322         * optabs.h (enum optab_index): Add new OTI_exp10 and OTI_exp2.
1323         (exp10_optab, exp2_optab): Define corresponding macros.
1324         * optabs.c (init_optabs): Initialize exp10_optab and exp2_optab.
1325         * genopinit.c (optabs): Implement exp10_optab and exp2_optab
1326         using exp10?f2 and exp2?f2 patterns.
1327         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_EXP10{,F,L}
1328         using exp10_optab, and BUILT_IN_EXP2{,F,L} using exp2_optab.
1329         (expand_builtin): Expand BUILT_IN_EXP10{,F,L} and BUILT_IN_EXP2{,F,L}
1330         using expand_builtin_mathfn if flag_unsafe_math_optimizations is set.
1331
1332         * config/i386/i386.md (exp10sf2, exp10df2, exp10xf2, exp2sf2,
1333         exp2df2, exp2xf2): New patterns to implement exp10, exp10f, exp10l,
1334         exp2, exp2f and exp2l built-ins as inline x87 intrinsics.
1335
1336 2004-03-10  Anthony Green  <green@redhat.com>
1337
1338         * doc/invoke.texi (ARM Options): Fix -mpfu typo.
1339
1340 2004-03-10  David Edelsohn  <edelsohn@gnu.org>
1341
1342         * config/rs6000/aix.h (TARGET_OS_CPP_BUILTINS): Rename to ...
1343         (TARGET_OS_AIX_CPP_BUILTINS): this.  Conditionally define
1344         __LONGDOUBLE128.
1345         * config/rs6000/aix41.h (TARGET_OS_CPP_BUILTINS): Use
1346         TARGET_OS_AIX_CPP_BUILTINS.
1347         * config/rs6000/aix43.h (TARGET_OS_CPP_BUILTINS): Same.
1348         * config/rs6000/aix51.h (TARGET_OS_CPP_BUILTINS): Same.
1349         * config/rs6000/aix52.h (TARGET_OS_CPP_BUILTINS): Same.
1350         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Revert
1351         previous change.
1352
1353 2004-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1354
1355         * fold-const.c (tree_expr_nonnegative_p): Add more builtin cases.
1356
1357 2004-03-10  David Edelsohn  <edelsohn@gnu.org>
1358
1359         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
1360         __LONGDOUBLE128 on AIX.
1361
1362 2004-03-10  Andrew Haley  <aph@redhat.com>
1363
1364         PR optimization/14381
1365         * function.c (expand_function_end): Emit a blockage insn before
1366         the epilogue when -fnon-call-exceptions is used.
1367
1368         * except.c (expand_start_all_catch): Make comment more accurate.
1369
1370 2004-03-08  Joel Sherrill  <joel@oarcorp.com>
1371
1372         PR target/14480
1373         * config/rs6000/t-rtems: Add missing file on branch.
1374
1375 2004-03-10  Ulrich Weigand  <uweigand@de.ibm.com>
1376
1377         * dbxout.c (dbxout_symbol_location): Do not output references
1378         to optimized-out constant pool symbols.
1379
1380 2004-03-10  Andreas Schwab  <schwab@suse.de>
1381
1382         * config/ia64/ia64.md (divsi3, udivsi3): Remove unused variable
1383         twon34_r.
1384
1385 2004-03-09  James E Wilson  <wilson@specifixinc.com>
1386
1387         * alias.c (alias_sets_might_conflict_p): New.
1388         * c-typeck.c (build_c_cast): Call it if warn_strict_aliasing > 1.
1389         * common.opt (Wstrict-aliasing=): New.
1390         * flags.h (warn_strict_aliasing): Change type to int.
1391         * opts.c (warn_strict_aliasing): Change type to int.
1392         (common_handle_option): Handle OPT_Wstrict_aliasing_.
1393         * tree.h (alias_sets_might_conflict_p): Declare it.
1394         * doc/invoke.tex (-Wstrict-aliasing=2): Document it.
1395
1396 2004-03-10  Roman Zippel  <zippel@linux-m68k.org>
1397
1398         PR bootstrap/12371
1399         * config/m68k/m68k.h (FIXED_REGISTERS): Add arg pointer.
1400         (CALL_USED_REGISTERS): Likewise.
1401         (REG_CLASS_CONTENTS): Likewise.
1402         (REG_ALLOC_ORDER): New.
1403         (REGNO_REG_CLASS): Use regno_reg_class.
1404         * config/m68k/m68k.c: Add regno_reg_class array.
1405
1406 2004-03-09  Steve Ellcey  <sje@cup.hp.com>
1407
1408         * config/ia64/ia64.md (divsi3): Fix algorithm.
1409           (udivsi3): Ditto.
1410           (setf_exp_xf): Remove '*' from name.
1411         * testsuite/gcc.dg/20040309-1.c: New test.
1412
1413 2004-03-09  Ian Lance Taylor  <ian@wasabisystems.com>
1414
1415         * system.h (SUNOS4_SHARED_LIBRARIES): Poison.
1416         * collect2.c: Remove SUNOS4_SHARED_LIBRARIES code.
1417         * config/sparc/aout.h (TARGET_ASM_SELECT_SECTION): Don't define.
1418         * config/sparc/sparc.c (sparc_aout_select_section): Remove.
1419         (sparc_aout_select_rtx_section): Don't check
1420         SUNOS4_SHARED_LIBRARIES.
1421         * config/sparc/sparc.h (SUNOS4_SHARED_LIBRARIES): Don't define.
1422
1423 2004-03-10  Hans-Peter Nilsson  <hp@axis.com>
1424
1425         PR other/14474
1426         * doc/md.texi (Pattern Ordering, Dependent Patterns)
1427         (Jump Patterns, Looping Patterns): Wrap in separate "@ifset
1428         INTERNALS".
1429
1430 2004-03-09  Zack Weinberg  <zack@codesourcery.com>
1431
1432         * config/ia64/hpux.h (MULTILIB_DEFAULTS): Define.
1433         (LIBGCC_SPEC): Update to match.
1434
1435 2004-03-09  Zack Weinberg  <zack@codesourcery.com>
1436
1437         * c-decl.c (last_function_parms, last_function_parm_tags)
1438         (last_function_parm_others, current_function_parms)
1439         (current_function_parm_tags, current_function_parm_others):
1440         Delete.
1441         (ARG_INFO_PARMS, ARG_INFO_TAGS, ARG_INFO_TYPES, ARG_INFO_OTHERS):
1442         New macros.
1443         (grokdeclarator): For function definitions, save the arg-info
1444         block from the declarator in DECL_ARGUMENTS.
1445         (grokparms): Do not write to last_function_parm*.  Use ARG_INFO_*
1446         macros to operate on arg-info block.  Can assume ARG_INFO_PARMS
1447         contains only PARM_DECLs.  Improve diagnostics.
1448         (get_parm_info): Use ARG_INFO_* macros.  Improve comments and
1449         diagnostics.  Disable some expensive checks if not ENABLE_CHECKING.
1450         (store_parm_decls_newstyle): Take the function to operate on,
1451         and an arg-info block, as arguments; don't get anything from
1452         current_function_* globals.
1453         (store_parm_decls_oldstyle): Likewise.
1454         (store_parm_decls): Pass fndecl and its arg-info block down to
1455         store_parm_decls_newstyle/oldstyle.  Send functions with empty
1456         argument lists through store_parm_decls_newstyle to reduce
1457         overhead.
1458         (pushdecl): Comment on the problems with the call to copy_node.
1459         Clear DECL_ARGUMENTS of the old node after copying it, if it
1460         is an arg-info block instead of a chain of decls.
1461         (start_function): Do not manipulate current_function_parm* or
1462         last_function_parm*.
1463
1464 2004-03-09  Roger Sayle  <roger@eyesopen.com>
1465             Andrew Pinski  <pinskia@physics.uc.edu>
1466
1467         * ifcvt.c (noce_try_sign_mask): New function to transform
1468         "x = (y < 0) ? z : 0" into the equivalent "x = (y >> C) & z".
1469         (noce_process_if_block): Call noce_try_sign_mask.
1470
1471 2004-03-09  Andrew Pinski  <apinski@apple.com>
1472
1473         * c-typeck.c (tagged_types_tu_compatible_p):
1474         Fix typo.
1475
1476 2004-03-09  Roger Sayle  <roger@eyesopen.com>
1477
1478         * simplify-rtx.c (simplify_const_relational_operation): New function
1479         renamed from simplify_relational_operation.
1480         (simplify_relational_operation): Change prototype to accept an
1481         additional mode argument.  Call simplify_const_relational_operation.
1482         (simplify_gen_relational): Update simplify_relational_operation call.
1483         (simplify_ternary_operation): Update simplify_relational_operation
1484         subroutine call to use simplify_const_relational_operation instead.
1485
1486         * rtl.h (simplify_const_relational_operation): Prototype here.
1487         (simplify_relational_operation): Add addtional mode argument.
1488
1489         * combine.c (combine_simplify_rtx): Update calls to
1490         simplify_relational_operation.
1491         (simplify_set): Likewise.
1492         (gen_binary): Likewise.
1493         * cse.c (fold_rtx): Likewise.
1494         * dojump.c (compare_from_rtx): Likewise.
1495         (do_compare_rtx_and_jump): Likewise.
1496         * integrate.c (subst_constants): Likewise.
1497         * unroll.c (simplify_cmp_and_jump_insns): Likewise.
1498
1499 2004-03-09  Kazu Hirata  <kazu@cs.umass.edu>
1500
1501         * config/m32r/m32r.md: Remove all define_peephole's.
1502
1503 2004-03-09  Alan Modra  <amodra@bigpond.net.au>
1504
1505         * config/rs6000/rs6000.md: Remove trailing whitespace.
1506
1507 2004-03-08  Eric Christopher  <echristo@redhat.com>
1508
1509         * Makefile.in (site.exp): Add libiconv variable definition.
1510
1511 2004-03-09  Hans-Peter Nilsson  <hp@axis.com>
1512
1513         * configure: Regenerate for config/accross.m4 correction.
1514
1515 2004-03-08  Joel Sherrill  <joel@oarcorp.com>
1516
1517         PR target/14480
1518         * config/rs6000/t-rtems: Add missing file on branch.
1519
1520 2004-03-08  Roger Sayle  <roger@eyesopen.com>
1521
1522         PR middle-end/14289
1523         * c-typeck.c (c_mark_addressable): A register variable should
1524         be considered global if its not automatic, i.e. TREE_PUBLIC,
1525         TREE_STATIC or DECL_EXTERNAL.
1526         * function.c (put_var_into_stack): Call abort when placing a
1527         hard register into the stack, if x_parm_reg_stack_loc is NULL.
1528
1529 2004-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
1530
1531         * config/s390/s390.md ("*extendqidi2_short_displ"): Add CC clobber.
1532         ("*extendqisi2_short_displ"): Likewise.
1533
1534 2004-03-08  Kazu Hirata  <kazu@cs.umass.edu>
1535
1536         * config/pdp11/pdp11.c (comparison_operator_index): Remove.
1537         (comp_operator): Likewise.
1538         * config/pdp11/pdp11-protos.h: Remove corresponding
1539         prototypes.
1540
1541 2004-03-08  Eric Botcazou  <ebotcazou@act-europe.fr>
1542
1543         * expr.c (highest_pow2_factor_for_type): Rename into
1544         highest_pow2_factor_for_target.  Use DECL_ALIGN instead of
1545         TYPE_ALIGN when the target is a COMPONENT_REF.
1546         (expand_assignment): Ajust call to highest_pow2_factor_for_type.
1547
1548 2004-03-08  Alan Modra  <amodra@bigpond.net.au>
1549
1550         * config/rs6000/rs6000.c: Formatting fix.
1551         (legitimate_offset_address_p): Correct offset range check.
1552
1553         * config/rs6000/rs6000.c (rs6000_override_options): Don't override
1554         -msoft-float by -mcpu.  Consolidate similar code for MASK_MULTIPLE
1555         and MASK_STRING.
1556
1557 2004-03-07  Aldy Hernandez  <aldyh@redhat.com>
1558
1559         * config/rs6000/rs6000.md (ashrdi3): Do not call ashrdi3_no_power
1560         for little endian.
1561         ("ashrdi3_no_power"): Disable for little endian.
1562         (ashrdi3): Same.
1563
1564 2004-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1565
1566         * fold-const.c (tree_expr_nonnegative_p): Reformat checks for
1567         builtins.
1568
1569 2004-03-08  Hans-Peter Nilsson  <hp@axis.com>
1570
1571         PR target/14471
1572         * configure.ac (Target-specific assembler checks) <cris-*-*>: New
1573         case, checking for -no-mul-bug-abort option.
1574         * configure, config.in: Regenerate.
1575         * doc/invoke.texi (CRIS Options): Document -mmul-bug-workaround
1576         and -mno-mul-bug-workaround.
1577         * config/cris/cris.md ("smulsi3_highpart", "umulsi3_highpart")
1578         ("mulsidi3", "umulsidi3"): Prefix output template with "%!".
1579         ("umulhisi3", "umulqihi3", "mulsi3", "mulqihi3", "mulhisi3"):
1580         Ditto.  Make attribute "slottable" dependent on TARGET_MUL_BUG.
1581         * config/cris/mulsi3.asm (__Mul) [__CRIS_arch_version >= 10]: Make
1582         sure mulu.d is not last on cache-line.
1583         * config/cris/cris.h (ASM_SPEC): Translate -mno-mul-bug-workaround
1584         into -no-mul-bug-abort depending on HAVE_AS_MUL_BUG_ABORT_OPTION.
1585         (TARGET_MASK_MUL_BUG, TARGET_MUL_BUG): New macros.
1586         (TARGET_SWITCHES): New options -mmul-bug-workaround and
1587         -mno-mul-bug-workaround.
1588         (TARGET_DEFAULT): Include TARGET_MASK_MUL_BUG.
1589         (PRINT_OPERAND_PUNCT_VALID_P): Include '!'.
1590         * config/cris/cris.c (cris_operand_extend_operator): Clarify
1591         relation to MULT in head comment.
1592         (cris_op_str): Abort for MULT.
1593         (cris_print_operand) <case '!'>: New case.
1594
1595 2004-03-08  Alan Modra  <amodra@bigpond.net.au>
1596
1597         PR debug/11983
1598         * dwarf2out.c (enum dw_val_class): Rename dw_val_class_float to
1599         dw_val_class_vec.  Replace use throughout file.
1600         (dw_float_const): Delete.
1601         (dw_vec_const): New.
1602         (dw_val_struct_union): Rename val_float to val_vec.  Replace use
1603         throughout file.
1604         (add_AT_vec): Rename from add_AT_float.  Add elt_size param.
1605         (same_dw_val_p): Adjust vec comparison.  Use memcmp.
1606         (size_of_die): Adjust dw_val_class_vec sizing.
1607         (output_die): Output dw_val_class_vec.
1608         (insert_int, extract_int, insert_float): New functions.
1609         (add_const_value_attribute): Use insert_float for CONST_DOUBLE.
1610         Handle CONST_VECTOR.
1611         (add_location_or_const_value_attribute): Handle CONST_VECTOR.
1612
1613 2004-03-07  Aldy Hernandez  <aldyh@redhat.com>
1614
1615         * config/rs6000/rs6000.c (rs6000_parse_abi_options): SPE and
1616         AltiVec abi cannot co-exist.
1617
1618         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Same.
1619
1620 2004-03-07  Jan Hubicka  <jh@suse.cz>
1621
1622         * except.c (emit_to_new_bb_before):  Break fallthru edges.
1623
1624 2004-03-07  Stephane Carrez  <stcarrez@nerim.fr>
1625
1626         * config/m68hc11/m68hc11.md ("*lshrsi3_const"): Disable for 68HC12.
1627         ("*lshrsi3"): Also accept an immediate for 68HC12.
1628         ("*ashrsi3_const"): Likewise.
1629         ("*ashrsi3"): Likewise.
1630         ("*ashlsi3_const"): Likewise.
1631         ("*ashlsi3"): Likewise.
1632         ("cmphi_1_hc12"): Compare two hard register by pushing them and
1633         comparing with a pop; don't use a split for that.
1634         ("cmphi split"): Disable compare split for 68HC12.
1635
1636         * config/m68hc11/m68hc11.c (m68hc11_notice_update_cc): Invalidate
1637         the status operands if they have side effects.
1638
1639 2004-03-07  Kazu Hirata  <kazu@cs.umass.edu>
1640
1641         * defaults.h (LEGITIMIZE_ADDRESS): Provide a default
1642         definition.
1643         * config/arc/arc.h, config/fr30/fr30.h, config/frv/frv.h,
1644         config/h8300/h8300.h, config/ia64/ia64.h,
1645         config/mcore/mcore.h, config/mmix/mmix.h,
1646         config/ns32k/ns32k.h, config/pdp11/pdp11.h,
1647         config/stormy16/stormy16.h, config/v850/v850.h,
1648         config/vax/vax.h (LEGITIMIZE_ADDRESS): Remove.
1649         * doc/tm.texi (LEGITIMIZE_ADDRESS): Mention the default
1650         definition.
1651
1652 2004-03-07  Roger Sayle  <roger@eyesopen.com>
1653
1654         * fold-const.c (fold) <IOR_EXPR>: Fold x | x as x.
1655         <XOR_EXPR>: Fold x ^ x as zero.
1656         <AND_EXPR>: Fold x & x as x.
1657
1658 2004-03-07  Roger Sayle  <roger@eyesopen.com>
1659
1660         * fold-const.c (fold) <EQ_EXPR>: Rewrite optimization to transform
1661         "foo++ == const" into "++foo == const+incr".
1662
1663 2004-03-07  Richard Sandiford  <rsandifo@redhat.com>
1664
1665         * config/mips/mips.c (mips_in_small_data_p): Return false if
1666         TARGET_ABICALLS.
1667
1668 2004-03-06  Stephane Carrez  <stcarrez@nerim.fr>
1669
1670         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Use 2,-sp to push
1671         the stack register.
1672         (expand_prologue): Don't make an interrupt or a trap handler a far
1673         symbol.
1674         (m68hc11_initial_elimination_offset): Likewise.
1675
1676 2004-03-06  Richard Henderson  <rth@redhat.com>
1677
1678         * config/alpha/alpha.c (alpha_in_small_data_p): False for functions.
1679
1680 2004-03-06  Kazu Hirata  <kazu@cs.umass.edu>
1681
1682         * config/ns32k/ns32k-protos.h: Add a prototype for
1683         ns32k_notice_update_cc.
1684         * config/ns32k/ns32k.c (ns32k_notice_update_cc): New.
1685         * config/ns32k/ns32k.h (NOTICE_UPDATE_CC): Call
1686         ns32k_notice_update_cc.
1687
1688 2004-03-06  Ulrich Weigand  <uweigand@de.ibm.com>
1689
1690         * config/s390/s390.md ("load_multiple", "*load_multiple_di",
1691         "*load_multiple_si"): Allow only if reload_completed.
1692         ("store_multiple", "*store_multiple_di", "*store_multiple_si"):
1693         Likewise.
1694
1695 2004-03-06  Kazu Hirata  <kazu@cs.umass.edu>
1696
1697         * config/vax/vax-protos.h: Add a prototype for
1698         vax_notice_update_cc.
1699         * config/vax/vax.c (vax_notice_update_cc): New.
1700         * config/vax/vax.h (NOTICE_UPDATE_CC): Call
1701         vax_notice_update_cc.
1702
1703 2004-03-06  David Edelsohn  <edelsohn@gnu.org>
1704
1705         * collect2.c (main): Only export initfunc and finifunc if
1706         LD_INIT_SWITCH not defined.
1707         (scan_prog_file): Only export constructors and destructors if
1708         LD_INIT_SWITCH not defined.  Only export symbols not found in
1709         shared objects.
1710
1711 2004-03-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
1712
1713         * pa.md (icacheflush): Reorder operands to make match_scratch operand
1714         last.
1715         * pa.h (INITIALIZE_TRAMPOLINE): Remove unnecessary scratch argument
1716         from calls to gen_icacheflush.
1717
1718 2004-03-06  Richard Henderson  <rth@redhat.com>
1719
1720         * config/alpha/alpha.h (MASK_LONG_DOUBLE_128): New.
1721         (TARGET_LONG_DOUBLE_128): New.
1722         (TARGET_SWITCHES): Add long-double-{128,64}.
1723         (TARGET_HAS_XFLOATING_LIBS): Default to TARGET_LONG_DOUBLE_128.
1724         (LONG_DOUBLE_TYPE_SIZE): Honor TARGET_LONG_DOUBLE_128.
1725         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): New.
1726         (WIDEST_HARDWARE_FP_SIZE): New.
1727         (TARGET_CPU_CPP_BUILTINS): Define __LONG_DOUBLE_128__.
1728         * config/alpha/alpha.c (override_options): Clear MASK_LONG_DOUBLE_128
1729         if TARGET_VAX_FLOAT.
1730         * config/alpha/osf5.h (LONG_DOUBLE_TYPE_SIZE): Remove.
1731         (TARGET_DEFAULT): Set MASK_LONG_DOUBLE_128.
1732
1733 2004-03-06  Richard Henderson  <rth@redhat.com>
1734
1735         * config/alpha/alpha.c (alpha_swapped_comparison_operator): Fix
1736         botched rtx class conversion.
1737
1738 2004-03-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1739
1740         * tree.h (BUILTIN_EXP10_P, BUILTIN_EXPONENT_P, BUILTIN_SQRT_P,
1741         BUILTIN_CBRT_P, BUILTIN_ROOT_P): New macros.
1742
1743         * builtins.c (fold_builtin_logarithm, fold_builtin): Use new
1744         macros.
1745         * fold-const.c (fold_mathfn_compare, fold): Likewise.
1746
1747 2004-03-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
1748
1749         PR target/14343
1750         * config/i386/i386.md (movv2di_internal): Conditionalize on
1751         TARGET_SSE, not TARGET_SSE2.
1752
1753 2004-03-05  Chris Demetriou  <cgd@broadcom.com>
1754
1755         * config.gcc (mips64orion-*-elf*, mips64orionel-*-elf*): Delete
1756         duplicated line.
1757
1758 2004-03-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1759
1760         * builtins.c: Consistently use logN not log* in comments.
1761
1762 2004-03-05  Andreas Krebbel  <krebbel1@de.ibm.com>
1763
1764         * rtl.h (mem_expr_equal_p): Function prototype added.
1765         * cfgcleanup.c (merge_memattrs): New function.
1766         (flow_find_cross_jump): Call merge_memattrs for matching insns.
1767         * emit-rtl.c (mem_expr_equal_p): New function.
1768
1769 2004-03-05  Ziemowit Laski  <zlaski@apple.com>
1770
1771         * objc/objc-act.c (synth_module_prologue): Const-qualify
1772         objc_selector type if using the GNU runtime; fix generated
1773         signatures for objc_msg_lookup and objc_msg_lookup_super
1774         to match what GNU ObjC headers provide; reformat and clean up.
1775         (synth_self_and_ucmd_args): Use previously constructed (and
1776         hence possibly const-qualified) objc_selector type.
1777
1778 2004-03-05  Kazu Hirata  <kazu@cs.umass.edu>
1779
1780         * doc/tm.texi (HARD_REGNO_RENAME_OK): Document.
1781
1782 2004-03-05  Jason Merrill  <jason@redhat.com>
1783
1784         * tree.h (TYPE_HASH): Use TYPE_UID.
1785         (TREE_HASH): New macro with old definition of TYPE_HASH.
1786         * tree.c (build_type_attribute_variant): Use iterative_hash_object.
1787         (build_array_type, build_function_type): Likewise.
1788         (build_method_type_directly): Likewise.
1789         (build_offset_type, build_complex_type): Likewise.
1790         (type_hash_list, attribute_hash_list): Likewise. Now static.
1791         * except.c: s/TYPE_HASH/TREE_HASH/.
1792
1793 2004-03-05  Bob Wilson  <bob.wilson@acm.org>
1794
1795         * config/xtensa/xtensa.c (function_arg): Handle 16-byte aligned args.
1796         (xtensa_va_start): Initialize __va_stk to ($arg_ptr - 32).  Adjust
1797         __va_ndx by 2 words when referencing an argument on the stack.
1798         (xtensa_va_arg): Handle 16-byte aligned args.  Adjust __va_ndx by 2
1799         words when an arg on the stack is first seen.
1800
1801 2004-03-05  Paul Brook  <paul@codesourcery.com>
1802
1803         * arm.h (ARM_FLAG_VFP): Remove.
1804         (ARM_FLAG_ATPCS, CIRRUS_FIX_INVALID_INSNS): Renumber.
1805         * netbsd-elf.h (ARM_FLAG_VFP): Remove.
1806
1807 2004-03-05  Paul Brook  <paul@codesourcery.com>
1808
1809         * function.c (assign_parms): Include pretend alignment offset.
1810
1811 2004-03-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1812
1813         * stor-layout.c (layout_type, case FUNCTION_TYPE): Make size
1814         FUNCTION_BOUNDARY, not POINTER_SIZE * 2.
1815
1816 2004-03-05  Ian Lance Taylor  <ian@wasabisystems.com>
1817
1818         * configure.ac: When passing --enable-languages to subdir
1819         configure when host != build, make sure we don't pass an empty
1820         value.
1821         * configure: Regenerate.
1822
1823 2004-03-05  Nathan Sidwell  <nathan@codesourcery.com>
1824
1825         PR 13577
1826         * gcc.c (cc1_options): Robustify -auxbase-strip from multiple -o
1827         options.
1828
1829 2004-03-05  Paolo Bonzini  <bonzini@gnu.org>
1830
1831         * simplify-rtx.c (simplify_relational_operation): If
1832         flag_wrapv is set, do not move terms between the two
1833         side of a relational operator.
1834
1835 2004-03-05  Paolo Bonzini  <bonzini@gnu.org>
1836
1837         * rtlanal.c: Include target.h and output.h
1838         (rtx_cost, address_cost, default_address_cost): Move from...
1839         * cse.c (rtx_cost, address_cost, default_address_cost):
1840         ... this file.
1841         * rtl.h (rtx_cost, address_cost): Move under rtlanal.c.
1842         * Makefile.in: Adjust dependencies.
1843
1844 2004-03-05  Paolo Bonzini <bonzini@gnu.org>
1845
1846         * cse.c (cse_end_of_basic_block): Make static.
1847         * local-alloc.c (function_invariant_p): Move to
1848         reload1.c.
1849         * loop.c (libcall_other_reg, record_excess_regs):
1850         Make static.
1851         * reload1.c (function_invariant_p): Moved here
1852         from local-alloc.c, made static.
1853         * rtl.h (cse_end_of_basic_block, function_invariant_p,
1854         libcall_other_reg, record_excess_regs): Remove
1855         declarations.
1856
1857 2004-03-05  Kazu Hirata  <kazu@cs.umass.edu>
1858
1859         * config/m32r/m32r.c (signed_comparison_operator): Add a
1860         missing parenthesis.
1861
1862 2004-03-04  Ian Lance Taylor  <ian@wasabisystems.com>
1863
1864         * ggc-common.c (gt_pch_restore): Don't unmap addr unless we are
1865         going to call mmap again.  Read the file into the right place.
1866         Give a fatal error if we have to relocate.
1867
1868 2004-03-04  Bob Wilson  <bob.wilson@acm.org>
1869
1870         * config/xtensa/xtensa.c (xtensa_return_in_msb): New function.
1871         (TARGET_RETURN_IN_MSB): Define to xtensa_return_in_msb.
1872
1873 2004-03-05  Hans-Peter Nilsson  <hp@axis.com>
1874
1875         PR other/14354
1876         * config/fp-bit.c (_fpdiv_parts): Do not round when pack_d would
1877         round the same.  When rounding, clear bits that would cause a
1878         second rounding in pack_d.
1879         (_fpmul_parts): Ditto.  Remove #if 0:d code.
1880
1881 2004-03-04  Ziemowit Laski  <zlaski@apple.com>
1882
1883         PR c++/14425, c++/14426
1884         * config/rs6000/altivec.h (vec_splat_s8, vec_splat_s16,
1885         vec_splat_s32, vec_splat_u8, vec_splat_u16, vec_splat_u32):
1886         Change C++ definitions to accept a 'const int' argument;
1887         the prototypes already do.
1888         * config/rs6000/rs6000.c (rs6000_common_init_builtins):
1889         Rename v4si_ftype_char, v8hi_ftype_char, v16qi_ftype_char,
1890         v4sf_ftype_v4si_char, v4si_ftype_v4sf_char, v4si_ftype_v4si_char,
1891         v8hi_ftype_v8hi_char, v16qi_ftype_v16qi_char,
1892         v16qi_ftype_v16qi_v16qi_char, v8hi_ftype_v8hi_v8hi_char,
1893         v4si_ftype_v4si_v4si_char and v4sf_ftype_v4sf_v4sf_char to
1894         end in ..._int; change them to accept an int instead of a char
1895         as the last parameter.
1896
1897 2004-03-04  Phil Edwards  <phil@codesourcery.com>
1898
1899         * genmultilib:  Change '=' to '-' when translating option names
1900         to directory names.
1901
1902 2004-03-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1903
1904         * expr.c (expand_expr_real, case COMPONENT_REF): Get proper type of
1905         stack slot for temp used for result of BLKmode but in integral mode.
1906
1907 2004-03-04  Jan Hubicka  <jh@suse.cz>
1908
1909         * reload.c (find_reloads): Reorganize if seqeunce to switch.
1910
1911         * cfgrtl.c (rtl_redirect_edge_and_branch):  Set the source BB as dirty.
1912         (cfglayout_redirect_edge_and_branch):  Set the source BB as dirty.
1913
1914 2004-03-04  Steve Ellcey  <sje@cup.hp.com>
1915
1916         * config/ia64/ia64.md (divdf3_internal_thr): Fix algorithm.
1917         * testsuite/gcc.dg/20040303-1.c: New test.
1918
1919 2004-03-04  Steven Bosscher  <stevenb@suse.de>
1920
1921         * ppro.md: Rewrite as a DFA pipeline description.
1922         * i386.md: Remove all uses of the ppro_uops attribute.
1923         * i386.c: (ix86_safe_ppro_uops, ix86_dump_ppro_packet,
1924         ix86_reorder_insn, ix86_sched_reorder_ppro, ix86_sched_init,
1925         ix86_sched_reorder, ix86_variable_issue,
1926         struct ix86_sched_data, TARGET_SCHED_VARIABLE_ISSUE,
1927         TARGET_SCHED_INIT, TARGET_SCHED_REORDER): Remove.
1928         (ia32_use_dfa_pipeline_interface): Add TARGET_PENTIUMPRO.
1929         (ia32_multipass_dfa_lookahead): Add TARGET_PENTIUMPRO.
1930         * athlon.md (athlon_ssecmp_load): Fix comment
1931
1932 2004-03-04  Stuart Hastings  <stuart@apple.com>
1933
1934         * gcc/doc/invoke.texi: Document -mlongcall for Darwin/PPC.
1935
1936 2004-03-04  Stuart Hastings  <stuart@apple.com>
1937
1938         * gcc/config/i386/darwin.h: Darwin/x86 doesn't support CPUs before
1939         686, tell Darwin assembler to allow prefetch insns, non-empty def
1940         of SUBTARGET_OPTION_TRANSLATE_TABLE.
1941
1942 2004-03-04  DJ Delorie  <dj@redhat.com>
1943
1944         PR optimization/14282
1945         * sched-deps.c (sched_analyze_insn): Allow a stack adjustment
1946         between a call and the assignment of its return value.
1947
1948 2004-03-04  Kazu Hirata  <kazu@cs.umass.edu>
1949
1950         * config/h8300/h8300.c: Put a comment for every function.
1951
1952 2004-03-04  Kazu Hirata  <kazu@cs.umass.edu>
1953
1954         * config/h8300/h8300.md: Add comments about peephole2's.
1955
1956 2004-03-04  Steven Bosscher  <stevenb@suse.de>
1957
1958         * i386.h (TARGET_CPU_DEFAULT_nocona): Fix value.
1959
1960 2004-03-04  Jan Hubicka  <jh@suse.cz>
1961
1962         * cfgcleanup.c (thread_jump): Update call of cselib_init.
1963         * cselib.c (cselib_record_memory): New static variable.
1964         (cselib_lookup_mem, cselib_record_set, cselib_record_sets):
1965         Give up on memories when asked for.
1966         (cselib_init): Accept new argument.
1967         * cselib.h (cselib_init): Update prototype.
1968         * gcse.c (local_cprop_pass): Update call of cselib_init.
1969         * loop.c (load_mems): Update call of cselib_init.
1970         * postreload.c (reload_cse_regs_1): Update call of cselib_init.
1971         * sched-deps.c (sched_analyze): Update call of cselib_init.
1972
1973 2004-03-04  David Edelsohn  <edelsohn@gnu.org>
1974             GP <gp@qnx.com>
1975
1976         * config/rs6000/rs6000.c (output_function_profiler): Append @plt
1977         when compiling PIC.
1978
1979 2004-03-04  Josef Zlomek  <zlomekj@suse.cz>
1980
1981         PR/14362
1982         * var-tracking.c (track_expr_p): Do not track variables which
1983         should be ignored for debugging purposes.
1984
1985 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
1986
1987         * real.c (encode_ibm_extended): Don't bother rounding low double.
1988         * c-cppbuiltin.c (builtin_define_float_constants): Tweak MAX
1989         when fmt->pnan < fmt->p.
1990
1991 2004-03-04  Eric Christopher  <echristo@redhat.com>
1992
1993         * config/mips/mips.h (FUNCTION_ARG_REGNO_P): Fix to check
1994         only range of valid arg registers and fixed_regs.
1995
1996 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
1997
1998         PR target/14406
1999         * config/rs6000/rs6000.md (abstf2, abstf2+1): Delete define_insn.
2000         (abstf2, abstf2_internal): New define_expand.
2001
2002 2004-03-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
2003
2004         PR optimization/14235
2005         * expr.c (convert_move): Copy the source to a new pseudo
2006         when converting from a sub-word source to a larger-than-word
2007         register which conflicts with the source.
2008
2009 2004-03-03  Zack Weinberg  <zack@codesourcery.com>
2010
2011         PR 13728
2012         * c-decl.c (diagnose_mismatched_decls): Issue an error for two
2013         parameters with the same name, unless one is a forward decl.
2014         Do not issue a redundant-redeclaration warning for forward
2015         decls of parameters.
2016
2017 2004-03-04  David Edelsohn  <edelsohn@gnu.org>
2018
2019         * doc/install.texi (*-ibm-aix*): Document use of Bash to speed up
2020         configuration.
2021
2022 2004-03-03  Ian Lance Taylor  <ian@wasabisystems.com>
2023
2024         * ggc-zone.c (ggc_pch_write_object): Don't align file pointer.
2025
2026 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
2027
2028         * target-def.h (TARGET_OPTF): Delete.
2029         * c-opts.c (TARGET_OPTF): Define.
2030
2031 2004-03-04  Jan Hubicka  <jh@suse.cz>
2032
2033         * cselib.c (cselib_finish): Fix another miss-application of my previous
2034         patch.
2035
2036 2004-03-03  Mike Stump  <mrs@apple.com>
2037
2038         Add framework support for darwin.
2039
2040         * c-incpath.c: Include target.h and machmode.h.
2041         (add_path): Use a consistent style for cpp_dir.  Initialize
2042         p->construct to 0.
2043         (add_cpp_dir_path): New.
2044         (register_include_chains): Add use of extra_includes callback.
2045         (hook_void_int): Add.
2046         (target_c_incpath): Add.
2047         * c-incpath.h (add_cpp_dir_path): New.
2048         (target_c_incpath_s): Add.
2049         (target_c_incpath): Add.
2050         (C_INCPATH_INIT): Add.
2051         * c-opts.c (c_common_missing_argument,
2052         c_common_handle_option): Add -F argument processing.
2053         * c.opt: Add -F argument processing.
2054         * gcc.c (trad_capable_cpp): Add -F argument processing.
2055         * cppfiles.c (find_file_in_dir): Update to use construct
2056         callback.
2057         (search_path_exhausted, cpp_get_path, cpp_get_buffer,
2058         cpp_get_prev): New.
2059         (_cpp_find_file): Use search_path_exhausted.
2060         (make_cpp_dir): Initialize construct to 0.
2061         * cpplib.h (missing_header_cb
2062         cpp_get_path, cpp_get_buffer, cpp_get_file, cpp_get_prev): New.
2063         (cpp_callbacks): Add missing_header
2064         (cpp_dir): Add construct.
2065         * target-def.h: (TARGET_OPTF): New.
2066         * hooks.c (hook_void_int, hook_void_charptr): Add.
2067         * hooks.h (hook_void_int, hook_void_charptr): Add.
2068         * Makefile.in (c-incpath.o) : Add $(TARGET_H) and
2069         $(MACHMODE_H) dependencies.
2070         * doc/invoke.texi (Darwin Options): Document -F.
2071         * doc/tm.texi (TARGET_EXTRA_INCLUDES): Add.
2072         (TARGET_OPTF): Add.
2073         * fix-header.c (target_c_incpath): Add.
2074
2075         * config/darwin-c.c: Add c-incpath.h include.
2076         (using_frameworks, find_subframework_file,
2077         find_subframework_header, add_system_framework_path,
2078         frameworks_in_use, num_frameworks, max_frameworks,
2079         add_framework, find_framework, struct framework_header,
2080         framework_header_dirs, framework_construct_pathname,
2081         find_subframework_file, add_system_framework_path,
2082         add_framework_path, framework_defaults,
2083         darwin_register_frameworks, find_subframework_header): Add.
2084         * config/darwin.h (TARGET_EXTRA_INCLUDES, TARGET_OPTF): New.
2085         (TARGET_OPTION_TRANSLATE_TABLE): Add -framework support.
2086         (CPP_SPEC): Add __APPLE_CC__ support.
2087         * t-darwin (darwin-c.o): Add c-incpath.h dependency.
2088
2089 2004-03-04  Jan Hubicka  <jh@suse.cz>
2090
2091         * cselib.c (cselib_finish): Fix miss-application of my previous
2092         patch.
2093
2094 2004-03-03  Kazu Hirata  <kazu@cs.umass.edu>
2095
2096         * hooks.c (hook_tree_tree_identity): New.
2097         * hooks.h: Add a prototype for hook_tree_tree_identity.
2098         * stmt.c (expand_asm_operands): Use targetm.md_asm_clobbers
2099         instead of MD_ASM_CLOBBERS.
2100         * system.h (MD_ASM_CLOBBERS): Poison.
2101         * target-def.h (TARGET_MD_ASM_CLOBBERS): New.
2102         (TARGET_INITIALIZER): Add TARGET_MD_ASM_CLOBBERS.
2103         * target.h (gcc_target): Add md_asm_clobbers.
2104         * config/i386/i386.c (TARGET_MD_ASM_CLOBBERS): New.
2105         (ix86_md_asm_clobbers): New.
2106         * config/i386/i386.h (MD_ASM_CLOBBERS): Remove.
2107         * doc/tm.texi (MD_ASM_CLOBBERS): Change to
2108         TARGET_MD_ASM_CLOBBERS.
2109
2110 2004-03-03  Stuart Hastings  <stuart@apple.com>
2111
2112         * gcc/config.gcc: Arrange for Darwin/x86 to build libgcc_eh.a.
2113
2114 2004-03-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
2115
2116         * config/sparc/sparc.c (noov_compare64_op): Fix typo.
2117
2118         * config/sparc/sparc.h (ASM_FLOAT): Delete.
2119         (ASM_DOUBLE): Likewise.
2120         (ASM_LONGDOUBLE): Likewise.
2121         * config/sparc/pbd.h (ASM_INT_OP): Delete.
2122
2123 2003-03-03  Richard Henderson  <rth@redhat.com>
2124
2125         PR opt/13862
2126         * cselib.c (cselib_record_sets): Don't record multiple sets in
2127         asm insns.
2128
2129 2004-03-03  Mostafa Hagog  <mustafa@il.ibm.com>
2130
2131         * common.opt: Add description of the new -fgcse-after-reload flag.
2132
2133         * flags.h (flag_gcse_after_reload): Declaration of global variable.
2134
2135         * gcse.c (reg_used_on_edge ,reg_set_between_after_reload_p,
2136         reg_used_between_after_reload_p, rtx get_avail_load_store_reg,
2137         is_jump_table_basic_block, bb_has_well_behaved_predecessors,
2138         get_bb_avail_insn, hash_scan_set_after_reload,
2139         compute_hash_table_after_reload, eliminate_partially_redundant_loads,
2140         gcse_after_reload, get_bb_avail_insn): New functions to implement
2141         gcse-after-reload.
2142         (gcse_after_reload_main): New function, the main entry point to
2143         gcse-after-reload.
2144
2145         * rtl.h (gcse_after_reload_main): Declaration of the new function.
2146
2147         * opts.c (common_handle_option): Handle the -fgcse-after-reload flag.
2148
2149         * toplev.c (flag_gcse_after_reload): Initialization.
2150
2151         * passes.c (rest_of_handl_gcse2): Call gcse_after_reload_main.
2152
2153         * params.def (PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
2154         PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION): New parameters for tuning
2155         the gcse after reload optimization.
2156
2157         * params.h (GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
2158         GCSE_AFTER_RELOAD_CRITICAL_FRACTION): Two macros to access the tuning
2159         parameters.
2160
2161         * doc/invoke.texi: Documentation for the new flag gcse-after-reload.
2162
2163 2004-03-03  Nicolas Pitre <nico@cam.org>
2164
2165         * config/arm/ieee754-df.S (muldf3, divdf3): Fix denormalization of
2166         small negative values.
2167
2168 2004-03-03  Jan Hubicka  <jh@suse.cz>
2169
2170         * cselib.c (hash_table):  Remove GTY marker.
2171         (reg_values): Turn into array.
2172         (used_regs): Likewise.
2173         (n_used_regs): New static variable.
2174         (reg_values_old): Kill.
2175         (clear_table): Update uses of arrays.
2176         (cselib_lookup): Likewise.
2177         (cselib_record_set): Likewise.
2178         (cselib_init): Likewise.
2179         (cselib_finish): Likewise.
2180         (cselib_udpate_varray_sizes): Kill.
2181         * cselib.h (cselib_update_varray_sizes): Kill.
2182
2183 2004-03-03  Paul Brook  <paul@codesourcery.com>
2184
2185         * flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
2186
2187 2004-03-03  Jan Hubicka  <jh@suse.cz>
2188
2189         * ggc-common.c (ggc_alloc_cleared_stat, ggc_realloc_stat):
2190         Rename from ...; make statistics transparent.
2191         (ggc_alloc_cleared, ggc_realloc_stat): ... these.
2192         (loc_descriptor): New structure.
2193         (hash_descriptor, eq_descriptor, loc_descriptor, cmp_statistics,
2194         add_statistics):
2195         New static function.
2196         (ggc_record_overhead, dump_statistics): New global function.
2197         * ggc-none.c (ggc_alloc_types_stat, ggc_alloc_stat, ggc_alloc_zone_stat,
2198         ggc_alloc_cleared_stat, ggc_realloc_stat, ggc_alloc_typed_stat): Rename
2199         from ...; accept locations
2200         (ggc_alloc_types, ggc_alloc, ggc_alloc_zone, ggc_alloc_cleared,
2201         ggc_realloc, ggc_alloc_typed):  ... this one.
2202         from ...; accept locations
2203         * ggc-page.c (ggc_alloc_typed_stat, ggc_alloc_zone_stat,
2204         ggc_alloc_stat): Rename from ... ; pass locations
2205         * ggc-page.c (ggc_alloc_typed, ggc_alloc_zone, ggc_alloc):
2206         ... this one.
2207         (ggc_alloc_stat): Record overehead.
2208         * ggc.h (ggc_alloc_types, ggc_alloc, ggc_alloc_zone, ggc_alloc_cleared,
2209         ggc_realloc, ggc_alloc_typed):  Turn to macros
2210         (ggc_alloc_types_stat, ggc_alloc_stat, ggc_alloc_zone_stat,
2211         ggc_alloc_cleared_stat, ggc_realloc_stat, ggc_alloc_typed_stat): Declare.
2212         (dump_ggc_loc_satistics, ggc_record_overehead): Declare.
2213         * langhooks.h (lhd_make_node): Declare.
2214         (LANG_HOOKS_MAKE_TYPE): Default to new function,
2215         * langhooks.c (lhd_make_node): New.
2216         * rtl.c (rtx_alloc_stat, swallow_copy_rtx_stat): Rename from ... ; pass
2217         locations.
2218         (rtx_alloc, swallow_copy_rtx): ... this one.
2219         * rtl.h (rtx_alloc, swallow_copy_rtx): Turn to macros.
2220         * rtl.c (rtx_alloc_stat, swallow_copy_rtx_stat): Declare.
2221         * toplpev.c (finalize): Dump stats.
2222         * tree.c (make_node_stat, copy_node_stat, make_tree_vec_stat,
2223         build_tree_list_stat, tree_cons_stat, build?_stat,  build_decl_stat):
2224         Rename from ... ; pass locators.
2225         (make_node, copy_node, make_tree_vec, build_tree_list, tree_cons,
2226         build?,  build_decl): Declare.
2227         * tree.h (make_node_stat, copy_node_stat, make_tree_vec_stat,
2228         build_tree_list_stat, tree_cons_stat, build?_stat,  build_decl_stat):
2229         Declare.
2230         (make_node, copy_node, make_tree_vec, build_tree_list, tree_cons,
2231         build?,  build_decl): New macros.
2232         * Makefile.in (RTL_H, TREE_H): Add statistics.h dependency.
2233         * statistics.h: New file.
2234
2235 2004-03-03  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
2236             Richard Sandiford  <rsandifo@redhat.com>
2237
2238         * config/mips/mips.h (MASK_FIX_SB1): Bump.
2239         (MASK_FIX_R4400, TARGET_FIX_R4400): New macros.
2240         (TARGET_SWITCHES): Add -mfix-r4400 and -mno-fix-r4400.
2241         * config/mips/mips.c (mips_output_division): Fill the branch delay
2242         slot with a nop if TARGET_FIX_R4000.  Extend R4000 workarounds to
2243         TARGET_FIX_R4400.
2244         (mips_output_division): Adjust accordingly.
2245         (override_options): Make -march=r4400 imply -mfix-r4400 by default.
2246         * doc/invoke.texi: Document -mfix-r4400 and new errata workarounds.
2247
2248 2004-03-03  Paolo Bonzini  <bonzini@gnu.org>
2249
2250         * alias.c (rtx_equal_for_memref_p): Use predicates
2251         to test rtx classes and new rtx class codes, possibly
2252         splitting conditionals that tested against '<' and 'o'.
2253         * caller-save.c (save_call_clobbered_regs): Likewise.
2254         * combine.c (contains_muldiv, find_split_point, subst,
2255         combine_simplify_rtx, simplify_if_then_else,
2256         simplify_set, simplify_logical, expand_compound_operation,
2257         make_compound_operation, if_then_else_cond, known_cond,
2258         apply_distributive_law, cached_nonzero_bits,
2259         cached_num_sign_bit_copies, simplify_shift_const,
2260         gen_binary, simplify_comparison, update_table_tick,
2261         record_value_for_reg, get_lsat_value_validate): Likewise.
2262         * cse.c (mention_regs, find_best_addr, find_comparison_args,
2263         fold_rtx, cse_insn, invalidate_memory, cse_basic_block):
2264         Likewise.
2265         * emit-rtl.c (copy_insn_1): Likewise.
2266         * expr.c (force_operand): Likewise.
2267         * final.c (final_scan_insn, get_mem_expr_from_op): Likewise.
2268         * flow.c (notice_stack_pointer_modification_1,
2269         invalidate_mems_from_autoinc, ior_reg_cond, not_reg_cond,
2270         and_reg_cond, elim_reg_cond): Likewise.
2271         * function.c (update_epilogue_consts): Likewise.
2272         * genattrtab.c (attr_rtx_1): Likewise.
2273         * genopinit.c (gen_insn): Likewise.
2274         * integrate.c (subst_constants): Likewise.
2275         * jump.c (reversed_comparison_code_parts,
2276         reversed_comparison_code, delete_related_insns,
2277         rtx_renumbered_equal_p): Likewise.
2278         * local-alloc.c (block_alloc): Likewise.
2279         * loop.c (rtx_equal_for_prefetch_p, maybe_eliminate_biv,
2280         canonicalize_condition): Likewise.
2281         * loop-iv.c (simplify_using_conditions, iv_number_of_iterations):
2282         Likewise.
2283         * optabs.c (add_equal_node, expand_binop): Likewise.
2284         * predict.c (estimate_probability): Likewise.
2285         * ra-debug.c (ra_print_rtx_2op, ra_print_rtx): Likewise.
2286         * recog.c (validate_replace_rtx_1, comparison_operator,
2287         offsettable_address_p, constrain_operands): Likewise.
2288         * reg-stack.c (swap_rtx_condition_1, subst_stack_regs_pat):
2289         Likewise.
2290         * regclass.c (scan_one_insn): Likewise.
2291         * regmove.c (stable_and_no_regs_but_for_p): Likewise.
2292         * regrename.c (kill_autoinc_value): Likewise.
2293         * reload.c (find_reusable_reload, find_reloads,
2294         reg_overlap_mentioned_for_reload_p): Likewise.
2295         * reload1.c (gen_reload, delete_address_reloads_1): Likewise.
2296         * rtl.c (copy_rtx): Likewise.
2297         * rtl.h (CONSTANT_P, INSN_P): Likewise.
2298         * rtlanal.c (commutative_operand_precedence): Likewise.
2299         * sched-deps.c (conditions_mutex_p): Likewise.
2300         * sched-rgn.c (is_cfg_nonregular): Likewise.
2301         * simplify-rtx.c (simplify_gen_binary,
2302         simplify_gen_relational, simplify_replace_rtx,
2303         simplify_unary_operation, simplify_binary_operation,
2304         simplify_ternary_operation, simplify_rtx): Likewise.
2305         * unroll.c (reg_dead_after_loop): Likewise.
2306         * config/alpha/alpha.c (alpha_swapped_comparison_operator,
2307         print_operand): Likewise.
2308         * config/arc/arc.c (proper_comparison_operator): Likewise.
2309         * config/arm/arm.c (arm_arm_address_cost, arm_select_cc_mode):
2310         Likewise.
2311         * config/avr/avr.c (_reg_unused_after): Likewise.
2312         * config/frv/frv.c (frv_ifcvt_modify_tests,
2313         frv_ifcvt_modify_insn, frv_pack_insn): Likewise.
2314         * config/i386/i386.c (ix86_comparison_operator,
2315         ix86_carry_flag_operator, fcmov_comparison_operator,
2316         arith_or_logical_operator, print_operand,
2317         ix86_expand_binary_operator, ix86_binary_operator_ok):
2318         Likewise.
2319         * config/i386/i386.md: Likewise.
2320         * config/ia64/ia64.c (not_postinc_memory_operand,
2321         ia64_print_operand, update_set_flags, errata_emit_nops):
2322         Likewise.
2323         * config/ia64/ia64.h (PREFERRED_RELOAD_CLASS,
2324         CONSTRAINT_OK_FOR_S): Likewise.
2325         * config/ip2k/ip2k.c (mdr_resequence_xy_yx,
2326         mdr_try_move_dp_reload, ip2k_check_can_adjust_stack_ref,
2327         ip2k_xexp_not_uses_reg_for_mem, ip2k_xexp_not_uses_reg_p,
2328         ip2k_composite_xexp_not_uses_reg_p, ip2k_unary_operator):
2329         Likewise.
2330         * config/iq2000/iq2000.c (cmp_op, symbolic_expression_p,
2331         eqne_comparison_operator, signed_comparison_operator):
2332         Likewise.
2333         * config/mips/mips.c (cmp_op, symbolic_expression_p):
2334         Likewise.
2335         * config/mmix/mmix (mmix_foldable_comparison_operator,
2336         mmix_comparison_operator): Likewise.
2337         * config/pa/pa.c (hppa_legitimize_address): Likewise.
2338         * config/rs6000/rs6000.c (stmw_operation,
2339         branch_comparison_operator, trap_comparison_operator,
2340         ccr_bit): Likewise.
2341         * config/rs6000/rs6000.h (SELECT_CC_MODE): Likewise.
2342         * config/s390/s390.c (s390_alc_comparison,
2343         s390_slb_comparison):L Likewise.
2344         * config/sh/sh.c (gen_block_redirect, reg_unused_after):
2345         Likewise.
2346         * config/sparc/sparc.c (eq_or_neq, normal_comp_operator,
2347         noov_compare_op, noov_compare64_op, v9_regcmp_op,
2348         emit_hard_tfmode_operation, reg_unused_after)
2349         * doc/md.texi, doc/rtl.texi: Likewise.
2350
2351         * ra-debug.c: Add 2004 to list of copyright years.
2352         * unroll.c: Likewise.
2353
2354         * combine.c (simplify_logical): Remove dummy test,
2355         (apply_distributive_law): Fix typo in comment.
2356         GET_CODE (x) == AND so x is a commutative binary op.
2357         * jump.c (delete_related_insns): simplify loop
2358         condition, move testing of RTX codes inside the loop.
2359         (rtx_renumbered_equal_p): do not use RTX_CODE.
2360         * rtl.c (rtx_class): Declare as enum rtx_class.
2361         * rtl.def (EQ, NE, UNEQ, LTGT, UNORDERED, ORDERED):
2362         Move to RTX_COMM_COMPARE class.
2363         (HIGH, SYMBOL_REF, LABEL_REF, CONST, CONST_INT, CONST_DOUBLE):
2364         Move to RTX_CONST_OBJ class.
2365         * rtl.h (enum rtx_class): New declaration,
2366         (RTX_OBJ_MASK, RTX_OBJ_RESULT, RTX_COMPARE_MASK,
2367         RTX_COMPARE_RESULT, RTX_ARITHMETIC_MASK, RTX_ARITHMETIC_RESULT,
2368         RTX_BINARY_MASK, RTX_BINARY_RESULT, RTX_COMMUTATIVE_MASK,
2369         RTX_COMMUTATIVE_RESULT, RTX_NON_COMMUTATIVE_RESULT,
2370         RTX_EXPR_FIRST, RTX_EXPR_LAST, UNARY_P, BINARY_P,
2371         ARITHMETIC_P, COMMUTATIVE_ARITHMETIC_P, COMPARISON_P,
2372         SWAPPABLE_OPERANDS_P, NON_COMMUTATIVE_P, COMMUTATIVE_P,
2373         OBJECT_P): New macros.
2374         * config/sparc/sparc.c (noov_compare_op): Remove register
2375         from parameter.
2376
2377 2004-03-03  Kazu Hirata  <kazu@cs.umass.edu>
2378
2379         * target.h: Remove texi jargons in comments.
2380
2381 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2382
2383         * config/h8300/lib1funcs.asm (___fixunssfsi): Change the
2384         threshold to 0x4f.
2385
2386         Revert:
2387         2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
2388         * config/h8300/fixunssfsi.c (__fixunssfsi): Enable on H8/300
2389         as well.
2390         * config/h8300/lib1funcs.asm (___fixunssfsi): Remove.
2391         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _fixunssfsi_asm.
2392
2393 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2394
2395         * doc/md.texi (cbranchmode4): New.
2396
2397 2004-03-02  Eric Christopher  <echristo@redhat.com>
2398
2399         * config/mips/mips16.S: Change fixsfsi and fixdfsi to
2400         fix_trunc.
2401         * config/mips/mips.c (mips_init_libfuncs): Change accordingly.
2402         * config/mips/t-elf (LIB1ASMFUNCS): Ditto.
2403         * config/mips/t-isa3264 (LIB1ASMFUNCS): Ditto.
2404         * config/mips/t-r3900 (LIB1ASMFUNCS): Ditto.
2405
2406 2004-03-02  Richard Henderson  <rth@redhat.com>
2407
2408         PR middle-end/11767
2409         * coverage.c (coverage_counter_ref): Set MEM_NOTRAP_P.
2410         * optabs.c (prepare_cmp_insn): Force trapping memories to registers
2411         before the compare, if flag_non_call_exceptions.
2412
2413 2004-03-02  Richard Henderson  <rth@redhat.com>
2414
2415         PR middle-end/14327
2416         * stmt.c (expand_computed_goto): Do do_pending_stack_adjust before
2417         emitting the label, not after.
2418
2419 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2420
2421         * config/m68hc11/m68hc11.c (m68hc11_addr_mode): New variable.
2422         (m68hc11_mov_addr_mode): Likewise.
2423         (m68hc11_override_options): Initialize them based on target.
2424         (register_indirect_p): Allow a MEM for indirect addressing modes and
2425         use flags to control what is allowed.
2426         (m68hc11_small_indexed_indirect_p): Use m68hc11_mov_addr_mode for
2427         supported addressing modes.
2428         (m68hc11_register_indirect_p): Use m68hc11_addr_mode.
2429         (go_if_legitimate_address_internal): Likewise.
2430         (m68hc11_indirect_p): Likewise and check the mode.
2431         (print_operand): Allow a (MEM (MEM)) and generate indirect addressing.
2432
2433 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2434
2435         * builtins.c (BUILTIN_SETJMP_FRAME_VALUE): Remove.
2436         (expand_builtin_setjmp_setup): Use
2437         targetm.builtin_setjmp_frame_value instead of
2438         BUILTIN_SETJMP_FRAME_VALUE.
2439         * system.h (BUILTIN_SETJMP_FRAME_VALUE): Poison.
2440         * target-def.h (TARGET_BUILTIN_SETJMP_FRAME_VALUE): New.
2441         (TARGET_INITIALIZER): Add TARGET_BUILTIN_SETJMP_FRAME_VALUE.
2442         * target.h (gcc_target): Add builtin_setjmp_frame_value.
2443         * targhooks.c (default_builtin_setjmp_frame_value): New.
2444         * targhooks.h: Add a prototype for
2445         default_builtin_setjmp_frame_value.
2446         * doc/tm.texi (BUILTIN_SETJMP_FRAME_VALUE): Change to
2447         TARGET_BUILTIN_SETJMP_FRAME_VALUE.
2448
2449 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2450
2451         * config/m68hc11/m68hc11.md (move peephole2): New peepholes to optimize
2452         sequences of moves.
2453         (add peepholes): New peepholes to optimize sequences adding small
2454         constants.
2455         (bset peepholes): New peepholes to transform an OR in a bset form
2456         (bclr peepholes): Likewise for bclr form.
2457         (cmp peepholes): New peepholes to avoid register copies when comparing.
2458
2459 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2460
2461         * config/m68hc11/m68hc11.md ("*pushdi_internal"): New insn and split
2462         to separate push from moves.
2463         ("*pushdf_internal"): Likewise.
2464         ("*pushsf_internal"): Likewise.
2465         ("*pushsi_internal"): Likewise.
2466         ("movdi_internal"): Use define_insn_and_split; non push operand.
2467         ("movdf_internal"): Likewise.
2468         ("movsf_internal"): Likewise.
2469         ("movsi_internal"): Likewise.
2470         ("*movhi_68hc12", "*addhi3_68hc12"): Fix and tune constraints
2471         ("*addhi3", "*subhi3", "*andhi3_mem", "*iorhi3_mem"): Likewise.
2472         ("*ashlsi3_const1", "*lshrsi3_const1"): Likewise.
2473
2474 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2475
2476         * config/m68hc11/m68hc11.md ("tstqi_z_used"): Use define_insn_and_split.
2477         ("cmphi_z_used", "cmpqi_z_used"): Likewise.
2478         ("movstrictsi", "movstricthi", "movstrictqi"): Likewise.
2479         ("anddi3", "andsi3", "iordi3", "iorsi3"): Likewise.
2480         ("xordi3", "xorsi3", "*logicalsi3_zexthi"): Likewise.
2481         ("*logicalsi3_zextqi", "*logicalhi3_zexthi_ashift8"): Likewise.
2482         ("logicalhi3_zexthi", "*logicalsi3_silshr16"): Likewise.
2483         ("*logicalsi3_silshl16", "*logicalsi3_silshl16_zext"): Likewise.
2484         ("*ashldi3_const32", "*ashldi3_const1", "addsi_silshr16"): Likewise.
2485         ("addsi_andshr16", "*ashlsi3_const16_zexthi"): Likewise.
2486         ("*lshrdi3_const32", "*lshrdi_const1"): Likewise.
2487
2488 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2489
2490         * config/m68hc11/m68hc11.md (SOFT_TMP_REGNUM): Define.
2491         (SOFT_XY_REGNUM): Define.
2492         (cmp split): Use the above instead of hard coded numbers.
2493         (8-bit op split): No need to check the mode; allow Q_REG.
2494         (ashift split): Adjust the first operand if it uses the SP and we
2495         are pushing the shifted value.
2496         (plus shift split): Fix when a source is in register D+X.
2497         ("doloop_end"): Pass dummy arguments to gen_rtx_NE.
2498
2499 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
2500
2501         * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Fix when
2502         comparing with Z register.
2503
2504 2004-03-02  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2505
2506         * cfgloop.h (struct loop_desc): Removed.
2507         (struct loop): Fields simple, desc and has_desc removed.
2508         (simple_loop_p, count_loop_iterations): Declaration removed.
2509         * cfgloopanal.c (struct unmark_altered_insn_data): Removed.
2510         (unmark_altered, blocks_invariant_registers, unmark_altered_insn
2511         blocks_single_set_registers, invariant_rtx_wrto_regs_p_helper,
2512         invariant_rtx_wrto_regs_p, test_for_iteration, constant_iterations,
2513         simple_loop_exit_p, variable_initial_value, variable_initial_values,
2514         simple_condition_p, simple_increment, count_strange_loop_iterations,
2515         inverse, fits_in_mode_p, simple_loop_p, count_loop_iterations):
2516         Removed.
2517         * loop-iv.c (check_simple_exit, find_simple_exit): Update comments.
2518
2519 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2520
2521         * genattrtab.c: Don't handle MATCH_INSN.
2522         * genrecog.c: Likewise.
2523         * gensupport.c: Likewise.
2524         * rtl.def (match_insn): Remove.
2525         * doc/md.texi (match_insn, match_insn2): Remove.
2526
2527 2004-03-02  Mark Mitchell  <mark@codesourcery.com>
2528
2529         * doc/c-tree.texi (DECL_ASSEMBLER_NAME): Mention that using this
2530         macro results in memory allocation.
2531
2532 2004-03-02  David O'Brien  <obrien@FreeBSD.org>
2533
2534         * config/freebsd-spec.h (FBSD_DYNAMIC_LINKER): Add.
2535         * config/alpha/freebsd.h (SUBTARGET_EXTRA_SPECS): Define
2536         %(fbsd_dynamic_linker),
2537         (LINK_SPEC): Use %(fbsd_dynamic_linker), and sync style with
2538         config/i386/freebsd.h
2539         * config/arm/freebsd.h: Ditto.
2540         * config/i386/freebsd.h: Ditto.
2541         * config/i386/freebsd64.h: Ditto.
2542         * config/ia64/freebsd.h: Ditto.
2543         * config/rs6000/sysv4.h: Ditto.
2544         * config/sparc/freebsd.h: Ditto.
2545
2546 2004-03-02  Loren James Rittle  <ljrittle@acm.org>
2547
2548         * gcc/doc/install.texi (*-*-freebsd*): Update target information.
2549
2550 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2551
2552         * rtl.def (define_combine): Remove.
2553
2554 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2555
2556         * config/h8300/h8300.md: Tweak formatting.
2557
2558 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2559
2560         * config/h8300/h8300.md (*cmphi_h8300): Rename to
2561         *cmphi_h8300_znvc.
2562         (*cmphi_h8300hs): Rename to *cmphi_h8300hs_znvc.
2563
2564 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
2565
2566         PR bootstrap/14356
2567         * gcc.c (process_command): Remove const-qualification from argv.
2568         (main): Likewise.
2569
2570 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
2571
2572         * config/h8300/h8300.md (pushqi1_h8300hs): Rename to
2573         pushqi1_h8300hs_advanced.  Adjust its caller.
2574         (pushhi1_h8300hs): Rename to pushhi1_h8300hs_advanced.
2575         Adjust its caller.
2576
2577 2004-03-02  Nicolas Roche  <roche@act-europe.fr>
2578
2579         * Makefile.in (install-libgcc, install-multilib): Pass
2580         mkinstalldirs var to libgcc.mk.
2581
2582 2004-03-01  Kazu Hirata  <kazu@cs.umass.edu>
2583
2584         * system.h (DBX_OUTPUT_STANDARD_TYPES): Poison.
2585         * doc/tm.texi (DBX_OUTPUT_STANDARD_TYPES): Remove.
2586
2587 2004-03-01  Kazu Hirata  <kazu@cs.umass.edu>
2588
2589         * config/h8300/h8300.c (gtle_operator): Accept GT and LE.
2590         * config/h8300/h8300.md: Split several peephole2's, each into
2591         two.
2592
2593 2004-03-02  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2594
2595         * dominance.c (recount_dominator): Handle postdominators.
2596
2597 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
2598
2599         * config/mips/mips-protos.h (enum mips_symbol_type): Move from mips.h.
2600         (NUM_SYMBOL_TYPES): Likewise.
2601         (SYMBOL_64_HIGH, SYMBOL_64_MID, SYMBOL_64_LOW): New symbol types.
2602         (mips_unspec_address): Declare.
2603         (mips_gotoff_page, mips_gotoff_global): Delete.
2604         * config/mips/mips.h (PREDICATE_CODES): Add general_symbolic_operand.
2605         * config/mips/mips.c (enum mips_symbol_type, NUM_SYMBOL_TYPES): Delete.
2606         (mips_symbolic_constant_p, mips_symbolic_address_p)
2607         (mips_symbol_insns): Handle new symbol types.
2608         (general_symbolic_operand): New predicate.
2609         (mips_unspec_address): Make extern.
2610         (mips_gotoff_page, mips_gotoff_global): Delete.
2611         (override_options): Allow -mabi=64 -mno-abicalls -mexplicit-relocs.
2612         Handle new symbol types.
2613         * config/mips/mips.md (*lea_high64, *lea64): New patterns.
2614         (*xgot_hi[sd]i, *xgot_lo[sd]i, *got_disp[sd]i, *got_disp[sd]i): Call
2615         mips_unspec_address directly.
2616         * doc/invoke.texi: Remove the -mabi=64 -mno-abicalls exception from
2617         the documentation of -mexplicit-relocs.
2618
2619 2004-03-01  Jeff Law  <law@redhat.com>
2620
2621         * fold-const.c (fold): An equality comparison of a non-weak object
2622         against zero has a known result.  Similarly an equality comparison
2623         of the address of two non-weak, unaliased symbols has a known result.
2624
2625         * ggc-page.c (struct page_entry): New field PREV.
2626         (ggc_alloc): Update PREV field appropriately.
2627         (sweep_pages): Likewise.
2628         (ggc_free): Likewise.  Use PREV field rather than loop to
2629         improve ggc_free performance.
2630
2631 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
2632
2633         * config/mips/mips.c (mips_output_division): Use the division
2634         instruction to fill the delay slot of a zero check.
2635         (mips_idiv_insns): Adjust accordingly.
2636
2637 2004-03-01  Nathanael Nerode  <neroden@gcc.gnu.org>
2638
2639         * config.gcc: Create a default tmake_file for linux, and use
2640         it in all but two linux clauses.  Comment those two.
2641
2642 2004-03-01  Paolo Bonzini  <bonzini@gnu.org>
2643
2644         * combine.c (try_combine):  Do not refer to is_replaced.
2645         (gen_lowpart_for_combine):  Perverse subregs now have a
2646         more politically correct name.
2647         * cse.c (cse_insn): Likewise.
2648         * jump.c: Fix bogus reference to delete_insn.
2649
2650 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
2651
2652         PR debug/14328
2653         * dwarf2out.c (gen_enumeration_type_die): Output all enumeration
2654         constants as signed values.
2655
2656         PR middle-end/13448
2657         * c-tree.h (readonly_warning): Rename to ...
2658         (readonly_error): ... this.
2659         * c-typeck.c (build_unary_op): Adjust accordingly.
2660         (readonly_warning): Rename to ...
2661         (readonly_error): ... this and issue errors, not warnings.
2662         (build_modify_expr): Call readonly_error, not readonly_warning.
2663         (c_expand_asm_operands): Likewise.
2664         * tree-inline.c (optimize_inline_calls): Do not inline functions
2665         after errors have occurred.
2666
2667 2004-02-29  Nathanael Nerode  <neroden@gcc.gnu.org>
2668
2669         * configure.ac: Rearrange some threading code for clarity;
2670         add section comment.
2671         * configure: Regenerate.
2672
2673 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
2674
2675         * passes.c, config/frv/frv.c, config/sh/sh.c: Fix comment
2676         typos.
2677         * doc/cppopts.texi: Fix a typo.
2678
2679 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
2680
2681         * config/i386/i386.md: Fix formatting.
2682
2683 2004-02-29  Nathanael Nerode  <neroden@gcc.gnu.org>
2684
2685         * configure.ac: Add some comments delineating sections of code.
2686
2687         * doc/install.texi: Note that libada uses autoconf 2.57 also.
2688
2689         * doc/install.texi: Fix idiot typo in previous commit.
2690
2691         * doc/install.texi: Update for conversion of intl to autoconf 2.57.
2692
2693 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
2694
2695         * config/h8300/h8300.md: Add comments about peephole2's.
2696
2697 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
2698
2699         * config/h8300/h8300.md: Tweak operand numbers of some
2700         peephole2's.
2701
2702 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
2703
2704         * config/h8300/h8300.md: Tweak comments about peephole2's.
2705
2706 2004-02-29  Waldek Hebisch  <hebisch@math.uni.wroc.pl>
2707
2708         PR middle-end/14203
2709         * function.c (uninitialized_vars_warning): Use DECL_RTL_SET_P
2710         instead of testing whether DECL_RTL is not NULL.
2711
2712 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
2713
2714         * config/sh/sh.c: Fix formatting.
2715
2716 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
2717
2718         * config/sh/sh.c: Convert to ISO-C.
2719
2720 2004-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
2721
2722         * c-typeck.c (tagged_types_tu_compatible_p): Fix pasto in
2723         my previous patch.
2724
2725         * config/darwin.h (machopic_finish): Output stub even if the
2726         symbol is already defined.
2727
2728 2004-02-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
2729
2730         * pa64-hpux.h (LIB_SPEC): Fix linking under HP-UX 11.00 with -p and -pg.
2731
2732 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
2733
2734         * genattr.c (main): Don't define
2735         TRADITIONAL_PIPELINE_INTERFACE or DFA_PIPELINE_INTERFACE.
2736         * system.h (TRADITIONAL_PIPELINE_INTERFACE): Poison.
2737         (DFA_PIPELINE_INTERFACE): Likewise.
2738         * doc/tm.texi (TRADITIONAL_PIPELINE_INTERFACE): Remove.
2739         (DFA_PIPELINE_INTERFACE): Likewise.
2740
2741 2004-02-28  Richard Sandiford  <rsandifo@redhat.com>
2742
2743         * config/mips/mips.md (tstsi, tstdi): Delete.
2744
2745 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
2746
2747         * config/mips/mips.c (override_options): Remove an obsolete
2748         duplicate definition of the "e" constraint.
2749         * config/mips/mips.h: Update a comment accordingly.
2750
2751 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
2752
2753         * config/mips/mips.md: Complete the unfinished R4000
2754         multiply/shift errata workaround.  Improve documentation.
2755         (hazard): Use TARGET_FIX_R4000 to decide whether an "imul" instruction
2756         has a hilo hazard.
2757         (mulsi3, mulsi3_internal, mulsi3_r4000): Use TARGET_FIX_R4000.
2758         (muldi3, muldi3_internal): Likewise.
2759         (muldi3_internal2): Remove, replacing with...
2760         (muldi3_mult3, muldi3_r4000): ...these new patterns.
2761         (mulsidi3): Take the errata into account.
2762         (mulsidi3_32bit): Remove, replacing with...
2763         (mulsidi3_32bit_internal, mulsidi3_32bit_r4000): ...these new patterns.
2764         (mulsidi3_64bit, mulsidi3_64bit_parts): Disable if TARGET_FIX_R4000.
2765         (umulsidi3): Take the errata into account.
2766         (umulsidi3_32bit): Remove, replacing with..
2767         (umulsidi3_32bit_internal, umulsidi3_32bit_r4000): ...these patterns.
2768         (umulsi3_highpart, umulsi3_highpart_internal): Disable if
2769         TARGET_FIX_R4000.
2770         (smulsi3_highpart, smulsi3_highpart_internal): Likewise.
2771         (smuldi3_highpart, umuldi3_highpart): Likewise.
2772         * doc/invoke.texi: Document the errata workaround.
2773
2774 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
2775
2776         * config/mips/mips-protos.h (mips_idiv_insns): Declare.
2777         * config/mips/mips.h (MASK_FIX_SB1): Bump.
2778         (MASK_FIX_R4000, TARGET_FIX_R4000): New macros.
2779         (TARGET_SWITCHES): Add -mfix-r4000 and -mno-fix-r4000.
2780         * config/mips/mips.c (mips_idiv_insns): New function.
2781         (override_options): Make -march=r4000 imply -mfix-r4000 by default.
2782         (mips_output_division): Add a workaround for the R4000 divide/shift
2783         errata.
2784         * config/mips/mips.md (length): Use mips_idiv_insns() to calculate
2785         the length of an "idiv" instruction.
2786         * doc/invoke.texi: Document the new switches.
2787
2788 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
2789
2790         * doc/tm.texi (IS_COSTLY_DEPENDENCE): Change to
2791         TARGET_SCHED_IS_COSTLY_DEPENDENCE.
2792
2793 2004-02-28  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
2794
2795         PR optimization/14229
2796         * cfgrtl.c (rtl_tidy_fallthru_edge): Do not fail for !onlyjump jump.
2797
2798 2004-02-28  Eric Botcazou  <ebotcazou@act-europe.fr>
2799
2800         * fold-const.c (fold): Strip NOPs that change the signedness
2801         for RSHIFT too.  Expand comment.
2802
2803 2004-02-27  Ian Lance Taylor  <ian@wasabisystems.com>
2804
2805         PR optimization/7871
2806         * flow.c (mark_set_1): Don't add LOG_LINKS for global registers
2807         from or to call insns.
2808
2809 2004-02-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
2810
2811         PR optimization/7871
2812         * flow.c (propagate_one_insn): Interpret calls as setting global
2813         registers, not merely clobbering them.
2814
2815 2004-02-27  Dale Johannesen  <dalej@apple.com>
2816
2817         * config/darwin.c (machopic_output_possible_stub_label):  Remove.
2818         config/darwin-protos.h:  Ditto.
2819         config/darwin.h:  Remove call to it.
2820         * combine.c (distribute_notes): Do not place a REG_DEAD note
2821         when value is both set and used.
2822
2823 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
2824
2825         * config/h8300/fixunssfsi.c (__fixunssfsi): Enable on H8/300
2826         as well.
2827         * config/h8300/lib1funcs.asm (___fixunssfsi): Remove.
2828         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _fixunssfsi_asm.
2829
2830 2004-02-27  Andrew Pinski  <apinski@apple.com>
2831
2832         * c-typeck.c (tagged_types_tu_compatible_p) <ENUMERAL_TYPE>:
2833         Speedup common case of the type values being in the same order.
2834
2835 2004-02-27  Steve Ellcey  <sje@cup.hp.com>
2836
2837         * config/ia64/ia64.h (no-inline-float-divide): New option.
2838         * config/ia64/ia64.h (no-inline-int-divide): New option.
2839         * config/ia64/ia64.h (no-inline-sqrt): New option.
2840         (TARGET_DEFAULT): Add MASK_INLINE_FLOAT_DIV_THR to define.
2841         * config/ia64/hpux.h (TARGET_DEFAULT): Ditto.
2842         * config/ia64/ia64.c (ia64_override_options): Modify error
2843         checking for inlined division/sqrt.
2844
2845 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
2846
2847         * bb-reorder.c, cfgbuild.c, diagnostic.c, explow.c, profile.c,
2848         ra-build.c, read-rtl.c, tracer.c, unwind-dw2-fde-glibc.c,
2849         value-prof.c, config/darwin-protos.h, config/frv/frv-abi.h,
2850         config/i386/pmmintrin.h, config/pa/pa-hpux.h: Update
2851         copyright.
2852
2853 2004-02-27  Paul Brook  <paul@codesourcery.com>
2854
2855         * function.c (assign_parms): Don't count pretend args for alignment.
2856
2857 2004-02-27  Richard Henderson  <rth@redhat.com>
2858
2859         * passes.c: New file.
2860         * Makefile.in (OBJS-common): Add it.
2861         * diagnostic.c (rtl_dump_and_exit): Move decl ...
2862         * flags.h (rtl_dump_and_exit): ... here.
2863         * output.h (size_directive_output, last_assemble_variable_decl):
2864         Move from toplev.c.
2865         * rtl.h (reg_alloc): Move from toplev.c.
2866         * toplev.c (HAVE_conditional_execution, DUMPFILE_FORMAT,
2867         struct dump_file_info, enum dump_file_index, dump_file_tbl,
2868         open_dump_file, close_dump_file, rest_of_decl_compilation,
2869         rest_of_type_compilation, rest_of_handle_final,
2870         rest_of_handle_delay_slots, rest_of_handle_stack_regs,
2871         rest_of_handle_variable_tracking, rest_of_handle_machine_reorg,
2872         rest_of_handle_new_regalloc, rest_of_handle_old_regalloc,
2873         rest_of_handle_regrename, rest_of_handle_reorder_blocks,
2874         rest_of_handle_sched, rest_of_handle_sched2, rest_of_handle_regmove,
2875         rest_of_handle_tracer, rest_of_handle_if_conversion,
2876         rest_of_handle_if_after_combine, rest_of_handle_web,
2877         rest_of_handle_branch_prob,
2878         rest_of_handle_value_profile_transformations, rest_of_handle_cfg,
2879         rest_of_handle_addressof, rest_of_handle_sibling_calls,
2880         rest_of_handle_jump_bypass, rest_of_handle_inlining,
2881         rest_of_handle_null_pointer, rest_of_handle_combine,
2882         rest_of_handle_life, rest_of_handle_cse, rest_of_handle_cse2,
2883         rest_of_handle_gcse, rest_of_handle_loop_optimize,
2884         rest_of_handle_loop2, rest_of_compilation): Move to passes.c.
2885         (decode_d_option): Use enable_rtl_dump_file.
2886         (compile_file, finalize, do_compile): Move profile+combine+graph
2887         cleanup to finish_optimization_passes.
2888         * toplev.h (init_optimization_passes, finish_optimization_passes,
2889         enable_rtl_dump_file): Declare.
2890
2891 2004-02-27  Eric Botcazou  <ebotcazou@act-europe.fr>
2892             Roger Sayle  <roger@eyesopen.com>
2893
2894         * fold-const.c (fold): Revert 2004-02-25 change.  Use the original
2895         operands to build a tree with swapped operands.
2896         * expr.c (expand_expr_real) <MAX_EXPR>: Consistently use the
2897         'unsignedp' predicate to specify the signedness.
2898
2899 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
2900
2901         * c-decl.c, c-ppoutput.c, combine.c, cppfiles.c, dwarf2out.c,
2902         expr.c, fold-const.c, gcc.c, haifa-sched.c, loop-iv.c,
2903         params.def, read-rtl.c, rtl.c, rtlanal.c, toplev.c: Fix
2904         comment typos and formatting.  Follow spelling conventions.
2905
2906 2004-02-26  Aldy Hernandez  <aldyh@redhat.com>
2907
2908         * config/rs6000/rs6000.md: Add fixuns_truncsfsi2 and
2909         fix_truncsfsi2.
2910
2911         * config/rs6000/spe.md: Delete spe_efsctuiz.
2912         Add spe_fixuns_truncsfsi2.
2913         Add spe_fix_truncsfsi2.
2914
2915 2004-02-26  Eric Christopher  <echristo@redhat.com>
2916
2917         * c-lex.c (c_lex_string_translate): New variable.
2918         (lex_string): Use to determine string translation.
2919         * c-pragma.h: Prototype.
2920         * c-parse.in (start_string_translation): New. Set above.
2921         (stop_string_translation): Ditto.
2922         (attribute, attribute_list, asm_def, asm_stmt,
2923         asm_operand): Use above functions.
2924         * cp/parser.c (cp_parser_declaration): Translate strings
2925         unless token is RID_EXTERN. Set c_lex_string_translate
2926         for recursive use.
2927         (cp_parser_asm_definition): Only translate argument strings
2928         to asms.
2929         (cp_parser_asm_operand_list): Ditto.
2930         (cp_parser_attribute_list): Do not translate attribute strings.
2931
2932 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2933
2934         * stmt.c (expand_start_case_dummy): Remove.
2935         * tree.h: Remove the corresponding prototype.
2936
2937 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2938
2939         * builtins.c (apply_args_register_offset): Remove.
2940         * tree.h: Remove the corresponding prototype.
2941
2942 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2943
2944         * stor-layout.c (is_pending_size): Remove.
2945         * tree.h: Remove the corresponding prototype.
2946
2947 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2948
2949         * recog.c (validate_replace_src): Remove.
2950         * recog.h: Remove the corresponding prototype.
2951
2952 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2953
2954         * calls.c: Don't reference FINAL_REG_PARM_STACK_SPACE or
2955         MAYBE_REG_PARM_STACK_SPACE.
2956         * function.c: Likewise.
2957         * system.h (FINAL_REG_PARM_STACK_SPACE): Poison.
2958         (MAYBE_REG_PARM_STACK_SPACE): Likewise.
2959         * doc/tm.texi (FINAL_REG_PARM_STACK_SPACE): Remove.
2960         (MAYBE_REG_PARM_STACK_SPACE): Likewise.
2961
2962 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2963
2964         * c-decl.c (c_expand_deferred_function): Remove.
2965         * c-tree.h: Remove the corresponding prototype.
2966
2967 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
2968
2969         * postreload.c (reload_cse_move2add): Generate just a PLUS
2970         instead of an entire SET.
2971
2972 2004-02-26  Jan Hubicka  <jh@suse.cz>
2973
2974         * config.gcc: Add support for nocoma/prescott/pentium-m/pentium3m
2975         /pentium4m.
2976         * i386.c (override_options): Add support for new CPUs.
2977         * i386.h (TARGET_CPU_DEFAULT_NAMES): New names.
2978         (TARGET_CPU_DEFAULT_pentium_m, TARGET_CPU_DEFAULT_pentium4e): New
2979         constants.
2980         * invoke.texi: Extend documentation of -mtune/-march for new CPUs.
2981
2982 2004-02-26  Bob Wilson  <bob.wilson@acm.org>
2983
2984         * config/xtensa/xtensa.h (TARGET_CPU_CPP_BUILTINS): Define __xtensa__.
2985
2986 2004-02-26  Eric Botcazou  <ebotcazou@act-europe.fr>
2987
2988         * config/sparc/sparc-protos.h (sparc_emit_floatunsdi): Add 'mode'.
2989         (sparc_emit_fixunsdi): New prototype.
2990         * config/sparc/sparc.c (sparc_emit_floatunsdi): Use 'mode' argument.
2991         (sparc_emit_fixunsdi): New function.
2992         * config/sparc/sparc.md (floatunsdisf2): Use 'general_operand' for
2993         operand 1.  Pass SFmode to sparc_emit_floatunsdi.
2994         (floatunsdidf2): Use 'general_operand' for operand 1.  Pass DFmode
2995         to sparc_emit_floatunsdi.
2996         (fixuns_truncsfdi2): New expander.
2997         (fixuns_truncdfdi2): Likewise.
2998
2999 2004-02-26  Alan Modra  <amodra@bigpond.net.au>
3000
3001         * gcse.c (delete_null_pointer_checks_1): Do not delete CC setter
3002         unless HAVE_cc0.
3003
3004 2004-02-25  Richard Henderson  <rth@redhat.com>
3005
3006         * explow.c (force_reg): Call mark_reg_pointer as appropriate.
3007         * config/alpha/alpha.c (alpha_emit_conditional_branch): Don't
3008         use (op0-op1) == 0 if op0 is a pointer.
3009         * config/alpha/alpha.md (cmpdi): Use some_operand.
3010         (three comparison combine splits): Remove.
3011
3012 2004-02-25  Richard Henderson  <rth@redhat.com>
3013
3014         PR c/12794
3015         * c-common.c (handle_alias_attribute): Reject the attribute if
3016         current_function_decl is set.
3017
3018 2004-02-25  Kelley Cook  <kcook@gcc.gnu.org>
3019
3020         * config.gcc: Add comment describing extra_gcc_objs.
3021         i[34567]86-*-cygwin*): Replace host_extra_gcc_objs with extra_gcc_objs.
3022         * configure.ac (extra_gcc_objs): New substitution variable.
3023         (host_extra_gcc_objs): Don't substitute.
3024         * configure: Regenerate.
3025         * Makefile.in: Use extra_gcc_objs.
3026
3027 2004-02-25  Kelley Cook  <kcook@gcc.gnu.org>
3028
3029         * doc/contrib.texi: Add an entry for myself.
3030
3031 2004-02-25  Jan Hubicka  <jh@suse.cz>
3032
3033         * basic-block.h (make_eh_edge, break_superblocks): Declare.
3034         * cfgbuild.c (make_eh_edge):  Make global.
3035         * cfglayout.c (break_superblocks): Likewise; fix memory leak.
3036         * except.c (build_post_landing_pads, connect_post_landing_pads,
3037         dw2_build_landing_pads, sjlj_emit_function_enter,
3038         sjlj_emit_function_exit, sjlj_emit_dispatch_table,
3039         sjlj_build_landing_pads): Update CFG.
3040         (emit_to_new_bb_before): New function.
3041         (finish_eh_generation): Do not rebuild the CFG.
3042
3043 2004-02-25  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3044
3045         * config.gcc (hppa*-*-*, parisc*-*-*): Add MASK_BIG_SWITCH to all
3046         target_cpu_default defines.
3047         * pa-hpux.h (TARGET_DEFAULT): Add MASK_BIG_SWITCH to define.
3048         * pa.h (TARGET_DEFAULT): Likewise.
3049
3050 2004-02-25  Eric Botcazou  <ebotcazou@act-europe.fr>
3051
3052         * fold-const.c (fold): Treat MAX_EXPR and MIN_EXPR like
3053         comparisons with regard to signedness.
3054
3055 2004-02-25  Richard Earnshaw  <rearnsha@arm.com>
3056
3057         * arm.c (thumb_legitimize_address): New function.
3058         * arm-protos.h: Prototype it.
3059         * arm.h (THUMB_LEGITIMIZE_ADDRESS): Define.
3060         (LEGITIMIZE_ADDRESS): Use it.
3061
3062 2004-02-25  J"orn Rennecke <joern.rennecke@superh.com>
3063
3064         * reload1.c (reload): Only spill eliminable register with multiple
3065         adjacent elimination alternatives if all alternatives fail.
3066
3067 2004-02-25  Richard Earnshaw  <rearnsha@arm.com>
3068
3069         * arm.c (arm_legitimate_index_p): For QImode the range of an offset
3070         is -4095...+4095 inclusive.
3071
3072 2004-02-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
3073
3074         * doc/install.texi (sparc-sun-solaris2* specific notes): Document
3075         the bootstrap failure with Sun CC 5.4 and 5.5.
3076
3077 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
3078
3079         * cse.c (cse_change_cc_mode_insns): Stop at any instruction
3080         which modifies NEWREG.
3081         (cse_condition_code_reg): Update the mode of CC_REG in
3082         CC_SRC_INSN on our own.
3083
3084 2004-02-24  Michael Matz  <matz@suse.de>
3085
3086         * config/i386/i386.c (ix86_comp_type_attributes): Check for
3087         regparm attributes.
3088
3089 2004-02-24  Richard Henderson  <rth@redhat.com>
3090
3091         * toplev.c (dump_file_tbl): Rename from dump_file.
3092         * bb-reorder.c, bt-load.c, cfgcleanup.c, cfglayout.c, cfgloopanal.c,
3093         cfgloopmanip.c, cfgrtl.c, config/arm/arm.c, config/frv/frv.c,
3094         config/i386/i386.c, config/ia64/ia64.c, config/mips/mips.c,
3095         config/sh/sh.c, cse.c, flow.c, ifcvt.c, loop-iv.c, loop-unroll.c,
3096         loop-unswitch.c, output.h, predict.c, profile.c, ra-build.c,
3097         ra-colorize.c, ra-debug.c, ra-rewrite.c, ra.c, regrename.c, reload1.c,
3098         toplev.c, tracer.c, value-prof.c, var-tracking.c, web.c:
3099         s/rtl_dump_file/dump_file/g.
3100
3101 2004-02-24  Aldy Hernandez  <aldyh@redhat.com>
3102
3103         * config/rs6000/spe.md (spe_fix_truncsfsi2): Delete.
3104         (spe_fixuns_truncsfsi2): Delete.
3105
3106         * config/rs6000/rs6000.md (fix_truncsfsi2): Delete.
3107         (fixuns_truncsfsi2): Delete.
3108
3109 2004-02-24  Josef Zlomek  <zlomekj@suse.cz>
3110
3111         PR/14240
3112         * rtlanal.c (replace_label): Fix replacing labels in constant pool.
3113
3114 2004-02-24  Geoffrey Keating  <geoffk@apple.com>
3115
3116         * config/darwin.h (TARGET_HAS_F_SETLKW): Define.
3117
3118 2004-02-24  Jason Merrill  <jason@redhat.com>
3119
3120         * tree.c (check_qualified_type): New fn.
3121         (get_qualified_type): Use it.  If type already has the desired
3122         quals, just return it.
3123         * tree.h: Declare it.
3124
3125 2003-02-24  Sanjiv Kumar Gupta  <sanjivg@noida.hcltech.com>
3126
3127         * target-def.h (TARGET_SCHED_INIT_GLOBAL,
3128         TARGET_SCHED_FINISH_GLOBAL): New macros.
3129
3130         * target.h (md_init_global, md_finish_global): Function
3131         declarations corresponding to new target macros.
3132
3133         * haifa-sched.c (sched_init, sched_finish): Allow target to
3134         call the new schedular hooks.
3135
3136         * flow.c (recompute_reg_usage): Add PROP_DEATH_NOTES flag in
3137         call to update_life_info.
3138
3139         * config/sh/sh.h (OVERRIDE_OPTIONS): Re-enable
3140         flag_schedule_insns for SH4.
3141
3142         * config/sh/sh.c (sh_md_init_global, sh_md_finish_global,
3143         find_set_regmode_weight, find_insn_regmode_weight,
3144         find_regmode_weight), sh_md_init, sh_dfa_new_cycle,
3145         sh_variable_issue, high_pressure, ready_reorder,
3146         rank_for_reorder, swap_reorder, sh_reorder, sh_reorder2): New
3147         functions used to throttle the insn movement in first
3148         scheduling pass for SH.
3149
3150         * gcc/doc/tm.texi: Document TARGET_SCHED_INIT_GLOBAL and
3151         TARGET_SCHED_FINISH_GLOBAL.
3152
3153 2004-02-24  Alexandre Oliva  <aoliva@redhat.com>
3154
3155         Implement FR-V FDPIC ABI support for frv-uclinux and frv-linux.
3156         2004-02-05  Alexandre Oliva  <aoliva@redhat.com>
3157         * config/frv/frv.c (frv_emit_movsi): Use GOT relocations for
3158         symbols in sections named by the user.
3159         2004-01-30  Alexandre Oliva  <aoliva@redhat.com>
3160         * config/frv/linux.h (TARGET_OS_CPP_BUILTINS): New.
3161         2004-01-27  Alexandre Oliva  <aoliva@redhat.com>
3162         * config.gcc (frv-*-*linux*): Handle like *-*-linux*.
3163         * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Remove, obviated by
3164         the above.
3165         2004-01-20  Alexandre Oliva  <aoliva@redhat.com>
3166         * config/frv/frv.md (symGOT2reg_hilo, symGOTOFF2reg_hilo): Add
3167         one more pseudo to further improve code generation.
3168         2004-01-19  Alexandre Oliva  <aoliva@redhat.com>
3169         * config/frv/frv.md (movdi_ldd): Introduce explicit indirection
3170         inside UNSPEC.
3171         2004-01-16  Alexandre Oliva  <aoliva@redhat.com>
3172         * config/frv/frv.c (frv_legitimate_address_p): Added
3173         allow_double_reg_p argument.  Adjust all callers.  Use it to
3174         decide whether to enable double-register indirect addressing.
3175         (frv_funcdesc_alias_set): Remove.
3176         (frv_expand_fdpic_call): Force non-SYMBOL_REF operand into
3177         register.  Emit movdi_ldd.
3178         (ldd_address_operand): New.
3179         * config/frv/frv-protos.h (frv_legitimate_address_p): Adjust.
3180         * config/frv/frv.h (GO_IF_LEGITIMATE_ADDRESS): Likewise.
3181         (PREDICATE_CODES): Add ldd_address_operand.
3182         * config/frv/frv.md (movdi_ldd): New.
3183         (symGOT2reg_hilo, symGOTOFF2reg_hilo): Use separate pseudo for
3184         intermediate computations if possible.
3185         (symGOTOFF2reg_i): Fix harmless typo.
3186         2003-12-18  Alexandre Oliva  <aoliva@redhat.com>
3187         * unwind-dw2-fde-glibc.c (_Unwind_IteratePhdrCallback): Cast
3188         relocated p_vaddr to vaddr type.
3189         * config/frv/frv-protos.h (frv_expand_fdpic_call): Return void.
3190         * config/frv/frv.c (frv_get_funcdesc_alias_set): New.
3191         (frv_expand_fdpic_call): Propagate incoming MEM's expr to funcdesc
3192         MEM, or use a funcdesc alias set.  Use regular move instead of
3193         ldd.
3194         (dbl_memory_one_insn_operand): Recognize function descriptors by
3195         type or by alias set, and don't split them.
3196         * config/frv/frv.md (call, call_value): Never use call_internal
3197         for fdpic.
3198         (call_internal, call_value_internal): Never match for FDPIC.
3199         (call_fdpicdi, call_fdpicsi, call_value_fdpicdi,
3200         call_value_fdpicsi): Require FDPIC.
3201         (ldd): Removed.
3202         2003-12-17  Alexandre Oliva  <aoliva@redhat.com>
3203         * config/frv/frv.h (CRT_GET_RFIB_DATA): Define for __FRV_FDPIC__.
3204         * unwind-dw2-fde-glibc.c: Don't include elf-fdpic.h any more.
3205         (_Unwind_IteratePhdrCallback): Adjust type of load_base for FRV
3206         FDPIC.  Compute data base address.
3207         * config/frv/linux.h (SUBTARGET_DRIVER_SELF_SPECS): Enable -mfdpic
3208         before the other self-specs are processed.
3209         * config/frv/t-linux (CRTSTUFF_T_CFLAGS, TARGET_LIBGCC2_CFLAGS):
3210         Build with -fPIC.
3211         2003-12-15  Alexandre Oliva  <aoliva@redhat.com>
3212         * unwind-dw2-fde-glibc.c: Don't include bits/elf-fdpic.h if
3213         inhibit_libc is defined.
3214         2003-12-12  Alexandre Oliva  <aoliva@redhat.com>
3215         * unwind-dw2-fde-glibc.c: Include bits/elf-fdpic.h for
3216         __FRV_FDPIC__.
3217         (__RELOC_POINTER): Define.
3218         (_Unwind_IteratePhdrCallback): Use it.
3219         * config/frv/frv.h (Twrite): Define.
3220         (TRANSFER_FROM_TRAMPOLINE): Use it.
3221         * config/frv/linux.h (INVOKE__main): Undefine.
3222         (Twrite): Override.
3223         2003-12-05  Richard Sandiford  <rsandifo@redhat.com>
3224         * doc/invoke.texi (-mlong-calls, -mlinked-fp): Document FRV options.
3225         (-mlibrary-pic): Emphasize that this option generates EABI code.
3226         (-mcpu): Add fr550.
3227         (-mpack): Remove.
3228         2003-11-30  Alexandre Oliva  <aoliva@redhat.com>
3229         * config/frv/frv.c (int_2word_operand): Reject LABELs, SYMBOL_REFs
3230         and CONSTs in FDPIC mode.
3231         * gcc/config.gcc (with_cpu): Default to fr400 on frv-*-*linux*.
3232         2003-11-29  Richard Sandiford  <rsandifo@redhat.com>
3233         * config/frv/frv.c (move_source_operand): Don't accept symbolic
3234         constants.
3235         * config/frv/frv.md (*movhi_internal, *movsi_internal): Use an 'n'
3236         rather than 'i' constraint for the 2-instruction alternative.
3237         (*movsi_2word): New, incorporating existing int_2word_operand splitter.
3238         2003-11-29  Richard Sandiford  <rsandifo@redhat.com>
3239         * config/frv/frv.h (EXTRA_CONSTRAINT_FOR_Q): Renamed from
3240         EXTRA_CONSTRAINT_FOR_Y.
3241         (EXTRA_CONSTRAINT): Remove handling of 'Y'.
3242         * config/frv/frv.md (*movsi_internal): Remove 'Q' constraint.
3243         (addsi3): Change 'Y' constraint to 'Q'.
3244         2003-11-27  Richard Sandiford  <rsandifo@redhat.com>
3245         * reload.c (CONST_POOL_OK_P): New macro.
3246         (find_reloads): Use it to decide whether a constant can be forced
3247         into memory.
3248         * config/frv/frv.h (LEGITIMATE_PIC_OPERAND_P): Return true if the
3249         constant satisfies got12_operand.
3250         (frv_cannot_force_const_mem): Always return true for TARGET_FDPIC.
3251         (frv_legitimate_address_p): Check for valid unspec offsets using
3252         got12_operand rather than frv_legitimate_fdpic_operand_p.
3253         (frv_legitimate_fdpic_operand_p): Delete.
3254         (frv_emit_movsi): Abort if we try to use the FDPIC register during
3255         or after reload.
3256         (frv_legitimate_constant_p): Return LEGITIMATE_PIC_OPERAND_P if
3257         TARGET_FDPIC.
3258         * config/frv/frv.md (*movdf_double): Add alternatives for CONST_DOUBLE.
3259         2003-11-19  Richard Sandiford  <rsandifo@redhat.com>
3260         * config/frv/frv-protos.h (fdpic_operand, fdpic_got12_operand)
3261         (frv_fdpic_fptr_operand): Don't declare here.
3262         * config/frv/frv.h (EXTRA_CONSTRAINT_FOR_Y): Call got12_operand
3263         rather than fdpic_got12_operand.
3264         (PREDICATE_CODES): Remove symbolic_operand entry.  Add entries for
3265         got12_operand and const_unspec_operand.
3266         * config/frv/frv.c (got12_operand): Renamed from fdpic_got12_operand.
3267         (gpr_or_int12_operand, dbl_memory_one_insn_operand): Update calls.
3268         (symbolic_operand): Remove.
3269         (const_unspec_operand): New predicate.
3270         * config/frv/frv.md (*movsi_got): Use got12_operand.
3271         (*movsi_high_got, *movsi_lo_sum_got): Use const_unspec_operand.
3272         2003-11-18  Richard Sandiford  <rsandifo@redhat.com>
3273         * config/frv/frv-protos.h (frv_output_addr_const_extra): Remove.
3274         * config/frv/frv.h (OUTPUT_ADDR_CONST_EXTRA): Remove definition.
3275         * config/frv/frv.c (frv_unspec): New structure.
3276         (frv_small_data_reloc_p, frv_const_unspec_p): New functions.
3277         (frv_print_operand_memory_reference): Use frv_const_unspec_p to
3278         validate CONST indices.  Use frv_output_const_unspec to print them.
3279         (frv_print_operand): Update call to unspec_got_name.  Use
3280         frv_output_const_unspec to print constant unspecs.
3281         (frv_legitimate_fdpic_operand_p): Return true if frv_const_unspec_p.
3282         Reject UNSPECs otherwise.
3283         (unspec_got_name): Take the relocation number as argument, not an
3284         rtx containing it.
3285         (frv_output_addr_const_extra): Remove, replacing with...
3286         (frv_output_const_unspec): ...this new function.
3287         (frv_find_base_term): Use frv_const_unspec_p & frv_small_data_reloc_p.
3288         (gpr_or_int12_operand): Use fdpic_got12_operand.
3289         (dbl_memory_one_insn_operand): Likewise.
3290         (fdpic_got12_operand): Use frv_const_unspec_p.
3291         (frv_emit_movsi): Use frv_const_unspec_p to check for CONSTs that
3292         are already legitimate.  Use frv_small_data_reloc_p when deciding
3293         whether to use HIGH/LO_SUM for R_FRV_GOTOFF12 and R_FRV_GPREL12.
3294         2003-11-18  Alexandre Oliva  <aoliva@redhat.com>
3295         * config/frv/t-linux (SHLIB_MAPFILES): Override so as to export...
3296         * config/frv/libgcc-frv.ver: ... frv-specific symbols.  New file.
3297         * config/frv/frv-abi.h (CREATE_DOUBLE_SHIFT): Use branch to local
3298         label, for real this time.
3299         * config/frv/frv.c (frv_local_funcdesc_p): Update to new
3300         representation of visibility.
3301         (fdpic_got12_operand, symbolic_operand): Mark unused arguments as
3302         such.
3303         2003-11-17  Richard Sandiford  <rsandifo@redhat.com>
3304         * config/frv/frv.h (MASK_LINKED_FP, TARGET_LINKED_FP): New macros.
3305         (TARGET_SWITCHES): Add -mlinked-fp and -mno-linked-fp.
3306         * config/frv/frv.c (frv_override_options): Set MASK_LINKED_FP unless
3307         it was explicitly disabled.
3308         (frv_stack_info): There is no need to save the link register in every
3309         frame unless TARGET_LINKED_FP is true.
3310         (frv_frame_pointer_required): If !TARGET_LINKED_FP, only require a
3311         frame pointer if the stack pointer might change value.
3312         (frv_return_addr_rtx): Check and process "count" argument.
3313         2003-11-14  Richard Sandiford  <rsandifo@redhat.com>
3314         * config/frv/frv-protos.h (frv_legitimize_address): Remove.
3315         (frv_find_base_term): Declare.
3316         * config/frv/frv.h (LEGITIMIZE_ADDRESS): Do nothing.
3317         (FIND_BASE_TERM): Define.
3318         (PREDICATE_CODES): Remove pic_register_operand, pic_symbolic_operand,
3319         small_data_register_operand, small_data_symbolic_operand.  Add
3320         symbolic_operand.
3321         * config/frv/frv.c (const_small_data_p, plus_small_data_p): Delete.
3322         (frv_print_operand_memory_reference, output_move_single): Remove
3323         special handling for unlegitimized sdata addresses.
3324         (frv_legitimate_address_p): Don't allow sums of SDA_BASE_REG
3325         and symbolic addresses.
3326         (frv_legitimize_address, frv_legitimize_fdpic_address): Delete.
3327         (frv_find_base_term): New function.
3328         (int_2word_operand): Check specifically for symbolic address constants.
3329         (pic_register_operand, pic_symbolic_operand): Delete.
3330         (small_data_register_operand, small_data_symbolic_operand): Delete.
3331         (dbl_memory_one_insn_operand): Don't call plus_small_data_p.
3332         Allow UNSPEC_GOT constants if !TARGET_FDPIC.
3333         (move_source_operand): Only accept CONSTs if they're a two-insn
3334         symbolic constant.
3335         (fdpic_got12_operand): Don't require TARGET_FDPIC.
3336         (frv_emit_movsi): Legitimize sdata and -mlibrary-pic addresses
3337         using gen_symGOTOFF2reg*.
3338         (frv_ifcvt_rewrite_mem): Remove (plus gr16 ...) special cases.
3339         (frv_rtx_costs): Give all MEM addresses a cost of 0.  Give MEMs
3340         themselves a cost of 3 insns.
3341         * config/mips/mips.md (*movsi_got): Allow for !TARGET_FDPIC too.
3342         Change predicate to symbolic_operand.
3343         (*movsi_high_got, *movsi_lo_sum_got): Likewise.
3344         (*movsi_lda_sdata): Delete.
3345         (*movsi_pic, movsi_high_pic, movsi_lo_sum_pic): Delete.
3346         2003-11-05  Alexandre Oliva  <aoliva@redhat.com>
3347         * config.gcc: Add t-slibgcc-elf-ver and support --with-cpu for
3348         frv-*-*linux*.
3349         * config/frv/frv-abi.h (CREATE_DOUBLE_SHIFT): Use branch to local
3350         label.
3351         * config/frv/frv.h (DRIVER_SELF_SPECS): Add blank before
3352         -multilib-library-pic.
3353         (LINK_SPEC): Add -z text for -mfdpic.
3354         * config/frv/frvbegin.c (__ROFIXUP_LIST__): Don't define on FDPIC.
3355         * config/frv/frvend.c (__ROFIXUP_END__): Likewise.
3356         * config/frv/linux.h (STARTFILE_SPEC, ENDFILE_SPEC, LINK_SPEC):
3357         Override.
3358         (OPTION_DEFAULT_SPECS, HAS_INIT_SECTION, INIT_SECTION_ASM_OP,
3359         FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION): Define.
3360         * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Use
3361         crtstuff-generated files.
3362         2003-10-31  Alexandre Oliva  <aoliva@redhat.com>
3363         * config.gcc: Add frv-*-*linux*.
3364         * config/frv/linux.h, config/frv/t-linux: New.
3365         2003-10-06  Alexandre Oliva  <aoliva@redhat.com>
3366         * config/frv/frv.h (LINK_SPEC): Pass -melf32frvfd to the linker
3367         when -mfdpic even if a linker script is explicitly listed.
3368         2003-10-02  Alexandre Oliva  <aoliva@redhat.com>
3369         * config/frv/frv.c (frv_override_options): Clear asm_out
3370         unaligned_op for SImode on FDPIC.
3371         (frv_emit_movsi): Use compute_reloc_for_constant to compute the
3372         argument passed to decl_readonly_section.
3373         (frv_assemble_integer): Revert 2003-09-30's change, but make the
3374         whole block run with FDPIC even with -fno-PIC.
3375         2003-10-02  Alexandre Oliva  <aoliva@redhat.com>
3376         * config/frv/frv.c (frv_cannot_force_const_mem): Don't force
3377         symbol or label plus offset to memory.
3378         (frv_emit_movsi): Emit GPREL only if -mgprel-ro.  Emit 32-bit
3379         GOTOFF and GPREL for LABEL_REF.
3380         * config/frv/frv.h (DRIVER_SELF_SPECS): Add -mgprel-ro with
3381         -mfdpic unless -mno-gprel-ro, -fpic or -fpie.
3382         (MASK_GPREL_RO, TARGET_GPREL_RO): New.
3383         (TARGET_SWITCHES): Added gprel-ro and no-gprel-ro.
3384         * doc/invoke.texi: Document them.
3385         2003-09-30  Alexandre Oliva  <aoliva@redhat.com>
3386         * config/frv/frv-protos.h (frv_gen_GPsym2reg): Declare.
3387         (frv_splittable_got_operand): Removed.
3388         * config/frv/frv.c (frv_cannot_force_const_mem): Reject HIGH and
3389         LO_SUM.  Add comments.
3390         (frv_override_options): Moved enabling of FDPIC to
3391         DRIVER_SELF_SPECS.  Don't enable MASK_DWORD.
3392         (frv_local_funcdesc_p): Remove unnecessary heck for flag_pie.
3393         (frv_legitimize_fdpic_address): Don't duplicate logic in
3394         frv_emit_movsi.
3395         (frv_gen_GPsym2reg): New.
3396         (unspec_got_name): Added gprel.
3397         (frv_expand_fdpic_call): Add support for inlining PLTs.
3398         (fdpic_fptr_operand): Renamed from frv_fdpic_fptr_operand.
3399         (gpr_or_int12_operand): Added GPREL12.
3400         (pic_symbolic_operand): Match even if !flag_pic for FDPIC.
3401         (small_data_symbolic_operand): Fail if FDPIC.
3402         (fdpic_splittable_got_operand): Removed.
3403         (fdpic_got12_operand): Added GPREL12.
3404         (frv_emit_movsi): Reorganize to avoid duplication.  Emit GPREL
3405         when appropriate.  Fix sdata GOTOFF.
3406         (frv_legitimate_constant_p): Require legitimate PIC operand for
3407         FDPIC with pic, but only a legitimate fdpic operand for non-pic.
3408         (frv_assemble_integer): Move FDPIC funcdesc handling out of
3409         flag_pic case.
3410         (frv_asm_out_constructor, frv_asm_out_destructor): Abort if
3411         frv_assemble_integer fails.
3412         * config/frv/frv.h (DRIVER_SELF_SPECS): New.
3413         (SUBTARGET_DRIVER_SELF_SPECS): New.
3414         (ASM_SPEC): Don't pass -mno-fdpic.
3415         (LINK_SPEC): Pass -melf32frvfd for FDPIC.
3416         (MASK_INLINE_PLT, TARGET_INLINE_PLT): New.
3417         (TARGET_SWITCHES): Add -minline-plt, -mno-inline-plt and
3418         -multilib-library-pic.
3419         (PREDICATE_CODES): Added fdpic_operand, fdpic_fptr_operand,
3420         condexec_si_media_operator, condexec_sf_add_operator and
3421         condexec_sf_conv_operator.  Removed condexec_sf_binary_operator
3422         and condexec_sf_unary_operator.
3423         * config/frv/frv.md (R_FRV_GPREL12, R_FRV_GPRELHI, R_FRV_GPRELLO):
3424         New.
3425         (movsi_got, movsi_high_got, movsi_lo_sum_got): Move before
3426         movsi_internal.  Give them internal names.  movsi_got has type
3427         int.
3428         (fdpic got splitters): Remove.
3429         (symGPREL2reg, symGPREL2reg_hilo): New.
3430         * config/frv/t-frv (MULTILIB_MATCHES): Don't map -fpic and -fPIC
3431         to -mlibrary-pic.  Map -multilib-library-pic to it.
3432         * doc/invoke.texi: -mfdpic, -minline-plt, -multilib-library-pic:
3433         Document.
3434         2003-09-28  Alexandre Oliva  <aoliva@redhat.com>
3435         * config/frv/frv.c (frv_function_symbol_referenced_p): Declare.
3436         (TARGET_CANNOT_FORCE_CONST_MEM): Define to...
3437         (frv_cannot_force_const_mem): New function.
3438         (const_small_data_p, plus_small_data_p): Update comments on sdata
3439         on FDPIC.
3440         (frv_override_options): Set flag_pie for FDPIC too.
3441         (frv_conditional_register_usage): Mark gr16 and gr17 as non-fixed,
3442         call-saved registers on FDPIC.
3443         (frv_stack_info): Don't preserve the PIC register on FDPIC, and
3444         don't force LR to be preserved.
3445         (frv_expand_prologue): Likewise.
3446         (frv_asm_output_mi_thunk): Use 12-bit funcdesc gotoff for -fpic.
3447         (frv_frame_pointer_required): Don't force it just because the
3448         FDPIC register is used.
3449         (frv_legitimate_address_p) <CONST>: Accept a legitimate FDPIC
3450         operand only if !condexec_p.
3451         (frv_legitimize_address): Return the FDPIC-legitimized address.
3452         Don't match small data here on FDPIC.
3453         (frv_legitimate_fdpic_operand_p): Don't accept unadorned function
3454         symbols.  Use TRUE/FALSE instead of 1/0.
3455         (frv_local_funcdesc_p): New.
3456         (frv_legitimize_fdpic_address): Rewrite to use GOTOFF and 12-bit
3457         immediates when possible.
3458         (pic_symbolic_operand): Accept SYMBOL_REFs and CONSTs in FDPIC.
3459         (dbl_memory_one_insn_operand): Accept addresses that add a REG and
3460         an UNSPEC_GOT.
3461         (frv_emit_movsi): Handle FDPIC before small data.  Use GOTOFF and
3462         12-bit immediates when possible.
3463         (frv_legitimate_constant_p): In FDPIC, reject SImode operands that
3464         are not legitimate pic operands.
3465         (frv_in_small_data_p): Re-enable for FDPIC.
3466         * config/frv/frv.h (SDA_BASE_REG): Remove comment about FDPIC.
3467         (FRV_GLOBAL_P): Removed.
3468         * config/frv/frv.md: Add modes to CONSTs.
3469         (movsi_got): New.
3470         (movsi_lo_sum_got): Use separate matches instead of match_dup.
3471         (movsi_high_pic, movsi_lo_sum_pic): Match on non-FDPIC only.
3472         (fdpic splittable operations): Match on flag_pic != 1.
3473         2003-09-22  Alexandre Oliva  <aoliva@redhat.com>
3474         * config/frv/frv.c (frv_asm_out_constructor,
3475         frv_asm_out_destructor): Pass to frv_assemble_integer the size in
3476         bytes, not bits.
3477         2003-09-19  Alexandre Oliva  <aoliva@redhat.com>
3478         * config/frv/frv.c (frv_assemble_integer): Reject complex
3479         expressions referencing function SYMBOL_REFs.
3480         * config/frv/frv.c (frv_function_symbol_referenced_p): New.
3481         (move_source_operand): Reject CONSTs that reference function
3482         SYMBOL_REFs on FDPIC.
3483         (frv_emit_movsi): If we get such a CONST, break it up.
3484         * config/frv/frv.h (CPP_SPEC): Define __FRV_FDPIC__ for -mfdpic.
3485         (TRANSFER_FROM_TRAMPOLINE): Use different definitions for FDPIC.
3486         * config/frv/frv.c (frv_print_operand) <I>: Recognize PLUS without
3487         MEM.
3488         (frv_assemble_integer): Don't use funcdesc for LABEL_REFs.
3489         (frv_trampoline_size): Increase for FDPIC.
3490         * config/frv/frv.h (TRAMPOLINE_ALIGNMENT): Bump to 64 for FDPIC.
3491         (TRANSFER_FROM_TRAMPOLINE): Handle FDPIC trampolines.
3492         * config/frv/frv.c (frv_legitimize_fdpic_address, frv_emit_movsi):
3493         Disable use of GOTOFF for now.
3494         (const_small_data_p, plus_small_data_p, frv_in_small_data_p):
3495         Disable use of small data in FDPIC for now.
3496         (frv_asm_output_mi_thunk): Implement for FDPIC.
3497         * config/frv/frv.h (SDA_BASE_REG): Set to -1 with FDPIC.
3498         * config/frv/frv.c (frv_asm_out_constructor): Use
3499         frv_assemble_integer for FDPIC pointers.
3500         (frv_asm_out_destructor): Likewise.
3501         * config/frv/frv.md (ldd): Fix order of operands.  Use
3502         address_operand for input.
3503         2003-09-18  DJ Delorie  <dj@redhat.com>
3504         * config/frv/frv.c (frv_legitimate_fdpic_operand_p): Remove UNSPEC_PIC.
3505         (unspec_got_name): Correct typo.
3506         (frv_emit_movsi): Pre-expand splittable GOTs.
3507         (frv_expand_fdpic_call): Rename gen_lddi to gen_ldd.
3508         * config/frv/frv.md (lddi): Fix syntax error, rename to ldd.
3509         (symGOT2reg_hilo, symGOTOFF2reg_hilo): New.
3510         * config/frv/t-frv: Add -mfdpic multilibs.
3511         * config/frv/frv.h (ASM_SPEC): Pass -mfdpic/-mno-fdpic.
3512         (TARGET_SWITCHES): Add -mno-fdpic, fix documentation.
3513         * config/frv/frv.c (frv_override_options): -mfdpic assumes
3514         flag_pic, default to 32-bit pics, require DWORD ops.
3515         (frv_override_options): Add W and Z constraints.
3516         (frv_expand_prologue): No pic prologue for -mfdpic.
3517         (frv_asm_output_mi_thunk): Support -mfdpic (soon).
3518         (frv_print_operand_memory_reference): Handle GOT constants.
3519         (frv_legitimate_address_p): Allow GOT constants.
3520         (frv_legitimize_address): Handle GOT addresses too.
3521         (frv_legitimate_fdpic_operand_p): New.
3522         (frv_legitimize_fdpic_address): New.
3523         (unspec_got_name): New.
3524         (frv_output_addr_const_extra): New.
3525         (frv_expand_fdpic_call): New.
3526         (frv_fdpic_fptr_operand): New.
3527         (gpr_or_int12_operand): Handle GOT operands.
3528         (int_2word_operand): Handle GOT operands.
3529         (fdpic_operand): New.
3530         (fdpic_splittable_got_operand): New.
3531         (fdpic_got12_operand): New.
3532         (frv_emit_movsi): Handle GOT operands.
3533         (frv_assemble_integer): -mfdpic doesn't use rofixups.
3534         (frv_print_operand): Support 'g' code for GOT operands.
3535         * config/frv/frv-protos.h: Add prototypes as needed.
3536         * config/frv/frv.md (R_FRV_GOT12, R_FRV_GOTHI, R_FRV_GOTLO,
3537         R_FRV_FUNCDESC, R_FRV_FUNCDESC_GOT12, R_FRV_FUNCDESC_GOTHI,
3538         R_FRV_FUNCDESC_GOTLO, R_FRV_FUNCDESC_VALUE,
3539         R_FRV_FUNCDESC_GOTOFF12, R_FRV_FUNCDESC_GOTOFFHI,
3540         R_FRV_FUNCDESC_GOTOFFLO, R_FRV_GOTOFF12, R_FRV_GOTOFFHI,
3541         R_FRV_GOTOFFLO): New.
3542         (movsi_high_got, movsi_lo_sum_got): New.
3543         (*movsi_pic): Don't use this splitter for -mfdpic.
3544         (addsi3): Allow GOT references also.
3545         (call, call_value): Handle -mfdpic separately.
3546         (call_fdpicdi, call_fdpicsi, lddi, call_value_fdpicdi,
3547         call_value_fdpicsi): New.
3548         (symGOT2reg, symGOT2reg_i, got splitters, symGOTOFF2reg,
3549         symGOTOFF2reg_i): New.
3550         * config/frv/frv.h (MASK_FDPIC): New.
3551         (TARGET_FDPIC): New.
3552         (TARGET_SWITCHES): Add -mfdpic.
3553         (FDPIC_FPTR_REGNO): New.
3554         (FDPIC_REGNO): New.
3555         (OUR_FDPIC_REG): New.
3556         (enum reg_class): Add FDPIC_REGS, FDPIC_FPTR_REGS, and
3557         FDPIC_CALL_REGS.
3558         (REG_CLASS_NAMES): Likewise.
3559         (REG_CLASS_CONTENTS): Likewise.
3560         (EXTRA_CONSTRAINT_FOR_Y): New, for 12-bit GOTs.
3561         (EXTRA_CONSTRAINT): Add it here.
3562         (FRV_GLOBAL_P): New.
3563         (OUTPUT_ADDR_CONST_EXTRA): New.
3564
3565 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
3566
3567         * config/sparc/sparc.h: Remove commented-out definitions of
3568         TARGET_EDOM and GEN_ERRNO_RTX.
3569
3570 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
3571
3572         * df.c, df.h, ra-build.c, ra-rewrite.c, ra.c, web.c: Replace
3573         df_analyse with df_analyze.
3574
3575 2004-02-24  Alan Modra  <amodra@bigpond.net.au>
3576
3577         * gcse.c (delete_null_pointer_checks_1): Set stop_insn to end, not
3578         beginning of block.
3579
3580 2004-02-23  James E Wilson  <wilson@specifixinc.com>
3581
3582         * calls.c (precompute_arguments): Update comment.
3583
3584 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
3585
3586         * et-forest.c: Replace et_occurences with et_occurrences.
3587
3588 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
3589
3590         * cfgloop.h, loop-iv.c, loop-unswitch.c: Replace iv_analyse
3591         with iv_analyze.
3592
3593 2004-02-23  Kelley Cook  <kcook@gcc.gnu.org>
3594
3595         * config/i386/i386.c: Rename pni to sse3.
3596         * config/i386/i386.h: Likewise.
3597         * config/i386/i386.md: Likewise.
3598         * config/i386/pmmintrin.h: Likewise.
3599         * doc/extend.texi: Likewise.
3600         * doc/invoke.texi: Likewise.
3601
3602 2004-02-23  Zack Weinberg  <zack@codesourcery.com>
3603             Kazu Hirata  <kazu@cs.umass.edu>
3604
3605         Remove -fwritable-strings.
3606         * c-common.c (fix_string_type): Don't check
3607         flag_writable_strings.
3608         (fix_string_type): Likewise.
3609         * c-opts.c (set_std_c89): Don't initialize
3610         flag_writable_strings.
3611         (set_std_c99): Likewise.
3612         * common.opt (fwritable-strings): Remove.
3613         * flags.h: Remove the external declaration of
3614         flag_writable_strings.
3615         * opts.c (common_handle_option) <OPT_fwritable_strings>:
3616         Remove.
3617         * toplev.c (flag_writable_strings): Remove.
3618         (f_options): Remove an entry for writable-strings.
3619         * varasm.c (const_hash_1) <STRING_CST>: Don't check
3620         flag_writable_strings.
3621         (compare_constant) <STRING_CST>: Likewise.
3622         (build_constant_desc): Likewise.
3623         * config/darwin.c (machopic_select_section): Likewise.
3624         * config/arm/arm.c (AOF_ASSEMBLER): Likewise.
3625         * config/arm/pe.c (arm_pe_encode_section_info): Likewise.
3626         * config/iq2000/iq2000.c (iq2000_select_section): Likewise.
3627         * config/mips/mips.c (mips_select_section): Likewise.
3628         (mips_encode_section_info): Likewise.
3629         * config/pa/pa.c (pa_select_section): Likewise.
3630         * config/pa/pa.h (TEXT_SPACE_P): Likewise.
3631         * config/v850/v850.c (v850_select_section): Likewise.
3632         * doc/invoke.texi (-fwritable-strings): Remove.
3633         (-fno-const-strings): Don't mention -fwritable-strings.
3634         * doc/trouble.texi: Don't mention -fwritable-strings.
3635
3636 2003-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
3637
3638         * doc/install.texi: Update for switch of boehm-gc to autoconf 2.57.
3639
3640 2004-02-23  Dale Johannesen  <dalej@apple.com>
3641
3642         * config/rs6000.md (movsf_hardfloat): Add POWER form of nop.
3643         (movdf_hardfloat64):  Ditto.
3644         (movdf_softfloat64):  Ditto.
3645
3646 2004-02-23  Fariborz Jahanian <fjahanian@apple.com>
3647         * config/rs6000/rs6000.c (function_arg): call to
3648         rs6000_mixed_function_arg for DFmode moved to allow
3649         normal DFmode incoming register assignment.
3650
3651 2004-02-23  Dale Johannesen  <dalej@apple.com>
3652
3653         * config/rs6000.md (movsf_hardfloat): Accept CTR-to-CTR copy.
3654         (movdf_hardfloat64):  Ditto.
3655
3656 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
3657
3658         * convert.c, gcov-io.c, libgcov.c, sched-int.h, sibcall.c,
3659         config/rs6000/linux.h, config/rs6000/rs6000-c.c: Update
3660         copyright.
3661
3662 2004-02-23  Andrew Pinski  <pinskia@physics.uc.edu>
3663
3664         PR c/14156
3665         * c-typeck.c (c_expand_return): Change check for VAR_DECL
3666         to use DECL_P instead.
3667
3668         * config/rs6000/linux.h (OS_MISSING_POWERPC64): Define.
3669         * config/rs6000/linux64.h (OS_MISSING_POWERPC64): Define.
3670
3671 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
3672
3673         * Makefile.in (opts.o): Depend on target.h.
3674         * opts.c (decode_options): Use targetm.default_short_enums
3675         instead of DEFAULT_SHORT_ENUMS.
3676         * system.h (DEFAULT_SHORT_ENUMS): Poison.
3677         * target-def.h (TARGET_DEFAULT_SHORT_ENUMS): New.
3678         (TARGET_INITIALIZER): Add TARGET_DEFAULT_SHORT_ENUMS.
3679         * target.h (gcc_target): Add default_short_enums.
3680         * config/cris/cris.h: Remove a comment about
3681         DEFAULT_SHORT_ENUMS.
3682         * config/ip2k/ip2k.h: Likewise.
3683         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Change to
3684         TARGET_DEFAULT_SHORT_ENUMS.  Update the description.
3685
3686 2004-02-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
3687             Falk Hueffner  <falk@debian.org>
3688
3689         PR c/14188
3690         * builtins.c (expand_builtin_va_arg): Emit an informative message
3691         if a trap is generated.
3692         * c-typeck.c (build_function_call): Likewise.
3693
3694 2004-02-22  Jakub Jelinek  <jakub@redhat.com>
3695
3696         * gcov-io.c (gcov_open) [GCOV_LOCKED]: Use open + fdopen instead of
3697         fopen.
3698         * libgcov.c: Include sys/stat.h.
3699         * config/rs6000/linux.h (TARGET_HAS_F_SETLKW): Define.
3700         * config/rs6000/linux64.h (TARGET_HAS_F_SETLKW): Define.
3701         * config/sparc/linux.h (TARGET_HAS_F_SETLKW): Define.
3702         * config/sparc/linux64.h (TARGET_HAS_F_SETLKW): Define.
3703
3704 2004-02-22  Kazu Hirata  <kazu@cs.umass.edu>
3705
3706         * reorg.c: Remove comments about dead ports.
3707
3708 2004-02-22  Christopher Faylor  <cgf@redhat.com>
3709
3710         * config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): *Really* specify
3711         extra host object file when targetting cygwin rather than generic
3712         object files.
3713
3714 2004-02-22  Josef Zlomek  <zlomekj@suse.cz>
3715
3716         Merge from tree-ssa:
3717         2003-11-20  Richard Henderson  <rth@redhat.com>
3718
3719                 * tree-inline.c (insert_decl_map): New.
3720                 (remap_decl, remap_type, remap_block, copy_body_r,
3721                 initialize_inlined_parameters, declare_return_variable,
3722                 remap_save_expr): Use it.
3723
3724         * function.c (copy_body_r): Add mapping from id->ret_label to
3725         id->ret_label.  Revert test for ret_label.
3726
3727 2004-02-22  Jakub Jelinek  <jakub@redhat.com>
3728
3729         * genoutput.c (process_template): Strip trailing whitespace in @
3730         templates and issue a warning if there was any.
3731
3732 2004-02-21  Christopher Faylor  <cgf@redhat.com>
3733
3734         * config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): Specify extra host
3735         object file when targetting cygwin.
3736         * config/i386/t-cygwin (EXTRA_GCC_OBJS): Remove definition since it is
3737         overridden by top-level Makefile.
3738
3739 2004-02-21  Roger Sayle  <roger@eyesopen.com>
3740
3741         * config/i386/i386.c (standard_80387_constant_p): Also prefer
3742         the x87's load constant instructions when optimizing for size.
3743
3744 2004-02-21  Kazu Hirata  <kazu@cs.umass.edu>
3745
3746         * combine.c (SHIFT_COUNT_TRUNCATED): Remove.
3747         * defaults.h (SHIFT_COUNT_TRUNCATED): Provide the default.
3748         * expmed.c: Assume SHIFT_COUNT_TRUNCATED is always defined.
3749         * fold-const.c: Likewise.
3750         * simplify-rtx.c: Likewise.
3751
3752 2004-02-21  Alan Modra  <amodra@bigpond.net.au>
3753
3754         * combine.c (can_combine_p): Don't ignore SETs marked with
3755         REG_EH_REGION notes.
3756         (try_combine): When attemting to fix unrecognized insns, don't
3757         split a PARALLEL that contains the original i2.
3758
3759 2004-02-21  Ziemowit Laski  <zlaski@apple.com>
3760
3761         * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Refer to
3762         SUBTARGET_OPTION_TRANSLATE_TABLE for architecture-specific options.
3763         * config/i386/darwin.h (SUBTARGET_OPTION_TRANSLATE_TABLE): Define it.
3764         * config/rs6000/altivec.h: #error out if '-maltivec' not specified.
3765         (vector, pixel, bool): #define to __vector, __pixel and __bool.
3766         (__un_args_eq, __bin_args_eq, __tern_args_eq): Move to C-specific
3767         portion of header.
3768         (__altivec_link_error_invalid_argument): Remove prototype; will use
3769         __builtin_altivec_compiletime_error("vec_*") instead.
3770         (vec_*): Fix/complete set of available operation overloads given the
3771         existence of distinct 'vector bool ...' and 'vector pixel' types; tighten
3772         cv-correctness of pointer arguments; in C, always check for correct
3773         argument types before macro expansion.
3774         * config/rs6000/darwin.h (SUBTARGET_OPTION_TRANSLATE_TABLE): New macro
3775         defining Darwin/PowerPC-specific '-f[no-]altivec' and
3776         '-W[no-]altivec-long-deprecated' switches.
3777         * config/rs6000/rs6000-c (rs6000_cpu_cpp_builtins): Pre-define
3778         '__vector', '__pixel' and '__bool' macros using
3779         '__attribute__((altivec(...)))' types.
3780         * config/rs6000/rs6000.c (bool_char_type_node, bool_short_type_node,
3781         bool_int_type_node, pixel_type_node, bool_V16QI_type_node,
3782         bool_V8HI_type_node, bool_V4SI_type_node, pixel_V8HI_type_node):
3783         New type nodes.
3784         (rs6000_warn_altivec_long, rs6000_warn_altivec_long_switch): New, for
3785         handling '-W[no-]altivec-long-deprecated'.
3786         (rs6000_override_options): Handle '-W[no-]altivec-long-deprecated'.
3787         (rs6000_expand_binop_builtin, rs6000_expand_ternop_builtin,
3788         altivec_expand_dst_builtin): Remove casts from integer literals.
3789         (altivec_expand_builtin): Likewise; handle expansion of new
3790         '__builtin_altivec_compiletime_error' function.
3791         (rs6000_init_builtins): Initialize 'vector bool ...' and 'vector pixel'
3792         types, and make them distinct from other vector types; register
3793         '__builtin_altivec_compiletime_error' function.
3794         (print_operand): For 'P', print a full target register name instead of
3795         merely its number.
3796         (rs6000_attribute_table): Add "altivec" attribute.
3797         (rs6000_handle_altivec_attribute): New function.
3798         * config/rs6000/rs6000.h (TARGET_OPTIONS): Describe
3799         '-m[no-]-warn-altivec-long' (which '-W[no-]altivec-long-deprecated'
3800         maps to).
3801         (rs6000_warn_altivec_long, rs6000_warn_altivec_long_switch): Forward
3802         declare.
3803         (ALTIVEC_BUILTIN_COMPILETIME_ERROR): New built-in enumeration.
3804
3805 2004-02-20  James E Wilson  <wilson@specifixinc.com>
3806
3807         * config/ia64/ia64.md (shift_mix4left+1): Delete reload_completed
3808         check.
3809         (shift_mix4left+2): Delete redundant pattern.
3810
3811 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
3812
3813         * alias.c (OUTGOING_REGNO): Don't define the default.
3814         * builtins.c (OUTGOING_REGNO): Likewise.
3815         (INCOMING_REGNO): Likewise.
3816         (apply_args_register_offset): Always use OUTGOING_REGNO.
3817         * combine.c (OUTGOING_REGNO): Likewise.
3818         * sibcall.c (OUTGOING_REGNO): Likewise.
3819         * defaults.h (INCOMING_REGNO): Provide the default.
3820         (OUTGOING_REGNO): Likewise.
3821
3822 2004-02-21  Jan Hubicka  <jh@suse.cz>
3823
3824         * params.def (max-peeled-insns, max-completely-peeled-insns,
3825         max-once-peeled-insns): Set to 400.
3826
3827 2004-02-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3828
3829         PR c++/12007
3830         * dbxout.c (dbxout_parms): Check that DECL_RTL and DECL_INCOMING_RTL
3831         are set for parameters before outputing debugging information.
3832
3833 2004-02-20  Falk Hueffner  <falk@debian.org>
3834
3835         PR target/14201
3836         * config/alpha/alpha.md (*fix_truncsfsi_ieee): Fix typoed operand
3837         numbers.
3838
3839 2004-02-20  Per Bothner  <per@bothner.com>
3840
3841         * input.h:  Don't #include line-map.h.  It may cause link problems
3842         with undefined linemap_line_start when line-map.h is included but
3843         line-map.o is not linked, as currently happens with gengtype on
3844         compilers that don't support inline.
3845         * toplev.c:  So we do have to explicitly #include line-map.h here.
3846
3847 2004-02-20  Richard Henderson  <rth@redhat.com>
3848
3849         * doc/invoke.texi: Add -Wvariadic-macros.
3850
3851 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
3852
3853         * haifa-sched.c (sched_emit_insn): Remove.
3854         * sched-int.h: Remove the corresponding prototype.
3855
3856 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
3857
3858         Revert:
3859         2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
3860         * opts.c (decode_options): Don't use DEFAULT_SHORT_ENUMS.
3861         * system.h (DEFAULT_SHORT_ENUMS): Poison.
3862         * config/cris/cris.h: Remove a comment about
3863         DEFAULT_SHORT_ENUMS.
3864         * config/ip2k/ip2k.h: Likewise.
3865         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Remove.
3866
3867 2004-02-20  Mohan Embar  <gnustuff@thisiscool.com>
3868             Tom Tromey  <tromey@redhat.com>
3869
3870         * doc/install.texi: Moved --disable-libgcj and
3871         --with-system-zlib documentation to new section for
3872         Java-specific options.
3873         Added explicit Cross-Compiler-Specific Options subheading.
3874         Added section for Java-specific options.
3875
3876 2004-02-20  Matt Kraai  <kraai@alumni.cmu.edu>
3877
3878         * doc/install.texi (Building the Ada compiler): Remove
3879         example.
3880
3881 2004-02-20  James E Wilson  <wilson@specifixinc.com>
3882
3883         * toplev.c (dump_file_index, dump_file): Put ce3 before rnreg.
3884
3885 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
3886
3887         * gcc.c (process_command): Allow translation of the copyright
3888         symbol but not the rest of the copyright message.
3889         * gcov.c (print_version): Likewise.  Allow translation of the
3890         message about warranty.
3891
3892 2004-02-20  Hans-Peter Nilsson  <hp@axis.com>
3893
3894         * config/cris/cris.md ("*andsi_movu"): Correct parentheses in
3895         predicate.
3896         ("*andsi_clear"): Tweak constraints to not match postincrement.
3897         Adjust the predicate to exclude a volatile memory reference.
3898         ("*andhi_clear"): Ditto.  Rename from "*andhi_clear_signed".
3899         ("*andhi_clear_unsigned"): Remove, non-matching pattern.
3900
3901 2004-02-19  Matt Kraai  <kraai@alumni.cmu.edu>
3902
3903         * move-if-change: Remove.
3904         * Makefile.in (s-mlib, c-parse.y, s-check, s-gencheck)
3905         (s-specs, s-options, s-config, s-conditions, s-flags, s-codes)
3906         (s-constants, s-emit, s-recog, s-opinit, s-extract, s-peep)
3907         (s-attr, s-attrtab, s-output, s-genrtl, s-modes, s-preds)
3908         (s-gtyp-gen, s-iov): Use the top level move-if-change.
3909         * objc/Make-lang.in (objc/objc-parse.y): Likewise.
3910
3911 2004-02-19  James E Wilson  <wilson@specifixinc.com>
3912
3913         * config/i386/i386.md (doloop_end_internal): Use nonimmediate_operand
3914         for operand2.  Add condition that requires register_operand operand2
3915         before reload.
3916
3917 2004-02-19  Richard Sandiford  <rsandifo@redhat.com>
3918             Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
3919
3920         * config/mips/mips.c (mips_address_insns): Treat BLKmode specially.
3921         * config/mips/mips.md: Expand comment above unaligned loads and stores.
3922
3923 2004-02-19  Richard Henderson  <rth@redhat.com>
3924
3925         * Makefile.in (STRICT2_WARN): Add -Wno-variadic-macros.
3926         * tree.c (build0, build1, build2, build3, build4): Split out from...
3927         (build): ... here.  Call them.
3928         * tree.h (build, _buildN1, _buildN2, _buildC1, _buildC2): New.
3929
3930         * convert.c (convert_to_integer): Remove extra build argument.
3931         * tree-inline.c (expand_call_inline): Likewise.
3932
3933 2004-02-19  Richard Henderson  <rth@redhat.com>
3934
3935         * c-opts.c (warn_variadic_macros): New.
3936         (c_common_handle_option): Set it.
3937         (sanitize_cpp_opts): Copy it to cpp_opts.
3938         * c.opt (Wvariadic-macros): New.
3939         * cpplib.h (struct cpp_options): Add warn_variadic_macros.
3940         * cppinit.c (cpp_create_reader): Initialize it.
3941         * cppmacro.c (parse_params): Check it.
3942
3943 2004-02-19  David Daney <ddaney@avtrex.com>
3944
3945         PR preprocessor/14198
3946         * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Add
3947         builtin_assert ("machine=mips")
3948
3949 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
3950
3951         * opts.c (decode_options): Don't use DEFAULT_SHORT_ENUMS.
3952         * system.h (DEFAULT_SHORT_ENUMS): Poison.
3953         * config/cris/cris.h: Remove a comment about
3954         DEFAULT_SHORT_ENUMS.
3955         * config/ip2k/ip2k.h: Likewise.
3956         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Remove.
3957
3958 2004-02-19  Zack Weinberg  <zack@codesourcery.com>
3959
3960         * config/ia64/ia64.c (ia64_function_arg): In big-endian mode,
3961         when passing single SFmode quantities in general registers,
3962         put them in the high half.
3963
3964 2004-02-19  Aldy Hernandez  <aldyh@redhat.com>
3965
3966         * doc/md.texi (Standard Names): Document additional dependency on
3967         fix pattern.
3968
3969         * optabs.c (ftruncify): Remove.
3970         (expand_fix): Manually inline ftruncify above.
3971         (can_fix_p): Add FIXME note.
3972
3973 2004-02-19  Aldy Hernandez  <aldyh@redhat.com>
3974
3975         * config/rs6000/spe.md (spe_fixunssfsi2): Rename to
3976         spe_fixuns_truncsfsi2.
3977
3978         * config/rs6000/rs6000.md (fixunssfsi2): Rename to
3979         fixuns_truncsfsi2.
3980
3981 2004-02-19  Steve Ellcey  <sje@cup.hp.com>
3982
3983         * config/ia64/ia64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
3984         * testsuite/gcc.dg/20040219-1.c: New test.
3985
3986 2004-02-19  Ulrich Weigand  <uweigand@de.ibm.com>
3987
3988         * config/s390/s390.md ("*subdf3_cc", "*subdf3_cconly", "*subsf3_cc",
3989         "*subsf3_cconly"): Subtraction is not commutative.
3990
3991 2004-02-19  Zack Weinberg  <zack@codesourcery.com>
3992
3993         * sdbout.c (preinit_symbols, sdbout_initialized): New statics.
3994         (sdbout_symbol): If called before sdbout_init, queue DECL for
3995         later and return.
3996         (sdbout_init): Set sdbout_initialized true, process decls
3997         queued earlier by sdbout_symbol.
3998         (sdbout_finish): Use size_t for index variable.
3999
4000 2004-02-19  Jeff Law  <law@redhat.com>
4001
4002         * fold-const.c (invert_truthvalue): Do not call invert_tree_comparison
4003         for unordered comparison codes.
4004
4005 2004-02-19  Ian Lance Taylor  <ian@wasabisystems.com>
4006
4007         * reload1.c (reload): Correct comment.
4008         (scan_paradoxical_subregs): Remove #if 0 and old comment.
4009         * doc/extend.texi (Local Reg Vars): Remove obsolete comment that
4010         register variables are not used by reload.
4011
4012 2004-02-19  Hans-Peter Nilsson  <hp@axis.com>
4013
4014         PR target/14209
4015         * config/cris/cris.md ("*andsi_movu", "*andhi_movu"): Tweak
4016         constraints to not match postincrement.  Adjust the predicate to
4017         exclude a volatile memory reference.
4018
4019 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
4020
4021         * config/mcore/mcore.h (ASM_OUTPUT_EXTERNAL): Remove.
4022
4023 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
4024
4025         * hooks.c (hook_void_tree_int): Remove.
4026         (hook_void_constcharptr): Likewise.
4027         (hook_int_void_0): Likewise.
4028         * hooks.h: Remove the prototypes for the above three
4029         functions.
4030         * targhooks.c (hook_bool_machine_mode_true): Remove.
4031         * targhooks.h: Remove the prototype for
4032         hook_bool_machine_mode_true.
4033
4034 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
4035
4036         * emit-rtl.c (subreg_realpart_p): Remove.
4037         (reorder_insns_with_line_notes): Likewise.
4038         (end_full_sequence): Likewise.
4039         * rtl.h: Remove the prototype for the above functions.
4040
4041 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
4042
4043         * config/arc/arc.h, config/arm/arm.h, config/frv/frv.h,
4044         config/h8300/h8300.h, config/i386/i386.h, config/i860/i860.h,
4045         config/iq2000/iq2000.h, config/m32r/m32r.h,
4046         config/pdp11/pdp11.h, config/sparc/sparc.h,
4047         config/xtensa/xtensa.h: Remove commented-out or useless
4048         definitions of CASE_VECTOR_PC_RELATIVE.
4049
4050 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
4051
4052         * loop.c (all_sets_invariant_p): Remove.
4053
4054 2004-02-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
4055
4056         PR target/12916
4057         * config/sparc/sparc.h (NPARM_REGS): Delete.
4058         (BASE_RETURN_VALUE_REG): Likewise.
4059         (BASE_OUTGOING_VALUE_REG): Likewise.
4060         (BASE_PASSING_ARG_REG): Likewise.
4061         (BASE_INCOMING_ARG_REG): Likewise.
4062         * config/sparc/sparc.c (sparc_strict_argument_naming): Test
4063         TARGET_ARCH64, not TARGET_V9.
4064         (function_arg_slotno): Dispatch based on the mode class.
4065         Handle vector modes like floating-point modes.
4066         (function_arg_record_value_1): Handle vector types like
4067         floating-point types.
4068         (function_arg_record_value_2): Likewise.
4069         Calculate regno after mode transformation.
4070         (function_arg): Handle vector modes like floating-point modes.
4071         (function_arg_partial_nregs): Replace NPARM_REGS by SPARC_INT_ARG_MAX.
4072         If ARCH64, do not recheck alignment.
4073         (function_arg_pass_by_reference): Reorder the conditions.
4074         (sparc_return_in_memory): Move after function_arg_padding.
4075         Implement calling conventions for vector modes.
4076         (sparc_struct_value_rtx): Move after sparc_return_in_memory.
4077         (function_value): Move scope of 'regbase'.
4078         Implement calling conventions for vector modes.
4079         (sparc_builtin_saveregs): Replace NPARM_REGS by SPARC_INT_ARG_MAX
4080         and BASE_INCOMING_ARG_REG by SPARC_INCOMING_INT_ARG_FIRST.
4081         (sparc_va_arg): Use function_arg_pass_by_reference to test whether
4082         the argument is passed by reference.
4083         (sparc_type_code): Handle vector types.
4084
4085 2004-02-19  Alan Modra  <amodra@bigpond.net.au>
4086
4087         * function.c (assign_parms): When building decl_rtl for
4088         SPLIT_COMPLEX_ARGS, ensure inner modes of concat match outer.
4089
4090 2004-02-19  Olivier Hainque  <hainque@act-europe.fr>
4091
4092         * expr.c (is_aligning_offset): Check if we are aligning the
4093         expressions's address over BIGGEST_ALIGNMENT in bytes, not
4094         in bits.
4095
4096 2003-02-18  Matt Austern  <austern@apple.com>
4097
4098         * gcc.c (LIBGCC_SPEC): If REAL_LIBGCC_SPEC is defined, and
4099         LIBGCC_SPEC isn't, set LIBGCC_SPEC to REAL_LIBGCC_SPEC.
4100         (init_gcc_spec): Don't define or call if REAL_LIBGCC_SPEC is
4101         defined.  Instead use REAL_LIBGCC_SPEC, unmodifed, as the libgcc
4102         spec string.
4103         * doc/tm.texi (REAL_LIBGCC_SPEC): Document.
4104
4105 2004-02-18  Zack Weinberg  <zack@codesourcery.com>
4106
4107         * dwarf2out.c (loclabel_num): Move outside #ifdef
4108         DWARF2_DEBUGGING_INFO and mark with GTY(()).
4109         * config/ia64/ia64.c (struct extern_func_list,extern_func_head):
4110         Mark with GTY(()).
4111         (ia64_hpux_add_extern_decl): Save the decl, not the name string.
4112         Allocate memory with ggc_alloc.  No need to copy anything.
4113         (ia64_hpux_file_end): Update to match.
4114
4115 2004-02-18  Jakub Jelinek  <jakub@redhat.com>
4116
4117         * config/i386/i386.c (override_options): Don't imply 3DNow! for -m64
4118         by default.
4119
4120 2004-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
4121
4122         * config/s390/s390.md ("divmodtidi3"): Use canonical RTL.
4123         ("divmodtisi3"): Likewise.
4124         ("udivmoddi4", "udivmodtidi3"): Likewise.
4125         ("divmodsi4", "divmoddisi3"): Likewise.
4126         ("udivmodsi4", "udivmoddisi3"): Likewise.
4127         ("udivsi3", "umodsi3"): Likewise.
4128
4129 2004-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
4130
4131         * config/s390/s390.c (s390_mainpool_start): Delete the main pool
4132         placeholder insn when chunkifying the pool.
4133
4134 2004-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4135
4136         * pa.h (PIC_OFFSET_TABLE_REGNUM): Define to INVALID_REGNUM when not
4137         generating PIC code.
4138
4139 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4140
4141         * config/h8300/h8300-protos.h: Add a prototype for
4142         h8300_expand_branch.
4143         * config/h8300/h8300.c (h8300_expand_branch): New.
4144         * config/h8300/h8300.md (ble, bleu, bge, bgeu, blt, bltu, bgt,
4145         bgtu, beq, bne): Call h8300_expand_branch().
4146
4147 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4148
4149         * config/h8300/h8300-protos.h: Add prototypes for
4150         h8300_hard_regno_nregs and h8300_hard_regno_mode_ok.
4151         * config/h8300/h8300.c (h8300_hard_regno_nregs): New.
4152         (h8300_hard_regno_mode_ok): Likewise.
4153         * config/h8300/h8300.h (HARD_REGNO_NREGS): Call
4154         h8300_hard_regno_nregs().
4155         (HARD_REGNO_MODE_OK): Call h8300_hard_regno_mode_ok().
4156
4157 2004-02-18  Per Bothner  <per@bothner.com>
4158
4159         * cpphash.h (struct cpp_buffer):  Restore return_at_eof field.  This
4160         partly reverts my 2003-10-01 change, because we're back to logically
4161         including <command line> inside the main line.
4162         * cpplex.c (_cpp_get_fresh_line):  Check return_at_eof field.
4163         * cppmacro.c (cpp_scan_nooutput):  Set return_at_eof of current buffer.
4164         Fixes PR preprocessor/14103.
4165
4166         * cppfiles.c (_cpp_stack_include):  When appropriate decrement
4167         line_table's highest_location, fixing LAST_SOURCE_LINE_LOCATION.
4168         (cpp_push_include):  Don't need to increment pfile's line field.
4169         * line-map.h (LAST_SOURCE_LINE_LOCATION):  Only decrement by 1.
4170
4171         * c-ppoutput.c (print struct):  New first_time field.
4172         (init_pp_output):  Set print.first_time.
4173         (pp_file_change):  Use print.first_time, rather than MAIN_FILE_P,
4174         which is set also for (say) <command line>.  Clear print.first_time.
4175
4176         * cppfiles.c (struct _cpp_file):  Comment and type for pch field
4177         does not match the code, so fix both.
4178         (should_stack_file):  Inline include_pch_p function.
4179         (include_pch_p):  Remove pointless function.
4180
4181         * cpphash.h (struct cpp_buffer):  Remove unused search_cached field.
4182
4183 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4184
4185         * config/h8300/h8300.md (four define_peephole2's): Use
4186         h8300_regs_ok_for_stm().
4187
4188 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4189
4190         * config/h8300/h8300-protos.h: Update the prototype for
4191         expand_a_rotate().
4192         * config/h8300/h8300.c (expand_a_rotate): Remove the first
4193         argument.
4194         * config/h8300/h8300.md: Update all callers.
4195
4196 2004-02-18  Jan Hubicka  <jh@suse.cz>
4197
4198         * simplify-rtx.c (simplify_unary_operation): Deal with logicals on
4199         floats.
4200         (simplify_binary_operation): Deal with logicals on floats.
4201
4202         * i386.md (SSE fabs splitters): Emit new patterns.
4203         (SSE cmov splitters): Likewise.
4204         (sse_andv4sf3, sse_nandv4sf3, sse_iorv4sf3, sse_xorv4sf3
4205         (sse_andv2df3, sse_nandv2df3, sse_iorv2df3, sse_xorv2df3): Do not use
4206         subregs.
4207         (sse_andsf3, sse_nandsf3, sse_xorsf3): Kill.
4208         (sse_anddf3, sse_nanddf3, sse_xordf3): Kill.
4209
4210 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4211
4212         * config/h8300/h8300.c (expand_a_rotate): Don't generate insns
4213         by hand.
4214         (output_a_rotate): Tweak a comment.
4215         * config/h8300/h8300.md (*rotlqi3_1): Change to rotlqi3_1.
4216         (*rotlhi3_1): Change to rotlhi3_1.
4217         (*rotlsi3_1): Change to rotlsi3_1.
4218
4219 2004-02-18  Richard Earnshaw  <rearnsha@arm.com>
4220
4221         PR target/13866
4222         * arm.c (load_multiple_operation): Don't insist that the source reg
4223         of a post-increment component is the same as the destination.
4224         (store_multiple_operation): Likewise.
4225
4226 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4227
4228         * config/h8300/h8300.md: Move movsf patterns into one section
4229         of the file.
4230
4231 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4232
4233         * cfgloop.h, cfgloopanal.c, cpplex.c, except.h, loop-init.c,
4234         loop-unroll.c, scan-decls.c, scan.h, stor-layout.c,
4235         xcoffout.c, xcoffout.h, config/arm/mmintrin.h,
4236         config/mips/linux64.h, config/pa/pa-64.h,
4237         config/rs6000/aix51.h, config/rs6000/aix52.h,
4238         config/rs6000/spe.md, config/sparc/linux.h,
4239         config/sparc/linux64.h: Update copyright.
4240
4241 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
4242
4243         * config/h8300/h8300.md: Move push patterns into one
4244         section of the file.
4245
4246 2004-02-18  Mark Mitchell <mark@codesourcery.com>
4247
4248         PR c++/11326
4249         * config/ia64/ia64.c (ia64_struct_value_rtx): Cope with NULL
4250         fntype.
4251
4252 2004-02-18  Paul Brook  <paul@codesourcery.com>
4253
4254         * rtlanal.c (rtx_varies_p): Return 0 for NULL_RTX
4255
4256 2004-02-18  Paul Brook  <paul@codesourcery.com>
4257
4258         PR debug/12934
4259         * dwarf2out.c (loc_descriptor_from_tree): Handle
4260         EXPR_WITH_FILE_LOCATION.
4261
4262 2004-02-18  Jakub Jelinek  <jakub@redhat.com>
4263
4264         * config/i386/i386.md (zero_extendqidi2, zero_extendqidi2,
4265         testdi_1_rex64, anddi_2, xordi_1_rex64, xordi_2_rex64): Remove
4266         trailing whitespace from instructions.
4267
4268 2004-02-17  Geoffrey Keating  <geoffk@apple.com>
4269
4270         * configure.ac: When generating auto-build.h, pass
4271         --enable-languages to the sub-configure.
4272         Put quotes around ${program_transform_name} when generating
4273         name of as, ld, nm, objdump.
4274         * configure: Regenerate.
4275
4276 2004-02-17  Matt Kraai  <kraai@alumni.cmu.edu>
4277
4278         * Makefile.in (s-check, s-config, s-conditions, s-flags)
4279         (s-codes, s-constants, s-emit, s-recog, s-opinit, s-extract)
4280         (s-peep, s-attr, s-attrtab, s-output, s-genrtl, s-modes)
4281         (s-preds, s-iov): Do not depend on move-if-change.
4282
4283 2004-02-17  James E Wilson  <wilson@specifixinc.com>
4284
4285         * caller-save.c (insert_restore): Pass mem through copy_rtx.
4286         (insert_save): Likewise.
4287
4288 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4289
4290         * config/h8300/h8300.c (h8300_emit_stack_adjustment): Fix a
4291         warning.
4292
4293 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4294
4295         * config/h8300/h8300.md (*one_complsi2_h8300): Change to
4296         *one_cmplsi2_h8300.
4297         (*one_complsi2_h8300hs): Change to *one_cmplsi2_h8300hs.
4298
4299 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4300
4301         * config/h8300/h8300-protos.h: Update the prototype of
4302         fix_bit_operand().
4303         * config/h8300/h8300.c (fix_bit_operand): Remove the second
4304         argument "what".
4305         * config/h8300/h8300.md: Update all callers.
4306
4307 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4308
4309         * config/h8300/h8300.c (fix_bit_operand): Change the name of
4310         the last argument to "code" from "type".
4311
4312 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4313
4314         * config/h8300/h8300.c: Remove an extern declaration of
4315         rtx_equal_function_value_matters.
4316
4317 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4318
4319         * config/h8300/h8300.c (fix_bit_operand): Don't generate insns
4320         by hand.
4321         * config/h8300/h8300.md (*andqi3_1): Change to andqi3_1.
4322         (*iorqi3_1): Change to iorqi3_1.
4323         (*xorqi3_1): Change to xorqi3_1.
4324
4325 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4326
4327         * c-common.c, cfghooks.c, rtlanal.c, varasm.c: Fix comment
4328         typos.
4329
4330 2004-02-17  Jan Hubicka  <jh@suse.cz>
4331
4332         * i386.c (x86_prologue_using_move, x86_epilogue_using_move): Disable for P4.
4333
4334 2004-02-18  Alan Modra  <amodra@bigpond.net.au>
4335
4336         PR optimization/14119
4337         * combine.c (try_combine): When attemting to fix unrecognized insns,
4338         don't delete SETs marked with REG_EH_REGION notes.
4339
4340 2004-02-17  Ulrich Weigand  <uweigand@de.ibm.com>
4341
4342         * combine.c (simplify_if_then_else): Do not replace
4343         (if_then_else (ne reg 0) (0) (const_int)) by (reg) if the
4344         modes differ.
4345
4346 2004-02017  Steven Bosscher  <stevenb@suse.de>
4347
4348         * (c-decl.c, c-semantics.c, calls.c, cgraph.c, cgraphunit.c,
4349         function.c, integrate.c, print-tree.c, toplev.c, tree-optimize.c,
4350         tree.h): Replace DECL_SAVED_INSNS with DECL_STRUCT_FUNCTION.
4351         * ada/utils.c: Likewise.
4352         * cp/decl.c: Likewise.
4353         * f/com.c: Likewise.
4354         * java/class.c: Likewise.
4355
4356 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4357
4358         * config/h8300/h8300.md: Fix comment typos.
4359
4360 2004-02-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4361
4362         * config/mips/t-iris6gld: Renamed to ...
4363         * config/mips/t-irix-gld: ... this.
4364         * config.gcc (mips-sgi-irix6*): Reflect this
4365         (mips-sgi-irix5*): Use it with GNU ld.
4366
4367         * config/mips/irix6-crti.asm, config/mips/irix6-crtn.asm: Renamed
4368         to ...
4369         * config/mips/irix-crti.asm, config/mips/irix-crtn.asm: ... this.
4370         * config/mips/t-irix-gld: Reflect this.
4371         * config/mips/iris6gld.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
4372
4373         * config/mips/iris5gld.h: New file.
4374         * config.gcc (mips-sgi-irix5*): Use it with GNU ld.
4375         Only use collect2 without gas.
4376
4377         * config/mips/iris6.h (IRIX6_STARTFILE_SPEC, IRIX6_ENDFILE_SPEC):
4378         Renamed to IRIX_STARTFILE_SPEC, IRIX_ENDFILE_SPEC.
4379         (STARTFILE_SPEC, ENDFILE_SPEC, SUBTARGET_EXTRA_SPECS): Reflect this.
4380         * config/mips/iris6gld.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
4381
4382         * config/mips/iris6.h (SUBTARGET_EXTRA_SPECS): Moved ...
4383         * config/mips/iris5.h: ... here.
4384
4385         * config/mips/iris5.h (STARTFILE_SPEC, ENDFILE_SPEC): Renamed to
4386         IRIX_STARTFILE_SPEC, IRIX_ENDFILE_SPEC.
4387         (STARTFILE_SPEC, ENDFILE_SPEC): Define.
4388
4389         * config/mips/iris5gas.h (STARTFILE_SPEC, ENDFILE_SPEC): Simplify
4390         using irix_startfile_spec, irix_endfile_spec.
4391
4392 2004-02-16  Gunther Nikl  <gni@gecko.de>
4393
4394         * config/m68k/m68k.c: Remove obsolete support for HPUX_ASM.
4395
4396 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4397
4398         * config/h8300/h8300.c (h8300_expand_prologue): Don't generate
4399         insns by hand.
4400
4401 2004-02-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4402
4403         * cfghooks.c (split_edge): Speed up updating of dominators.
4404
4405 2004-02-17  Mark Mitchell  <mark@codesourcery.com>
4406
4407         PR c++/11326
4408         * c-common.c (flag_abi_version): Remove.
4409         * c-common.h (flag_abi_version): Likewise.
4410         * c-opts.c (c_common_handle_option): Remove OPT_fabi_version case.
4411         * c.opt (fabi-version): Remove.
4412         * calls.c (expand_call): Always pass a function type to
4413         struct_value_rtx.  Use convert_memory_address.
4414         * common.opt (fabi-version): Add it.
4415         * flags.h (flag_abi_version): Likewise.
4416         (abi_version_at_least): New macro.
4417         * opts.c (common_handle_option): Add OPT_fabi_version.
4418         * toplev.c (flag_abi_version): Define it.
4419         * config/ia64/ia64.c (ia64_struct_retval_addr_is_first_parm_p):
4420         New function.
4421         (ia64_output_mi_thunk): Use it.
4422         (ia64_struct_value_rtx): Likewise.
4423
4424 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4425
4426         * config/h8300/h8300.c (h8300_emit_stack_adjustment):
4427         Don't generate insns by hand.
4428
4429 2004-02-17  Andrew Pinski  <pinskia@physics.uc.edu>
4430
4431         PR c++/14178
4432         * doc/invoke.texi (fabi-version): The default is 2 now.
4433
4434 2004-02-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4435
4436         * loop-iv.c: New file.
4437         * Makefile.in (loop-iv.o): New.
4438         * basic_block.h (FOR_BB_INSNS, FOR_BB_INSNS_REVERSE): New macros.
4439         * cfgloop.c (fill_sons_in_loop, get_loop_body_in_dom_order,
4440         num_loop_branches): New functions.
4441         * cfgloop.h (get_loop_body_in_dom_order, num_loop_branches,
4442         iv_analysis_loop_init, iv_get_reaching_def, iv_analyse, get_iv_value,
4443         find_simple_exit, iv_number_of_iterations, iv_analysis_done,
4444         get_simple_loop_desc, free_simple_loop_desc): Declare.
4445         (simple_loop_desc): New inline function.
4446         (struct rtx_iv, struct niter_desc): New.
4447         * cfgloopmanip.c (loopify): Specify semantics more precisely.
4448         * expr.c (force_operand): Handle subregs of expressions created by
4449         loop unroller.
4450         * loop-init.c (loop_optimizer_init, loop_optimizer_finalize): Move
4451         parts of the initialization to toplev.c
4452         * loop-unroll.c (loop_exit_at_end_p): New.
4453         (unroll_and_peel_loops): Call iv_analysis_done.
4454         (decide_peel_once_rolling, decide_peel_completely,
4455         decide_unroll_stupid, decide_unroll_constant_iterations,
4456         decide_unroll_runtime_iterations, decide_peel_simple,
4457         peel_loop_simple, unroll_loop_stupid, unroll_loop_constant_iterations,
4458         unroll_loop_runtime_iterations): Use new simple loop analysis.
4459         * loop-unswitch.c (compare_and_jump_seq): New.
4460         (may_unswitch_on_p): Renamed to ...
4461         (may_unswitch_on): Use new iv analysis.
4462         (reversed_condition): Export.
4463         (unswitch_single_loop, unswitch_loop): Use new iv analysis.
4464         * predict.c (estimate_probability): Use new simple loop analysis.
4465         * rtl.h (get_mode_bounds, reversed_condition,compare_and_jump_seq,
4466         canon_condition, simplify_using_condition): Declare.
4467         * stor-layout.c (get_mode_bounds): New.
4468         * toplev.c (rest_of_handle_loop2): Some parts of
4469         initialization/finalization moved here from loop-init.c.
4470
4471 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
4472
4473         * config/h8300/h8300.h (FIXED_REGISTERS): Add the soft frame
4474         pointer.
4475         (CALL_USED_REGISTERS): Likewise.
4476         (REG_ALLOC_ORDER): Likewise.
4477         (REG_CLASS) <GENERAL_REGS>: Likewise.
4478
4479 2004-02-16  Geoffrey Keating  <geoffk@apple.com>
4480
4481         * doc/md.texi (Insn Canonicalizations): Document left-chaining
4482         in associative operators.
4483         * rtlanal.c (commutative_operand_precedence): Create some new
4484         variables.  Prefer a commutative operand on the left, then
4485         binary expressions, then NEG and NOT.
4486
4487 2004-02-16  Matthias Klose  <doko@debian.org>
4488
4489         * config/t-slibgcc-elf-ver: Define SHLIB_NAME and SHLIB_SONAME
4490         in terms of SHLIB_SOVERSION.
4491         * config/m68k/t-slibgcc-elf-ver: New file.
4492         * config/pa/t-slibgcc-elf-ver: New file.
4493         * config.gcc (m68k-linux, parisc-linux): Use them when not
4494         sjlj exceptions are not configured.
4495
4496 2004-02-16  Eric Botcazou  <ebotcazou@libertysurf.fr>
4497
4498         * config/sparc/sparc.c (get_pc_symbol_name): Mark with GTY(()).
4499
4500 2004-02-16  Zack Weinberg  <zack@codesourcery.com>
4501
4502         * sdbout.c (sdb_debug_hooks): Correct the type_decl entry.
4503
4504 2004-02-16  Joseph S. Myers  <jsm@polyomino.org.uk>
4505
4506         * doc/sourcebuild.texi: Mention backends.html.
4507
4508 2004-02-16  Kazu Hirata  <kazu@cs.umass.edu>
4509
4510         * c-decl.c, c-ppoutput.c, cpphash.h, cpplib.h, dbxout.c,
4511         line-map.c, line-map.h, var-tracking.c: Fix comment
4512         formatting.
4513
4514 2004-02-16  Richard Henderson  <rth@redhat.com>
4515
4516         * cse.c (cse_insn): Don't lose REG_NON_LOCAL_GOTO note.
4517
4518         * fold-const.c (operand_equal_p): Fix VECTOR_CST comparison.
4519
4520 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
4521
4522         * config/h8300/h8300.md: Remove unnecessary parallels from
4523         all define_insn and define_split patterns.
4524
4525 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
4526
4527         * config/h8300/h8300.md: Remove explicit (set_attr "cc"
4528         "clobber").
4529
4530 2004-02-15  Bernardo Innocenti  <bernie@develer.com>
4531
4532         * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for
4533         '%#'.
4534
4535 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
4536
4537         * config/ia64/ia64.c, config/mips/mips.c,
4538         config/mmix/mmix-modes.def: Fix comment typos.
4539
4540 2004-02-15  Roger Sayle  <roger@eyesopen.com>
4541
4542         * c-common.h (GET_DIRECTIVE_LINE): Remove unused macro.
4543         (get_directive_line): Remove unused function prototype.
4544
4545 2004-02-14  Josef Zlomek  <zlomekj@suse.cz>
4546
4547         * tree-inline.c (copy_body_r): Do not replace ret_label.
4548
4549 2004-02-14  Jan Hubicka  <jh@suse.cz>
4550
4551         * i386.c (x86_four_jump_limit): New variable.
4552         (k8_avoid_jump_misspredicts): Rename to ...
4553         (ix86_avoid_jump_misspredicts): .. this one.
4554         (ix86_pad_returns): Break out from ...
4555         (ix86_reorg): ... this one; do ix86_avoid_jump_misspredicts when asked
4556         to.
4557         * i386.h (TARGET_FOUR_JUMP_LIMIT): New macro.
4558
4559 2004-02-14  Josef Zlomek  <zlomekj@suse.cz>
4560
4561         * emit-rtl.c (set_decl_incoming_rtl): Check whether the 0th element of
4562         PARALLEL is NULL.
4563
4564 2004-02-14  Per Bothner  <per@bothner.com>
4565
4566         * fix-header.c (line_table):  Move local variable in main to global.
4567         * scan.h (line_table):  Use it.
4568         * scan-decls.c (scan_decls):  Need to call linemap_lookup on token's
4569         line (recently renamed to src_loc) before calling recognized_function.
4570
4571 2004-02-14  Matt Kraai  <kraai@alumni.cmu.edu>
4572
4573         * Makefile.in: Fix comment typos.
4574
4575 2004-02-14  Olivier Hainque  <hainque@act-europe.fr>
4576
4577         * loop.c (check_dbra_loop): Use gen_int_mode instead of GEN_INT
4578         for start_value when it is directly moved into reg, and factorize
4579         the retrieval of GET_MODE (reg).
4580
4581 2004-02-14  Richard Sandiford  <rsandifo@redhat.com>
4582
4583         * config/mips/mips-protos.h (mips_load_got_page): Delete.
4584         (mips_load_got_global): Delete.
4585         (mips_gotoff_page): Declare.
4586         * config/mips/mips.md (UNSPEC_LOAD_GOT): New constant.
4587         (*xgot_lo[sd]i, *got_disp[sd]i, *got_page[sd]i): Build an
4588         UNSPEC_LOAD_GOT pattern rather than a MEM.
4589         (*load_got[sd]i): New patterns.
4590         * config/mips/mips.c (mips_got_alias_set, mips_load_got): Delete.
4591         (mips_load_got_page, mips_load_got_global): Delete.
4592         (mips_gotoff_page): New function.
4593         (override_options): Don't initialize mips_got_alias_set.
4594
4595 2004-02-14  Richard Sandiford  <rsandifo@redhat.com>
4596
4597         * config/mips/mips.h (MASK_DEBUG_[ABEFI], TARGET_DEBUG_[ABEFI]_MODE)
4598         (TARGET_MIPS4100, TARGET_MIPS4300, TARGET_MIPS4KC, TARGET_MIPS5KC)
4599         (TARGET_SB1, TUNE_SB1, TUNE_SR71K, BIGGEST_MAX_ARGS_IN_REGISTERS)
4600         (GO_PRINTF, GO_PRINTF2, GO_DEBUG_RTX, DFMODE_NAN, SFMODE_NAN): Delete.
4601         (TARGET_SWITCHES): Remove MASK_DEBUG_[ABEFI].
4602         * config/mips/mips.c: Fix some overly-long lines.
4603         (SINGLE_WORD_MODE_P, PIC_OFFSET_TABLE_MASK): Delete.
4604         (init_cumulative_args): Remove TARGET_DEBUG_E_MODE handling.
4605
4606 2004-02-13  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
4607
4608         * configure.ac: Search for as, ld below libexec/gcc.
4609         * configure: Regenerate.
4610
4611 2004-02-14  Ben Elliston  <bje@wasabisystems.com>
4612
4613         * config/arm/mmintrin.h (_mm_setwcx): Reverse arguments in call to
4614         __builtin_arm_setwcx ().
4615         * config/arm/arm.c (arm_expand_builtin): Generate operands
4616         correctly and reverse their order in call to gen_iwmmxt_tmcr ().
4617
4618 2004-02-14  Ben Elliston  <bje@wasabisystems.com>
4619
4620         * config/arm/arm.c (bdesc_2arg): Correct builtin names "wmulsh"
4621         and "wmuluh" to "wmulsm" and "wmulum", respectively.
4622         * config/arm/arm.h (enum arm_builtins): Rename enumerators to
4623         ARM_BUILTIN_WMULSM and ARM_BUILTIN_WMULUM.
4624         * config/arm/mmintrin.h (_mm_mulhi_pi16): Update intrinsic call.
4625         (_mm_mulhi_pu16): Likewise.
4626
4627 2004-02-13  Zack Weinberg  <zack@codesourcery.com>
4628
4629         * xcoffout.c (xcoff_assign_fundamental_type_number): Check
4630         DECL_NAME != 0 before dereferencing.
4631
4632 2004-02-13  Ulrich Weigand  <uweigand@de.ibm.com>
4633
4634         * config/s390/s390-protos.h (s390_output_symbolic_const): Remove.
4635         (s390_output_addr_const_extra): Declare.
4636         (s390_output_pool_entry): Remove FILE * argument.
4637         * config/s390/s390.c (s390_output_symbolic_const): Remove.
4638         (s390_output_addr_const_extra): New function.
4639         (print_operand_address): Call output_addr_const instead of
4640         s390_output_symbolic_const.
4641         (print_operand): Likewise.
4642         (s390_output_pool_entry): Use assemble_integer for symbolic constants.
4643         Remove FILE * argument.
4644         * config/s390/s390.h (OUTPUT_ADDR_CONST_EXTRA): Define.
4645         * config/s390/s390.md ("*pool_entry"): Adapt s390_output_pool_entry
4646         call.
4647
4648 2004-02-13  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4649
4650         * cfgloopanal.c (mark_irreducible_loops): Rewriten.
4651         (struct edge, struct vertex, struct graph): New.
4652         (dump_graph, new_graph, add_edge, dfs, check_irred, for_each_edge,
4653         free_graph): New functions.
4654
4655 2004-02-12  Chris Demetriou  <cgd@broadcom.com>
4656
4657         * config/mips/mips.md (casesi_internal, casesi_internal_di):
4658         Use ".set macro" to avoid warnings about multi-instruction
4659         macros, since they're intentional.
4660
4661 2004-02-12  Geoffrey Keating  <geoffk@apple.com>
4662
4663         * config/darwin.h: Add include guards.  Remove old, now incorrect,
4664         comment about STANDARD_EXEC_PREFIX.
4665
4666         * Makefile.in (install-man): Use $(CPP_INSTALL_NAME) and
4667         $(GCOV_INSTALL_NAME) to install manpages.  Remove generic rule
4668         for installing .1 manpages.  Add rules for installing cpp
4669         and gcov manpages under their installed names.
4670
4671 2004-02-12  Alexandre Oliva  <aoliva@redhat.com>
4672
4673         * configure.ac (gcc_cv_ld): Don't set to LD if target is not
4674         host, but try LD_FOR_TARGET first.
4675         * configure: Rebuilt.
4676
4677 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
4678
4679         * dbxout.c: Move declaration of dbxout_type_decl outside
4680         #ifdef DBX_DEBUGGING_INFO.
4681         * c-parse.in: Don't give the asmdef production a type.
4682
4683 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
4684
4685         * debug.h (struct gcc_debug_hooks): Add type_decl field.
4686         (debug_nothing_tree_int): Prototype.
4687         (dwarf_debug_hooks): Delete, unused.
4688         * debug.c (do_nothing_debug_hooks): Update.
4689         (debug_nothing_tree_int): New function.
4690         * langhooks.h (struct lang_hooks_for_decls):
4691         Remove builtin_type_decls field.
4692         * langhooks-def.h (LANG_HOOKS_BUILTIN_TYPE_DECLS): Delete.
4693         (LANG_HOOKS_DECLS): Update.
4694         * toplev.c (rest_of_decl_compilation, rest_of_type_compilation):
4695         Use debug_hooks->type_decl.
4696         * dbxout.c (preinit_symbols): New static.
4697         (dbx_debug_hooks, xcoff_debug_hooks): Update.
4698         (dbxout_init): Don't call DBX_OUTPUT_STANDARD_TYPES or
4699         lang_hooks.decls.builtin_type_decls.  Do scan preinit_symbols
4700         for symbols to output.
4701         (dbxout_type_decl): New function.
4702         (dbxout_symbol): If called before dbxout_init has run, queue
4703         the symbol for later.  Apply DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER
4704         to TYPE_DECLs before emitting them.
4705         * xcoffout.c (assign_type_number): Delete.
4706         (xcoff_type_numbers): New static table.
4707         (xcoff_assign_fundamental_type_number): New function.
4708         * xcoffout.h: Define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER, not
4709         DBX_OUTPUT_STANDARD_TYPES.  Remove unnecessary #ifdefs.
4710         * sdbout.c: Include varray.h.
4711         (deferred_global_decls): New static.
4712         (sdb_debug_hooks): Update.
4713         (sdbout_global_decl): If we can't emit something right now,
4714         remember it in deferred_global_decls.
4715         (sdbout_finish): Just scan deferred_global_decls; don't call getdecls.
4716         (sdbout_init): Initialize deferred_global_decls.
4717         * Makefile.in: Update dependencies of sdbout.o.
4718         * dwarf2out.c (dwarf2out_type_decl): New function.
4719         (dwarf2_debug_hooks): Update.
4720         * vmsdbgout.c (vmsdbg_debug_hooks): Update.
4721         * c-decl.c (getdecls): Just return 0.
4722         (check_for_loop_decls): Don't use getdecls.
4723         (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
4724         * c-objc-common.c (c_objc_common_finish_file): Don't use getdecls.
4725
4726 2004-02-12  Ulrich Weigand  <uweigand@de.ibm.com>
4727
4728         * config/s390/s390.c (s390_sched_reorder2): Remove.
4729         (TARGET_SCHED_REORDER2): Do not redefine.
4730
4731 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
4732
4733         * c-parse.in (maybe_type_qual): Delete.
4734         (maybe_volatile, simple_asm_expr, asmdef, asm_stmt)
4735         (asm_argument): New grammar rules.
4736         (extdef_1): Use asmdef.
4737         (maybeasm): Move down with other asm rules; use simple_asm_expr.
4738         (xexpr): Move up with other expression rules.
4739         (stmt): Use asm_stmt.
4740
4741         * c-typeck.c (build_asm_expr): New function - body mostly
4742         pulled from build_asm_stmt.
4743         (build_asm_stmt): Just handle tacking on the volatile qualifier.
4744         * c-tree.h (build_asm_expr, build_asm_stmt): Update prototypes.
4745
4746 2004-02-12  Richard Sandiford  <rsandifo@redhat.com>
4747
4748         PR bootstrap/13617
4749         * config/mips/mips-protos.h (mips_output_aligned_decl_common): Declare.
4750         (mips_declare_object): Make variadic.
4751         * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Use
4752         mips_output_aligned_decl_common.
4753         * config/mips/mips.c (mips_output_aligned_decl_common): New function.
4754         (mips_declare_object): Make variadic.
4755
4756 2004-02-12  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
4757
4758         * function.c (update_epilogue_consts): Teach about binary operations.
4759
4760         * emit-rtl.c (set_mem_attributes_minus_bitpos): Don't kill
4761         previous MEM_VOLATILE in REF.
4762         * function.c (fixup_var_refs): Save volatile_ok and set to 1.
4763         * expr.c (emit_block_move_via_movstr): Save and restore volatile_ok.
4764
4765 2004-02-12  Gunther Nikl  <gni@gecko.de>
4766
4767         * config.gcc: Restore support for m68k-openbsd.
4768
4769 2004-02-12  Jan Hubicka  <jh@suse.cz>
4770
4771         * tree-optimize.c (tree_rest_of_compilation): Do not release
4772         DECL_ARGUMENTS.
4773
4774 2004-02-11  Matt Kraai  <kraai@alumni.cmu.edu>
4775
4776         * doc/install.texi: Fix the spelling of "explicitly".
4777
4778 2004-02-11  Eric Christopher  <echristo@redhat.com>
4779
4780         * cppcharset.c (_cpp_interpret_string_notranslate): Rename and
4781         duplicate argument structure of cpp_interpret_string.
4782         * cpphash.h: Move prototype...
4783         * cpplib.h: Here.
4784         * cpplib.c: Fix calls to match new function signature.
4785
4786 2004-02-11  Joseph S. Myers  <jsm@polyomino.org.uk>
4787
4788         PR c/456
4789         * cppexp.c (num_binary_op): Don't allow comma operators in #if
4790         constant expressions at all outside C99 mode if pedantic.
4791
4792 2004-02-11  Uros Bizjak  <uros@kss-loka.si>
4793
4794         * optabs.h (enum optab_index): Add new OTI_log10 and OTI_log2.
4795         (log10_optab, log2_optab): Define corresponding macros.
4796         * optabs.c (init_optabs): Initialize log10_optab and log2_optab.
4797         * genopinit.c (optabs): Implement log10_optab and log2_optab
4798         using log10?f2 and log2?f2 patterns.
4799         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_LOG10{,F,L}
4800         using log10_optab, and BUILT_IN_LOG2{,F,L} using log2_optab.
4801         (expand_builtin): Expand BUILT_IN_LOG10{,F,L} and BUILT_IN_LOG2{,F,L}
4802         using expand_builtin_mathfn if flag_unsafe_math_optimizations is set.
4803
4804         * config/i386/i386.md (log10sf2, log10df2, log10xf2, log2sf2,
4805         log2df2, log2xf2): New patterns to implement log10, log10f, log10l,
4806         log2, log2f and log2l built-ins as inline x87 intrinsics.
4807
4808 2004-02-11  Richard Henderson  <rth@redhat.com>
4809
4810         PR target/1532
4811         * flow.c (insn_dead_p): A clobber of a dead hard register is a
4812         dead insn after reload.
4813
4814 2004-02-11  Ulrich Weigand  <uweigand@de.ibm.com>
4815
4816         * tree.h (frame_base_decl): Add GTY marker.
4817         * var-tracking.c (frame_base_decl): Likewise.
4818
4819 2004-02-11  Daniel Berlin  <dberlin@dberlin.org>
4820
4821         * dwarf2out.c (output_loc_list): Remove no longer necessary, and now
4822         incorrect, hunk.
4823         (add_location_or_const_value_attribute): Use text_section_label,
4824         not TEXT_SECTION_NAME.
4825
4826 2004-02-11  Per Bothner  <per@bothner.com>
4827
4828         Represent column numbers using line-map's source_location.
4829         The "next available source_location" is now managed internally by
4830         line-maps.c rather than by clients.
4831         * line-map.h (struct line_map):  New field column_bits.
4832         <from_line>:  Rename field to start_location.
4833         (struct line_maps):  New fields highest_location and max_column_hint.
4834         (linemap_check_files_exited):  New declaration.
4835         (linemap_line_start):  New declaration.
4836         (linemap_add):  Remove from_line parameter; use highest_location field.
4837         (SOURCE_LINE, LAST_SOURCE_LINE):  Modify to use column_bits.
4838         (SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION):  New macros.
4839         (CURRENT_LINE_MAP):  Remove macro.
4840         (linemap_position_for_column):  New inline function.
4841         * line-map.c (linemap_init):  Clear new fields.
4842         (linemap_check_files_exited):  New function, extracted from ...
4843         (linemap_free):  Use linemap_check_files_exited.
4844         (linemap_add):  Remove from_line parameter.  Various updates.
4845         (linemap_line_start):  New function.
4846         (linemap_lookeup):  Update for new field names.
4847         * cpphash.h (struct cpp_reader) <map>:  Field removed.  Because
4848         linemap_position_for_column may unpredictably change the current map,
4849         it is cleaner and simpler for us to not cache it in cpp_reader.
4850         (struct cpp_buffer):  New sysp field.
4851         Changed warned_cplusplus_comments and from_stage3 to bitfields.
4852         * cppinit.c (cpp_read_min_file):  pfile->map no longer exists.
4853         * cpplib.c (do_line, do_linemarker, _cpp_do_file_change):  Get
4854         current map using linemap_lookup.
4855         (do_linemarker):  Also set buffer's sysp field.
4856         (destringize_and_run):  No longer need to decrement current line.
4857         * cppfiles.c (_cpp_stack_file):  Set sysp from and in buffer.
4858         (search_path_head, open_file_failed):  Use buffer's sysp.
4859         (cpp_make_system_header):  Get current map using linemap_lookup.
4860         Also set buffer's sysp flag.
4861         * cppmacro.c (_cpp_builtin_macro_text):  Likewise use linemap_lookup.
4862         * cpphash.h (CPP_INCREMENT_LINE):  New macro.
4863         (struct cpp_buffer):  Moved fields saved_cur, saved_rlimit to ...
4864         (struct cpp_reader):  ... and adding saved_line_base field.
4865         * cpptrad.c (_cpp_overlay_buffer, _cpp_remove_overlay):
4866         Update accordingly.  Don't adjust line.
4867         (_cpp_scan_out_logical_line):  Use CPP_INCREMENT_LINE.
4868         * cpphash.c (CPP_IN_SYSTEM_HEADER):  Replaced macro by ...
4869         (cpp_in_system_header):  ... new inline function, using buffer's sysp.
4870         * cpperror.c (_cpp_begin_message):  Update to use cpp_in_system_header.
4871         * cpplex.c (_cpp_lex_direct):  Likewise.
4872         * cppmacro.c (_cpp_builtin_macro_text):  Likewise.
4873         * cppmacro.c (_cpp_create_definition):  Use buffer's sysp field.
4874         * cpplib.h (struct cpp_token):  Rename line field to src_loc.
4875         Remove col field as it is now subsumed by src_loc.
4876         * cpperror.c:  Update various field, parameter, and macro names.
4877         (print_location):  If col==0, try SOURCE_COLUMN of line.
4878         (cpp_error):  Use cur_token's src_loc field, rather than line+col.
4879         * cpplib.c (do_diagnostic):  Token's src_loc fields replaces line+col.
4880         * cpplex.c (_cpp_process_line_notes, _cpp_lex_direct,
4881         _cpp_skip_block_comment):  Use CPP_INCREMENT_LINE.
4882         (_cpp_temp_token):  Replace cpp_token's line+col fields by src_loc.
4883         (_cpp_get_fresh_line):  Don't need to adjust line for missing newline.
4884         (_cpp_lex_direct):  Use linemap_position_for_column.
4885         * c-ppoutput.c (maybe_print_line, print_line):  Don't take map
4886         parameter.  Instead get it from the line_table global.  Adjust callers.
4887         (print):  Remove map field.  Replace line field to src_line.
4888         (init_pp_output, account_for_newlines, maybe_print_line):  Adjust.
4889         (cb_line_change):  Use SOURCE_COLUMN.  Minor optimizations.
4890         (pp_file_change):  Use MAIN_FILE_P since we cannot checked print.map.
4891         Use LAST_SOURCE_LINE_LOCATION to "catch up" after #include.
4892         * cpptrad.c (copy_comment):  Rename variable.
4893         * c-lex.c (map):  Remove static variable, for same reason we removed
4894         cpp_reader's map field.
4895         (cb_line_change, cb_def_pragma, cb_define, cb_undef):  Hence we need
4896         to call linemap_lookup.
4897         (cb_line_change):  Token's line field replaced by src_loc.
4898         (fe_file_change):  Use MAINFILE_P and LAST_SOURCE_LINE macros.
4899         Don't save new_map.
4900
4901         * cpphash.h, cpperror.c, cpplib.h:  Some renames of fileline to
4902         source_location.
4903
4904 2004-02-11  Hartmut Penner  <hpenner@de.ibm.com>
4905
4906         * config/rs6000/altivec.md (*movv4si_internal): At least one
4907         operand must be register_operand.
4908         (*movv8hi_internal1): Likewise.
4909         (*movv16qi_internal1): Likewise.
4910         (*movv4sf_internal1): Likewise.
4911
4912 2004-02-10  Aldy Hernandez  <aldyh@redhat.com>
4913
4914         * config/rs6000/spe.md ("*movv2si_internal"): Check for register
4915         operand.
4916         (movv4hi_internal): Same.
4917         (movv2sf_internal): Same.
4918         (movv1di_internal): Same.
4919
4920 2004-02-11  Thiemo Seufer  <seufer@csv.ica.uni-stuttgart.de>
4921
4922         * config/mips/mips.h (TARGET_OLDABI): Define. Use TARGET_NEWABI and
4923         TARGET_OLDABI consistently.
4924         * config/mips/mips.c (function_arg,mips_setup_incoming_varargs,
4925         mips_va_arg,override_options,compute_frame_size,
4926         mips_initial_elimination_offset,mips16_fp_args,build_mips16_call_stub
4927         ,mips_return_in_memory,mips_strict_argument_naming): Use TARGET_NEWABI
4928         and TARGET_OLDABI consistently.
4929         * config/mips/mips.md (exception_receiver): Likewise.
4930         * config/mips/linux64.h: Likewise.
4931
4932 2004-02-11  Hartmut Penner  <hpenner@de.ibm.com>
4933
4934         * gcc/config/rs6000/rs6000.c (rs6000_override_options)
4935         Set AltiVec ABI and vrsave as default for ppc64 linux.
4936         (init_cumulative_args): Post error, if try to return
4937         value in AltiVec register without enable AltiVec.
4938         (function_arg_advance): Ditto for passing arguments.
4939
4940 2004-02-11  Richard Sandiford  <rsandifo@redhat.com>
4941
4942         * emit-rtl.c (mark_label_nuses): Check that a LABEL_REF refers to
4943         a label before updating its usage count.
4944
4945 2004-02-10  Matt Kraai  <kraai@alumni.cmu.edu>
4946
4947         * doc/install.texi: Remove extra cd.
4948
4949 2004-02-10  Ziemowit Laski  <zlaski@apple.com>
4950
4951         * c-common.c (vector_size_helper): Remove; call
4952         reconstruct_complex_type() instead.
4953         * tree.c (reconstruct_complex_type): New function
4954         (formerly vector_size_helper() in c-common.c).
4955         (make_vector): Make externally visible.
4956         * tree.h (reconstruct_complex_type, make_vector): Add prototypes.
4957
4958 2004-02-10  Kazu Hirata  <kazu@cs.umass.edu>
4959
4960         * config/h8300/h8300-protos.h: Add a prototype for
4961         h8300_regs_ok_for_stm.
4962         * config/h8300/h8300.c (h8300_regs_ok_for_stm): New.
4963         * config/h8300/h8300.md (stm_h8300s_2_advanced,
4964         stm_h8300s_2_normal, stm_h8300s_2, stm_h8300s_3_advanced,
4965         stm_h8300s_3_normal, stm_h8300s_3, stm_h8300s_4_advanced,
4966         stm_h8300s_4_normal, stm_h8300s_4, ldm_h8300s_2_advanced,
4967         ldm_h8300s_2_normal, ldm_h8300s_2, ldm_h8300s_3_advanced,
4968         ldm_h8300s_3_normal, ldm_h8300s_3, ldm_h8300s_4_advanced,
4969         ldm_h8300s_4_normal, ldm_h8300s_4): Use
4970         h8300_regs_ok_for_stm().
4971
4972 2004-02-10  Danny Smith  <dannysmith@users.sourceforge.net>
4973
4974         PR c/14088
4975         * real.c (real_from_string): Look for 'X' as well as 'x' in
4976         hexfloat strings.
4977
4978 2004-02-10  Kazu Hirata  <kazu@cs.umass.edu>
4979
4980         * config/h8300/h8300.md: Remove an incorrect comment about
4981         peephole2.  Add comments.
4982
4983 2004-02-10  Josef Zlomek  <zlomekj@suse.cz>
4984
4985         PR/14058
4986         * emit-rtl.c (set_decl_incoming_rtl): New.
4987         * tree.h (set_decl_incoming_rtl): New.
4988         * function.c (assign_parms): Use set_decl_incoming_rtl for setting
4989         DECL_INCOMING_RTL.
4990         * ada/misc.c (adjust_decl_rtl): Likewise.
4991
4992 2004-02-10  Per Bothner  <per@bothner.com>
4993
4994         * c-opts.c (c_common_post_options):   Don't emit working directory
4995         in cpp output if -P was specified.
4996
4997 2004-02-10  Paolo Bonzini  <bonzini@gnu.org>
4998
4999         PR c/14092
5000         * fold-const.c (fold) <NEGATE_EXPR>: Convert result of
5001         negate_expr back to the original type.
5002
5003 2004-02-10  Alan Modra  <amodra@bigpond.net.au>
5004
5005         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Don't
5006         bump retaddr here.
5007
5008 2004-02-10  Paolo Bonzini  <bonzini@gnu.org>
5009
5010         * rtl.h (schedule_insns, schedule_ebbs, fix_sched_param,
5011         gen_lowpart_SUBREG): Move under the file in which they
5012         are actually declared.
5013
5014 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>
5015
5016         * doc/sourcebuild.texi: Add libada documentation.
5017
5018         * doc/install.texi: Update documentation on Ada build, now
5019         that the GNAT lib and tools are built automatically.
5020
5021 2004-02-10  Richard Sandiford  <rsandifo@redhat.com>
5022
5023         * config/mips/mips.h (TARGET_GPWORD): Return false for TARGET_NEWABI
5024         && TARGET_IRIX.
5025
5026 2004-02-09  Ziemowit Laski  <zlaski@apple.com>
5027
5028         * objc/objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS'
5029         boundaries outside build_component_ref() call (a macro in ObjC++).
5030
5031 2004-02-09  Bob Wilson  <bob.wilson@acm.org>
5032
5033         * config/xtensa/xtensa-protos.h (xtensa_copy_incoming_a7): Update.
5034         (init_cumulative_args): Likewise.
5035         (a7_overlap_mentioned_p): Delete prototype.
5036         * config/xtensa/xtensa.c (struct machine_function): Replace
5037         incoming_a7_copied field with need_a7_copy and vararg_a7 flags.
5038         Add set_frame_ptr_insn field.
5039         (xtensa_emit_move_sequence): Update call to xtensa_copy_incoming_a7.
5040         (xtensa_copy_incoming_a7): Rewrite to check need_a7_copy flag and check
5041         if the operand is an argument in a7.  If so, copy a7 to a new pseudo
5042         at the function entry and replace the operand with the pseudo.
5043         (init_cumulative_args): Remove unused arguments.  Add new "incoming"
5044         argument and record this flag in CUMULATIVE_ARGS.
5045         (function_arg): Remove result_mode and special-case code to handle
5046         arguments in a7.  Instead, set need_a7_copy flag when there is an
5047         incoming argument in a7.
5048         (xtensa_expand_prologue): Remove code to search for set_frame_ptr insn
5049         and use the value recorded in cfun->machine->set_frame_ptr_insn.
5050         (xtensa_builtin_saveregs): Check for negative gp_left value.  Set
5051         need_a7_copy and vararg_a7 flags.  Use move_block_from_reg instead of
5052         special-case code.
5053         (a7_overlap_mentioned_p): Delete.
5054         * config/xtensa/xtensa.h (CUMULATIVE_ARGS): Add "incoming" flag.
5055         (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Remove useless
5056         arguments to init_cumulative_args and pass "incoming" flag instead.
5057         (BLOCK_REG_PADDING): Delete.
5058         * config/xtensa/xtensa.md (movdi, movsf, movdf): Remove unnecessary
5059         checks for reload_in_progress and reload_completed.  Update calls to
5060         xtensa_copy_incoming_a7.
5061         (ashlsi3): Rename existing insn to ashlsi3_internal.  Add expander
5062         to call xtensa_copy_incoming_a7.
5063
5064 2004-02-09  DJ Delorie  <dj@redhat.com>
5065
5066         * config/i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): No
5067         longer modify standard_exec_prefix, standard_bindir_prefix, or
5068         standard_startfile_prefix.
5069
5070 2004-02-09  James E Wilson  <wilson@specifixinc.com>
5071
5072         PR c++/11295
5073         * c-common.c (c_expand_expr, case STMT_EXPR): Change expand_expr call
5074         to expand_expr_real call, and pass in alt_rtl as last argument.
5075
5076         PR libstdc++/5625
5077         * builtin-types.def (BT_WORD, BT_FN_WORD_PTR): New.
5078         * builtins.c (expand_builtin): Handle BUILT_IN_EXTEND_POINTER.
5079         * builtins.def (BUILT_IN_EXTEND_POINTER): New.
5080         * except.c (expand_builtin_extend_pointer): New.
5081         * except.h (expand_builtin_extend_pointer): Declare.
5082
5083 2004-02-09  David Edelsohn  <edelsohn@gnu.org>
5084
5085         * config/rs6000/rs6000.c (rs6000_emit_move): Remove splitting slow
5086         unaligned loads and stores.
5087
5088 2004-02-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5089
5090         * config/mips/iris5.h (BSS_SECTION_ASM_OP): Define.
5091         * config/mips/iris6.h (BSS_SECTION_ASM_OP): Undef.
5092
5093         * config/mips/iris6.h (TARGET_ASM_NAMED_SECTION): Moved ...
5094         * config/mips/iris5.h: ... here.
5095         * config/mips/iris5gas.h (TARGET_ASM_NAMED_SECTION): Remove.
5096
5097         * config/mips/iris6.h (EXTRA_SECTION_FUNCTIONS): Move ...
5098         * config/mips/iris5.h: ... here.
5099
5100 2004-02-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5101
5102         * configure.ac: Remove default executable files before AC_PROG_CC.
5103         * configure: Regenerate.
5104
5105 2004-02-09  Kazu Hirata  <kazu@cs.umass.edu>
5106
5107         PR target/13721
5108         * config/h8300/h8300.c (byte_reg): Call abort() if asked to
5109         print a operand other than a register.
5110
5111 2004-02-09  Roger Sayle  <roger@eyesopen.com>
5112
5113         * fold-const.c (fold) <NOP_EXPR>: Use the original type conversion
5114         tree code rather than call fold_convert, which doesn't specify a
5115         default floating point to integer conversion.
5116
5117 2004-02-08  Bernardo Innocenti  <bernie@develer.com>
5118
5119         * config/m68k/m68k.c, config/m68k/m68k.md (SGS, SGS_CMP_ORDER): Remove
5120         code to support SGS assembler.  Reformat adjacent code where possible.
5121         * config/m68k/m68k.c (switch_table_difference_label_flag): Remove
5122         definition.
5123         * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Remove support
5124         for '%#'.
5125         * config/m68k/linux.h, config/m68k/m68k.c,
5126         * config/m68k/math-68881.h: Replace `%#' with `#' in inline asm
5127         macros and asm_printf() format strings.
5128         * config/m68k/m68kelf.h (ASM_OUTPUT_CASE_END): Remove macro definition.
5129         * config/m68k/linux.h: Update copyright.
5130         * config/m68k/linux.h, config/m68k/m68k.c: Remove traling whitespace.
5131
5132 2004-02-08  Andreas Schwab  <schwab@suse.de>
5133             Bernardo Innocenti  <bernie@develer.com>
5134
5135         * config/m68k/m68k.h (REGISTER_NAMES): Prefix each name with
5136         REGISTER_PREFIX.
5137         * (M68K_FP_REG_NAME): New macro to specify an alternate name for the
5138         frame pointer register, overridable by OS targets.
5139         * (M68K_REGNAME): Macro to obtain register name for asm output,
5140         eventually replacing %a6 with M68K_FP_REG_NAME.
5141         * config/m68k/coff.h (REGISTER_NAMES): Don't redefine.
5142         * config/m68k/linux.h (REGISTER_NAMES): Likewise.
5143         * config/m68k/m68kelf.h (REGISTER_NAMES): Likewise.
5144         * config/m68k/netbsd-elf.h (REGISTER_NAMES): Likewise.
5145         * config/m68k/m68k.c: Use M68K_REGNAME(x) in place of reg_names[x].
5146
5147 2004-02-08  Kazu Hirata  <kazu@cs.umass.edu>
5148
5149         * target-def.h (TARGET_STRUCT_VALUE_RTX): Define as
5150         hook_rtx_tree_int_null.
5151         * targhooks.c (default_struct_value_rtx): Remove.
5152         * targhooks.h: Remove the prototype for
5153         default_struct_value_rtx.
5154         * config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
5155         config/fr30/fr30.c, config/h8300/h8300.c, config/i386/i386.c,
5156         config/ip2k/ip2k.c, config/iq2000/iq2000.c,
5157         config/m32r/m32r.c, config/mcore/mcore.c, config/mips/mips.c,
5158         config/mn10300/mn10300.c, config/pdp11/pdp11.c,
5159         config/rs6000/rs6000.c, config/s390/s390.c,
5160         config/stormy16/stormy16.c, config/v850/v850.c,
5161         config/xtensa/xtensa.c (TARGET_STRUCT_VALUE_RTX): Remove.
5162         * doc/tm.texi (TARGET_STRUCT_VALUE_RTX): Document the default.
5163
5164 2004-02-08  Joseph S. Myers  <jsm@polyomino.org.uk>
5165
5166         * README.Portability: Change "ISO C89" to "ISO C90".
5167         * c-parse.in (primary, initelt): Likewise.
5168
5169 2004-02-08  Richard Sandiford  <rsandifo@redhat.com>
5170
5171         * real.c (encode_ibm_extended): Normalize the input value before
5172         converting it to a double.  Handle the case where a normal value
5173         rounds to infinity.
5174
5175 2004-02-08  Kazu Hirata  <kazu@cs.umass.edu>
5176
5177         * c-objc-common.c (c_cannot_inline_tree_fn): Fix a typo in a
5178         warning.
5179         * cse.c (preferrable): Change to preferable. Update all of its
5180         callers.
5181         * genautomata.c (ainsn): Change
5182         first_ainsn_with_given_equialence_num to
5183         first_ainsn_with_given_equivalence_num.  Update all of its
5184         references.
5185
5186 2004-02-08  Jan Hubicka  <jh@suse.cz>
5187
5188         * schedule-ebb.c (schedule_ebbs): Do not allocate reg life data.
5189
5190 2004-02-07  David Edelsohn  <edelsohn@gnu.org>
5191
5192         * function.c (assign_parms): Fix formatting.
5193
5194 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
5195
5196         * default.h (PROMOTE_PROTOTYPES): Remove.
5197         * system.h (PROMOTE_FUNCTION_RETURN, PROMOTE_PROTOTYPES,
5198         STRUCT_VALUE_REGNUM, SETUP_INCOMING_VARARGS,
5199         EXPAND_BUILTIN_SAVEREGS): Poison.
5200         * target-def.h (TARGET_PROMOTE_FUNCTION_RETURN): Define as
5201         hook_bool_tree_false.
5202         (TARGET_PROMOTE_PROTOTYPES): Likewise.
5203         * target.h: Replace SETUP_INCOMING_VARARGS with
5204         targetm.calls.setup_incoming_varargs().
5205         * targhooks.c (default_promote_function_return): Remove.
5206         (default_promote_prototypes): Likewise.
5207         (default_struct_value_rtx): Always abort().
5208         (default_expand_builtin_saveregs): Always print an error
5209         message.
5210         (default_setup_incoming_varargs): Do nothing.
5211         (default_pretend_outgoing_varargs_named): Don't depend on
5212         SETUP_INCOMING_VARARGS.
5213         * targhooks.h: Remove the prototype for
5214         default_promote_function_return and
5215         default_promote_prototypes.
5216
5217 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
5218
5219         * system.h (SHARED_SECTION_ASM_OP): Poison.
5220         * varasm.c (data_section): Don't use SHARED_SECTION_ASM_OP.
5221         * doc/tm.texi (SHARED_SECTION_ASM_OP): Remove.
5222
5223 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
5224
5225         Bug 13856
5226         * c-decl.c (diagnose_mismatched_decls): Only give special
5227         treatment when olddecl is DECL_BUILT_IN, if C_DECL_INVISIBLE
5228         is also true.
5229         (merge_decls): Don't clear DECL_BUILT_IN_CLASS and
5230         DECL_FUNCTION_CODE when defining a built-in function.
5231         Don't update DECL_ESTIMATED_INSNS.
5232         * dwarf2out.c (dwarf2out_decl): Don't ignore built-in
5233         FUNCTION_DECLs.
5234         * tree.h: Delete DECL_ESTIMATED_INSNS.
5235         * tree-inline.c (struct inline_data): Delete inlined_insns field.
5236         (expand_call_inline, optimize_inline_calls): Don't update
5237         DECL_ESTIMATED_INSNS nor inlined_insns.
5238         * cgraphunit.c (cgraph_analyze_function): Don't update
5239         DECL_ESTIMATED_INSNS.
5240
5241 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
5242
5243         * c-common.c (shadow_warning): Delete.
5244         * c-common.h (free_parser_stacks, shadow_warning, sw_kind): Delete.
5245         * c-decl.c (warn_if_shadowing): Issue shadow warnings directly.
5246         * c-opts.c (c_common_parse_file): Don't call free_parser_stacks.
5247         * c-parse.in (free_parser_stacks): Delete.
5248
5249 2004-02-07  Nathanael Nerode  <neroden@gcc.gnu.org>
5250
5251         * Makefile.in, config/t-slibgcc-darwin, config/t-slibgcc-elf-ver,
5252         config/t-slibgcc-sld, config/mips/t-iris5-6, config/sh/t-linux:
5253         Use the top level mkinstalldirs, not the one in the gcc subdir.
5254         * mkinstalldirs: Remove (from the gcc subdir).
5255
5256 2004-02-07  Roger Sayle  <roger@eyesopen.com>
5257
5258         PR middle-end/13696
5259         * fold-const.c (fold_convert): New function to provide type
5260         conversion to the middle-end without using convert.
5261         (negate_expr, associate_trees, size_diffop, omit_one_operand,
5262         operand_equal_for_comparison_p, pedantic_omit_one_operand,
5263         invert_truthvalue, optimize_bit_field_compare, range_binop,
5264         decode_field_reference, make_range, build_range_check, unextend,
5265         fold_truthop, extract_muldiv_1, fold_mathfn_compare,
5266         fold_binary_op_with_conditional_arg, fold_inf_compare,
5267         fold_single_bit_test, fold, multiple_of_p): Replace all calls to
5268         convert with calls to fold_convert.
5269
5270 2004-02-07  Jan Hubicka  <jh@suse.cz>
5271
5272         * genrecog.c (find_operand): add extra argument stop.
5273         (validate_pattern): Verify that mach_dup is duplicating operand
5274         defined lexically earlier.
5275
5276 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
5277
5278         * config.gcc: Don't mention MAX_LONG_TYPE_SIZE.
5279         * system.h (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
5280         MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Poison.
5281         * config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
5282         config/ia64/ia64.h, config/ip2k/ip2k.h,
5283         config/iq2000/iq2000.h, config/mips/iris5.h,
5284         config/mips/mips.h, config/pa/pa-64.h, config/pa/pa.h,
5285         config/rs6000/aix51.h, config/rs6000/aix52.h,
5286         config/rs6000/darwin.h, config/rs6000/rs6000.h,
5287         config/s390/s390.h, config/sh/sh.h, config/sparc/freebsd.h,
5288         config/sparc/linux.h, config/sparc/linux64.h,
5289         config/sparc/netbsd-elf.h, config/sparc/sparc.h,
5290         config/xtensa/xtensa.h: Remove the definitions of
5291         MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE, and/or
5292         MAX_WCHAR_TYPE_SIZE.
5293         * doc/tm.texi (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
5294         MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Remove.
5295
5296 2004-02-07  Stephane Carrez  <stcarrez@nerim.fr>
5297
5298         PR bootstrap/13990
5299         * config/m68hc11/m68hc11.md ("doloop_end"): Pass dummy arguments to
5300         gen_rtx_NE.
5301
5302 2004-02-07  Josef Zlomek  <zlomekj@suse.cz>
5303
5304         * var-tracking.c (vt_add_function_parameters): Surround checkings by
5305         #ifdef ENABLE_CHECKING and #endif.
5306
5307 2004-02-07  Roger Sayle  <roger@eyesopen.com>
5308
5309         * fold-const.c (negate_expr_p, negate_expr): Optimize -(A+B) into
5310         either (-A)-B or (-B)-A, if A or B is easily negated respectively.
5311         (fold) <MINUS_EXPR>: Optimize (A*C) - (B*C) -> (A-B)*C for both
5312         integer types and floating point with unsafe_math_optimizations.
5313         Add similar optimization for (A*C1) - (A*C2) -> A*(C1-C2).
5314         Optimize A - B as A + (-B), if B is easily negated.
5315
5316 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
5317
5318         * c-ppoutput.c, cfganal.c, diagnostic.h, print-rtl.c,
5319         config/darwin.c, config/darwin.h, config/ia64/ia64-c.c,
5320         config/m32r/linux.h, config/rs6000/ppc64-fp.c,
5321         config/sparc/openbsd.h, doc/makefile.texi, doc/passes.texi:
5322         Update copyright.
5323
5324 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
5325
5326         * c-ppoutput.c, var-tracking.c: Fix comment typos.
5327
5328 2004-02-06  James E Wilson  <wilson@specifixinc.com>
5329
5330         * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Only define for
5331         glibc 2.3 or better.
5332
5333 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5334
5335         * doc/tm.texi (TARGET_FLOAT_LIB_COMPARE_RETURNS_BOOL): Change
5336         to FLOAT_LIB_COMPARE_RETURNS_BOOL.
5337
5338 2004-02-07  Alan Modra  <amodra@bigpond.net.au>
5339
5340         * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add darwin-ldouble.c.
5341         (SHLIB_MAPFILES): Add libgcc-ppc64.ver.
5342         (SHLIB_MKMAP_OPTS): Delete.
5343         (TARGET_LIBGCC2_CFLAGS): Add -specs.
5344         (bispecs): Add rule.
5345         * config/rs6000/libgcc-ppc64.ver: New file.
5346         * config/rs6000/ppc64-fp.c (__fixtfdi, __floatditf): New functions.
5347         (__floatdidf, __floatdisf): Optimize multiply.
5348         (__fixunstfdi): New function.
5349         * config/rs6000/rs6000.c (rs6000_complex_function_value): Allow for
5350         real and imag parts larger than one register.
5351         (function_arg): Correct type of reg used when fp arg split partially
5352         to stack.
5353         * config/rs6000/darwin-ldouble.c: Protect with #if !_SOFT_FLOAT
5354         and __MACH__ or __powerpc64__.
5355
5356 2004-02-06  Roger Sayle  <roger@eyesopen.com>
5357             Ulrich Weigand  <uweigand@de.ibm.com>
5358
5359         * builtins.c (expand_builtin_signbit): Use extract_bit_field instead
5360         of gen_highpart or gen_lowpart when the floating point format is
5361         wider than the result mode.
5362
5363 2004-02-06  Andrew Pinski  <pinskia@physics.uc.edu>
5364
5365         * dwarf2out.c (loclabel_num): Move into #ifdef
5366         DWARF2_DEBUGGING_INFO.
5367
5368 2004-02-06  Ziemowit Laski  <zlaski@apple.com>
5369
5370         * objc/objc-act.c (build_super_template) the 'class' field of
5371         'struct _objc_super' shall be named 'super_class' #ifdef OBJCPLUS.
5372         (get_super_receiver): Likewise.
5373
5374 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5375
5376         * reload1.c (check_eliminable_occurrences): Optimize the reset
5377         of can_eliminate.
5378         (eliminate_regs_in_insn): Likewise.
5379
5380 2004-02-06  Daniel Berlin <dberlin@dberlin.org>
5381             Josef Zlomek  <zlomekj@suse.cz>
5382
5383         * dwarf2out.c (struct gcc_debug_hooks): Call dwarf2out_begin_function
5384         at the beginning of function, call dwarf2out_var_location for
5385         NOTE_INSN_VAR_LOCATION note.
5386         (struct var_loc_node, struct var_loc_list_def, loclabel_num,
5387         decl_loc_table): New.
5388         (lookup_decl_loc): New function.
5389         (add_var_loc_to_decl): New function.
5390         (based_loc_descr): Added parameter can_use_fbreg, DW_OP_fbreg is used
5391         only if can_use_fbreg.
5392         (mem_loc_descriptor): Added parameter can_use_fbreg, pass it to other
5393         functions.
5394         (loc_descriptor): Likewise. Process VAR_LOCATION.
5395         (concat_loc_descriptor): Call loc_descriptor with can_use_fbreg == true.
5396         (loc_descriptor_from_tree): Call mem_loc_descriptor with
5397         can_use_fbreg == true.
5398         (add_location_or_const_value_attribute): Added parameter enum
5399         dwarf_attribute attr, generate attribute ATTR.  Create the location list.
5400         (add_bound_info): Call loc_descriptor with can_use_fbreg == true.
5401         (gen_formal_parameter_die): Call add_location_or_const_value_attribute
5402         with attr == DW_AT_location.
5403         (gen_subprogram_die): Generate the location list for DW_AT_frame_base
5404         if frame_base_decl is defined and has a location list.
5405         (gen_variable_die): Call add_location_or_const_value_attribute with
5406         attr == DW_AT_location.
5407         (dwarf2out_var_location): New function.
5408         (dwarf2out_begin_function): New function.
5409         (dwarf2out_init): Create decl_loc_table.
5410
5411 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
5412
5413         * loop.c (force_movables): Transitively increase the priorities of
5414         all insns forces by an insn, not just the first one.
5415
5416 2004-02-06  Josef Zlomek  <zlomekj@suse.cz>
5417             Daniel Berlin <dberlin@dberlin.org>
5418
5419         Josef Zlomek  <zlomekj@suse.cz>
5420         * Makefile.in (var-tracking.o): New.
5421         * common.opt (fvar-tracking): New.
5422         * flags.h (flag_var_tracking): New.
5423         * gengtype.c (adjust_field_rtx_def): NOTE_INSN_VAR_LOCATION was added.
5424         * opts.c (common_handle_option): Add OPT_fvar_tracking.
5425         * print-rtl.c (print_rtx): NOTE_INSN_VAR_LOCATION was added.
5426         * rtl.c (note_insn_name): Likewise.
5427         * rtl.def (VAR_LOCATION): New.
5428         * rtl.h (NOTE_VAR_LOCATION): New.
5429         (NOTE_VAR_LOCATION_DECL): New.
5430         (NOTE_VAR_LOCATION_LOC): New.
5431         (enum insn_note): NOTE_INSN_VAR_LOCATION was added.
5432         (variable_tracking_main): New exported function.
5433         * timevar.def (TV_VAR_TRACKING): New.
5434         * toplev.c (enum dump_file_index): Added DFI_vartrack.
5435         (dump_file): "vartrack" was added (-dV).
5436         (flag_var_tracking): New.
5437         (f_options): "var-tracking" was added.
5438         (rest_of_handle_variable_tracking): New function.
5439         (rest_of_compilation): Run variable tracking.
5440         (process_options): If user has not specified flag_var_tracking set it
5441         according to optimize, debug_info_level and debug_hooks.
5442         * tree.h (frame_base_decl): New.
5443         * var-tracking.c: New file.
5444         * config/ia64/ia64.c (ia64_flag_var_tracking): New variable.
5445         (ia64_override_options): Set flags to run variable tracking in machine
5446         dependent reorg instead of toplev.c.
5447         (ia64_reorg): Run variable tracking if wanted.
5448         * doc/invoke.texi: Mention variable tracking in -dV,
5449         add and -fvar-tracking.
5450         * doc/passes.texi: Added variable tracking pass.
5451
5452         Daniel Berlin <dberlin@dberlin.org>
5453         * debug.h (struct gcc_debug_hooks): Added var_location debug hook.
5454         * dbxout.c (dbx_debug_hooks): Likewise.
5455         (xcoff_debug): Likewise.
5456         * debug.c (do_nothing_debug_hooks): Likewise.
5457         * dwarf2out.c (dwarf2_debug_hooks): Likewise.
5458         * dwarfout.c (dwarf_debug_hooks): Likewise.
5459         * sdbout.c (sdb_debug_hooks): Likewise.
5460         * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
5461         * final.c (final_scan_insn): Call var_location debug hook for each
5462         NOTE_INSN_VAR_LOCATION.
5463
5464 2004-02-06  Jan Hubicka  <jh@suse.cz>
5465
5466         * flow.c (update_life_info): Allocate reg_deaths when called from
5467         scheudler.
5468         (attempt_auto_inc):  Update life ranges accordingly.
5469
5470 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
5471
5472         PR debug/11816
5473         * dwarf2out.c (gen_decl_die): Handle anonymous struct members.
5474
5475 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
5476
5477         * cfganal.c (flow_call_edges_add): Never split a libcall block.
5478
5479 2004-02-06  Daniel Berlin  <dberlin@dberlin.org>
5480
5481         * dwarf2out.c (output_loc_list): Don't use deltas if we have
5482         a separate line info table in use.
5483         Use the correct size for terminators.
5484         (output_die): Use offset, not delta.
5485
5486 2004-02-06  H.J. Lu  <hongjiu.lu@intel.com>
5487
5488         * doc/invoke.texi: Remove the pni option from -mfpmath=.
5489
5490 2004-02-06  Jan Hubicka  <jh@suse.cz>
5491
5492         * recog.c (split_all_insns): Do not update reg info.
5493         * regrename.c (regrename_optimize): Likewise.
5494         * toplev.c (rest_of_handle_reorder_blocks): Likewise.
5495         * flow.c (struct propagate_block_info): Add insn_num field.
5496         (reg_deaths): New array.
5497         (life_analysis): Free reg_deaths info.
5498         (allocate_reg_life_data): Allocate reg_deaths array.
5499         (propagate_one_insn): Use new array.
5500         (init_propagate_block): Initialize it.
5501         (free_propagate_block_info): Finish compuation of
5502         REG_LIVE_LENGTH
5503         (attempt_auto_inc): Sanity check that REG_INFO is not
5504         computed at same time.
5505         (mark_used_regs): Update new array.
5506
5507         * reg-stack.c (subst_stack_regs): Unshare clobbers before
5508         substitution.
5509
5510 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5511
5512         * config/s390/s390.md (*extendsiqi2_short_displ): Change to
5513         *extendqisi2_short_displ.
5514
5515 2004-02-06  Alan Modra  <amodra@bigpond.net.au>
5516
5517         * doc/tm.texi (INIT_CUMULATIVE_ARGS): Update doco.
5518         * calls.c (expand_call): Pass n_named_args to INIT_CUMULATIVE_ARGS.
5519         (emit_library_call_value_1): Likewise pass nargs.
5520         * expr.c (block_move_libcall_safe_for_call_parm): Pass 3 here.
5521         * function.c (assign_parms): Pass -1 to INIT_CUMULATIVE_ARGS.
5522         * config/rs6000/rs6000.c (init_cumulative_args): Use n_named_args
5523         parameter instead of scanning TYPE_ARGS_TYPES to count args.
5524         * config/rs6000/rs6000-protos.h (init_cumulative_args): Update
5525         prototype.
5526         * config/rs6000/rs6000.h (INIT_CUMULATIVE_ARGS): Pass extra arg.
5527         (INIT_CUMULATIVE_INCOMING_ARGS): Set extra arg to 1000.
5528         (INIT_CUMULATIVE_LIBCALL_ARGS): Set extra arg to 0.
5529         * config/sh/sh.c (sh_output_mi_thunk): Pass 1 as n_named_args to
5530         INIT_CUMULATIVE_ARGS.
5531         * config/alpha/alpha.h (INIT_CUMULATIVE_ARGS): Update.
5532         * config/alpha/unicosmk.h, config/alpha/vms.h, config/arc/arc.h,
5533         config/arm/arm.h, config/avr/avr.h, config/c4x/c4x.h,
5534         config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.h,
5535         config/h8300/h8300.h, config/i386/i386.h, config/i860/i860.h,
5536         config/ia64/ia64.h, config/ip2k/ip2k.h, config/iq2000/iq2000.h,
5537         config/iq2000/iq2000.c, config/m32r/m32r.h, config/m68hc11/m68hc11.h,
5538         config/m68k/m68k.h, config/mcore/mcore.h, config/mips/mips.h,
5539         config/mmix/mmix.h, config/mn10300/mn10300.h, config/ns32k/ns32k.h,
5540         config/pa/pa.h, config/pdp11/pdp11.h, config/s390/s390.h,
5541         config/sh/sh.h, config/sparc/sparc.h, config/stormy16/stormy16.h,
5542         config/v850/v850.h, config/vax/vax.h, config/xtensa/xtensa.h: Likewise.
5543
5544 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5545
5546         * genemit.c (gen_exp) [CONST_INT]: Use const_int_rtx whenever
5547         possible.
5548
5549 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5550
5551         * reload1.c (eliminate_regs_in_insn): If a set has a REG_EQUAL
5552         note containing (plus (reg) (const_int)), where reg is an
5553         eliminable reg, then perform the register elimination without
5554         depending on eliminate_regs().
5555
5556 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5557
5558         * config/arc/arc.c (arc_return_in_memory): Check the return
5559         value of int_size_in_bytes against -1.  Don't check
5560         TREE_ADDRESSABLE.
5561         * config/avr/avr.c (avr_return_in_memory): Check the return
5562         value of int_size_in_bytes against -1.
5563         * config/ip2k/ip2k.c (ip2k_return_in_memory): Likewise.
5564         * config/m68hc11/m68hc11.c (m68hc11_return_in_memory):
5565         Likewise.
5566         * config/mcore/mcore.c (mcore_return_in_memory): Likewise.
5567         * config/stormy16/stormy16.c (xstormy16_return_in_memory):
5568         Likewise.
5569
5570 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5571
5572         * config/frv/frv-protos.h: Remove the prototype for
5573         frv_setup_incoming_varargs.
5574         * config/frv/frv.c (TARGET_SETUP_INCOMING_VARARGS): New.
5575         (frv_setup_incoming_varargs): Make it static.
5576         * config/frv/frv.h (SETUP_INCOMING_VARARGS): Remove.
5577
5578 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5579
5580         * config/fr30/fr30-protos.h: Remove the prototype for
5581         fr30_setup_incoming_varargs.
5582         Update the prototypes for fr30_num_arg_regs and
5583         fr30_function_arg_partial_nregs.
5584         * config/fr30/fr30.c (TARGET_STRUCT_VALUE_RTX): New.
5585         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
5586         (fr30_setup_incoming_varargs): Make it static.
5587         Add argument second_time.  Don't do anything when second_time
5588         is nonzero.
5589         (fr30_num_arg_regs): Change the type of the first argument to
5590         enum machine_mode.
5591         (fr30_function_arg_partial_nregs): Change the type of the
5592         second argument to enum machine_mode.
5593         * config/fr30/fr30.h (STRUCT_VALUE): Remove.
5594         (SETUP_INCOMING_VARARGS): Remove.
5595
5596 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
5597
5598         * config/arc/arc-protos.h: Remove the prototype for
5599         arc_setup_incoming_varargs.
5600         * config/arc/arc.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
5601         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
5602         (arc_setup_incoming_varargs): Make it static.
5603         (arc_external_libcall): Likewise.
5604         * config/arc/arc.h (SETUP_INCOMING_VARARGS): Remove.
5605         Remove the commented-out definition of
5606         ASM_OUTPUT_EXTERNAL_LIBCALL.
5607
5608 2004-02-05  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
5609
5610         * config/sh/t-linux (SHLIB_INSTALL): Prepend $$(DESTDIR)
5611         to $$(slibdir) in the installation commands.
5612
5613 2004-02-05  David Edelsohn  <edelsohn@gnu.org>
5614
5615         * reload.c (refers_to_regno_for_reload_p): Index hard_regno_nregs
5616         with inner_regno, not regno.
5617         * rtlanal.c (refers_to_regno_p): Same.
5618
5619 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5620
5621         * config.gcc: Remove i370 support.
5622
5623 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
5624
5625         * doc/install.texi:  Update automake and autoconf version
5626         requirements.  Note where to find gcj automake version.
5627
5628 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
5629
5630         * Makefile.in (generate-manpages): Move dependencies to ...
5631         (man): here.
5632         * doc/makefile.texi: Document new targets.
5633         * doc/sourcebuild.texi (Make-lang.in): Document new langhooks.
5634
5635 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
5636
5637         PR/13485
5638         Makefile.in (srcextra):  Add a level of indirection to ...
5639         (gcc.srcextra): ... here.
5640         (po-generated): Delete.
5641         (po/$(PACKAGE).pot: Use srcextra instead of po-generated.  Depend on
5642         options.c.
5643         (start.encap): Remove superfluous lang.srcextra dependency.
5644         objc/Make-lang.in (po-generated):  Delete.
5645
5646 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5647
5648         * config/ia64/ia64.c (REG_GP): Remove.
5649
5650 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5651
5652         * config/mips/iris5gas.h (PREFERRED_DEBUGGING_TYPE): Define.
5653
5654 2004-02-05  Devang Patel  <dpatel@apple.com>
5655
5656         * dwarf2out.c (force_type_die): Look up input type itself
5657         instead of root_type() of type.
5658
5659 2004-02-05  Andreas Krebbel  <krebbel1@de.ibm.com>
5660
5661         * config/s390/s390.md ("*tmqidi_ext"): New insn.
5662         ("*extendqidi2_short_displ", "*extendsiqi2_short_displ"): Old
5663         pre-reload splitters are transformed to post-reload
5664         define_insn_and_split patterns.
5665         ("*tmqisi_ext"): Renamed old "*tmqi_ext".
5666
5667 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5668
5669         * config/cris/cris.h: Replace PROMOTE_PROTOTYPES with
5670         TARGET_PROMOTE_PROTOTYPES.
5671
5672 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5673
5674         PR middle-end/13750
5675         Revert:
5676         2004-01-15  Geoffrey Keating  <geoffk@apple.com>
5677         PR pch/13361
5678         * c-typeck.c (constructor_asmspec): Delete.
5679         (struct initializer_stack): Delete field 'asmspec'.
5680         (start_init): Delete saving of asmspec.
5681         (finish_init): Don't update constructor_asmspec.
5682         * dwarf2out.c (rtl_for_decl_location): Duplicate string from tree.
5683         * stmt.c (expand_asm): Duplicate strings from tree.
5684         (expand_asm_operands): Likewise.
5685         * tree.c (tree_size): Update computation of size of STRING_CST.
5686         (make_node): Don't make STRING_CST nodes.
5687         (build_string): Allocate string with tree node.
5688         * tree.def (STRING_CST): Update comment.
5689         * tree.h (TREE_STRING_POINTER): Adjust for change to STRING_CST.
5690         (tree_string): Place contents of string in tree node.
5691         * config/sh/sh.c (sh_handle_sp_switch_attribute): Duplicate string
5692         from tree.
5693
5694 2004-02-05  Joseph S. Myers  <jsm@polyomino.org.uk>
5695
5696         * diagnostic.h (DEFINE_DIAGNOSTIC_KIND): Change parameter M to
5697         msgid.
5698
5699 2004-02-05  Dorit Naishlos  <dorit@il.ibm.com>
5700
5701         * config/rs6000/altivec.md (*movv4si_internal): At least one
5702         operand must be altivec_register_operand.
5703         (*movv8hi_internal1): Likewise.
5704         (*movv16qi_internal1): Likewise.
5705         (*movv4sf_internal1): Likewise.
5706
5707 2004-02-05  David Edelsohn  <edelsohn@gnu.org>
5708
5709         * configure.ac (gcc_cv_as_powerpc_mfcrf): Correct test for mfcr.
5710         * configure: Regenerate.
5711
5712 2004-02-05  Jonathan Wakely  <redi@gcc.gnu.org>
5713
5714         * doc/install.texi: Update description of --gxx-include-dir to
5715         give correct default value.
5716
5717 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5718
5719         * config/h8300/h8300.h (REG_OK_FOR_BASE_NONSTRICT_P): Replace
5720         8 with MAC_REG.
5721
5722 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5723
5724         * config/pa/pa.c (emit_hpdiv_const): Replace gen_rtx with
5725         gen_rtx_PARALLEL.
5726
5727 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
5728
5729         * emit-rtl.c: Update the comment about the file.
5730
5731 2004-02-05  Joseph S. Myers  <jsm@polyomino.org.uk>
5732
5733         * sourcebuild.texi (Test Idioms): Update testcase naming
5734         conventions.
5735
5736 2004-02-04  Per Bothner  <per@bothner.com>
5737
5738         Partially revert/redo 2003-10-01 change; fix -fworking-directory.
5739         * c-ppoutput.c (pp_dir_change):  New function.
5740         * c-common.h (pp_dir_change):  New declaration.
5741         * cpplib.h (struct cpp_options):  Remove working_directory field.
5742         * cppinit.c (cpp_find_main_file, cpp_push_main_file):  Merge back to
5743         (cpp_read_main_file):  as before 10-01.  Call _cpp_stack_file.
5744         Don't handle -fworking_directory here, but in c_common_post_options.
5745         (read_original_directory): Don't back up when done.
5746         Don't clear no-longer used working_directory flag.
5747         * cpplib.h:  Update declarations to match.
5748         * c-lex.c (cb_dir_change):  Move to c-opts.c.
5749         (init_c_lex):  Don't set dir_change callback here, since we want
5750         to set it even if flag_preprocess_only.
5751         * c-opts.c (cb_dir_change):  Function moved from c-lex.c.
5752         (c_common_post_options):  Set dir_change callback.
5753         Call pp_dir_change if approporiate.
5754         (finish_options):  Don't call cpp_find_main_file here.  Hence remove
5755         unneeded parameter and result. Do LC_RENAME for <built-in>.
5756         (c_common_post_options):  Call cpp_read_main_file here instead.
5757         (c_common_init):  Update accordingly.
5758         (push_command_line_include):  Don't cpp_push_main_file.
5759         Do LC_RENAME rather than LC_LEASE to get back to main file.
5760         Compared to pre-10-01 version, inline cpp_rename_to_main_file.
5761         (c_common_parse_file):  Call cpp_read_main_file for subsequent main
5762         files, but call finish_options for all files.
5763         * c-opts.c (sanitize_cpp_opts):  Don't set cpp_opts->working_directory.
5764         * fix-header.c (read_scan_file):  Call cpp_read_main_file instead of
5765         cpp_find_main_file + cpp_push_main_file.
5766         * c-lex.c (fe_file_change):  Don't set main_input_filename here.
5767         * opts.c (handle_options):  Only set main_input_filename first time.
5768
5769 2004-02-05  Ian Lance Taylor  <ian@wasabisystems.com>
5770
5771         * config/arm/arm.h (REG_CLASS_NAMES): Add missing comma.
5772
5773 2004-02-04  Geoffrey Keating  <geoffk@apple.com>
5774
5775         * reload.c (find_equiv_reg): When checking for register overlap,
5776         don't index hard_regno_nregs with a pseudo-reg.
5777
5778 2004-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
5779
5780         * config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
5781
5782 2004-02-04  David Edelsohn  <edelsohn@gnu.org>
5783
5784         * reload.c (refers_to_regno_for_reload_p): Test regno, not inner_regno,
5785         against FIRST_PSEUDO_REGISTER.
5786
5787 2004-02-04  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5788
5789         * Makefile.in: Move target, host overrides after per-language
5790         fragments.
5791
5792         * config/mips/t-iris5-as (FORCE_DEBUG_ADAFLAGS): Clear.
5793         (GNATLIBCFLAGS): Remove -g.
5794
5795 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5796
5797         * config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
5798         config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
5799         config/ia64/ia64.c, config/ia64/unwind-ia64.c,
5800         config/m32r/m32r.c, config/ns32k/ns32k.c, config/pa/pa.c,
5801         config/pdp11/pdp11.c, config/rs6000/rs6000.c,
5802         config/sparc/sparc.c, config/vax/vax.c: Revert the
5803         replacements of "FALLTHRU" with "Fall through" done in the
5804         previous patch.
5805
5806 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5807
5808         * config/darwin.c, config/darwin.h, config/freebsd-spec.h,
5809         config/arm/arm.c, config/arm/arm.md,
5810         config/cris/cris-protos.h, config/fr30/fr30.c,
5811         config/fr30/fr30.h, config/h8300/h8300.c, config/i386/i386.h,
5812         config/i860/i860.c, config/i860/i860.h, config/ia64/ia64-c.c,
5813         config/ia64/ia64.c, config/ia64/ia64.h, config/ip2k/ip2k.h,
5814         config/ip2k/ip2k.md, config/ip2k/libgcc.S,
5815         config/m32r/linux.h, config/m32r/m32r.c, config/m32r/m32r.h,
5816         config/m68k/m68k.c, config/m68k/netbsd-elf.h,
5817         config/mips/mips.c, config/mmix/mmix.c, config/mmix/mmix.md,
5818         config/ns32k/netbsd.h, config/ns32k/ns32k.c,
5819         config/ns32k/ns32k.h, config/pdp11/pdp11.h,
5820         config/rs6000/darwin-ldouble.c, config/s390/s390.h,
5821         config/s390/s390.md, config/sparc/netbsd-elf.h,
5822         config/sparc/openbsd.h, config/sparc/sparc.c,
5823         config/xtensa/lib2funcs.S: Fix comment formatting.
5824
5825 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5826
5827         * config/alpha/alpha.c, config/arc/arc.c,
5828         config/arm/arm-cores.def, config/arm/arm.c, config/arm/arm.h,
5829         config/arm/arm1026ejs.md, config/arm/arm1136jfs.md,
5830         config/arm/arm926ejs.md, config/arm/vfp.md, config/avr/avr.c,
5831         config/c4x/c4x.c, config/cris/cris.c, config/frv/frv.md,
5832         config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
5833         config/ia64/ia64.c, config/ia64/unwind-ia64.c,
5834         config/iq2000/iq2000.c, config/m32r/m32r.c,
5835         config/mips/mips.c, config/mmix/mmix.c, config/mmix/mmix.h,
5836         config/ns32k/ns32k.c, config/pa/pa.c, config/pdp11/pdp11.c,
5837         config/rs6000/darwin-ldouble.c, config/rs6000/rs6000.c,
5838         config/rs6000/rs6000.h, config/sparc/sparc.c,
5839         config/vax/vax.c: Fix comment typos.  Follow spelling
5840         conventions.
5841
5842 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5843
5844         * alloc-pool.h, c-convert.c, c-lang.c, c-tree.h,
5845         caller-save.c, df.h, genconfig.c, global.c, lcm.c,
5846         ra-rewrite.c, ra.c, regclass.c, regs.h, resource.c,
5847         sched-rgn.c, config/arm/aof.h, config/arm/cirrus.md,
5848         config/arm/fpa.md, config/arm/iwmmxt.md,
5849         config/arm/netbsd-elf.h, config/arm/netbsd.h,
5850         config/m68hc11/m68hc11.md, config/mips/iris5.h,
5851         config/mn10300/mn10300.md, config/rs6000/altivec.md,
5852         config/sparc/netbsd-elf.h: Update copyright.
5853
5854 2004-02-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
5855
5856         * config/sparc/sparc.c (function_arg_pass_by_reference): Return 1
5857         for all modes whose size is greater than 8 bytes if ARCH32.
5858         (sparc_va_arg): Handle all modes whose size is greater than 8 bytes
5859         by reference if ARCH32.
5860
5861 2004-02-04  Aldy Hernandez  <aldyh@redhat.com>
5862
5863         * cgraphunit.c (cgraph_postorder): Fix typo in comment.
5864
5865 2004-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
5866
5867         * config/s390/s390.md ("*la_64" + peepholes, "reload_indi"): Move
5868         to before adddi3 insn patterns.
5869         ("*la_31" + peepholes, "*la_31_and", "*la_31_and_cc", "force_la_31",
5870         "reload_insi"): Move to before addsi3 insn patterns.
5871
5872 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
5873
5874         * calls.c (initialize_argument_information): Add CALL_FROM_THUNK_P
5875         parameter.  Use it instead of current_function_is_thunk.
5876         * function.h (struct function): Update documentation for is_thunk.
5877         * tree.h (CALL_FROM_THUNK_P): New macro.
5878         * config/alpha/alpha.c (alpha_sa_mask): Do not check
5879         no_new_pseudos when testing current_function_is_thunk.
5880         * config/rs6000/rs6000.c (rs6000_ra_ever_killed): Likeiwse.
5881
5882 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5883
5884         * doc/tm.texi: Replace SETUP_INCOMING_VARARGS with
5885         TARGET_SETUP_INCOMING_VARARGS.
5886
5887 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5888
5889         * emit-rtl.c (gen_rtx): Remove.
5890         * genattrtab.c: Don't mention gen_rtx in a comment.
5891         * rtl.h: Remove the prototype for gen_rtx.
5892         * doc/md.texi: Replace gen_rtx with gen_rtx_REG.
5893
5894 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5895
5896         * config/arc/arc.h, config/fr30/fr30.h
5897         (SETUP_INCOMING_VARARGS): Remove the target-independent
5898         comments.
5899         * doc/tm.texi: Don't mention deprecated target macros.
5900
5901 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5902
5903         * config/fr30/fr30.h (FUNCTION_VALUE): Remove the
5904         target-independent comment.
5905
5906 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5907
5908         * doc/interface.texi, doc/tm.texi, doc/trouble.texi: Don't
5909         mention deprecated target macros.
5910
5911 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
5912
5913         * config.gcc: Remove obsolete ports and configurations.
5914         * config/linux-aout.h, config/netware.h,
5915         config/t-linux-gnulibc1, config/d30v/abi,
5916         config/d30v/d30v-protos.h, config/d30v/d30v.c,
5917         config/d30v/d30v.h, config/d30v/d30v.md,
5918         config/d30v/libgcc1.asm, config/d30v/t-d30v,
5919         config/dsp16xx/dsp16xx-modes.def,
5920         config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
5921         config/dsp16xx/dsp16xx.h, config/dsp16xx/dsp16xx.md,
5922         config/i370/README, config/i370/i370-c.c,
5923         config/i370/i370-protos.h, config/i370/i370.c,
5924         config/i370/i370.h, config/i370/i370.md, config/i370/linux.h,
5925         config/i370/mvs.h, config/i370/oe.h, config/i370/t-i370,
5926         config/i386/freebsd-aout.h, config/i386/linux-aout.h,
5927         config/i386/moss.h, config/i386/netware.h,
5928         config/i386/svr3.ifile, config/i386/svr3dbx.h,
5929         config/i386/svr3gas.h, config/i386/svr3z.ifile,
5930         config/i386/t-udk, config/i386/udk.h, config/i386/vsta.h,
5931         config/i960/i960-c.c, config/i960/i960-coff.h,
5932         config/i960/i960-modes.def, config/i960/i960-protos.h,
5933         config/i960/i960.c, config/i960/i960.h, config/i960/i960.md,
5934         config/i960/rtems.h, config/i960/t-960bare,
5935         config/m68k/hp310.h, config/m68k/hp320.h,
5936         config/m68k/hp320base.h, config/m68k/m68kv4.h,
5937         config/m68k/netbsd.h, config/m68k/sgs.h, config/m68k/t-hp320:
5938         Remove.
5939         * doc/extend.texi, doc/install.texi, doc/invoke.texi,
5940         doc/md.texi: Remove mentions of obsolete ports.
5941
5942 2004-02-04  Jan Hubicka  <jh@suse.cz>
5943
5944         * alias.c (find_base_term, get_addr):  Do not dereference NULL
5945         pointer when all VALUE's locations has been invalidated.
5946         (rtx_equal_for_memref_p): Simplify checking of VALUEs.
5947
5948 2004-02-03  Wolfgang Bangerth  <bangerth@dealii.org>
5949
5950         * doc/invoke.texi (x86 options): Fix spelling/wording.
5951
5952 2004-02-03  Richard Sandiford  <rsandifo@redhat.com>
5953
5954         * config/mips/iris5.h (ASM_OUTPUT_ASCII): Use mips_output_ascii to
5955         put the original string in a comment.
5956         * config/mips/mips-protos.h (mips_output_ascii): Add prefix argument.
5957         * config/mips/mips.c (mips_output_ascii): Likewise.
5958         * config/mips/mips.h (ASM_OUTPUT_ASCII): Adjust accordingly.
5959
5960 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
5961
5962         * system.h (GIV_SORT_CRITERION): Poison.
5963         * config/avr/avr.h (GIV_SORT_CRITERION): Remove.
5964         * config/ip2k/ip2k.h (GIV_SORT_CRITERION): Likewise.
5965
5966 2004-02-03  Roger Sayle  <roger@eyesopen.com>
5967
5968         PR target/9348
5969         * expr.c (expand_expr_real) <MULT_EXPR>:  When performing widening
5970         multiplies with a multiplication of the wrong signedness, its the
5971         signedness of the multiplication that we've performed that needs to
5972         be passed to expand_mult_highpart_adjust.  Avoid emitting a nop-move
5973         if expand_mult_highpart_adjust places the result in target.
5974
5975 2004-02-03  Richard Henderson  <rth@redhat.com>
5976
5977         * varasm.c (const_desc_rtx_sym_eq): Compare symbol strings.
5978
5979 2004-02-03  J"orn Rennecke <joern.rennecke@superh.com>
5980
5981         * config.gcc (sh[234]l): Use little endian fragments.
5982
5983 2004-02-03  Paul Koning  <pkoning@equallogic.com>
5984
5985         * config/pdp11/pdp11-modes.def: Add RESET_FLOAT_FORMAT calls.
5986         * config/pdp11/pdp11-protos.h (legitimate_const_double_p): Add.
5987         * config/pdp11/pdp11.c (encode_pdp11_f, decode_pdp11_f,
5988         encode_pdp11_d, decode_pdp11_d): New functions to handle PDP11
5989         floating point format.
5990         (pdp11_f_format, pdp11_d_format): New real_format descriptors for
5991         the above functions.
5992         (output_move_quad): Output float values in correct target format.
5993         (legitimate_const_double_p): New function.
5994         * config/pdp11/pdp11.h: Fix typos.
5995         (FLOAT_WORDS_BIG_ENDIAN): Add definition.
5996         (TARGET_FLOAT_FORMAT): Ditto.
5997         (pdp11_f_format, pdp11_d_format): Add external declarations.
5998         (MAX_REGS_PER_ADDRESS): Corrected.
5999         (LEGITIMATE_CONSTANT_P): Use legitimate_const_double_p().
6000         (PRINT_OPERAND): Output float literals in target format.
6001
6002 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
6003
6004         PR c++/13975
6005         * tree.h (enum tree_index): Add TI_PUBLIC, TI_PROTECTED, and
6006         TI_PRIVATE.
6007         (access_public_node): Redefine.
6008         (access_protected_node): Likewise.
6009         (access_private_node): Likewise.
6010         * tree.c (build_common_tree_nodes): Create access_public_node,
6011         access_protected_node, and access_private_node.
6012
6013 2004-02-03  Steve Ellcey  <sje@cup.hp.com>
6014
6015         * config/ia64/ia64.h (MASK_INLINE_INT_DIV_LAT): Change value.
6016         (MASK_INLINE_INT_DIV_THR): Ditto.
6017         (MASK_INLINE_SQRT_LAT): Ditto.
6018         (MASK_INLINE_SQRT_THR): Ditto.
6019         (MASK_DWARF2_ASM): Ditto.
6020         (MASK_EARLY_STOP_BITS): Ditto.
6021
6022 2004-02-02  Paul Brook  <paul@codesourcery.com>
6023
6024         Merge from csl-arm-branch.
6025
6026         2004-01-30  Paul Brook  <paul@codesourcery.com>
6027
6028         * aof.h (REGISTER_NAMES): Add vfp reg names
6029         (ADDITIONAL_REGISTER_NAMES): Ditto.
6030         * aout.h (REGISTER_NAMES): Ditto.
6031         (ADDITIONAL_REGISTER_NAMES): Ditto.
6032         * arm-protos.h: Update/Add Prototypes.
6033         * arm.c (init_fp_table): Rename from init_fpa_table. Update users.
6034         Only allow 0.0 for VFP.
6035         (fp_consts_inited): Rename from fpa_consts_inited.  Update users.
6036         (values_fp): Rename from values_fpa.  Update Users.
6037         (arm_const_double_rtx): Rename from const_double_rtx_ok_for_fpa.
6038         Update users.  Only check valid constants for this hardware.
6039         (arm_float_rhs_operand): Rename from fpa_rhs_operand.  Update Users.
6040         Only allow consts for FPA.
6041         (arm_float_add_operand): Rename from fpa_add_operand.  Update users.
6042         Only allow consts for FPA.
6043         (use_return_insn): Check for saved VFP regs.
6044         (arm_legitimate_address_p): Handle VFP DFmode addressing.
6045         (arm_legitimize_address): Ditto.
6046         (arm_general_register_operand): New function.
6047         (vfp_mem_operand): New function.
6048         (vfp_compare_operand): New function.
6049         (vfp_secondary_reload_class): New function.
6050         (arm_float_compare_operand): New function.
6051         (vfp_print_multi): New function.
6052         (vfp_output_fstmx): New function.
6053         (vfp_emit_fstm): New function.
6054         (arm_output_epilogue): Output VPF reg restore code.
6055         (arm_expand_prologue): Output VFP reg save code.
6056         (arm_print_operand): Add 'P'.
6057         (arm_hard_regno_mode_ok): Return modes for VFP regs.
6058         (arm_regno_class): Return classes for VFP regs.
6059         (arm_compute_initial_elimination_offset): Include space for VFP regs.
6060         (arm_get_frame_size): Ditto.
6061         * arm.h (FIXED_REGISTERS): Add VFP regs.
6062         (CALL_USED_REGISTERS): Ditto.
6063         (CONDITIONAL_REGISTER_USAGE): Enable VFP regs.
6064         (FIRST_VFP_REGNUM): Define.
6065         (LAST_VFP_REGNUM): Define.
6066         (IS_VFP_REGNUM): Define.
6067         (FIRST_PSEUDO_REGISTER): Include VFP regs.
6068         (HARD_REGNO_NREGS): Handle VFP regs.
6069         (REG_ALLOC_ORDER): Add VFP regs.
6070         (enum reg_class): Add VFP_REGS.
6071         (REG_CLASS_NAMES): Ditto.
6072         (REG_CLASS_CONTENTS): Ditto.
6073         (CANNOT_CHANGE_MODE_CLASS) Handle VFP Regs.
6074         (REG_CLASS_FROM_LETTER): Add 'w'.
6075         (EXTRA_CONSTRAINT_ARM): Add 'U'.
6076         (EXTRA_MEMORY_CONSTRAINT): Define.
6077         (SECONDARY_OUTPUT_RELOAD_CLASS): Handle VFP regs.
6078         (SECONDARY_INPUT_RELOAD_CLASS): Ditto.
6079         (REGISTER_MOVE_COST): Ditto.
6080         (PREDICATE_CODES): Add arm_general_register_operand,
6081         arm_float_compare_operand and vfp_compare_operand.
6082         * arm.md (various): Rename as above.
6083         (divsf3): Enable when TARGET_VFP.
6084         (divdf3): Ditto.
6085         (movdfcc): Ditto.
6086         (sqrtsf2): Ditto.
6087         (sqrtdf2): Ditto.
6088         (arm_movdi): Disable when TARGET_VFP.
6089         (arm_movsi_insn): Ditto.
6090         (movsi): Only split with general regs.
6091         (cmpsf): Use arm_float_compare_operand.
6092         (push_fp_multi): Restrict to TARGET_FPA.
6093         (vfp.md): Include.
6094         * vfp.md: New file.
6095         * fpa.md (various): Rename as above.
6096         * doc/md.texi: Document ARM w and U constraints.
6097
6098         2004-01-15  Paul Brook  <paul@codesourcery.com>
6099
6100         * config.gcc: Add with_fpu.  Allow with-float=softfp.
6101         * config/arm/arm.c (arm_override_options): Rename *-s to *s.
6102         Break out of loop when we find a float-abi.  Fix typo.
6103         * config/arm/arm.h (OPTION_DEFAULT_SPECS): Add "fpu".
6104         Set -mfloat-abi=.
6105         * doc/install.texi: Document --with-fpu.
6106
6107         2003-01-14  Paul Brook  <paul@codesourcery.com>
6108
6109         * config.gcc (with_arch): Add armv6.
6110         * config/arm/arm.h: Rename TARGET_CPU_*_s to TARGET_CPU_*s.
6111         * config/arm/arm.c (arm_overrride_options): Ditto.
6112
6113         2004-01-08  Richard Earnshaw  <rearnsha@arm.com>
6114
6115         * arm.c (FL_ARCH3M): Renamed from FL_FAST_MULT.
6116         (FL_ARCH6): Renamed from FL_ARCH6J.
6117         (arm_arch3m): Renamed from arm_fast_multiply.
6118         (arm_arch6): Renamed from arm_arch6j.
6119         * arm.h: Update all uses of above.
6120         * arm-cores.def: Likewise.
6121         * arm.md: Likewise.
6122
6123         * arm.h (CPP_CPU_ARCH_SPEC): Emit __ARM_ARCH_6J__ define for armV6j,
6124         not arm6j.  Add entry for arch armv6.
6125
6126         2004-01-07  Richard Earnshaw  <rearnsha@arm.com>
6127
6128         * arm.c (arm_emit_extendsi): Delete.
6129         * arm-protos.h (arm_emit_extendsi): Delete.
6130         * arm.md (zero_extendhisi2): Also handle zero-extension of
6131         non-subregs.
6132         (zero_extendqisi2, extendhisi2, extendqisi2): Likewise.
6133         (thumb_zero_extendhisi2): Only match if not v6.
6134         (arm_zero_extendhisi2, thumb_zero_extendqisi2, arm_zero_extendqisi2)
6135         (thumb_extendhisi2, arm_extendhisi2, arm_extendqisi)
6136         (thumb_extendqisi2): Likewise.
6137         (thumb_zero_extendhisi2_v6, arm_zero_extendhisi2_v6): New patterns.
6138         (thumb_zero_extendqisi2_v6, arm_zero_extendqisi2_v6): New patterns.
6139         (thumb_extendhisi2_insn_v6, arm_extendhisi2_v6): New patterns.
6140         (thumb_extendqisi2_v6, arm_extendqisi_v6): New patterns.
6141         (arm_zero_extendhisi2_reg, arm_zero_extendqisi2_reg): Delete.
6142         (arm_extendhisi2_reg, arm_extendqisi2_reg): Delete.
6143         (arm_zero_extendhisi2addsi): Remove subreg.  Add attributes.
6144         (arm_zero_extendqisi2addsi, arm_extendhisi2addsi): Likewise.
6145         (arm_extendqisi2addsi): Likewise.
6146
6147         2003-12-31  Mark Mitchell  <mark@codesourcery.com>
6148
6149         Revert this change:
6150         * config/arm/arm.h (THUMB_LEGTITIMIZE_RELOAD_ADDRESS): Reload REG
6151         + REG addressing modes.
6152
6153         * config/arm/arm.h (THUMB_LEGTITIMIZE_RELOAD_ADDRESS): Reload REG
6154         + REG addressing modes.
6155
6156         2003-12-30  Mark Mitchell  <mark@codesourcery.com>
6157
6158         * config/arm/arm.h (THUMB_LEGITIMATE_CONSTANT_P): Accept
6159         CONSTANT_P_RTX.
6160
6161         2003-30-12  Paul Brook  <paul@codesourcery.com>
6162
6163         * longlong.h: protect arm inlines with !defined (__thumb__)
6164
6165         2003-30-12  Paul Brook  <paul@codesourcery.com>
6166
6167         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Always define __arm__.
6168
6169         2003-12-30  Nathan Sidwell  <nathan@codesourcery.com>
6170
6171         * builtins.c (expand_builtin_apply_args_1): Fix typo in previous
6172         change.
6173
6174         2003-12-29  Nathan Sidwell  <nathan@codesourcery.com>
6175
6176         * builtins.c (expand_builtin_apply_args_1): Add pretend args size
6177         to the virtual incoming args pointer for downward stacks.
6178
6179         2003-12-29  Paul Brook  <paul@codesourcery.com>
6180
6181         * config/arm/arm-cores.def: Add cost function.
6182         * config/arm/arm.c (arm_*_rtx_costs): New functions.
6183         (arm_rtx_costs): Remove
6184         (struct processors): Add rtx_costs field.
6185         (all_cores, all_architectures): Ditto.
6186         (arm_override_options): Set targetm.rtx_costs.
6187         (thumb_rtx_costs): New function.
6188         (arm_rtx_costs_1): Remove cases handled elsewhere.
6189         * config/arm/arm.h (processor_type): Add COSTS parameter.
6190
6191         2003-12-29  Nathan Sidwell  <nathan@codesourcery.com>
6192
6193         * config/arm/arm.md (generic_sched): arm926 has its own scheduler.
6194         (arm926ejs.md): Include it.
6195         * config/arm/arm926ejs.md: New pipeline description.
6196
6197         2003-12-24  Paul Brook  <paul@codesourcery.com>
6198
6199         * config/arm/arm.c (arm_arch6j): New variable.
6200         (arm_override_options): Set it.
6201         (arm_emit_extendsi): New function.
6202         * config/arm/arm-protos.h (arm_emit_extendsi): Add prototype.
6203         * config/arm/arm.h (arm_arch6j): Declare.
6204         * config/arm/arm.md: Add sign/zero extend insns.
6205
6206         2003-12-23  Paul Brook  <paul@codesourcery.com>
6207
6208         * config/arm/arm.c (all_architectures): Add armv6.
6209         * doc/invoke.texi: Document it.
6210
6211         2003-12-19  Paul Brook  <paul@codesourcery.com>
6212
6213         * config/arm/arm.md: Add load1 and load_byte "type" attrs.  Modify
6214         insn patterns to match.
6215         * config/arm/arm-generic.md: Ditto.
6216         * config/arm/cirrus.md: Ditto.
6217         * config/arm/fpa.md: Ditto.
6218         * config/amm/iwmmxt.md: Ditto.
6219         * config/arm/arm1026ejs.md: Ditto.
6220         * config/arm/arm1135jfs.md: Ditto.  Add insn_reservation and bypasses
6221         for 11_loadb.
6222
6223         2003-12-18  Nathan Sidwell  <nathan@codesourcery.com>
6224
6225         * config/arm/arm-protos.h (arm_no_early_alu_shift_value_dep): Declare.
6226         * config/arm/arm.c (arm_adjust_cost): Check shift cost for
6227         TYPE_ALU_SHIFT and TYPE_ALU_SHIFT_REG.
6228         (arm_no_early_store_addr_dep, arm_no_early_alu_shift_dep,
6229         arm_no_early_mul_dep): Correctly deal with conditional execution,
6230         parallels and single shift operations.
6231         (arm_no_early_alu_shift_value_dep): Define.
6232         * arm.md (attr type): Replace 'normal' with 'alu',
6233         'alu_shift' and 'alu_shift_reg'.
6234         (attr core_cycles): Adjust.
6235         (*addsi3_carryin_shift, andsi_not_shiftsi_si, *arm_shiftsi3,
6236         *shiftsi3_compare0, *notsi_shiftsi, *notsi_shiftsi_compare0,
6237         *not_shiftsi_compare0_scratch, *cmpsi_shiftsi, *cmpsi_shiftsi_swp,
6238         *cmpsi_neg_shiftsi, *arith_shiftsi, *arith_shiftsi_compare0,
6239         *arith_shiftsi_compare0_scratch, *sub_shiftsi,
6240         *sub_shiftsi_compare0, *sub_shiftsi_compare0_scratch,
6241         *if_shift_move, *if_move_shift, *if_shift_shift): Set type
6242         attribute appropriately.
6243         * config/arm/arm1026ejs.md (alu_op): Adjust.
6244         (alu_shift_op, alu_shift_reg_op): New.
6245         * config/arm/arm1136.md: Add better bypasses for early
6246         registers. Remove load[234] and store[234] bypasses.
6247         (11_alu_op): Adjust.
6248         (11_alu_shift_op, 11_alu_shift_reg_op): New.
6249
6250         2003-12-15  Nathan Sidwell  <nathan@codesourcery.com>
6251
6252         * config/arm/arm-protos.h (arm_no_early_store_addr_dep,
6253         arm_no_early_alu_shift_dep, arm_no_early_mul_dep): Declare.
6254         * config/arm/arm.c (arm_no_early_store_addr_dep,
6255         arm_no_early_alu_shift_dep, arm_no_early_mul_dep): Define.
6256         * config/arm/arm1026ejs.md: Add load-store bypass.
6257         * config/arm/arm1136jfs.md (11_alu_op): Take 2 cycles.
6258         Add bypasses between instructions.
6259
6260         2003-12-10  Paul Brook  <paul@codesourcery.com>
6261
6262         * config/arm/arm.c (arm_fpu_model): New variable.
6263         (arm_fload_abi): New variable.
6264         (target_fpe_name): Rename from target_fp_name.
6265         (target_fpu_name): New variable.
6266         (arm_is_cirrus): Remove.
6267         (fpu_desc): New struct.
6268         (all_fpus): Define.
6269         (pf_model_for_fpu): Define.
6270         (all_loat_abis): Define.
6271         (arm_override_options): Set fp arch flags based on -mfpu=
6272         and -float-abi=.
6273         (FIRST_FPA_REGNUM): Rename from FIRST_ARM_FP_REGNUM.
6274         (LAST_FPA_REGNUM): Rename from LAST_ARM_FP_REGNUM.
6275         (*): Use new TARGET_* flags.
6276         * config/arm/arm.h (TARGET_ANY_HARD_FLOAT): Remove.
6277         (TARGET_HARD_FLOAT): No longer implies TARGET_FPA.
6278         (TARGET_SOFT_FLOAT): Ditto.
6279         (TARGET_SOFT_FLOAT_ABI): New.
6280         (TARGET_MAVERICK): Rename from TARGET_CIRRUS.  No longer implies
6281         TARGET_HARD_FLOAT.
6282         (TARGET_VFP): No longer implies TARGET_HARD_FLOAT.
6283         (TARGET_OPTIONS): Add -mfpu=.
6284         (FIRST_FPA_REGNUM): Rename from FIRST_ARM_FP_REGNUM.
6285         (LAST_FPA_REGNUM): Rename from LAST_ARM_FP_REGNUM.
6286         (arm_pf_model): Define.
6287         (arm_float_abi_type): Define.
6288         (fputype): Add FPUTYPE_VFP.  Change SOFT_FPA->NONE
6289         * config/arm/arm.md: Use new TARGET_* flags.
6290         * config/arm/cirrus.md: Ditto.
6291         * config/arm/fpa.md: Ditto.
6292         * config/arm/elf.h (ASM_SPEC): Pass -mfloat-abi= and -mfpu=.
6293         * config/arm/semi.h (ASM_SPEC): Ditto.
6294         * config/arm/netbsd-elf.h (SUBTARGET_ASM_FLOAT_SPEC): Specify vfp.
6295         (FPUTYPE_DEFAULT): Set to VFP.
6296         * doc/invoke.texi: Document -mfpu= and -mfloat-abi=.
6297
6298         2003-11-22  Phil Edwards  <phil@codesourcery.com>
6299
6300         PR target/12476
6301         * config/arm/arm.c (arm_output_mi_thunk):  In Thumb mode, use
6302         'bx' instead of 'b' to avoid branch range restrictions.  Output
6303         the thunk immediately before the thunked-to function.
6304         * config/arm/arm.h (ARM_DECLARE_FUNCTION_NAME):  Do not emit
6305         .thumb_func if a thunk is being generated.  Emit .code 16 along
6306         with .thumb_func if a thunk is not being generated.
6307
6308         2003-11-15  Nicolas Pitre <nico@cam.org>
6309
6310         * config/arm/arm.md (ashldi3, arm_ashldi3_1bit, ashrdi3,
6311         arm_ashrdi3_1bit, lshrdi3, arm_lshrdi3_1bit): New patterns.
6312         * config/arm/iwmmxt.md (ashrdi3_iwmmxt): Renamed from ashrdi3.
6313         (lshrdi3_iwmmxt): Renamed from lshrdi3.
6314         * config/arm/arm.c (IWMMXT_BUILTIN2): Renamed argument accordingly.
6315
6316         2003-11-12  Steve Woodford  <scw@wasabisystems.com>
6317             Ian Lance Taylor  <ian@wasabisystems.com>
6318
6319         * config/arm/lib1funcs.asm (ARM_DIV_BODY, ARM_MOD_BODY): Add new
6320         code for __ARM_ARCH__ >= 5 && ! defined (__OPTIMIZE_SIZE__).
6321
6322         2003-11-05  Phil Edwards  <phil@codesourcery.com>
6323
6324         * config/arm/arm.md (insn):  Add new V6 instruction names.
6325         (generic_sched):  New attr.
6326         * config/arm/arm-generic.md:  Use generic_sched here.
6327         * config/arm/arm1026ejs.md:  Do not model fetch/issue/decode
6328         stages of pipeline.  Adjust latency counts accordingly.
6329         * config/arm/arm1136jfs.md:  New file.
6330
6331         2003-10-28  Mark Mitchell  <mark@codesourcery.com>
6332
6333         * config/arm/arm.h (processor_type): New enumeration type.
6334         (CPP_ARCH_DEFAULT_SPEC): Set appropriately for ARM 926EJ-S,
6335         ARM1026EJ-S, ARM1136J-S, and ARM1136JF-S processor cores.
6336         (CPP_CPU_ARCH_SPEC): Likewise.
6337         * config/arm/arm.c (arm_tune): New variable.
6338         (all_cores): Use cores.def.
6339         (all_architectures): Add representative processor.
6340         (arm_override_options): Restructure way in which tuning
6341         information is deduced.
6342         * arm.md: Update "insn" and "type" attributes throughout.
6343         (insn): New attribute.
6344         (type): Compute "mult" from "insn" attribute.  Add load2,
6345         load3, load4 alternatives.
6346         (arm automaton): Move to arm-generic.md.
6347         * config/arm/arm-cores.def: New file.
6348         * config/arm/arm-generic.md: Likewise.
6349         * config/arm/arm1026ejs.md: Likewise.
6350
6351 2004-02-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
6352
6353         * doc/invoke.texi (SPARC options): Remove -mflat and
6354         all -mxxx (xxx:chip) options.
6355         * config/sparc/aout.h (DBX_REGISTER_NUMBER): Delete.
6356         * config/sparc/litecoff.h (DBX_REGISTER_NUMBER): Likewise.
6357         * config/sparc/netbsd-elf.h (DBX_REGISTER_NUMBER): Likewise.
6358         * config/sparc/sol2.h (DBX_REGISTER_NUMBER): Likewise.
6359         * config/sparc/sparc-protos.h: Delete sparc_flat_* prototypes.
6360         * config/sparc/sparc.c: Likewise.
6361         (sparc_output_function_prologue): Remove TARGET_FLAT handling.
6362         (sparc_nonflat_function_prologue): Rename into sparc_function_prologue.
6363         (sparc_output_function_epilogue): Remove TARGET_FLAT handling.
6364         (sparc_nonflat_function_epilogue): Rename into sparc_function_epilogue.
6365         (struct sparc_frame_info, current_frame_info, zero_frame_info): Delete.
6366         (sparc_flat_must_save_register_p): Likewise.
6367         (sparc_flat_compute_frame_size): Likewise.
6368         (sparc_flat_save_restore): Likewise.
6369         (sparc_flat_function_prologue): Likewise.
6370         (sparc_flat_function_epilogue): Likewise.
6371         (sparc_flat_epilogue_delay_slots): Likewise.
6372         (sparc_flat_eligible_for_epilogue_delay): Likewise.
6373         (sparc_function_ok_for_sibcall): Remove TARGET_FLAT handling.
6374         * config/sparc/sparc.h (MASK_FLAT, TARGET_FLAT): Delete.
6375         (TARGET_SWITCHES): Remove -mflat and all -mxxx (xxx:chip) options.
6376         (SPARC_INCOMING_INT_ARG_FIRST): Remove TARGET_FLAT handling.
6377         (CONDITIONAL_REGISTER_USAGE): Likewise.
6378         (FRAME_POINTER_REQUIRED): Likewise.
6379         (INITIAL_ELIMINATION_OFFSET): Likewise.
6380         (BASE_RETURN_VALUE_REG): Likewise.
6381         (BASE_OUTGOING_VALUE_REG): Likewise.
6382         (BASE_PASSING_ARG_REG): Likewise.
6383         (BASE_INCOMING_ARG_REG): Likewise.
6384         (INCOMING_REGNO): Likewise.
6385         (OUTGOING_REGNO): Likewise.
6386         (LOCAL_REGNO): Likewise.
6387         (DELAY_SLOTS_FOR_EPILOGUE): Likewise.
6388         (ELIGIBLE_FOR_EPILOGUE_DELAY): Likewise.
6389         (EPILOGUE_USES): Likewise.
6390         * config/sparc/sparc.md ("isa" attribute): Change "v6" into "v7".
6391         ("flat" attribute): Delete.
6392         (do_builtin_setjmp_setup): Remove TARGET_FLAT and "flat" attribute
6393         handling.
6394         (call followed by jump define_peephole's): Delete.
6395         (exception_receiver): Likewise.
6396         (builtin_setjmp_receiver): Likewise.
6397         * config/sparc/t-sparclite (MULTILIB_OPTIONS): Remove -mflat.
6398
6399 2004-02-03  Paolo Bonzini  <bonzini@gnu.org>
6400
6401         PR c/11658
6402         PR c/13994
6403         * Makefile.in (c-parse.o, c-convert.o, c-typeck.o): Depend
6404         on langhooks.h.
6405         * objc/Make-lang.in (objc-parse.o): Depend on langhooks.h.
6406         * c-parse.in, c-convert.c, c-typeck.c, objc/objc-act.c:
6407         Include langhooks.h.  Replace c_common_truthvalue_conversion
6408         with the truthvalue_conversion language hook throughout.
6409         (expr_no_commas): Call default_conversion before save_expr
6410         for the first term of the production 'x ? : y'.
6411         * c-common.c (c_common_truthvalue_conversion): Remove
6412         obsolete block.  Invoke recursively the hook instead
6413         of this function.
6414         * c-convert.c (convert): handle ERROR_MARK_NODE.
6415         * c-typeck.c (build_binary_op): handle ERROR_MARK_NODE
6416         returned by the truthvalue_conversion language hook.
6417         * c-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Use
6418         c_objc_common_truthvalue_conversion.
6419         * c-objc-common.c (c_objc_common_truthvalue_conversion):
6420         New function.
6421         * c-tree.h (c_objc_common_truthvalue_conversion): Declare it.
6422         * objc/objc-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Use
6423         c_objc_common_truthvalue_conversion.
6424
6425 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
6426
6427         * config/c4x/c4x.h (FUNCTION_VALUE): Use gen_rtx_REG instead
6428         of gen_rtx.
6429         (LIBCALL_VALUE): Likewise.
6430         * config/ip2k/ip2k.c (mdr_try_propagate_clr_sequence): Use
6431         gen_rtx_CC0 instead of gen_rtx.
6432         * config/m68hc11/m68hc11.c (m68hc11_emit_libcall): Use
6433         gen_rtx_fmt_e and gen_rtx_fmt_ee instead of gen_rtx.
6434         (m68hc11_expand_compare): Use gen_rtx_fmt_ee instead of
6435         gen_rtx.
6436         (m68hc11_emit_logical): Likewise.
6437
6438 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
6439
6440         * config/alpha/alpha.c, config/arm/arm.c, config/c4x/c4x.c,
6441         config/fr30/fr30.md, config/frv/frv.c, config/frv/frv.md,
6442         config/h8300/h8300.c, config/ia64/ia64.c, config/ip2k/ip2k.md,
6443         config/m32r/m32r.md, config/m68hc11/m68hc11.c,
6444         config/mips/mips.md, config/mmix/mmix.c,
6445         config/mn10300/mn10300.c, config/mn10300/mn10300.md,
6446         config/ns32k/ns32k.c, config/pa/pa.md, config/pdp11/pdp11.c,
6447         config/rs6000/altivec.md, config/s390/s390.c,
6448         config/s390/s390.h, config/s390/s390.md, config/sh/sh.c,
6449         config/sh/sh.h, config/sh/sh.md, config/stormy16/stormy16.c:
6450         Use const0_rtx instead of GEN_INT (0).  Do the same for other
6451         constants that are readily available.
6452
6453 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
6454
6455         * doloop.c, optabs.c, regmove.c, sched-deps.c,
6456         config/i386/i386.c, config/i386/i386.md: Use const0_rtx
6457         instead of GEN_INT (0).  Do the same for other constants that
6458         are readily available.
6459
6460 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
6461
6462         * combine.c (simplify_set): Use gen_rtx_fmt_e instead of
6463         gen_rtx.
6464         * emit-rtl.c (init_emit_once): Use gen_rtx_PC and gen_rtx_CC0
6465         instead of gen_rtx.
6466         * reload1.c (init_elim_table): Use gen_rtx_fmt_e instead of
6467         gen_rtx.
6468         * config/ns32k/ns32k.md (udivmodhi4): Use gen_rtx_IOR and
6469         gen_rtx_ASHIFT instead of gen_rtx.
6470         (udivmodqi4): Likewise.
6471
6472 2004-02-02  Richard Henderson  <rth@redhat.com>
6473
6474         PR target/13789
6475         * expr.c (store_expr): Use force_operand before emit_move_insn.
6476
6477 2004-02-02  Jeff Law  <law@redhat.com>
6478             Roger Sayle  <roger@eyesopen.com>
6479
6480         * tree.c (commutative_tree_code, associative_tree_code): New
6481         functions.
6482         (iterative_hash_expr): Use commutative_tree_code.
6483         * tree.h (commutative_tree_code, associative_tree_code): Declare.
6484         * fold-const.c (operand_equal_p): Use commutative_tree_code
6485         rather than inlining the commutativity check.
6486         (fold): Likewise.
6487
6488 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
6489
6490         * system.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Poison.
6491         * config/frv/frv-protos.h: Remove the prototype for
6492         frv_function_arg_keep_as_reference.
6493         * config/frv/frv.c (frv_function_arg_keep_as_reference):
6494         Remove.
6495         * config/frv/frv.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Likewise.
6496         * config/stormy16/stormy16.h: Remove the commented-out
6497         definition of FUNCTION_ARG_KEEP_AS_REFERENCE.
6498
6499 2004-02-03  Alan Modra  <amodra@bigpond.net.au>
6500
6501         PR target/13914
6502         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Use ap
6503         for retaddr_column.
6504
6505 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
6506
6507         * genemit.c (gen_exp): Generate gen_rtx_fmt_e* instead of
6508         gen_rtx.
6509
6510 2004-02-02  Eric Christopher  <echristo@redhat.com>
6511             Zack Weinberg  <zack@codesourcery.com>
6512
6513         * c-opts.c (c_common_handle_option): Add -finput-charset.
6514         * c.opt: Ditto.
6515         * cppcharset.c (one_iso88591_to_utf8): Remove.
6516         (convert_iso88591_utf8): Ditto.
6517         (conversion_tab): Remove 8859-1 converter.
6518         (_cpp_input_to_utf8): Remove.
6519         (_cpp_init_iconv_buffer): Ditto.
6520         (_cpp_close_iconv_buffer): Ditto.
6521         (_cpp_convert_input): New function.
6522         (_cpp_default_encoding): Ditto.
6523         * cpphash.h: Add/remove prototypes for above.
6524         * cppfiles.c (read_file_guts): Use _cpp_convert_input.
6525         * cppinit.c (cpp_create_reader): Use _cpp_default_encoding
6526         for narrow execution and input character sets.
6527         * cpplib.c (cpp_push_buffer): Delete uses of removed functions.
6528         * doc/cppopts.texi: Document -finput-charset.
6529
6530 2004-02-02  David Edelsohn  <edelsohn@gnu.org>
6531
6532         * rtlanal.c (refers_to_regno_p): Test regno, not inner_regno,
6533         against FIRST_PSEUDO_REGISTER.
6534
6535 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
6536
6537         * doc/invoke.texi (SPARC options): Further improve.
6538
6539 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
6540
6541         * config/arm/arm.md, config/c4x/c4x.md, config/cris/cris.md,
6542         config/h8300/h8300.c, config/ip2k/ip2k.md,
6543         config/iq2000/iq2000.c, config/mips/mips.c,
6544         config/rs6000/rs6000.c, config/rs6000/rs6000.md,
6545         config/sh/sh.c, config/sh/sh.md, config/stormy16/stormy16.c,
6546         config/v850/v850.md: Fix indentation.
6547
6548 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
6549
6550         * config/sparc/sparc.c (function_arg_slotno): Align TImode
6551         arguments on a 16-byte boundary in the parameter array if ARCH64.
6552         Split handling of TFmode.
6553
6554 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
6555
6556         * rtlanal.c (reg_overlap_mentioned_p) [!ENABLE_CHECKING]:
6557         Don't test CONSTANT_P (x).
6558         (reg_overlap_mentioned_p): Merge check for STRICT_LOWPART,
6559         ZERO_EXTRACT, SIGN_EXTRACT with the switch statement.
6560         Fix misindentation.
6561
6562 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
6563
6564         * doc/invoke.texi (SPARC options): Document that -mflat is deprecated.
6565
6566 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
6567
6568         * config/arc/arc.md, config/arm/arm.c, config/arm/arm.md,
6569         config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.md,
6570         config/frv/frv.c, config/h8300/h8300.c, config/ip2k/ip2k.md,
6571         config/iq2000/iq2000.c, config/m32r/m32r.c,
6572         config/mcore/mcore.c, config/mips/mips.c, config/mmix/mmix.md,
6573         config/mn10300/mn10300.c, config/rs6000/rs6000.c,
6574         config/rs6000/rs6000.md, config/sh/sh.c, config/sh/sh.md,
6575         config/stormy16/stormy16.c, config/v850/v850.md,
6576         config/xtensa/xtensa.c: Replace gen_rtx with gen_rtx_fmt_e*.
6577
6578 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
6579
6580         * config/mcore/mcore.c (block_move_sequence): Replace
6581         gen_rtx_CONST_INT with GEN_INT.
6582
6583 2004-02-02  Jan Hubicka  <jh@suse.cz>
6584
6585         * alias.c (record_set): Use hard_regno_nregs.
6586         * bt-load.c (find_btr_reference, note_btr_set): Likewise.
6587         * builtins.c (apply_args_size): Likewise.
6588         * caller-save.c (setup_save_areas, save_call_clobbered_regs,
6589         mark_set_regs, add_stored_regs, mark_referenced_regs,
6590         insert_restore, insert_save, insert_one_insn): Likewise.
6591         * cfgcleanup.c: Include regs.h
6592         (mark_effect, mentions_nonequal_regs): Likewise.
6593         * cfgrtl.c (mark_killed_regs): Likewise
6594         * combine.c (update_table_tick, record_value_for_reg,
6595         record_dead_and_set_regs, get_last_value_validate, use_crosses_set_p,
6596         reg_dead_at_p_1, reg_dead_at_p, mark_used_regs_combine, move_deaths,
6597         reg_bitfield_target_p, distribute_notes): Likewise.
6598         * cse.c (mention_regs, insert, invalidate, invalidate_for_call,
6599         exp_equiv_p, cse_insn): Likewise.
6600         * cselib.c (cselib_lookup): Likewise.
6601         (cselib_invalidate_regno, cselib_record_set): Likewise.
6602         * df.c (df_ref_record): Likewise.
6603         * dwarf2out.c (reg_loc_descriptor, multiple_reg_loc_descriptor):
6604         Likewise.
6605         * flow.c (mark_reg, insn_dead_p, mark_set_1, mark_used_reg,
6606         count_or_remove_death_notes_bb): Likewise.
6607         * function.c (aggregate_value_p, keep_stack_depressed): Likewise.
6608         * gloval.c (global_alloc, find_reg, mark_reg_store, mark_reg_conflicts,
6609         mark_reg_death, set_preference, reg_becomes_live, reg_dies): Likewise.
6610         * integrate.c (mark_stores): Likewise.
6611         * jump.c (delete_prior_computation): Likewise.
6612         * lcm.c (reg_dies, reg_becomes_live): Likewise.
6613         * local-alloc.c (combine_regs, find_free_reg, post_mark_life): Likewise.
6614         * loop.c (LOOP_REGNO_NREGS): Likewise.
6615         * postreload.c (reload_combine, reload_combine_note_store,
6616         reload_combine_note_use, reload_cse_move2add, move2add_note_store): Likewise.
6617         * ra-colorize.c (combine, color_usable_p, get_free_reg,
6618         calculate_dont_begin, calculate_dont_begin, colorize_one_web,
6619         try_recolor_web, insert_coalesced_conflicts, check_colors,
6620         break_precolored_alias): Likewise.
6621         * ra-debug.c: Include regs.h
6622         (ra_print_rtx_object): Likewise.
6623         * ra-rewrite (choose_spill_colors): Likewise.
6624         (spill_same_color_p, update_spill_colors, spill_is_free): Likewise.
6625         * ra.c (init_ra): Likewise.
6626         * recog.c (reg_fits_class_p, peep2_reg_dead_p,
6627         peep2_find_free_register): Likewise.
6628         * reg-stack.c (subst_stack_regs_pat, convert_regs_exit): Likewise.
6629         * regclass.c (hard_regno_nregs): New array.
6630         (init_reg_modes_once): Initialize it.
6631         (choose_hard_reg_mode): Use it.
6632         (record_reg_classes): Likewise.
6633         * regmove.c (mark_flags_life_zones): Likewise.
6634         * regrename.c (note_sets, clear_dead_regs, regrename_optimize,
6635         scan_rtx_reg, dump_def_use_chain, kill_value, set_value_regno,
6636         copy_value, maybe_mode_change, find_oldest_value_reg,
6637         copyprop_hardreg_forward_1):
6638         * regs.h (hard_regno_nregs): Declare.
6639         * realod.c (reload_inner_reg_of_subreg): Use it.
6640         (push_reload, combine_reloads, find_dummy_reload,
6641         hard_reg_set_here_p, operands_match_p, decompose, find_reloads,
6642         refers_to_regno_for_reload_p, find_equiv_reg, regno_clobbered_p,
6643         reload_adjust_reg_for_mode): Likewise.
6644         * reload1.c (compute_use_by_pseudos, count_pseudo,
6645         count_spilled_pseudo, find_reg, find_reload_regs, mark_home_live,
6646         spill_hard_reg, forget_old_reloads_1, mark_reload_reg_in_use,
6647         clear_reload_reg_in_use, reload_reg_free_for_value_p, free_for_value_p
6648         allocate_reload_reg, choose_reload_regs, emit_reload_insns,
6649         delete_output_reload): Likewise.
6650         * resource.c (update_live_status, mark_referenced_resources,
6651         mark_set_resources, mark_target_live_regs): Likewise.
6652         * rtlanal.c:  Include regs.h
6653         (refers_to_regno_p, reg_overlap_mentioned_p, dead_or_set_p,
6654         dead_or_set_regno_p, find_regno_note, find_reg_fusage,
6655         subreg_regno_offset, subreg_offset_representable_p,
6656         hoist_test_store): Likewise.
6657         * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
6658         * sched-rgn.c (check_live_1, update_live_1): Likewise.
6659         * stmt.c: Include regs.h
6660         (decl_conflicts_with_clobbers_p): Likewise.
6661         * varasm.c (make_decl_rtl): Likewise.
6662         * Makefile.in (cfgcleanup.o, rtlanal.o, ra-debug.o): Add regs.h dependnecy.
6663
6664 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
6665
6666         * config/arm/arm.c, config/arm/arm.h, config/arm/arm.md,
6667         config/arm/linux-gas.h, config/arm/netbsd-elf.h,
6668         config/arm/netbsd.h, config/arm/pe.c, config/avr/avr.c,
6669         config/avr/avr.h, config/avr/avr.md, config/c4x/c4x.h,
6670         config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
6671         config/frv/frv.h, config/ip2k/ip2k.c, config/iq2000/iq2000.c,
6672         config/iq2000/iq2000.h, config/m32r/m32r.c,
6673         config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
6674         config/m68hc11/m68hc11.md, config/m68k/m68k.md,
6675         config/mcore/mcore.c, config/mcore/mcore.h,
6676         config/mcore/mcore.md, config/mips/mips.c,
6677         config/ns32k/ns32k.h, config/ns32k/ns32k.md,
6678         config/rs6000/rs6000.c, config/s390/s390.c,
6679         config/s390/s390.md, config/sparc/sparc.c, config/v850/v850.c,
6680         config/xtensa/xtensa.h, config/xtensa/xtensa.md: Replace
6681         "gen_rtx (FOO, " with "gen_rtx_FOO (".
6682
6683 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
6684
6685         * config/h8300/h8300.md (two peephole2's): New.
6686
6687 2004-02-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
6688
6689         * config/sparc/sol2-bi.h: Handle TARGET_CPU_ultrasparc3.
6690         (CPP_CPU_SPEC): Handle -mcpu=ultrasparc3.
6691         (ASM_CPU_SPEC): Likewise
6692         * config/sparc/sol2.h: Handle TARGET_CPU_ultrasparc3.
6693         (ASM_CPU_SPEC): Remove -mcpu=v8plus.  Handle -mcpu=ultrasparc3.
6694
6695 2004-02-01  Roger Sayle  <roger@eyesopen.com>
6696
6697         * builtins.c (expand_builtin_pow): If flag_unsafe_math_optimizations
6698         isn't set, don't call expand_builtin_mathfn_2 to use the pow optab.
6699         (expand_builtin): Always call expand_builtin_pow.
6700
6701 2004-02-01  Roger Sayle  <roger@eyesopen.com>
6702
6703         * builtins.def (BUILT_IN_SIGNBIT, BUILT_IN_SIGNBITF,
6704         BUILT_IN_SIGNBITL): New GCC builtins.
6705         * builtins.c (expand_builtin_signbit): New function to RTL expand
6706         calls to signbit, signbitf and signbitl as inline intrinsics.
6707         (expand_builtin): Call expand_builtin_signbit for BUILT_IN_SIGNBIT*.
6708         (fold_builtin_signbit): New function to perform constant folding
6709         of signbit, signbitf and signbitl.
6710         (fold_builtin): Call fold_builtin_signbit for BUILT_IN_SIGNBIT*.
6711
6712         * doc/extend.texi: Document new signbit{,f,l} builtins.
6713
6714 2004-02-01  Richard Sandiford  <rsandifo@redhat.com>
6715
6716         * config/mips/mips.md (adddi3_internal_2): Remove superfluous %s.
6717
6718 2004-02-01  Chris Demetriou  <cgd@broadcom.com>
6719
6720         * config/mips/mips.h (PREDICATE_CODES): Remove entries for
6721         "mips_const_double_ok" and "simple_memory_operand", which were
6722         removed from the MIPS port with the mips-3_4-rewrite branch merge.
6723         * config/mips/mips.c (mips16_lay_out_constants): Update comment
6724         for removal of simple_memory_operand.
6725
6726 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6727
6728         * config/c4x/c4x.md: Use GEN_INT instead of
6729         gen_rtx (CONST_INT, ...).
6730
6731 2004-01-31  Richard Henderson  <rth@redhat.com>
6732
6733         * varasm.c (output_constant_pool): Don't zap the pool.
6734
6735 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6736
6737         * genrecog.c (decision_type): Add DT_const_int.
6738         (write_cond) [DT_const_int]: Print a comparison against small
6739         constant.
6740         (write_node): Simplify comparisons against small constants
6741         before printing tests.
6742
6743 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6744
6745         * config/m32r/m32r.c (m32r_load_pic_register): Use GEN_INT
6746         instead of gen_rtx_CONST_INT.
6747
6748 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6749
6750         * config/xtensa/xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT
6751         instead of gen_rtx_CONST_INT.
6752
6753 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6754
6755         * target-def.h (TARGET_STRICT_ARGUMENT_NAMING): Define as
6756         hook_bool_CUMULATIVE_ARGS_false.
6757         * targhooks.c (default_strict_argument_naming): Rename to
6758         hook_bool_CUMULATIVE_ARGS_false.
6759         * targhooks.h: Update the prototype for
6760         default_strict_argument_naming.
6761
6762 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6763
6764         * config/sh/sh.c: Replace "gen_rtx (FOO, " with "gen_rtx_FOO (".
6765         * config/sh/sh.h: Likewise.
6766         * config/sh/sh.md: Likewise.
6767
6768 2004-01-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
6769
6770         * doc/invoke.texi (SPARC options): Restructure and update.
6771
6772 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6773
6774         * system.h (PROMOTE_FUNCTION_ARGS, STRUCT_VALUE_INCOMING, and
6775         STRICT_ARGUMENT_NAMING): Poison.
6776         * target-def.h (TARGET_PROMOTE_FUNCTION_ARGS): Define as
6777         hook_bool_tree_false.
6778         * targhooks.c (default_promote_function_args): Remove.
6779         (default_struct_value_rtx): Don't use STRUCT_VALUE_INCOMING.
6780         Don't check incoming.
6781         (default_strict_argument_naming): Don't use
6782         STRICT_ARGUMENT_NAMING.
6783         * targhooks.h: Remove the prototype for
6784         default_promote_function_args.
6785
6786 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6787
6788         * config/i386/i386-protos.h: Remove the prototype for
6789         ix86_setup_incoming_varargs.
6790         * config/i386/i386.c (TARGET_SETUP_INCOMING_VARARGS): New.
6791         (ix86_setup_incoming_varargs): Make it static.
6792         * config/i386/i386.h (SETUP_INCOMING_VARARGS): Remove.
6793
6794 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6795
6796         * alloc-pool.c: Fix comment typos.
6797         * builtin-types.def: Likewise.
6798         * builtins.def: Likewise.
6799         * c-pretty-print.c: Likewise.
6800         * df.h: Likewise.
6801         * reload1.c: Likewise.
6802
6803 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6804
6805         * doc/invoke.texi: Follow spelling conventions.
6806         * doc/tm.texi: Likewise.
6807
6808 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6809
6810         * doc/install.texi: Fix typos.
6811         * doc/invoke.texi: Likewise.
6812
6813 2004-01-31  Ulrich Weigand  <uweigand@de.ibm.com>
6814
6815         * config/s390/s390.c (s390_decompose_address): Do not treat virtual
6816         registers as pointers.
6817         * config/s390/s390.md ("*la_31" second peephole2): Fix incorrect mode.
6818
6819 2004-01-31  Paolo Bonzini  <bonzini@gnu.org>
6820
6821         * combine.c (cse_main): Set gen_lowpart to gen_lowpart_for_combine
6822         and restore it to gen_lowpart_general on exit.
6823         (gen_lowpart_for_combine): Adjust all callers to go through
6824         gen_lowpart.
6825         * cse.c (cse_main): Set gen_lowpart to gen_lowpart_if_possible
6826         and restore it to gen_lowpart_general on exit.
6827         (gen_lowpart_if_possible): Adjust all callers to go through
6828         gen_lowpart.
6829         * emit-rtl.c (gen_lowpart_general): New name of gen_lowpart.
6830         (gen_lowpart): Declare as pointer to function, initialized to
6831         gen_lowpart_general.
6832         * rtl.h (gen_lowpart): Declare as pointer to function.
6833
6834 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
6835
6836         * bt-load.c: Replace "gen_rtx (FOO, " with "gen_rtx_FOO (".
6837         * calls.c: Likewise.
6838         * emit-rtl.c: Likewise.
6839         * function.c: Likewise.
6840         * reload1.c: Likewise.
6841         * config/i386/cygming.h: Likewise.
6842         * config/i386/i386.c: Likewise.
6843         * config/i386/winnt.c: Likewise.
6844
6845 2004-01-30  Dara Hazeghi  <dhazeghi@yahoo.com>
6846
6847         PR bootstrap/9249
6848         * doc/install.texi: document --enable-__cxa_atexit option.
6849         * configure.ac: Disable __cxa_atexit if not supported.
6850         * configure: Regenerate.
6851
6852 2003-01-30  Daniel Berlin  <dberlin@dberlin.org>
6853
6854         * ggc-zone.c (ggc_free): New function.
6855
6856 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
6857
6858         alloc-pool.c, c-lex.c, c-pragma.h, c-semantics.c, cfghooks.c,
6859         cfghooks.h, cfglayout.c, cfgloopmanip.c, debug.c, debug.h,
6860         flow.c, genextract.c, ggc-common.c, ggc-page.c, ggc.h,
6861         ifcvt.c, jump.c, loop-unswitch.c, timevar.c, timevar.def,
6862         tree-optimize.c, vmsdbgout.c, config/fp-bit.c,
6863         config/alpha/alpha.c, config/alpha/alpha.h,
6864         config/alpha/alpha.md, config/alpha/unicosmk.h,
6865         config/alpha/vms.h, config/arm/linux-elf.h, config/avr/avr.c,
6866         config/c4x/c4x-protos.h, config/c4x/c4x.md,
6867         config/d30v/d30v.h, config/frv/frv.md, config/frv/frvbegin.c,
6868         config/frv/frvend.c, config/i386/cygming.h,
6869         config/i386/djgpp.h, config/i386/emmintrin.h,
6870         config/i386/gthr-win32.c, config/i386/i386-interix.h,
6871         config/i386/i386-protos.h, config/i386/openbsd.h,
6872         config/i386/winnt.c, config/i386/xm-mingw32.h,
6873         config/i386/xmmintrin.h, config/ia64/ia64.md,
6874         config/iq2000/iq2000.md, config/m32r/m32r.md,
6875         config/m68k/m68k.md, config/mcore/mcore-elf.h,
6876         config/mcore/mcore.md, config/mips/elf.h, config/mips/elf64.h,
6877         config/mips/iris5gas.h, config/mips/iris6.h,
6878         config/mips/iris6gas.h, config/mips/linux.h,
6879         config/mips/mips.md, config/mips/netbsd.h,
6880         config/mips/openbsd.h, config/mips/windiss.h,
6881         config/pa/fptr.c, config/rs6000/aix.h,
6882         config/rs6000/altivec.h, config/rs6000/darwin.h,
6883         config/rs6000/xcoff.h, config/s390/s390-protos.h,
6884         config/s390/s390.c, config/s390/s390.h, config/s390/s390.md,
6885         config/sh/netbsd-elf.h, config/sh/sh.h, config/sh/vxworks.h,
6886         config/sparc/sol2.h: Update copyright.
6887
6888 2004-01-30  Kelley Cook  <kcook@gcc.gnu.org>
6889
6890         * Makefile.in (abs_docdir, abs_srcdir): Define.
6891         (doc/%.dvi, doc/gccinstall.dvi): Use $(abs_docdir).
6892
6893 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
6894
6895         * genconfig.c (main): Have CC0_P check its operand even on a
6896         target without cc0.
6897
6898 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
6899
6900         * config/alpha/alpha.c: Remove mentions of deprecates macros
6901         in comments, remove some target-independent comments about target
6902         macros, and/or add minimal function comments for target hook
6903         implementations.
6904         * config/avr/avr.c: Likewise.
6905         * config/ia64/ia64.h: Likewise.
6906         * config/ip2k/ip2k.c: Likewise.
6907         * config/iq2000/iq2000.c: Likewise.
6908         * config/m32r/m32r.h: Likewise.
6909         * config/m68hc11/m68hc11.c: Likewise.
6910         * config/mcore/mcore.c: Likewise.
6911         * config/mmix/mmix.c: Likewise.
6912         * config/mn10300/mn10300.c: Likewise.
6913         * config/pa/pa.c: Likewise.
6914         * config/pdp11/pdp11.c: Likewise.
6915         * config/rs6000/rs6000.h: Likewise.
6916         * config/sh/sh.c: Likewise.
6917         * config/sh/sh.h: Likewise.
6918         * config/sparc/sparc.c: Likewise.
6919         * config/sparc/sparc.h: Likewise.
6920         * config/stormy16/stormy16.c: Likewise.
6921         * config/xtensa/xtensa.c: Likewise.
6922
6923 2004-01-30  Ulrich Weigand  <uweigand@de.ibm.com>
6924
6925         PR optimization/12147
6926         * reload1.c (reload_reg_free_p): RELOAD_OTHER conflicts with
6927         RELOAD_FOR_OPADDR_ADDR.
6928         (reload_reg_reaches_end_p): RELOAD_FOR_OTHER_ADDRESS register
6929         might be reused as RELOAD_FOR_OPADDR_ADDR register.
6930
6931 2004-01-30  Jan Hubicka  <jh@suse.cz>
6932
6933         * reload.c (get_secondary_mem): Fix updating of
6934         secondary_memlocs_elim_used.
6935
6936 2004-01-30  Richard Henderson  <rth@redhat.com>
6937
6938         * varasm.c (struct rtx_const, struct pool_constant): Remove.
6939         (MAX_RTX_HASH_TABLE): Remove.
6940         (const_rtx_hash_table, const_rtx_sym_hash_table): Remove.
6941         (first_pool, last_pool, pool_offset): Remove.
6942         (struct rtx_constant_pool): Split out from ...
6943         (struct varasm_status): ... here.  Reference one via pointer.
6944         (struct constant_descriptor_rtx): Merge struct pool_constant.
6945         (SYMHASH): Remove.
6946         (decode_rtx_const): Remove.
6947         (const_hash_rtx, compare_constant_rtx): Remove.
6948         (record_constant_rtx): Remove.
6949         (const_desc_rtx_hash, const_desc_rtx_eq): New.
6950         (const_desc_rtx_sym_hash, const_desc_rtx_sym_eq): New.
6951         (const_rtx_hash_1, const_rtx_hash): New.
6952         (init_varasm_status): Allocate a rtx_constant_pool, and its hashes.
6953         (simplify_subtraction): Use simplify_rtx.
6954         (force_const_mem): Rewrite to use new data structures.
6955         (find_pool_constant): Likewise.
6956         (get_pool_constant, get_pool_constant_mark,
6957         get_pool_constant_for_function, get_pool_mode,
6958         get_pool_mode_for_function, get_pool_offset, get_pool_size): Likewise.
6959         (output_constant_pool_2): Split out from output_constant_pool.
6960         (output_constant_pool_1): Likewise.  Use new pool datastructures.
6961         (output_constant_pool): Zap entire pool datastructure.
6962         (mark_constant): Use new pool datastructures.
6963         (mark_constants): Use for_each_rtx.
6964         (mark_constant_pool): Use new pool datastructures.
6965
6966 2004-01-30  Fariborz Jahanian <fjahanian@apple.com>
6967
6968         * config/rs6000/rs6000.c (rs6000_emit_move): Remove #if 0.
6969         Copy operands[1] to pseudo for simplify_gen_subreg.
6970
6971 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
6972
6973         * gcse.c (bypass_block): Fix a typo in the previous check-in
6974         to the file.
6975
6976 2004-01-30  Andrew Pinski <pinskia@physics.uc.edu>
6977
6978         * toplev.c: Include alloc-pool.h.
6979         * Makefile.in (toplev.c): Update dependencies.
6980
6981 2004-01-30  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6982
6983         * combine.c (simplify_shift_const, case XOR): Be careful when
6984         commuting XOR with ASHIFTRT.
6985
6986 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
6987             Eric Botcazou  <ebotcazou@libertysurf.fr>
6988
6989         * config/sparc/sparc-protos.h: Remove the prototype for
6990         sparc_builtin_saveregs.
6991         * config/sparc/sparc.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
6992         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
6993         (TARGET_PROMOTE_PROTOTYPES): Likewise.
6994         (TARGET_STRUCT_VALUE_RTX): Likewise.
6995         (TARGET_RETURN_IN_MEMORY): Likewise.
6996         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
6997         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
6998         (sparc_builtin_saveregs): Make it static.
6999         (sparc_promote_prototypes): New.
7000         (sparc_struct_value_rtx): Likewise.
7001         (sparc_return_in_memory): Likewise.
7002         * config/sparc/sparc.h: (PROMOTE_FUNCTION_ARGS): Remove.
7003         (PROMOTE_FUNCTION_RETURN): Likewise.
7004         (RETURN_IN_MEMORY): Likewise.
7005         (STRUCT_VALUE): Likewise.
7006         (STRUCT_VALUE_INCOMING): Likewise.
7007         (EXPAND_BUILTIN_SAVEREGS): Likewise.
7008         (STRICT_ARGUMENT_NAMING): Likewise.
7009         (PROMOTE_PROTOTYPES): Likewise.
7010
7011         * config/sparc/sparc.h (PROMOTE_MODE): Use word_mode.
7012
7013 2004-01-30  Eric Botcazou  <ebotcazou@libertysurf.fr>
7014
7015         PR c/12818
7016         * varasm.c (const_hash_1) <STRING_CST>: Use the
7017         address to compute the hash value if flag_writable_strings.
7018         (compare_constant) <STRING_CST>: Compare the addresses
7019         if flag_writable_strings.
7020         (build_constant_desc): Do not copy the expression for a
7021         STRING_CST if flag_writable_strings.
7022
7023 2004-01-30  Jan Hubicka  <jh@suse.cz>
7024
7025         * alloc-pool.c: Include hashtab.h
7026         (alloc_pool_descriptor): New structure
7027         (alloc_pool_hash): New global variable.
7028         (hash_descriptor, eq_descriptor, alloc_pool_descriptor): New.
7029         (create_alloc_pool): Update statistics.
7030         (free_alloc_pool): Likewise.
7031         (pool_alloc): Likewise.
7032         (output_info): New structure
7033         (print_statistics, dump_alloc_pool_statistics): New function.
7034         * alloc-pool.h (alloc_pool_def): Turn name to be constant.
7035         (dump_alloc_pool_statistics): Declare.
7036         * toplev.c (finalize):  Dump statistics.
7037
7038         * reload.c (secondary_memlocs_elim_used): New static variable.
7039         (get_secondary_mem): Update it.
7040         (find_reloads): Use it.
7041
7042 2004-01-30  Steven Bosscher <s.bosscher@student.tudelft.nl>
7043
7044         * toplev.c: Fix broken checkin of 2003-12-30, again.
7045
7046 2004-01-30  Ulrich Weigand  <uweigand@de.ibm.com>
7047
7048         * configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
7049         s390*-*-* targets by specifying a 'nop' insn.
7050         * configure: Regenerate.
7051
7052 2004-01-30  Eric Botcazou  <ebotcazou@libertysurf.fr>
7053
7054         PR target/11475
7055         * config/sparc/sparc.md (movhi_lo_sum): Tighten predicates.
7056
7057 2004-01-29  Jakub Jelinek  <jakub@redhat.com>
7058
7059         * emit-rtl.c (change_address): Use XEXP (memref, 0) instead
7060         of addr when creating MEM copy.
7061
7062 2004-01-29  Devang Patel  <dpatel@apple.com>
7063
7064         * dwarf2out.c (gen_field_die): Do not equate decl number to die.
7065
7066 2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>
7067
7068         PR inline-asm/6162
7069         * reload.c (find_reloads): Only support one pair of commutative
7070         operands.
7071
7072 2004-01-29  Roger Sayle  <roger@eyesopen.com>
7073
7074         PR java/13824
7075         * tree.c (unsafe_for_reeval): Handle EXIT_BLOCK_EXPR nodes specially
7076         as their EXIT_BLOCK_LABELED_BLOCK operands can lead to unbounded
7077         recursion.
7078
7079 2004-01-29  Kazu Hirata  <kazu@cs.umass.edu>
7080
7081         * config/frv/frv.c: Don't mention deprecated macros in
7082         comments.  Remove some target-independent comments about
7083         target macros.
7084         * config/frv/frv.h: Likewise.
7085
7086 2004-01-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
7087
7088         * cfghooks.c (split_block): Set probability and count of the
7089         new edge.
7090
7091 2005-01-29  Josef Zlomek  <zlomekj@suse.cz>
7092
7093         * dwarf2out.c (struct die_struct): Added field decl_id.
7094         (decl_die_table): Changed to hash table.
7095         (decl_die_table_allocated): Deleted.
7096         (decl_die_table_in_use): Deleted.
7097         (DECL_DIE_TABLE_INCREMENT): Deleted.
7098         (decl_die_table_hash): New function.
7099         (decl_die_table_eq): New function.
7100         (lookup_decl_die): Lookup in a hash table.
7101         (equate_decl_number_to_die): Insert into a hash table.
7102         (dwarf2out_init): Init hash table decl_die_table.
7103
7104 2004-01-29  Jakub Jelinek  <jakub@redhat.com>
7105
7106         PR optimization/13424
7107         * expr.c (store_constructor): Revert 2003-12-03 change.
7108
7109         * emit-rtl.c (change_address): Check also if MEM_ATTRS is set as
7110         expected before returning early.  Avoid sharing RTL if they
7111         need to be changed.
7112
7113         * config/i386/i386.c (ix86_expand_movstr): Rework rep_mov and strmov
7114         handling so that memory attributes are preserved.  Don't call
7115         ix86_set_move_mem_attrs.
7116         (ix86_set_move_mem_attrs_1, ix86_set_move_mem_attrs): Removed.
7117         (ix86_expand_clrstr): Rename src argument to
7118         dst.  Rework rep_stos and strset handling so that memory attributes
7119         are preserved.
7120         (ix86_expand_strlen): Pass src argument to
7121         ix86_expand_strlensi_unroll_1.  Rework strlenqi_1 handling so that
7122         memory attributes are preserved.
7123         (ix86_expand_strlensi_unroll_1): Add src argument.  Use
7124         change_address instead of gen_rtx_MEM.
7125         * config/i386/i386.md (strmov, strmov_singleop, rep_mov): New
7126         expanders.
7127         (strmovdi_rex64, strmovsi, strmovsi_rex64, strmovhi, strmovhi_rex64,
7128         strmovqi, strmovqi_rex64): Remove.
7129         (rep_mov*, strmov*): Prefix insn names with *.
7130         (strset, strset_singleop, rep_stos): New expanders.
7131         (strsetdi_rex64, strsetsi, strsetsi_rex64, strsethi, strsethi_rex64,
7132         strsetqi, strsetqi_rex64): Remove.
7133         (rep_stos*, strset*): Prefix insn names with *.
7134         (rep_stosqi_rex64): Likewise.  Fix mode of dirflag reg from DImode
7135         to SImode.
7136         (cmpstrsi): Rework cmpstrqi_1 handling so that memory attributes
7137         are preserved.
7138         (cmpstrqi_nz_1, cmpstrqi_nz_rex_1, cmpstrqi_1, cmpstrqi_rex_1):
7139         Prefix insn names with *.
7140         (cmpstrqi_nz_1, cmpstrqi_1): New expanders.
7141         (strlenqi_1, strlenqi_rex_1): Prefix insn names with *.
7142         (strlenqi_1): New expander.
7143         * config/i386/i386.h (ix86_set_move_mem_attrs): Remove prototype.
7144
7145 2004-01-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
7146
7147         * Makefile.in (cfghooks.o): Add TIMEVAR_H and toplev.h dependency.
7148         * basic-block.h (tidy_fallthru_edge, tidy_fallthru_edges, dump_bb,
7149         verify_flow_info): Declaration removed.
7150         * cfg.c (verify_flow_info, dump_bb): Moved to cfghooks.c.
7151         (debug_bb, debug_bb_n): Add argument to dump_bb call.
7152         * cfgcleanup.c (try_simplify_condjump, try_crossjump_to_edge,
7153         try_optimize_cfg, delete_unreachable_blocks): Use delete_basic_block
7154         instead of delete_block.
7155         * cfghooks.c: Include timevar.h and toplev.h.
7156         (cfg_hooks): Define here.
7157         (verify_flow_info, dump_bb): Moved from cfg.c.
7158         (redirect_edge_and_branch, redirect_edge_and_branch_force,
7159         split_block, split_block_after_labels, move_block_after,
7160         delete_basic_block, split_edge, create_basic_block,
7161         create_empty_bb, can_merge_blocks_p, merge_blocks,
7162         make_forwarder_block, tidy_fallthru_edge, tidy_fallthru_edges):
7163         New functions.
7164         * cfghooks.h (struct cfg_hooks): Added fields name,
7165         make_forwarder_block, tidy_fallthru_edge and
7166         move_block_after. Changed type of verify_flow_info, dump_bb,
7167         split_block fields. Renamed cfgh_split_edge and delete_block
7168         fields.
7169         (redirect_edge_and_branch, redirect_edge_and_branch_force,
7170         split_block, delete_block, split_edge, create_basic_block,
7171         can_merge_blocks_p, merge_blocks): Macros removed.
7172         (cfg_hooks): Do not export.
7173         (verify_flow_info, dump_bb, redirect_edge_and_branch,
7174         redirect_edge_and_branch_force, split_block, split_block_after_labels,
7175         move_block_after, delete_basic_block, split_edge, create_basic_block,
7176         create_empty_bb, can_merge_blocks_p, merge_blocks,
7177         make_forwarder_block, tidy_fallthru_edge, tidy_fallthru_edges):
7178         Declare.
7179         (cfg_layout_rtl_cfg_hooks): Declare.
7180         * cfgloop.c (update_latch_info, mfb_keep_just, mfb_keep_nonlatch):
7181         New functions.
7182         (canonicalize_loop_headers): Use new semantics of make_forwarder_block.
7183         (redirect_edge_with_latch_update): Removed.
7184         (make_forwarder_block): Moved to cfghooks.c, semantics changed.
7185         * cfgloopmanip.c (remove_bbs): Do not update dominators here.
7186         * cfgrtl.c (cfg_layout_split_block, rtl_split_block, rtl_dump_bb,
7187         rtl_delete_block, rtl_split_block, rtl_merge_blocks,
7188         tidy_fallthru_edge, rtl_split_edge, cfg_layout_delete_block,
7189         cfg_layout_merge_blocks, cfg_layout_split_edge): Partly moved to
7190         cfghooks.c.
7191         (rtl_create_basic_block): Coding style fix.
7192         (rtl_tidy_fallthru_edge, rtl_move_block_after,
7193         rtl_make_forwarder_block): New functions.
7194         (update_cfg_after_block_merging): Removed.
7195         (rtl_cfg_hooks, cfg_layout_rtl_cfg_hooks): Fill in new entries.
7196         * flow.c (verify_wide_reg, verify_local_live_at_start): Add argument
7197         to dump_bb.
7198         * ifcvt.c (merge_if_block, find_cond_trap, find_if_case_1,
7199         find_if_case_2): Don't update dominators.
7200         * timevar.def (TV_CFG_VERIFY): New.
7201         * loop-unswitch.c (unswitch_loop): Don't call add_to_dominance_info.
7202         * cfglayout.c (copy_bbs): Don't call add_to_dominance_info.
7203         * cfgloopmanip.c (split_loop_bb): Don't update dominators.
7204         (remove_bbs): Don't call remove_bbs.
7205         (create_preheader): Use make_forwarder_block.
7206         (mfb_keep_just, mfb_update_loops): New static functions.
7207
7208 2004-01-29  Kazu Hirata  <kazu@cs.umass.edu>
7209
7210         * config/avr/avr.h: Remove target-independent comments about
7211         target macros.
7212
7213 2004-01-28  Daniel Berlin  <dberlin@dberlin.org>
7214
7215         * timevar.c (timevar_print): Mention when checking is enabled.
7216
7217 2004-01-28  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
7218
7219         * c-lex.c (c_lex): Rename to...
7220         (c_lex_with_flags): Add new parameter to get CPP flags.
7221         (c_lex): Thunk to c_lex_with_flags while keeping the old interface.
7222         * c-pragma.h (c_lex_with_flags): Declare.
7223
7224 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7225
7226         * config/mcore/mcore.c (mcore_external_libcall): Add a
7227         comment.
7228         (mcore_return_in_memory): Likewise.
7229
7230 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7231
7232         * config/mcore/mcore-protos.h: Remove the prototype for
7233         mcore_setup_incoming_varargs.
7234         * config/mcore/mcore.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
7235         (TARGET_PROMOTE_FUNCTION_ARGS): Likewise.
7236         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7237         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7238         (TARGET_STRUCT_VALUE_RTX): Likewise.
7239         (TARGET_RETURN_IN_MEMORY): Likewise.
7240         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7241         (mcore_setup_incoming_varargs): Make it static.  Receive the
7242         first argument by reference.  Add argument second_time.
7243         (mcore_external_libcall): New.
7244         (mcore_return_in_memory): Likewise.
7245         * config/mcore/mcore.h (PROMOTE_FUNCTION_ARGS): New.
7246         (PROMOTE_FUNCTION_RETURN): Likewise.
7247         (STRUCT_VALUE): Likewise.
7248         (RETURN_IN_MEMORY): Likewise.
7249         (SETUP_INCOMING_VARARGS): Likewise.
7250         (PROMOTE_PROTOTYPES): Likewise.
7251         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
7252
7253 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7254
7255         * config/m32r/m32r-protos.h: Remove the prototype for
7256         m32r_setup_incoming_varargs.
7257         * config/m32r/m32r.c (TARGET_PROMOTE_PROTOTYPES): New.
7258         (TARGET_STRUCT_VALUE_RTX): Likewise.
7259         (TARGET_RETURN_IN_MEMORY): Likewise.
7260         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7261         (m32r_return_in_memory): New.
7262         (m32r_setup_incoming_varargs): Make it static.
7263         * config/m32r/m32r.h: Remove #undef of
7264         ASM_OUTPUT_EXTERNAL_LIBCALL.  Remove the commented-out
7265         definitions of PROMOTE_FUNCTION_ARGS and
7266         PROMOTE_FUNCTION_RETURN.
7267         (PROMOTE_PROTOTYPES): Remove.
7268         (RETURN_IN_MEMORY): Likewise.
7269         (STRUCT_VALUE): Likewise.
7270
7271 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7272
7273         * config/m68k/m68k.c (TARGET_PROMOTE_PROTOTYPES): New.
7274         (TARGET_STRUCT_VALUE_RTX): Likewise.
7275         (m68k_struct_value_rtx): Likewise.
7276         * config/m68k/m68k.h (STRUCT_VALUE_REGNUM): Rename to
7277         STRUCT_VALUE_REGNUM.
7278         (PROMOTE_PROTOTYPES): Remove.
7279         * config/m68k/m68kelf.h (STRUCT_VALUE_REGNUM): Rename to
7280         STRUCT_VALUE_REGNUM.
7281         * config/m68k/m68kv4.h (STRUCT_VALUE_REGNUM): Likewise.
7282         * config/m68k/netbsd-elf.h (STRUCT_VALUE_REGNUM): Likewise.
7283
7284 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7285
7286         * config/stormy16/stormy16.c
7287         (TARGET_BUILD_BUILTIN_VA_LIST_TYPE): Rename to
7288         TARGET_BUILD_BUILTIN_VA_LIST.
7289
7290 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7291
7292         * config/v850/v850.c (TARGET_PROMOTE_PROTOTYPES): New.
7293         (TARGET_STRUCT_VALUE_RTX): Likewise.
7294         (TARGET_RETURN_IN_MEMORY): Likewise.
7295         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7296         (v850_return_in_memory): Likewise.
7297         (v850_setup_incoming_varargs): Likewise.
7298         * config/v850/v850.h (PROMOTE_PROTOTYPES): Remove.
7299         (SETUP_INCOMING_VARARGS): Likewise.
7300         (RETURN_IN_MEMORY): Likewise.
7301         (STRUCT_VALUE): Likewise.
7302
7303 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7304
7305         * config/fr30/fr30.c (TARGET_PROMOTE_PROTOTYPES): New.
7306         (fr30_setup_incoming_varargs): Don't use
7307         STRICT_ARGUMENT_NAMING.
7308         * config/fr30/fr30.h (PROMOTE_PROTOTYPES): Remove.
7309         (STRICT_ARGUMENT_NAMING): Likewise.
7310
7311 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7312
7313         * config/frv/frv-protos.h: Remove the prototype for
7314         frv_expand_builtin_saveregs.
7315         * config/frv/frv.c (TARGET_STRUCT_VALUE_RTX): Likewise.
7316         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
7317         (frv_stack_info): Use FRV_STRUCT_VALUE_REGNUM instead of
7318         STRUCT_VALUE_REGNUM.
7319         (frv_expand_builtin_saveregs): Make it static.
7320         (frv_struct_value_rtx): New.
7321         * config/frv/frv.h (EXPAND_BUILTIN_SAVEREGS): Remove.
7322
7323 2004-01-29  Jan Hubicka  <jh@suse.cz>
7324
7325         PR c++/12850
7326         * cgraph.c (cgraph_remove_node): Clear out saved/insns/arguments and
7327         initial pointers.
7328         * cgraphunit.c (cgraph_finalize_function): Clear out DECL_SAVED_INSNS
7329         for functions that will be only inlined.
7330         (cgraph_mark_function_to_output): Likewise.
7331         (cgraph_expand_function): Sanity check that DECL_DEFER_OUTPUT is clear;
7332         do not clear function body.
7333         * tree-optimize.c (clear_decl_rtl): Use decl_function_context.
7334         (tree_rest_of_compilation): Reorganize the logic releasing function
7335         body to use callgraph datastructure.
7336
7337 2004-01-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
7338
7339         * pa.md: Change predicate of a peephole2 pattern from reg_or_0_operand
7340         to register_operand.
7341
7342 2004-01-28  Zack Weinberg  <zack@codesourcery.com>
7343
7344         * config/ia64/ia64.md (fetchadd_acq_si, fetchadd_acq_di)
7345         (cmpxchg_acq_si, cmpxchg_acq_di): Exchange match_dup and
7346         match_operand expressions so that all match_dups appear
7347         lexically after their corresponding match_operands.
7348
7349 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7350
7351         * config/h8300/h8300.c (WORD_REG_USED): Use
7352         HARD_FRAME_POINTER_REGNUM instead of FRAME_POINTER_REGNUM.
7353         (compute_saved_regs): Likewise.
7354         (h8300_expand_prologue): Likewise.  Allocate locals after
7355         saving registers.
7356         (h8300_expand_epilogue): Use HARD_FRAME_POINTER_REGNUM instead
7357         of FRAME_POINTER_REGNUM.  Deallocate locals before saving
7358         registers.
7359         (h8300_initial_elimination_offset): Adjust for the new frame
7360         layout, which swaps flips the order of locals and saved
7361         registers.
7362         * config/h8300/h8300.h (FIRST_PSEUDO_REGISTER): Change to 12.
7363         (HARD_FRAME_POINTER_REGNUM): New.
7364         (ELIMINABLE_REGS): Add an elimination rule from
7365         FRAME_POINTER_REGNUM to HARD_FRAME_POINTER_REGNUM.
7366         (REGISTER_NAMES): Add fp.
7367         * config/h8300/h8300.md (FP_REG): Change to 11.
7368         (HFP_REG): New.
7369
7370 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7371
7372         * genrecog.c (write_node): Remove a useless local variable.
7373
7374 2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>
7375
7376         * Makefile.in (options.c options.h): Use stamp file s-options to
7377         avoid unnecessary rebuilds.
7378         (options.o): New target listing dependencies.
7379         (gtyp-gen.h): Use stamp file s-gtyp-gen.
7380         (STAGESTUFF): Add s-gtyp-gen.
7381
7382 2004-01-28  Richard Henderson  <rth@redhat.com>
7383
7384         * ggc.h (ggc_free): Declare.
7385         * ggc-common.c (ggc_realloc): Use it.
7386         * ggc-page.c: Remove lots of inline markers.
7387         (globals): Add free_object_list.
7388         (ggc_alloc): Tidy.
7389         (ggc_free, validate_free_objects): New.
7390         (poison_pages): Provide default.
7391         (ggc_collect): Call validate_free_objects; emit markers to
7392         the debug file.
7393
7394 2004-01-28  Zack Weinberg  <zack@codesourcery.com>
7395             Jim Wilson  <wilson@specifixinc.com>
7396
7397         * config/ia64/ia64.c (ia64_split_tmode, ia64_split_tmode_move):
7398         Rewrite to use POST_INC/POST_DEC/POST_MODIFY instead of a
7399         scratch pointer.
7400         (ia64_secondary_reload_class): Delete case GR_REGS.
7401         * config/ia64/ia64.md (movti, *movti_internal, movtf, *movtf_internal):
7402         Do not allocate a scratch register.
7403         (reload_inti, reload_outti, reload_intf, reload_outtf): Delete.
7404
7405 2004-01-28  Jan Hubicka  <jh@suse.cz>
7406
7407         * gcse.c (bypass_block): Prevent edges to be unified when we are
7408         about to emit compenstation code.
7409
7410 2004-01-28  Nick Clifton  <nickc@redhat.com>
7411
7412         * config/arm/arm.c (arm_expand_builtin): Force second argument of
7413         the setcwx insn into a register.
7414
7415 2004-01-28  Richard Sandiford  <rsandifo@redhat.com>
7416
7417         * config/fp-bit.c (pack_d): When using paired doubles to implement
7418         a long double, round the high part separately.
7419         (unpack_d): Fix the case in which the high part is a power of two
7420         and the low part is a nonzero value of the opposite sign.
7421
7422 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7423
7424         * config/c4x/c4x.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
7425         (TARGET_STRUCT_VALUE_RTX): Likewise.
7426         (c4x_external_libcall): Likewise.
7427         (c4x_struct_value_rtx): Likewise.
7428         * config/c4x/c4x.h: Remove.
7429         (STRUCT_VALUE_REGNUM): Likewise.
7430         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
7431
7432 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
7433
7434         * config/i386/i386.c (TARGET_PROMOTE_PROTOTYPES): New.
7435         (TARGET_STRUCT_VALUE_RTX): Likewise.
7436         * config/i386/i386.h (STRUCT_VALUE_INCOMING): Remove.
7437         (STRUCT_VALUE): Likewise.
7438         (PROMOTE_PROTOTYPES): Likewise.
7439
7440 2004-01-27  Roger Sayle  <roger@eyesopen.com>
7441
7442         * config/pa/pa.c (emit_move_sequence): Check that operand1 is a
7443         CONST_INT before using INTVAL.
7444
7445 2004-01-27  Ulrich Weigand  <uweigand@de.ibm.com>
7446
7447         * config/s390/s390.h (TARGET_DEFAULT): Default to !TARGET_BACKCHAIN.
7448         * config/s390/s390.c (s390_return_addr_rtx): Fail for all but current
7449         frame if !TARGET_BACKCHAIN.
7450         * config/s390/s390.md ("allocate_stack"): Use pattern only if
7451         TARGET_BACKCHAIN.
7452         * doc/invoke.texi (-mbackchain/-mno-backchain): Document new default.
7453
7454 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
7455
7456         * ia64.c (ia64_function_arg): When placing HFAs in integer
7457         registers, do not special case the mode used for complex
7458         types.  Do not advance int_regs until the current register
7459         is full.
7460
7461 2004-01-27  Richard Sandiford  <rsandifo@redhat.com>
7462
7463         PR target/7297
7464         * except.c (init_eh): Use a 5-word __jbuf for __builtin_setjmp().
7465
7466 2004-01-27  David Edelsohn  <edelsohn@gnu.org>
7467
7468         * config/rs6000/rs6000.c (rs6000_emit_move): #if 0 splitting
7469         slow, unaligned loads and stores while debugging.  Fix formatting.
7470
7471 2004-01-27  David Edelsohn  <edelsohn@gnu.org>
7472
7473         * config/rs6000/rs6000.md (save_stack_nonlocal): Use Pmode instead
7474         of computing wmode.
7475         (restore_stack_nonlocal): Same.
7476
7477 2004-01-27  Devang Patel <dpatel@apple.com>
7478
7479         * Makefile.in (dwarf2out.o): Depend on input.h
7480         * dbxout.c (dbx_debug_hooks): Add new empty hook for
7481         imported_module_or_decl.
7482         (xcoff_debug_hooks): Same.
7483         * sdbout.c (sdb_debug_hooks): Same.
7484         * vmsdbgout.c (vmsdbg_debug_hooks): Same.
7485         * debug.c (do_nothing_debug_hooks): Same.
7486         (debug_nothing_tree_tree): New function.
7487         * debug.h (gcc_debug_hooks): New hook, imported_module_or_decl.
7488         * dwarf2out.c: Include input.h.
7489         (dwarf2_debug_hooks): Add new hook for imported_module_or_decl.
7490         (remove_child_TAG): New function.
7491         (dwarf_tag_name): Handle DW_TAG_imported_module.
7492         (gen_subprogram_die): Equate decl number to declaration die. Do not
7493         remove all children dies while reusing declaration die for definition.
7494         Instead, selectively remove only formal parameters.
7495         (gen_variable_die): Equate variable decl to declaration die.
7496         (gen_field_die): Equate field decl to line number.
7497         (force_namespace_die): Replace it with ...
7498         (force_decl_die): ... this.
7499         (force_type_die): New function.
7500         (setup_namespace_context): Replace use of force_namespace_die() with
7501         force_decl_die().
7502         (gen_namespace_die): Same.
7503         (dwarf2out_imported_module_or_decl): New function.
7504
7505 2004-01-27  Bob Wilson  <bob.wilson@acm.org>
7506
7507         * config/xtensa/xtensa.c (xtensa_copy_incoming_a7): Remove SUBREG
7508         on CQImode and CHImode incoming arguments in register a7.
7509         (function_arg): Wrap BLKmode argument in register a7 in a PARALLEL.
7510         * config/xtensa/xtensa.h (BLOCK_REG_PADDING): Define.
7511         * config/xtensa/xtensa.md (movdi, movdf): Only call force_reg or
7512         xtensa_copy_incoming_a7 before reload.
7513
7514 2004-01-27  J"orn Rennecke <joern.rennecke@superh.com>
7515
7516         * coverage.c (get_coverage_counts): Give a different message
7517         if flag_guess_branch_prob is set.
7518         * predict.c (counts_to_freqs): Return an int.
7519         (estimate_bb_frequencies): If counts_to_freqs returns zero,
7520         calculate estimates.
7521
7522 2004-01-27  Kazu Hirata  <kazu@cs.umass.edu>
7523
7524         * config/iq2000/iq2000-protos.h: Remove the prototype for
7525         iq2000_setup_incoming_varargs.
7526         * config/iq2000/iq2000.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7527         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7528         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7529         (TARGET_STRUCT_VALUE_RTX): Likewise.
7530         (TARGET_RETURN_IN_MEMORY): Likewise.
7531         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7532         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
7533         (iq2000_return_in_memory): Likewise.
7534         (iq2000_setup_incoming_varargs): Make it static.  Receive the
7535         first argument by reference.
7536         * config/iq2000/iq2000.h (PROMOTE_FUNCTION_ARGS): Remove.
7537         (PROMOTE_FUNCTION_RETURN): Likewise.
7538         (PROMOTE_PROTOTYPES): Likewise.
7539         (RETURN_IN_MEMORY): Likewise.
7540         (STRUCT_VALUE): Likewise.
7541         (SETUP_INCOMING_VARARGS): Likewise.
7542         (STRICT_ARGUMENT_NAMING): Likewise.
7543
7544 2004-01-24  James A. Morrison  <ja2morri@uwaterloo.ca>
7545
7546         * fixinc/fixinc.c (test_test): Initialize res.
7547         (start_flexer): Initialize pz_cmd_save.
7548
7549 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
7550
7551         * doc/rtl.texi (Arithmetic): Rewrite entries for PLUS,
7552         SS_PLUS, US_PLUS, LO_SUM, MINUS, SS_MINUS, US_MINUS.
7553
7554 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
7555
7556         PR 7198
7557         * config/ia64/ia64.md (*nmaddsf4, *nmadddf4, *nmadddf4_alts)
7558         (*nmadddf4_trunc, *nmaddxf4, *nmaddxf4_truncsf, *nmaddxf4_truncdf)
7559         (*nmaddxf4_alts, *nmaddxf4_truncdf_alts):
7560         Rewrite pattern as (minus (op 3) (mult (op 1) (op 2))).
7561         Possibly rename pattern for consistency.
7562         Remove ??? comments suggesting that this be done.
7563         (*nmaddsf4_alts, *nmadddf4_truncsf_alts, *nmaddxf4_truncsf_alts):
7564         New patterns.
7565         (divsi3_internal, divdi3_internal_lat, divdi3_internal_thr)
7566         (divsf3_internal_lat, divsf3_internal_thr, sqrtsf2_internal_thr)
7567         (divdf3_internal_lat, divdf3_internal_thr, sqrtdf2_internal_thr)
7568         (divxf3_internal_lat, divxf3_internal_thr, sqrtxf2_internal_thr):
7569         Update to match.
7570
7571 2004-01-27  Ian Lance Taylor  <ian@wasabisystems.com>
7572
7573         * config/arm/arm.c (output_return_instruction): Only restore IP
7574         into SP if frame_pointer_needed.
7575
7576 2004-01-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
7577
7578         * config/sparc/sparc.c (function_arg_pass_by_reference): Return 1
7579         for SCmode and DCmode if ARCH32.
7580         (sparc_va_arg): Handle SCmode and DCmode by reference if ARCH32.
7581         * config/sparc/sparc.h (RETURN_IN_MEMORY): Return 0 for TCmode
7582         if ARCH32.
7583         (BASE_RETURN_VALUE_REG): Return 32 for all FP modes except TFmode
7584         if ARCH32.
7585         (BASE_OUTGOING_VALUE_REG): Likewise.
7586
7587 2004-01-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
7588
7589         PR target/10904
7590         PR target/13058
7591         * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): New.
7592         Forbid mode changes from SImode for lower FP regs if ARCH64.
7593
7594 2004-01-27  J"orn Rennecke <joern.rennecke@superh.com>
7595
7596         * Makefile.in (bt-load.o): Depend on except.h.
7597         * bt-load.c (except.h): #include.
7598         (compute_defs_uses_and_gen): If insn at end of BB can throw
7599         within this function, consider registers used by it unavailable for
7600         btr migration.
7601         (move_btr_def): If insn at end of BB can throw, insert before rather
7602         than after.
7603
7604         * flags.h (flag_btr_bb_exclusive): Declare.
7605         * toplev.c (flag_btr_bb_exclusive): New variable.
7606         (f_options): Add btr-bb-exclusive.
7607         * bt-load.c (augment_live_range): Restore old behaviour if
7608         flag_btr_bb_exclusive is set.
7609         * common.opt: Add entry for -fbtr-bb-exclusive.
7610         * opts.c (common_handle_options): Same.
7611         * doc/invoke.texi: Document -fbtr-bb-exclusive.
7612
7613         * bt-load.c (btrs_live_at_end): New variable.
7614         (compute_defs_uses_and_gen): Compute its pointed-to array.
7615         (clear_btr_from_live_range, add_btr_to_live_range): Update it.
7616         (augment_live_range): When augmenting with a new dominator,
7617         use only its btrs_live_at_end set, but also add in the full set
7618         of the old dominator.
7619         (btr_def_live_range): Use btrs_live_at_end.
7620         (move_btr_def): Set other_btr_uses_before_def, and move new set
7621         to the end of the basic block, if appropriate.
7622         (migrate_btr_defs): Allocate and free btrs_live_at_end.
7623
7624         * bt-load.c (basic_block_freq): Remove outdated comment.
7625
7626 2004-01-27  Alan Modra  <amodra@bigpond.net.au>
7627
7628         * config/rs6000/rs6000.h: Correct target_flags free bits comment.
7629         (PREDICATE_CODES): Remove duplicate.
7630         * config/rs6000/linux64.h (CPP_SYSV_SPEC): Don't define.
7631         (SUBSUBTARGET_OVERRIDE_OPTIONS): Disallow 32 bit TARGET_PROFILE_KERNEL.
7632         (MASK_PROFILE_KERNEL): Adjust define.
7633
7634 2004-01-27  Jakub Jelinek  <jakub@redhat.com>
7635
7636         * config/i386/i386.c (ix86_constant_alignment): Decrease alignment
7637         of long string literals from 32 bytes to sizeof (void *) when !-Os
7638         and to 1 with -Os.
7639
7640 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7641
7642         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Accept
7643         constant addresses in the normal mode.
7644
7645 2004-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
7646
7647         * system.h (CHAR_BITFIELD): Delete.
7648         (BOOL_BITFIELD): New.
7649         * c-decl.c (c_scope): Use BOOL_BITFIELD.
7650         * gengtype-lex.l: Recognize BOOL_BITFIELD instead of CHAR_BITFIELD.
7651
7652 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7653
7654         * config/arc/arc.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7655         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7656         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7657         (TARGET_STRUCT_VALUE_RTX): Likewise.
7658         (TARGET_RETURN_IN_MEMORY): Likewise.
7659         (arc_return_in_memory): Likewise.
7660         * config/arc/arc.h (PROMOTE_FUNCTION_ARGS): Remove.
7661         (PROMOTE_FUNCTION_RETURN): Likewise.
7662         (RETURN_IN_MEMORY): Likewise.
7663         (STRUCT_VALUE): Likewise.
7664
7665 2004-01-26  Richard Henderson  <rth@redhat.com>
7666
7667         * c-parse.in (extension): Use itype.
7668         (SAVE_EXT_FLAGS): Don't allocate a tree.
7669         (RESTORE_EXT_FLAGS): Don't read a tree.
7670
7671 2004-01-26  Jan Hubicka  <jh@suse.cz>
7672
7673         * cselib.c (discard_useless_values):  Clear out value pointer pointing
7674         to datastructure to be recycled.
7675
7676 2004-01-25  Jan Hubicka  <jh@suse.cz>
7677
7678         * genextract.c (main): Do not output the memset when not checking.
7679
7680 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7681
7682         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Use a
7683         switch statement instead of a chain of if statements.
7684
7685 2004-01-26  Jeff Law  <law@redhat.com>
7686
7687         * doc/contrib.texi: Minor cleanup for Paolo Carlini's entry.  Add
7688         acute accents for Petur Runolfsson's entry.
7689
7690 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7691
7692         * config/pdp11/pdp11.c (TARGET_STRUCT_VALUE_RTX): New.
7693         (TARGET_RETURN_IN_MEMORY): Likewise.
7694         * config/pdp11/pdp11.h (STRUCT_VALUE): Remove.
7695         (RETURN_IN_MEMORY): Likewise.
7696
7697 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
7698
7699          * config/rs6000/rs6000.c (rs6000_emit_move): split slow
7700          unaligned load/store into smaller loads and stores.
7701
7702 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
7703
7704         * function.c (assign_parms): Do not assign
7705         long long argument to memory in prologue if
7706         is it loaded into register.
7707
7708 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
7709
7710          PR middle-end/13779
7711          * expr.c (emit_group_load): split constant
7712          correctly into register components of PARALLEL insn.
7713
7714 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
7715
7716         * gcc/config/rs6000/rs6000.md (save_stack_nonlocal):
7717         Use adjust_address_nv directly with appropriate mode.
7718         (restore_stack_nonlocal): Ditto.
7719
7720 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7721
7722         * config/xtensa/xtensa-protos.h: Remove the prototype for
7723         xtensa_builtin_saveregs.
7724         * config/xtensa/xtensa.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7725         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7726         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7727         (TARGET_STRUCT_VALUE_RTX): Likewise.
7728         (TARGET_RETURN_IN_MEMORY): Likewise.
7729         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
7730         (xtensa_builtin_saveregs): Make it static.
7731         (xtensa_return_in_memory): New.
7732         * config/xtensa/xtensa.h (PROMOTE_FUNCTION_ARGS: Remove.
7733         (PROMOTE_FUNCTION_RETURN): Likewise.
7734         (PROMOTE_PROTOTYPES): Likewise.
7735         (STRUCT_VALUE): Likewise.
7736         (RETURN_IN_MEMORY): Likewise.
7737         (EXPAND_BUILTIN_SAVEREGS): Likewise.
7738
7739 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7740
7741         * config/arm/arm.c (TARGET_SETUP_INCOMING_VARARGS): New.
7742         (arm_setup_incoming_varargs): Likewise.
7743         * config/arm/arm.h (SETUP_INCOMING_VARARGS): Remove.
7744
7745 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7746
7747         * config/cris/cris.c (TARGET_SETUP_INCOMING_VARARGS): New.
7748         (cris_setup_incoming_varargs): Likewise.
7749         * config/cris/cris.h (SETUP_INCOMING_VARARGS): Remove.
7750
7751 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7752
7753         * config/ns32k/ns32k.c (TARGET_STRUCT_VALUE_RTX): New.
7754         (ns32k_struct_value_rtx): Likewise.
7755         * config/ns32k/ns32k.h (STRUCT_VALUE_REGNUM): Rename to
7756         NS32K_STRUCT_VALUE_REGNUM.
7757
7758 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7759
7760         * config/arm/arm.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7761         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7762         (TARGET_STRUCT_VALUE_RTX): Likewise.
7763         (arm_struct_value_rtx): Likewise.
7764         * config/arm/arm.h (PROMOTE_FUNCTION_ARGS): Remove.
7765         (STRUCT_VALUE): Likewise.
7766         (STRUCT_VALUE_REGNUM): Likewise.
7767         (PROMOTE_PROTOTYPES): Likewise.
7768
7769 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
7770
7771         * config/ia64/ia64-protos.h: Remove the prototype for
7772         ia64_setup_incoming_varargs and ia64_return_in_memory.
7773         * config/ia64/ia64.c (TARGET_STRUCT_VALUE_RTX): New.
7774         (TARGET_RETURN_IN_MEMORY): Likewise.
7775         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7776         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
7777         (ia64_setup_incoming_varargs): Adjust the arguments to meet
7778         the requirement of TARGET_SETUP_INCOMING_VARARGS.
7779         (ia64_return_in_memory): Make it static.  Change the return
7780         type to bool from int.  Add an argument.
7781         (ia64_struct_value_rtx): New.
7782         * config/ia64/ia64.h: Remove commented-out definitions of
7783         PROMOTE_FUNCTION_ARGS, PROMOTE_FUNCTION_RETURN, and
7784         PROMOTE_PROTOTYPES.
7785         (RETURN_IN_MEMORY): Remove.
7786         (STRUCT_VALUE_REGNUM): Likewise.
7787         (STRICT_ARGUMENT_NAMING): Likewise.
7788
7789 2004-01-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
7790
7791         PR target/13666
7792         * config/sparc/sparc.c (function_arg_union_value): New function.
7793         (function_arg): Use it to deal with unions.
7794         (function_value): Likewise.  Define 'regbase' only for ARCH64.
7795         Replace a conditional statement by a simpler one.
7796
7797 2004-01-26  Richard Sandiford  <rsandifo@redhat.com>
7798
7799         * config/mips/mips.c (mips16_optimize_gp): Delete.
7800         (mips_reorg): Don't call it.
7801
7802 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7803
7804         * config/c4x/c4x.md (addqi3_noclobber): Move up pecking order.
7805         (floatunsqihf2): Remove operand 6.
7806         (fixhfqi_set, fix_trunchfqi2, fixuns_trunchfqi2): Group with other
7807         fix patterns.
7808         (ldi_conditional, ldf_conditional): Validate operands.
7809
7810 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7811
7812         * config/c4x/c4x.h (BCT_CHECK_LOOP_ITERATIONS): Remove.
7813         (HAVE_GAS_HIDDEN): Undefine as interim measure.
7814
7815 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7816
7817         * config/c4x/c4x.c (c4x_legitimate_address_p):  Invalidate direct
7818         memory references if TARGET_EXPOSE_LDP nonzero.
7819
7820 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7821
7822         * config/c4x/c4x.c (legitimize_operands): Truncate invalid shift counts.
7823
7824 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7825
7826         * config/c4x/c4x.c (c4x_valid_operands): More aggressively reject
7827         invalid operand combinations.
7828
7829 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7830
7831         * config/c4x/c4x.c (c4x_check_legit_addr): Rename to
7832         c4x_legitimate_address_p.  Fix post_modify check.
7833
7834         * config/c4x/c4x-protos.h (c4x_check_legit_addr): Adjust.
7835         * config/c4x/c4x.h (c4x_check_legit_addr): Adjust.
7836
7837 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7838
7839         * config/pa/pa-protos.h: Remove the prototype for
7840         hppa_builtin_saveregs.  Add a prototype for
7841         pa_return_in_memory.
7842         * config/pa/pa.c (TARGET_PROMOTE_FUNCTION_RETURN): New.
7843         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7844         (TARGET_STRUCT_VALUE_RTX): Likewise.
7845         (TARGET_RETURN_IN_MEMORY): Likewise.
7846         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
7847         (pa_struct_value_rtx): Likewise.
7848         (pa_return_in_memory): Likewise.
7849         * config/pa/pa.h (STRUCT_VALUE_REGNUM): Rename to
7850         PA_STRUCT_VALUE_REGNUM.
7851         (INIT_CUMULATIVE_ARGS): Use pa_return_in_memory.
7852         (EXPAND_BUILTIN_SAVEREGS): Remove.
7853         (PROMOTE_PROTOTYPES): Likewise.
7854         (PROMOTE_FUNCTION_RETURN): Likewise.
7855
7856 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7857
7858         * config/vax/vax.c (TARGET_PROMOTE_PROTOTYPES): New.
7859         (TARGET_STRUCT_VALUE_RTX): Likewise.
7860         (vax_struct_value_rtx): Likewise.
7861         * config/vax/vax.h (STRUCT_VALUE_REGNUM): Rename to
7862         VAX_STRUCT_VALUE_REGNUM.
7863         (PROMOTE_PROTOTYPES): Remove.
7864
7865 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
7866
7867         * config/c4x/c4x.h (LEGITIMIZE_RELOAD_ADDRESS):  Handle symref.
7868
7869 2003-04-25  Chris Demetriou  <cgd@broadcom.com>
7870
7871         * config/mips/mips.h (ISA_HAS_HILO_INTERLOCKS): MIPS32, MIPS32r2,
7872         and MIPS64 have HI/LO interlocks.  Update comment.
7873
7874 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7875
7876         * config/stormy16/stormy16-protos.h: Remove the prototype for
7877         xstormy16_setup_incoming_varargs.
7878         * config/stormy16/stormy16.c
7879         (xstormy16_setup_incoming_varargs): Remove.
7880         (xstormy16_return_in_memory): New.
7881         (TARGET_PROMOTE_FUNCTION_ARGS): Likewise.
7882         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7883         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7884         (TARGET_STRUCT_VALUE_RTX): Likewise.
7885         (TARGET_RETURN_IN_MEMORY): Likewise.
7886         * config/stormy16/stormy16.h (PROMOTE_FUNCTION_ARGS): Remove.
7887         (PROMOTE_FUNCTION_RETURN): Likewise
7888         (PROMOTE_PROTOTYPES): Likewise
7889         (RETURN_IN_MEMORY): Likewise
7890         (STRUCT_VALUE): Likewise
7891         (SETUP_INCOMING_VARARGS): Likewise
7892
7893 2004-01-25  Richard Sandiford  <rsandifo@redhat.com>
7894
7895         * config/mips/mips.c (mips_offset_within_object_p): New function.
7896         (mips_symbolic_constant_p): Use it in the SYMBOL_SMALL_DATA and
7897         SYMBOL_CONSTANT_POOL cases.  Also use it for SYMBOL_GENERAL if the
7898         ABI has 64-bit pointers and the object file only allows 32-bit symbols.
7899
7900 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7901
7902         * config/sh/sh.h (PROMOTE_FUNCTION_ARGS): Remove.
7903         (PROMOTE_FUNCTION_RETURN): Likewise.
7904
7905 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7906
7907         * config/mn10300/mn10300-protos.h: Remove the prototype for
7908         mn10300_builtin_saveregs.
7909         * config/mn10300/mn10300.c (TARGET_PROMOTE_PROTOTYPES): New.
7910         (TARGET_STRUCT_VALUE_RTX): Likewise.
7911         (TARGET_RETURN_IN_MEMORY): Likewise.
7912         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
7913         (mn10300_return_in_memory): Likewise.
7914         (mn10300_builtin_saveregs): Make it static.
7915         * config/mn10300/mn10300.h (PROMOTE_PROTOTYPES): Remove.
7916         (RETURN_IN_MEMORY): Likewise.
7917         (STRUCT_VALUE): Likewise.
7918         (EXPAND_BUILTIN_SAVEREGS): Likewise.
7919
7920 2004-01-25  Eric Botcazou  <ebotcazou@act-europe.fr>
7921
7922         PR bootstrap/13853
7923         * cfgcleanup.c (try_optimize_cfg): Explicitly test against 0.
7924
7925 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7926
7927         * config/h8300/lib1funcs.asm (divnorm, modnorm): Optimize by
7928         using ccr.
7929
7930 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7931
7932         * config/i860/i860-protos.h: Remove the prototype for
7933         i860_saveregs.
7934         * config/i860/i860.c (i860_saveregs): Make it static.
7935         (i860_struct_value_rtx): New.
7936         (TARGET_STRUCT_VALUE_RTX): Likewise.
7937         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
7938         * config/i860/i860.h (STRUCT_VALUE_REGNUM): Rename to
7939         I860_STRUCT_VALUE_REGNUM.
7940         (EXPAND_BUILTIN_SAVEREGS): Remove.
7941
7942 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7943
7944         * config/m68hc11/m68hc11.c (TARGET_STRUCT_VALUE_RTX): New.
7945         (TARGET_RETURN_IN_MEMORY): Likewise.
7946         (m68hc11_struct_value_rtx): Likewise.
7947         (m68hc11_return_in_memory): Likewise.
7948         * config/m68hc11/m68hc11.h: Remove a commented-out definition
7949         of PROMOTE_PROTOTYPES.
7950         (RETURN_IN_MEMORY): Remove.
7951         (STRUCT_VALUE_REGNUM): Likewise.
7952
7953 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7954
7955         * config/mmix/mmix-protos.h: Remove the prototype for
7956         mmix_setup_incoming_varargs.
7957         * config/mmix/mmix.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7958         (TARGET_STRUCT_VALUE_RTX): Likewise.
7959         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7960         (mmix_setup_incoming_varargs): Make it static.
7961         (mmix_struct_value_rtx): New.
7962         * config/mmix/mmix.h (PROMOTE_FUNCTION_ARGS): Remove.
7963         Remove a commented-out definition of PROMOTE_FUNCTION_RETURN.
7964         (STRUCT_VALUE_REGNUM): Remove.
7965         (SETUP_INCOMING_VARARGS): Likewise.
7966
7967 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7968
7969         * config/mips/mips-protos.h: Remove the prototypes for
7970         mips_setup_incoming_varargs and mips_return_in_memory.
7971         * config/mips/mips.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
7972         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
7973         (TARGET_PROMOTE_PROTOTYPES): Likewise.
7974         (TARGET_STRUCT_VALUE_RTX): Likewise.
7975         (TARGET_RETURN_IN_MEMORY): Likewise.
7976         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7977         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
7978         (mips_setup_incoming_varargs): Match the prototype for
7979         TARGET_SETUP_INCOMING_VARARGS.
7980         (mips_return_in_memory): Make it static.  Add argument fntype.
7981         (mips_strict_argument_naming): New.
7982         * config/mips/mips.h (PROMOTE_PROTOTYPES): Remove.
7983         (PROMOTE_FUNCTION_ARGS): Likewise.
7984         (PROMOTE_FUNCTION_RETURN): Likewise.
7985         (STRUCT_VALUE): Likewise.
7986         (RETURN_IN_MEMORY): Likewise.
7987         (SETUP_INCOMING_VARARGS): Likewise.
7988         (STRICT_ARGUMENT_NAMING): Likewise.
7989
7990 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
7991
7992         * config/ip2k/ip2k.c (TARGET_STRUCT_VALUE_RTX): New.
7993         (TARGET_RETURN_IN_MEMORY): Likewise.
7994         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
7995         (ip2k_return_in_memory): Likewise.
7996         (ip2k_setup_incoming_varargs): Likewise.
7997         * config/ip2k/ip2k.h (RETURN_IN_MEMORY): Remove.
7998         (STRUCT_VALUE): Likewise.
7999         (STRUCT_VALUE_INCOMING): Likewise.
8000         (SETUP_INCOMING_VARARGS): Likewise.
8001
8002 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
8003
8004         * config/avr/avr.c (TARGET_STRUCT_VALUE_RTX): New.
8005         (TARGET_RETURN_IN_MEMORY): Likewise.
8006         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
8007         (avr_return_in_memory): Remove.
8008         * config/avr/avr.h (RETURN_IN_MEMORY): Remove.
8009         (STRUCT_VALUE): Likewise.
8010         (STRUCT_VALUE_INCOMING): Likewise.
8011         (STRICT_ARGUMENT_NAMING): Likewise.
8012
8013 2004-01-25  Jan Hubicka  <jh@suse.cz>
8014
8015         * combine.c (recog_for_combine): Avoid allocating unnecesary RTX.
8016
8017 2004-01-25  Richard Sandiford  <rsandifo@redhat.com>
8018
8019         * config/mips/mips-protos.h (mips_reg_mode_ok_for_base_p): Delete.
8020         (mips_regno_mode_ok_for_base_p): Declare.
8021         * config/mips/mips.h (ARG_POINTER_REGNUM): Renumber to 77.
8022         (FRAME_POINTER_REGNUM): Renumber to 78.
8023         (FIRST_PSEUDO_REGISTER): Update comment accordingly.
8024         (BASE_REG_P, GP_REG_OR_PSEUDO_STRICT_P): Delete.
8025         (GP_REG_OR_PSEUDO_NONSTRICT_P): Delete.
8026         (REGNO_MODE_OK_FOR_BASE_P): Use mips_regno_mode_ok_for_base_p.
8027         (REG_MODE_OK_FOR_BASE_P): Likewise.
8028         * config/mips/mips.c (mips_reg_names, mips_sw_reg_names): Change
8029         entry for 77 to "$arg" and entry for 78 to "$frame".
8030         (mips_regno_to_class): Map 77 and 78 to ALL_REGS.
8031         (mips_reg_mode_ok_for_base_p): Remove.
8032         (mips_regno_mode_ok_for_base_p): New function, derived from old
8033         BASE_REG_P macro.  Don't enforce the mips16 stack pointer
8034         restrictions unless we're being strict.
8035         (mips_valid_base_register_p): Use mips_regno_mode_ok_for_base_p.
8036
8037 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8038
8039         * c-common.h: Fix comment typos.
8040         * c-decl.c: Likewise.
8041         * cgraphunit.c: Likewise.
8042         * combine.c: Likewise.
8043         * et-forest.c: Likewise.
8044         * flow.c: Likewise.
8045         * function.c: Likewise.
8046         * ifcvt.c: Likewise.
8047         * integrate.c: Likewise.
8048         * jump.c: Likewise.
8049         * postreload.c: Likewise.
8050         * varray.c: Likewise.
8051
8052 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8053
8054         * doc/frontends.texi: Update copyright.
8055         * doc/gcov.texi: Likewise.
8056         * doc/gty.texi: Likewise.
8057         * doc/sourcebuild.texi: Likewise.
8058         * doc/standards.texi: Likewise.
8059
8060 2004-01-24  Herman A.J. ten Brugge  <hermantenbrugge@home.nl>
8061
8062         PR target/12978
8063         * c4x.md: (movstrqi*) Use match_scratch instead of match_dup.
8064         Remove movstrqi_small because it conflicts with movstrqi_large.
8065
8066 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8067
8068         * config/cris/cris.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
8069         (TARGET_STRUCT_VALUE_RTX): Likewise.
8070         (cris_struct_value_rtx): Likewise.
8071         * config/cris/cris.h (PROMOTE_FUNCTION_ARGS): Remove.
8072         (CRIS_STACKADJ_REG): Use CRIS_STRUCT_VALUE_REGNUM instead of
8073         STRUCT_VALUE_REGNUM.
8074         (STRUCT_VALUE_REGNUM): Rename to CRIS_STRUCT_VALUE_REGNUM.
8075
8076 2004-01-24  Ian Lance Taylor  <ian@wasabisystems.com>
8077
8078         PR bootstrap/13848
8079         * cse.c (cse_cc_succs): Change the mode of the source expression
8080         as soon as decide we need a new mode.  Don't permit changing modes
8081         if we found a match in a successor block.
8082         (cse_condition_code_reg): Save original mode of source expression
8083         so that we know whether we have to change the mode in other
8084         insns.
8085
8086 2004-01-24  Jan Hubicka  <jh@suse.cz>
8087
8088         * emit-rtl.c (change_address, adjust_address_1, offset_address,
8089         widen_memory_access):  Return early when there is nothing to change.
8090
8091 2004-01-24  Jakub Jelinek  <jakub@redhat.com>
8092
8093         * simplify-rtx.c (simplify_relational_operation): Don't
8094         simplify address == constant into address + -constant == 0.
8095
8096 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8097
8098         * gcc.c (process_command): Don't internationalize the
8099         Copyright message.
8100         * mips-tfile.c (main): Likewise.
8101
8102 2004-01-24  Andreas Tobler  <a.tobler@schweiz.ch>
8103
8104         * cse.c: (cse_cc_succs) Fix comparison warning.
8105
8106 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8107
8108         * config/h8300/h8300.md: Remove extraneous USE in expanders.
8109
8110 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8111
8112         * config/h8300/h8300-protos.h: Provide prototypes for
8113         h8300_legitimate_constant_p and h8300_legitimate_address_p.
8114         * config/h8300/h8300.c (h8300_legitimate_constant_p): New.
8115         (h8300_rtx_ok_for_base_p): Likewise.
8116         (h8300_legitimate_address_p): Likewise.
8117         * config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Use
8118         h8300_legitimate_constant_p.
8119         (RTX_OK_FOR_BASE_P): Remove.
8120         (GO_IF_LEGITIMATE_ADDRESS): Use h8300_legitimate_address_p.
8121
8122 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
8123
8124         * config/h8300/h8300.h (REG_OK_FOR_INDEX_NONSTRICT_P): New.
8125         (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
8126         (REG_OK_FOR_INDEX_STRICT_P): Likewise.
8127         (REG_OK_FOR_BASE_STRICT_P): Likewise.
8128         (REG_OK_FOR_INDEX_STRICT_P): Use REGNO_OK_FOR_INDEX_P.
8129         (REG_OK_FOR_BASE_STRICT_P): Use REGNO_OK_FOR_BASE_P.
8130         (REG_OK_FOR_INDEX_P): Use REG_OK_FOR_INDEX_STRICT_P.
8131         (REG_OK_FOR_BASE_P): Use REG_OK_FOR_BASE_STRICT_P.
8132
8133 2004-01-24  Jan Hubicka  <jh@suse.cz>
8134
8135         * cselib.c (remove_useless_values):  Do not access discarded values.
8136
8137 2004-01-24  Joseph S. Myers  <jsm@polyomino.org.uk>
8138
8139         * c-typeck.c (build_conditional_expr): Do not allow non-lvalue
8140         arrays.
8141
8142 2004-01-23  Kazu Hirata  <kazu@cs.umass.edu>
8143
8144         * recog.c: Fix a typo in copyright.
8145
8146 2004-01-23  Andrew Pinski  <apinski@apple.com>
8147
8148         * config/rs6000/rs6000.md (call): Fix misappiled patch.
8149         (call_value): Likewise.
8150
8151 2004-01-23  Richard Henderson  <rth@redhat.com>
8152
8153         PR opt/12941
8154         * combine.c (SHIFT_COUNT_TRUNCATED): Provide default value.
8155         (simplify_comparison): Don't simplify (eq (zero_extract c 1 r) 0)
8156         if SHIFT_COUNT_TRUNCATED is set.
8157
8158 2004-01-23  Bob Wilson  <bob.wilson@acm.org>
8159
8160         * config/xtensa/xtensa.c (xtensa_va_arg): Handle complex values as
8161         separate real and imaginary parts.
8162         * config/xtensa/xtensa.h (SPLIT_COMPLEX_ARGS): Define.
8163
8164 2004-01-23  Hartmut Penner <hpenner@de.ibm.com>
8165
8166         PR target/13674
8167         * config/rs6000/rs6000.md (movdf_hardfloat64): Do not disparage
8168         loading into GPR.
8169
8170 2004-01-23  Jan Hubicka  <jh@suse.cz>
8171
8172         * emit-rtl.c (change_address_1):  Do not re-generate the RTX if nothing
8173         change.
8174
8175         * alloc-pool.c (align_four): Kill.
8176         (create_alloc_pool): Align size to eight.
8177         (free_alloc_pool, free_pool): Invalidate deallocated data.
8178
8179 2004-01-23  Ian Lance Taylor  <ian@wasabisystems.com>
8180
8181         PR gcc/1532
8182         * cse.c (cse_change_cc_mode): New static function.
8183         (cse_change_cc_mode_insns, cse_cc_succs): Likewise.
8184         (cse_condition_code_reg): New function.
8185         * rtl.h (cse_condition_code_reg): Declare.
8186         * toplev.c (rest_of_handle_cse2): Call cse_condition_code_reg.
8187         * target.h (struct gcc_target): Add fixed_condition_code_regs and
8188         cc_modes_compatible.
8189         * target-def.h (TARGET_FIXED_CONDITION_CODE_REGS): Define.
8190         (TARGET_CC_MODES_COMPATIBLE): Define.
8191         (TARGET_INITIALIZER): Add new initializers.
8192         * targhooks.c (default_cc_modes_compatible): New function.
8193         * targhooks.c (default_cc_modes_compatible): Declare.
8194         * hooks.c (hook_bool_intp_intp_false): New function.
8195         * hooks.h (hook_bool_intp_intp_false): Declare.
8196         * config/i386/i386.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
8197         (TARGET_CC_MODES_COMPATIBLE): Define.
8198         (ix86_fixed_condition_code_regs): New static function.
8199         (ix86_cc_modes_compatible): Likewise.
8200         * doc/tm.texi (Condition Code): Document new hooks.
8201
8202 2004-01-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8203
8204         * fixinc/inclhack.def (bad_lval): Renamed to ...
8205         (alpha_bad_lval): ... this.
8206         Removed file list.
8207         Restrict to alpha*-dec-osf*.
8208         * fixinc/fixincl.x: Regenerate.
8209         * fixinc/tests/base/dirent.h: Remove, moving test ...
8210         * fixinc/tests/base/testing.h: ... here, reflecting new name.
8211
8212 2004-01-23  Zack Weinberg  <zack@codesourcery.com>
8213
8214         PR c/13814
8215         * c-decl.c (diagnose_mismatched_decls): Also discard a
8216         built-in if we encounter an old-style definition with the
8217         same name.
8218
8219 2004-01-23  Jakub Jelinek  <jakub@redhat.com>
8220
8221         * config.gcc (powerpc*-*): Clear $with_cpu or $with_tune if it was
8222         set to default{32,64}.
8223
8224 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
8225
8226         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR)
8227         [!__powerpc64__]: Corrected to handle kernels with changed ucontext.
8228
8229 2004-01-23  Eric Botcazou  <ebotcazou@act-europe.fr>
8230             Olivier Hainque  <hainque@act-europe.fr>
8231
8232         * fold-const.c (fold_binary_op_with_conditional_arg): Only
8233         build a COMPOUND_EXPR if 'arg' is really a SAVE_EXPR.
8234
8235 2004-01-23  Daniel Jacobowitz  <drow@mvista.com>
8236
8237         * config/arm/arm.c (arm_legitimate_address_p): Don't check the mode
8238         size for minipool references.
8239
8240 2004-01-23  Roger Sayle  <roger@eyesopen.com>
8241
8242         * real.c (real_floor, real_ceil): Tweak to allow input and output
8243         arguments to overlap.
8244         (real_round): New function to implement round(3m) semantics.
8245         * real.h (real_round): Prototype here.
8246         * builtins.c (fold_builtin_round): New function to constant fold
8247         round, roundf and roundl.
8248         (fold_builtin): Call fold_builtin_round for BUILT_IN_ROUND{,F,L}.
8249
8250 2004-01-23  Alexandre Oliva  <aoliva@redhat.com>
8251
8252         PR optimization/13819
8253         * config/sh/sh.c (sh_reorg): Compensate for sharing of CLOBBERs
8254         introduced by 2004-01-20's Jan Hubicka's copy_insn change.
8255         (sh_handle_sp_switch_attribute): Remove warning.
8256
8257 2003-11-30  Jan Hubicka  <jh@suse.cz>
8258
8259         * i386.c (ix86_emit_restore_regs_using_mov):  Deal with large offsets.
8260
8261 2004-01-23  J"orn Rennecke <joern.rennecke@superh.com>
8262
8263         * doc/tm.texi: Insert some weasel words when LOAD_EXTEND_OP
8264         may or may not return non-NIL.
8265         * postreload.c (reload_cse_simplify_operands): In LOAD_EXTEND_OP code,
8266         check CANNOT_CHANGE_MODE_CLASS
8267
8268 2004-01-23  Jan Hubicka  <jh@suse.cz>
8269
8270         * basic-block.h (PROP_POSTRELOAD): New macro.
8271         (CLEANUP_LOG_LINKS): New.
8272         * cfgcleanup.c (cleanup_cfg): Only PROP_LOG_LINKS when asked to.
8273         * toplev.c (rest_of_handle_life):  Preserve LOG_LINKS trought cleanup_cfg.
8274
8275         * cselib.c (value_pool): New.
8276         (new_cselib_val): Use pool.
8277         (cselib_init): Initialize value_pool
8278         (cselib_finish): Free pool.
8279
8280 2004-01-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
8281
8282         * config/sparc/sparc.c (scan_record_type): New function.
8283         (function_arg_slotno): Use it to determine which kinds of
8284         registers the record can be passed in.
8285
8286 2004-01-22  James A. Mmorrison  <ja2morri@uwaterloo.ca>
8287
8288         * config/pa/fptr.c: Fix old-style definition.
8289
8290 2004-01-22  Paolo Bonzini  <bonzini@gnu.org>
8291
8292         PR optimization/13724
8293         * cse.c (fold_rtx) <SUBREG>:  Fold a SUBREG to zero if it
8294         represents the zero bits produced by a ZERO_EXTEND operation.
8295
8296 2004-01-22  Roger Sayle  <roger@eyesopen.com>
8297
8298         PR optimization/13821
8299         * simplify-rtx.c (simplify_subreg): Use subreg_lowpart_offset to
8300         correctly calculate the lowpart offset of the contracted subreg.
8301
8302 2004-01-22  Ian Lance Taylor  <ian@wasabisystems.com>
8303
8304         * doc/invoke.texi (Optimize Options): Note that --param arguments
8305         are subject to change without notice.
8306
8307 2004-01-22  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
8308
8309         * config.gcc (mips-sgi-irix6*o32): Removed.
8310         * config/mips/iris6-o32-as.h: Likewise.
8311         * config/mips/iris6-o32-gas.h: Likewise.
8312         * config/mips/iris6-o32.h: Likewise.
8313
8314 2004-01-22  Jan Hubicka  <jh@suse.cz>
8315
8316         * cfgcleanup.c (first_pass): New static variable.
8317         (try_forward_edges):  Add work limiting check for threading.
8318         (try_crossjump_bb):  Add work limiting check for crossjumping.
8319         (try_optimize_cfg):  Maintain first pass variable.
8320
8321 2004-01-22  Bob Wilson  <bob.wilson@acm.org>
8322
8323         * config/xtensa/xtensa.c (function_arg): Generalize logic so that it
8324         handles complex and vector modes.
8325
8326 2004-01-22  Kazu Hirata  <kazu@cs.umass.edu>
8327
8328         * config/h8300/h8300.h (REG_OK_FOR_INDEX_P_STRICT): Remove.
8329         (REG_OK_FOR_BASE_P_STRICT): Likewise.
8330         (STRICT): Likewise.
8331
8332 2004-01-22  Daniel Jacobowitz  <drow@mvista.com>
8333
8334         * c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
8335         (genrtl_for_stmt): Remove emit_nop calls.
8336
8337 2004-01-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8338
8339         PR target/13713
8340         PR target/13324
8341         * pa.md (movstrsi_prereload, movstrsi_postreload, movstrdi_prereload,
8342         movstrdi_postreload, clrstrsi_prereload, clrstrsi_postreload,
8343         clrstrdi_prereload, clrstrdi_postreload): Fix constraints.
8344
8345 2004-01-22  Daniel Jacobowitz  <drow@mvista.com>
8346
8347         * config/arm/arm.c: Include "debug.h".
8348         (thumb_pushpop): Take two new arguments.  Add some commentary.
8349         Output frame information when pushing.
8350         (thumb_exit, thumb_unexpanded_epilogue): Update calls to
8351         thumb_pushpop.
8352         (thumb_output_function_prologue): Likewise.  Accumulate a CFA
8353         offset, and pass it to thumb_pushpop.  Output CFI information.
8354         (thumb_expand_prologue): Add some frame-related markers and notes.
8355
8356 2004-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
8357
8358         * config/s390/s390.c (s390_frame_info): Allow large frame sizes
8359         for TARGET_64BIT.
8360         (s390_arg_frame_offset): Change return type to HOST_WIDE_INT.
8361         * config/s390/s390-protos.h (s390_arg_frame_offset): Likewise.
8362
8363 2004-01-22  Roger Sayle  <roger@eyesopen.com>
8364             Paolo Bonzini  <bonzini@gnu.org>
8365
8366         * rtlanal.c (subreg_lsb_1): New function split out from subreg_lsb.
8367         (subreg_lsb): Change to call new subreg_lsb_1 helper function.
8368         * rtl.h (subreg_lsb_1): Prototype here.
8369         * simplify-rtx.c (simplify_subreg): Optimize subregs of zero and
8370         sign extensions.
8371
8372 2004-01-22  Kazu Hirata  <kazu@cs.umass.edu>
8373
8374         * doc/tm.texi (CASE_VECTOR_PC_RELATIVE): Mention that the
8375         macro need not be defined if jump-tables should contain
8376         relative addresses only when -fPIC or -fPIC is in effect.
8377
8378 2004-01-22  Jan Hubicka  <jh@suse.cz>
8379
8380         * alias.c (reg_base_value): Turn into varray.
8381         (reg_base_value_size): Kill.
8382         (old_reg_base_value): New deletable varray.
8383         (alias_invariant_size): New variable.
8384         (REG_BASE_VALUE): Update to use varray.
8385         (find_base_value): Likewise.
8386         (record_set): Likewise.
8387         (record_base_value): Likewise.
8388         (memrefs_conflict_p): Likewise.
8389         (record_set): Likewise
8390         (record_base_value): Likewise.
8391         (memrefs_conflict_p): Use alias_invariant_size.
8392         (init_alias_analysis): Use varray; set alias_invariant_size;
8393         rescale other arrays to be sized by maxreg.
8394         (end_alias_analysis): Save reg_base_value; clear alias_invariant_size.
8395
8396 2004-01-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
8397
8398         * config/sparc/sparc.c (function_arg_slotno): Use
8399         FLOAT_TYPE_P to detect FP fields in structures.
8400         (function_arg_record_value_1): Likewise.
8401         (function_arg_record_value_2): Likewise.
8402
8403 2004-01-22  Jan Hubicka  <jh@suse.cz>
8404
8405         * function.c (allocate_struct_function): Do not initialize expr, emit
8406         and varasm.
8407         (prepare_function_start): Do it here.
8408         * c-parse.in (maybe_type_qual): Do not produce line number notes.
8409
8410 2004-01-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
8411
8412         PR target/13559
8413         * config/sparc/sparc.c (function_arg_record_value_3): Revert
8414         to 'word_mode' once the first slot has been filled.
8415
8416 2004-01-22  Olivier Hainque  <hainque@act-europe.fr>
8417
8418         * config/sparc/sparc.c (function_arg_record_value_1): Fix
8419         computation of the number of integer registers required.
8420
8421 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
8422
8423         * config/i386/i386.md: Simplify certain comparisons of
8424         const_int.
8425
8426 2004-01-21  Andrew Pinski  <apinski@apple.com>
8427
8428         PR target/13785
8429         * config/rs6000/rs6000.md (call_value): Force operand
8430         1 not operand 0 into a register.
8431
8432 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
8433
8434         * cpperror.c, cpptrad.c, longlong.h, params.def, rtl.def,
8435         unwind-dw2-fde.h: Update copyright.
8436
8437 2004-01-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8438
8439         * pa-protos.h: Update copyright.
8440         * pa.h: Likewise.
8441         * pa.md: Likewise.
8442
8443 2004-01-21  Caroline Tice  <ctice@apple.com>
8444
8445         PR target/12308
8446         * config/i386/i386.md (fix_truncxfdi2): Add clause to clobber
8447         flags register.
8448         (fix_truncdfdi2): Likewise.
8449         (fix_truncsfdi2): Likewise.
8450         (*fix_truncdi_1): Likewise.
8451         (fix_truncxfsi2): Likewise.
8452         (fix_truncdfsi2): Likewise.
8453         (fix_truncsfsi2): Likewise.
8454         (*fix_truncsi_1): Likewise.
8455         (fix_truncxfhi2): Likewise.
8456         (fix_truncdfhi2): Likewise.
8457         (fix_truncsfhi2): Likewise.
8458         (*fix_trunchi_1): Likewise.
8459
8460 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
8461
8462         * alias.c, basic-block.h, c-common.c, c-common.h,
8463         c-cppbuiltin.c, c-opts.c, c-pragma.c, c-pretty-print.c,
8464         calls.c, cfg.c, cfgcleanup.c, cfgrtl.c, cgraph.h, collect2.c,
8465         combine.c, cppcharset.c, cpphash.h, cppinit.c, cpplib.c,
8466         cpplib.h, cppmacro.c, crtstuff.c, cselib.c, cselib.h,
8467         defaults.h, df.c, dominance.c, et-forest.c, expmed.c, expr.c,
8468         expr.h, fix-header.c, function.h, gcc.c, gcse.c, genattrtab.c,
8469         genautomata.c, genconditions.c, genemit.c, genflags.c,
8470         gengtype.c, gengtype.h, genopinit.c, genrecog.c, gensupport.c,
8471         ggc-zone.c, graph.c, haifa-sched.c, input.h, integrate.c,
8472         langhooks-def.h, langhooks.c, langhooks.h, line-map.c,
8473         line-map.h, local-alloc.c, optabs.c, optabs.h, postreload.c,
8474         ra.h, recog.c, reg-stack.c, regmove.c, reload.c, reorg.c,
8475         rtl.c, sched-deps.c, sched-ebb.c, sdbout.c, system.h,
8476         target.h, targhooks.c, toplev.h, tree-inline.c, unwind-pe.h,
8477         unwind.h, varray.c, varray.h: Update copyright.
8478
8479 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
8480
8481         * config/h8300/coff.h: Update copyright.
8482         * config/h8300/elf.h: Likewise.
8483         * config/h8300/h8300-protos.h: Likewise.
8484         * config/h8300/h8300.c: Likewise.
8485         * config/h8300/h8300.h: Likewise.
8486         * config/h8300/h8300.md: Likewise.
8487
8488 2004-01-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8489
8490         * fixinc/inclhack.def (hpux10_stdio_declarations, ultrix_const3,
8491         ultrix_locale, ultrix_stdlib, ultrix_strings, ultrix_sys_time,
8492         ultrix_unistd): New hacks.
8493         * fixinc/tests/base/stdio.h (HPUX10_STDIO_DECLARATIONS_CHECK,
8494         ULTRIX_CONST2_CHECK): Add checks.
8495         * fixinc/tests/base/stdlib.h (ULTRIX_STDLIB_CHECK): Likewise.
8496         * fixinc/tests/base/strings.h (ULTRIX_STRINGS2_CHECK): Likewise.
8497         * fixinc/tests/base/unistd.h (ULTRIX_UNISTD_CHECK): Likewise.
8498         * fixinc/tests/base/sys/time.h (ULTRIX_SYS_TIME_CHECK): Likewise.
8499         * fixinc/tests/base/locale.h: New file.
8500         * fixinc/fixincl.x: Rebuilt.
8501
8502 2004-01-21  Andreas Jaeger  <aj@suse.de>
8503             Michael Matz  <matz@suse.de>
8504
8505         * doc/extend.texi (Extended Asm): Clarify memory clobber.
8506
8507 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
8508
8509         * crtstuff.c (frame_dummy, __do_global_ctors_1): Call
8510         _Jv_RegisterClasses through a function pointer.
8511
8512 2004-01-21  Falk Hueffner  <falk@debian.org>
8513
8514         PR target/12898
8515         * config/alpha/alpha.c (alpha_emit_set_const_1): If
8516         no_new_pseudos, use gen_rtx_SET directly for SImode constants
8517         which need multiple instructions to emit.
8518
8519 2004-01-21  Inaoka Kazuhiro  <inaoka.kazuhiro@renesas.com>
8520
8521         * config/m32r/m32r.h (CPP_SPEC): Define.
8522
8523 2004-01-21  Zack Weinberg  <zack@codesourcery.com>
8524
8525         * c-decl.c (merge_decls): Kill different_binding_level and
8526         different_tu arguments; simplify throughout.
8527         (duplicate_decls): Likewise.
8528         (pushdecl, merge_translation_unit_decls): Update calls to
8529         duplicate_decls.
8530
8531 2004-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8532
8533         * Makefile.in (pretty-print.o): Depend on $(CONFIG_H) and
8534         $(SYSTEM_H).
8535         (print-rtl1.o): Depend on $(SYSTEM_H).
8536
8537 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
8538
8539         PR bootstrap/12730
8540         * configure.ac: Delete definition and subsitution of docdir.
8541         Add info, man, srcman and srcinfo to target hooks. Create doc/
8542         directory.
8543         * configure: Regenerate.
8544         * Makefile.in: Don't substitute docdir and delete all references
8545         throughout.
8546         (MAKEINFOFLAGS): Define.
8547         (stmp-docobjdir): Delete.
8548         (INFOFILES, MANFILES): Define.
8549         (info): Call lang.info, srcinfo and lang.srcinfo.
8550         (generated-manpages): Call lang.man, srcman and lang.srcman.
8551         (srcinfo, srcman): New rules to copy back files to source directory.
8552         (doc/%.info, doc/%.dvi, doc/%.1, doc/%.7): New implict rule.
8553         (install-man): Revamp rule.
8554         (clean): Update dvi directory.
8555         (distclean): Delete TAGS from front end directorys.
8556         (maintainer-clean): Delete all document files in source directory.
8557
8558         objc/Make-lang.in (objc.man, objc.info): Dummy entries.
8559         (objc.srcman, objc.srcinfo): Likewise.
8560
8561 2004-01-20  Bruce Korb  <bkorb@gnu.org>
8562
8563         * fixinc/inclhack.def(math_exception): bypass only for glibc.
8564         (matherr_decl): rename & relocate as exception_structure.
8565         This fix must precede the math_exception fix.
8566
8567 2004-01-20  Roger Sayle  <roger@eyesopen.com>
8568
8569         * fold-const.c (fold_convert): Rename to fold_convert_const.
8570         (fold_convert_const): Change arguments to take a tree_code,
8571         a type and the operand/expression to be converted.  Return
8572         NULL_TREE if no simplification is possible.  Add support for
8573         FIX_CEIL_EXPR and FIX_FLOOR_EXPR in addition to FIX_TRUNC_EXPR.
8574         (fold): Handle FIX_CEIL_EXPR and FIX_FLOOR_EXPR.
8575         Adjust call to fold_convert to match new fold_convert_const.
8576         Avoid modifying the tree passed to fold in-place.
8577
8578 2004-01-21  Alan Modra  <amodra@bigpond.net.au>
8579
8580         * config/rs6000/sysv4.h (DWARF2_FRAME_REG_OUT): Define.
8581         * dwarf2out.c (output_cfi): Map regs using DWARF2_FRAME_REG_OUT.
8582         * doc/tm.texi (DWARF_FRAME_REGNUM, DWARF2_FRAME_REG_OUT): Document.
8583
8584 2004-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8585
8586         * pa-protos.h (compute_frame_size): Use HOST_WIDE_INT for frame sizes.
8587         * pa.c (store_reg, store_reg_modify, load_reg, set_reg_plus_d):
8588         Likewise.  Handle frames larger than 0x7fffffff on 64-bit ports.
8589         (emit_move_sequence): Check scratch_reg first in various if statements.
8590         Extend source simplification to handle all 64-bit CONST_INTs.
8591         (pa_output_function_prologue): Use HOST_WIDE_INT_PRINT_DEC for printing
8592         frame size.
8593         (hppa_expand_prologue, hppa_expand_epilogue): Use HOST_WIDE_INT for
8594         frame offset calculations.
8595         * pa.h (NEW_HP_ASSEMBLER): Add comment.
8596         (MAX_LEGIT_64BIT_CONST_INT, MIN_LEGIT_64BIT_CONST_INT,
8597         LEGITIMATE_64BIT_CONST_INT_P): Define.
8598         (LEGITIMATE_CONSTANT_P): Use LEGITIMATE_64BIT_CONST_INT_P.  Treat
8599         any CONST_INT as legitimate during and after reload.
8600         (VAL_32_BITS_P, INT_32_BITS): Define.
8601         (LEGITIMIZE_RELOAD_ADDRESS): Handle large frame offsets.
8602
8603 2004-01-20  Jan Hubicka  <jh@suse.cz>
8604
8605         * emit-rtl.c (verify_rtx_sharing, copy_insn_1,
8606         emit_copy_of_insn_after, emit_copy_of_insn_after): Clobbers
8607         containing hard regs are shared.
8608         (gen_hard_reg_clobber): New function.
8609         (hard_reg_clobbers): New array.
8610         * genemit.c (gen_exp): Use gen_hard_reg_clobber.
8611         (copy_rtx): Do not copy clobbers containing hard regs.
8612         * rtl.h (gen_hard_reg_clobber): Declare.
8613
8614 2004-01-20  Jan Hubicka  <jh@suse.cz>
8615
8616         * varray.c:  Include hashtab.h
8617         (varray_descriptor): New structure.
8618         (hash_descriptor, eq_descriptor, varray_descriptor,
8619         print_statistics): New static functions
8620         (varray_init, varray_grow): Update statistics
8621         (dump_varray_statistics): New function.
8622         * varray.h (dump_varray_statistics): Declare.
8623         * toplev.c (finalize): Call it.
8624         * Makefile.in (varray.o): Add dependency.
8625
8626 2004-01-20  Jan Hubicka  <jh@suse.cz>
8627
8628         * cselib.c: Include alloc-pool.h
8629         (empty_vals, empty_elt_lists, empty_elt_loc_lists): Kill.
8630         (elt_loc_list_pool, elt_list_pool, cselib_val_pool): Declare.
8631         (new_elt_list, new_elt_loc_list, unchain_one_elt_list,
8632         unchain_one_elt_loc_list_pool, unchain_one_value,
8633         new_cselib_val): Simplify using allocpool.
8634         (cselib_init): Initialize allocpools.
8635         (cselib_finish): Finish allocpools.
8636         * Makefile.in (cselib.o): Depend on alloc-pool.h
8637
8638 2004-01-20  Richard Sandiford  <rsandifo@redhat.com>
8639
8640         * config/mips/mips.c (mips_load_call_address): Make the call insn
8641         use $gp if it could be calling a lazy binding stub.
8642
8643 2004-01-20  Kazu Hirata  <kazu@cs.umass.edu>
8644
8645         * config/s390/s390.c (TARGET_PROMOTE_FUNCTION_ARGS): Define.
8646         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
8647         (TARGET_STRUCT_VALUE_RTX): Likewise.
8648         * config/s390/s390.h (PROMOTE_FUNCTION_ARGS): Remove.
8649         (PROMOTE_FUNCTION_RETURN): Remove.
8650         (STRUCT_VALUE): Remove.
8651
8652 2004-01-20  Denis Chertykov  <denisc@overta.ru>
8653
8654         PR bootstrap/13735
8655         * config/avr/avr.h (BASE_REG_CLASS): Don't permit to use X
8656         register as pointer after reload.
8657
8658 2004-01-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
8659
8660         PR optimization/12440
8661         * loop.c: Include ggc.h.
8662         (loop_optimize): Run garbage collector between optimization of loops.
8663         * Makefile.in (loop.o): Add GGC_H dependency.
8664
8665 2004-01-20  Hartmut Penner  <hpenner@de.ibm.com>
8666
8667         * gcc/config/rs6000/rs6000.c (function_arg) Handle
8668         vector register special in function without prototype.
8669         (function_arg_advance): Vector parameters get always
8670         GPRs allocated for the linux64 target.
8671
8672 2004-01-20  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
8673
8674         * config/m32r/m32r.h (TARGET_M32R2). Test for TARGET_M32R2_MASK
8675         not TARGET_M32RX_MASK.
8676
8677 2004-01-20  Eric Botcazou  <ebotcazou@libertysurf.fr>
8678
8679         PR target/13557
8680         * config/sparc/sparc.c (function_arg): Reorder the cases.
8681
8682 2004-01-19  Per Bothner  <per@bothner.com>
8683
8684         Move cpp_reader's line_maps field to a shared global.
8685         * cpphash.h (cpp_reader):  Rename line_maps field to line_table
8686         and change the type to a pointer rather than a struct.
8687         * cppinit.c (cpp_push_main_field):  Adjust accordingly.
8688         * cpplib.c (do_include_common, _cpp_do_file_change, cpp_get_callbacks):
8689         Likewise.
8690         * cppfiles.c (validate_pch):  Likewise.
8691         * cppmacro.c (_cpp_warn_if_unused_macro, _cpp_builtin_macro_text):
8692         Likewise.
8693         * cpperror.c (print_location):  Likewise.
8694         * cpplib.h (cpp_create_reader):  New line_maps pointer parameter.
8695         * cppinit.c (cpp_create_reader):  Handle new parameter.
8696         (cpp_destroy):  Don't free line_maps - that's no longer our job.
8697         * input.h (line_table):  New variable.
8698         * toplev.c (line_table):  Declare variable.
8699         (general_init):  Initialize line_table.
8700         * c-opts.c (c_common_init_options):  Pass line_table to
8701         cpp_create_reader.
8702         * fix-header.c (read_scan_file):  New local variable line_table.
8703         Initialize, and pass it to cpp_create_reader.
8704         * Makefile.in (LIBS, LIBDEPS):  Add libcpp.a.
8705         (C_AND_OBJC_OBJS, fix-header):  Remove redundant libcpp.a.
8706
8707 2004-01-19  Per Bothner  <per@bothner.com>
8708
8709         Implement a cache for linemap_lookup.
8710         * line-map.h (struct_line_maps):  Add cache field.
8711         * line-map.c (linemap_init):  Zero cache field.
8712         (linemap_add):  Set cache field to offset of newly allocated map.
8713         (linemap_lookup):  Use and set cache field.
8714
8715 2004-01-20  Kaz Kojima  <kkojima@gcc.gnu.org>
8716
8717         PR optimization/13567
8718         * cse.c (cse_basic_block): Call cse_insn with a non-null
8719         libcall_insn for the last SET insn of a no-confilict block.
8720
8721 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
8722
8723         * Makefile.in (target_noncanonical, program_transform_name): Use
8724         immediate define instead of deferred.
8725         (GCC_INSTALL_NAME, GCC_TARGET_INSTALL_NAME, CPP_INSTALL_NAME,
8726         PROTOIZE_INSTALL_NAME, UNPROTOIZE_INSTALL_NAME, GCOV_INSTALL_NAME,
8727         GCCBUG_INSTALL_NAME): Define via a immediate $(shell) instead of
8728         deferred backquote.
8729
8730 2004-01-20  Joseph S. Myers  <jsm@polyomino.org.uk>
8731
8732         * c-decl.c (c_init_decl_processing): Set pedantic_lvalues to
8733         true unconditionally.
8734         * c-typeck.c (unary_complex_lvalue, pedantic_lvalue_warning):
8735         Remove.
8736         (build_unary_op, build_modify_expr): Don't handle extended
8737         lvalues.
8738         (build_component_ref, build_conditional_expr): Call non_lvalue
8739         instead of pedantic_non_lvalue.
8740         (build_c_cast): Don't condition use of non_lvalue on pedantic.
8741         * fold-const.c (fold): Don't check pedantic directly for
8742         COMPOUND_EXPR.  Ensure that results for COMPOUND_EXPR are
8743         passed to pedantic_non_lvalue.
8744         * doc/extend.texi: Remove documentation of extended lvalues.
8745
8746 2004-01-19  Roger Sayle  <roger@eyesopen.com>
8747
8748         PR optimization/5263
8749         * simplify-rtx.c (associative_constant_p): Delete.
8750         (simplify_associative_operation): Rewrite to linearize terms, and
8751         attempt to simplify new term against both left and right subterms.
8752         (simplify_binary_operation): Call swap_commutative_operands_p on
8753         op0 and op1, not trueop0 and trueop1.  Move the initialization of
8754         trueop0 and trueop1 down to where first needed.
8755         (simplify_relational_operation): Likewise.
8756         * rtlanal.c (commutative_operand_precedence): Also order constant
8757         operands using avoid_constant_pool_reference.
8758
8759 2004-01-19  Richard Henderson  <rth@redhat.com>
8760
8761         * config/alpha/alpha.c (aligned_memory_operand): Check MEM_ALIGN,
8762         don't check memory mode.
8763         (unaligned_memory_operand): Likewise.
8764         (reload_inqi, reload_inhi, reload_outqi, reload_outhi): Don't
8765         abort for op0 not MEM.
8766
8767         * config/alpha/alpha.c (alpha_expand_mov_nobwx): If the destination
8768         is not a reg, copy to a scratch first.
8769         (aligned_loadqi, aligned_loadhi, unaligned_loadqi, unaligned_loadhi,
8770         unaligned_loadqi_le, unaligned_loadqi_be, unaligned_loadhi_le,
8771         unaligned_loadhi_be): Expect op0 in DImode; don't SUBREG.
8772         (reload_inqi, reload_inhi): Fix mode of op0.
8773         (reload_inqi_help, reload_inhi_help, reload_outqi_help,
8774         reload_outhi_help): Likewise.  Use define_insn_and_split.
8775
8776         * config/alpha/alpha.md (call peepholes): Check for REG_NORETURN
8777         as well as $29 dead.
8778
8779 2004-01-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
8780
8781         * config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): New.  Emit
8782         "tls_object" for thread-local objects.
8783         * config/sparc/sparc.c (sparc_elf_asm_named_section): Emit
8784         "#tls" for thread-local sections.
8785         * configure.ac (thread-local checks): Specify --fatal-warnings in
8786         every binutils-specific checks.  For sparc*-*-*, test whether the
8787         OS is Solaris and the tools are native and act accordingly.
8788         * configure: Rebuild.
8789
8790 2004-01-19  Jeff Law  <law@redhat.com>
8791
8792         * contrib.texi: Update Paolo Carlini's entry.  New entries for
8793         Jerry Quinn and Petur Runolfsson.
8794
8795 2004-01-19  Roger Sayle  <roger@eyesopen.com>
8796
8797         * config/i386/i386.md (*movhi_1, *movqi_1): When optimizing for
8798         size, don't use the larger zero-extending loads.
8799
8800 2004-01-19  Richard Henderson  <rth@redhat.com>
8801
8802         * alpha.h (HARD_REGNO_MODE_OK): Disallow SImode in FP regs.
8803         * alpha.md (UNSPEC_NT_LDA): Remove.
8804         (UNSPEC_CVTLQ, cvtlq): New.
8805         (extendsidi2_1): Rename from extendsidi2_nofix; remove f/f.
8806         (extendsidi2_fix): Remove.
8807         (extendsidi2 splitter): Use cvtlq.
8808         (extendsidi2 fp peepholes): Remove.
8809         (cvtql): Use SFmode instead of SImode.
8810         (fix_trunc?fsi): Update to match.
8811         (floatsisf2_ieee, floatsisf2, floatsidf2_ieee, floatsidf2): New.
8812         (movsi): Rename from movsi_nofix, remove f alternatives.
8813         (movsi_nt_vms): Similarly.
8814         (movsi_fix, movsi_nt_vms_fix): Remove.
8815         (nt_lda): Remove.
8816         * alpha.c (alpha_expand_prologue): Use adddi3, not nt_lda.
8817
8818 2004-01-19  Jan Hubicka  <jh@suse.cz>
8819
8820         * cgraph.c (cgraph_remove_node): Fix removal from linked list.
8821         * cgraphunit.c (cgraph_finalize_compilation_unit): Clear next_needed
8822         list.
8823         (cgraph_remove_unreachable_nodes): New function
8824         (cgraph_decide_inlining_of_small_function): Fix pasto.
8825         (cgraph_decide_inlining_incrementally): Fix pasto.
8826         (cgrpah_decide_inlining): Likewise; remove unreachable nodes.
8827
8828 2004-01-19  Steven Bosscher  <stevenb@suse.de>
8829
8830         * gengtype.c (header_file): Make it static.
8831         (write_types_process_field, write_enum_defn): Minor whitespace fixes.
8832         * gengtype.h (header_file): No longer extern.
8833
8834 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
8835
8836         * defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
8837         * expr.c (CASE_VECTOR_PC_RELATIVE): Remove.
8838         * stmt.c (CASE_VECTOR_PC_RELATIVE): Likewise.
8839
8840 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
8841
8842         * stmt.c (HAVE_casesi): Define it not already defined.
8843         (HAVE_tablejump): Likewise.
8844         (expand_end_case_type): Resort to the binary tree method if
8845         neither casesi or tablejump is available.
8846
8847 2004-01-18  Daniel Jacobowitz  <drow@mvista.com>
8848
8849         * final.c (final_scan_insn): Make non-static again.
8850         * output.h (final_scan_insn): Re-add prototype.
8851         * config/arc/arc.c (arc_output_function_epilogue): Add NULL
8852         to final_scan_insn call.
8853         * config/cris/cris.c (cris_target_asm_function_epilogue): Likewise.
8854         * config/mips/mips.c (mips_output_conditional_branch): Likewise.
8855         * config/pa/pa.c (output_lbranch, output_call): Likewise.
8856         * config/sh/sh.c (print_slot): Likewise.
8857         * config/sparc/sparc.c (sparc_nonflat_function_epilogue): Likewise.
8858         (output_sibcall, sparc_flat_function_epilogue): Likewise.
8859
8860 2004-01-18  Jan Hubicka  <jh@suse.cz>
8861
8862         * basic-block.h (try_redirect_by_replacing_jump): Declare.
8863         * cfgcleanup.c (try_optimize_cfg): Use it.
8864         * cfgrtl.c (try_redirect_by_replacing_jump): Export.
8865         (rtl_redirect_edge_and_branch, cfg_layout_redirect_edge_and_branch):
8866         Kill hack.
8867         (cfg_layout_merge_blocks): Use try_redirect_by_replacing_jump.
8868
8869         Revert:
8870         2004-01-16  Geoffrey Keating  <geoffk@apple.com>
8871
8872                 * cfgrtl.c (try_redirect_by_replacing_jump): Optimize tablejumps
8873                 even after reload, just don't remove the actual jump tables.
8874
8875 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
8876
8877         * config/rs6000/rs6000.h (STRICT_ARGUMENT_NAMING): Remove.
8878
8879 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
8880
8881         * defaults.h (ASM_OUTPUT_ADDR_VEC_ELT): Fix the computation of
8882         the size of a pointer in bytes.
8883
8884 2004-01-18  Roger Sayle  <roger@eyesopen.com>
8885
8886         * builtins.c (expand_builtin_expect_jump): Fix thinko of reusing
8887         live "next" variable, which could lead to an infinite loop.
8888
8889 2004-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
8890
8891         * config/rs6000/altivec.h: Wrap C++ functions in extern "C++"
8892         block.
8893
8894         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
8895         Check for NULL in the chain and remove repeated code.
8896
8897 2004-01-18  Jan Hubicka  <jh@suse.cz>
8898
8899         * coverage.c (checksum_string): Rename to ...
8900         (coverage_checksum_string): ... this one, Use crc32_string; recognize
8901         names containing random number and zero the number out in order to get
8902         match.
8903
8904 2004-01-18  Richard Sandiford  <rsandifo@redhat.com>
8905
8906         * config/mips/mips.c (mips_got_alias_set): Mark for PCH.
8907
8908 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
8909
8910         * doc/c-tree.texi, doc/cpp.texi, doc/extend.texi,
8911         doc/frontends.texi, doc/gcov.texi, doc/gty.texi, doc/install.texi,
8912         doc/invoke.texi, doc/libgcc.texi, doc/md.texi, doc/rtl.texi,
8913         doc/sourcebuild.texi, doc/standards.texi, doc/tm.texi,
8914         doc/trouble.texi: Remove trailing whitespace.
8915
8916 2004-01-18  Richard Sandiford  <rsandifo@redhat.com>
8917
8918         PR target/7618
8919         * config/mips/mips.c: Include cfglayout.h.
8920         (TARGET_ASM_OUTPUT_MI_THUNK, TARGET_ASM_CAN_OUTPUT_MI_THUNK): Define.
8921         (mips_unspec_offset_high): Add temporary register argument.
8922         (mips_load_call_address): New function, split out from...
8923         (mips_expand_call): ...here.
8924         (mips_output_cplocal): New function.
8925         (mips_output_function_prologue, mips_output_function_epilogue): Use it.
8926         (mips_emit_loadgp): New function, split out from...
8927         (mips_expand_prologue): ...here.
8928         (mips_output_mi_thunk): New function.
8929
8930 2004-01-17  Bernardo Innocenti  <bernie@develer.com>
8931
8932         * longlong.h (mc68020, __mc68030__, mc68030, __mc68040__, mc68040,
8933         mcpu32): Remove redundant checks for implied target predefines.
8934
8935 2004-1-17  Andrew Pinski  <pinskia@physics.uc.edu>
8936
8937         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
8938         Return type is unsigned int not int.
8939         * config/rs6000/rs6000-protos.h (rs6000_special_round_type_align):
8940         Likewise.
8941
8942 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
8943
8944         * doc/contrib.texi, doc/cppenv.texi, doc/extend.texi,
8945         doc/install.texi, doc/invoke.texi, doc/tm.texi: Consistently use
8946         "GNU/Linux" and "Microsoft Windows" terminology.
8947
8948 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
8949
8950         * doc/c-tree.texi, doc/compat.texi, doc/cpp.texi,
8951         doc/cppopts.texi, doc/extend.texi, doc/install.texi,
8952         doc/interface.texi, doc/invoke.texi, doc/libgcc.texi, doc/md.texi,
8953         doc/objc.texi, doc/rtl.texi, doc/tm.texi, doc/trouble.texi: Use
8954         @smallexample instead of @example.
8955
8956 2004-01-17  Ziemowit Laski  <zlaski@apple.com>
8957
8958         * objc/objc-act.c (build_objc_method_call): Use target
8959         hooks instead of macros to determine if ..._stret
8960         dispatchers should be used (NeXT runtime only).
8961
8962 2004-01-17  Roger Sayle  <roger@eyesopen.com>
8963
8964         * builtins.c (expand_builtin_expect_jump): Fix mistake in my
8965         last patch.  Use XEXP (x, 0) to get a LABEL_REF's CODE_LABEL.
8966
8967 2004-01-17  Daniel Jacobowitz  <drow@mvista.com>
8968
8969         * rtl.h (emit_insn_before_sameloc, emit_jump_insn_before_sameloc)
8970         (emit_call_insn_before_sameloc, emit_insn_after_sameloc)
8971         (emit_jump_insn_after_sameloc, emit_call_insn_after_sameloc): New
8972         macros.
8973         * reload1.c (emit_reload_insns): Use them.
8974         * emit-rtl.c (emit_insn_before_sameloc, emit_insn_after_sameloc)
8975         (emit_jump_insn_after_sameloc, emit_call_insn_after_sameloc): Check
8976         for NULL PATTERN.
8977
8978 2004-01-17  Daniel Jacobowitz  <drow@mvista.com>
8979
8980         * final.c (SEEN_BB, SEEN_NOTE, SEEN_EMITTED): Define.
8981         (final_scan_insn): Update to take an additional SEEN argument.  Emit
8982         a line note after the prologue.  Make static.
8983         (line_note_exists): Remove.
8984         (final): Don't initialize line_note_exists.  Update call to
8985         final_scan_insn.
8986         * output.h (final_scan_insn): Remove prologue.
8987         * function.c (set_insn_locators): Update comment.
8988         (thread_prologue_and_epilogue_insns): Add a comment.
8989
8990 2004-01-17  Andrew Pinski  <pinskia@physics.uc.edu>
8991
8992         PR target/10781
8993         * config/rs6000/rs6000-protos.h (rs6000_special_round_type_align):
8994         Prototype.
8995         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
8996         New function.
8997         * config/rs6000/linux64.h (ROUND_TYPE_ALIGN): Use it.
8998         * config/rs6000/aix.h (ROUND_TYPE_ALIGN): Likewise.
8999         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Likewise.
9000
9001 2004-01-17  Jan Hubicka  <jh@suse.cz>
9002
9003         * toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
9004         commit.
9005
9006         * toplev.c (HAVE_conditional_execution): Provide default.
9007         (rest_of_handle_reorder_blocks): For conditional_execution target
9008         update liveness once after all transformations
9009         (rest_of_compilation): Do crossjumping before ce3.
9010
9011 2004-01-17  Geoffrey Keating  <geoffk@apple.com>
9012
9013         * alias.c (new_alias_set): Mark last_alias_set for PCH.
9014         (get_varargs_alias_set): Rename 'set' to 'varargs_set' and mark it
9015         for PCH.
9016         (get_frame_alias_set): Likewise, except rename it to 'frame_set'.
9017         * config/rs6000/rs6000.c (rs6000_sr_alias_set): Mark for PCH.
9018         (get_TOC_alias_set): Mark 'set' for PCH.
9019
9020 2004-01-16  Geoffrey Keating  <geoffk@apple.com>
9021
9022         * cfgrtl.c (try_redirect_by_replacing_jump): Optimize tablejumps
9023         even after reload, just don't remove the actual jump tables.
9024
9025 2004-01-17  J. Brobecker  <brobecker@gnat.com>
9026
9027         * dwarf2out.c (is_subrange_type): Renamed from is_ada_subrange_type().
9028         Remove checks for is_ada() and TREE_UNSIGNED.
9029         (subrange_type_die): Emit a byte_size attribute if the subrange
9030         type size is different from the base type size.
9031         (modified_type_die): Replace call to is_ada_subrange_type() by
9032         call to is_subrange_type().
9033
9034 2004-01-16  Andrew Pinski  <pinskia@physics.uc.edu>
9035
9036         * config/sh/sh.c: Include ggc.h.
9037
9038 2004-01-16  Geoffrey Keating  <geoffk@apple.com>
9039
9040         * Makefile.in (MD5_H): New.
9041         (fold-const.o): Depend on md5.h.
9042         (dwarf2out.o): Likewise.
9043         (cppfiles.o): Likewise.
9044         * cppfiles.c: Include md5.h.
9045         (should_stack_file): Check against list read from PCH file.
9046         (struct pchf_data): New.
9047         (pchf): New variable.
9048         (struct pchf_adder_info): New.
9049         (pchf_adder): New.
9050         (pchf_save_compare): New.
9051         (_cpp_save_file_entries): New.
9052         (_cpp_read_file_entries): New.
9053         (struct pchf_compare_data): New.
9054         (pchf_compare): New.
9055         (check_file_against_entries): New.
9056         * cpphash.h (_cpp_save_file_entries): Prototype.
9057         (_cpp_read_file_entries): Prototype.
9058         * cpppch.c (cpp_write_pch_state): Write the list of headers.
9059         (cpp_read_state): Read the list of headers.
9060
9061 2004-01-17  Jan Hubicka  <jh@suse.cz>
9062
9063         * c-common.c (c_estimate_num_insns_1): Handle builtin_constant_p and
9064         builtin_expect specially.
9065         * params.def (PARAM_MAX_INLINE_INSNS_AUTO): Set to 100.
9066         (PARAM_LARGE_FUNCTION_INSNS): Set to 3000.
9067         * invoke.texi (max-inline-insns-single): Set to 100.
9068         (large-function-insns): Set to 3000.
9069
9070 2004-01-16  Eric Christopher  <echristo@redhat.com>
9071             Chandrakala Chavva <cchavva@redhat.com>
9072
9073         * cppcharset.c (one_iso88591_to_utf8): New function.
9074         (convert_iso88591_utf8): Ditto. Use.
9075         (conversion_tab): Use.
9076         (_cpp_input_to_utf8): New function.
9077         (_cpp_init_iconv_buffer): Ditto.
9078         (_cpp_close_iconv_buffer): Ditto.
9079         * cpphash.h: Prototype new functions.
9080         (cpp_buffer): Add input_cset_desc.
9081         * cppinit.c: Add input_charset default.
9082         * cpplib.c (cpp_push_buffer): Support init and
9083         close of iconv.
9084         * cpplib.h (cpp_options): Add input_charset.
9085
9086 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
9087
9088         * system.h (ASM_OUTPUT_SECTION_NAME): Poison.
9089         * config/alpha/unicosmk.h: Remove a commented-out definition
9090         of ASM_OUTPUT_SECTION_NAME.
9091         * config/stormy16/stormy16.h: Likewise.
9092
9093 2004-01-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9094
9095         * fixinc/inclhack.def (alpha___extern_prefix): Renamed to ...
9096         (alpha___extern_prefix_sys_stat): ... this.
9097         Apply to <sys/mount.h>, too.
9098         Tweak to match more variations.
9099         * fixinc/tests/base/sys/stat.h: Adapt for new hackname.
9100
9101         * fixinc/inclhack.def (alpha___extern_prefix,
9102         alpha___extern_prefix_standards): New hacks to obey
9103         __PRAGMA_EXTERN_PREFIX.
9104         * fixinc/tests/base/testing.h [ALPHA___EXTERN_PREFIX_CHECK]: New
9105         test.
9106         * fixinc/tests/base/standards.h: Likewise.
9107
9108         * fixincl/inclhack.def (alpha_pthread): Tweak to match more
9109         variations.
9110         New testcase.
9111         * fixinc/tests/base/pthread.h: Handle it.
9112
9113         * fixincl/inclhack.def (bad_lval): Sort file list.
9114         Add many missing files up to Tru64 UNIX V5.1B.
9115         * gcc/fixinc/tests/base/libgen.h: Renamed to ...
9116         * gcc/fixinc/tests/base/dirent.h: ... this to match new file list
9117         order.
9118
9119         * fixinc/fixincl.x: Regenerate.
9120
9121 2004-01-16  Mark Mitchell  <mark@codesourcery.com>
9122
9123         * version.c (version_string): Change to 3.5.0.
9124         * doc/include/gcc-common.texi (version-GCC): Likewise.
9125
9126 2004-01-16  Jan Hubicka  <jh@suse.cz>
9127
9128         * i386.md (load_tp_di): Fix pasto.
9129
9130         PR opt/13608
9131         * i386.c (ix86_compute_frame_layout): Fix for alloca on leaf function.
9132
9133         * c-pretty-print.c (pp_c_type_cast, pp_c_abstract_declarator,
9134         pp_c_character_constant, pp_c_floating_constant,
9135         pp_c_additive_expression, pp_c_shift_expression,
9136         pp_c_equality_expression, pp_c_and_expression,
9137         pp_c_exclusive_or_expression, pp_c_inclusive_or_expression,
9138         pp_c_logical_and_expression): Remove inline modifier.
9139         * dwarf2out.c (get_AT): Likewise.
9140         * et-forest.c (et_splay): Likewise.
9141         * ra.h (ra_alloc, ra_calloc): Likewise
9142
9143 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
9144
9145         * config/frv/frv-protos.h: Fix comment formatting.
9146         * config/frv/frv.c: Likewise.
9147         * config/frv/frv.h: Likewise.
9148         * config/frv/frv.md: Likewise.
9149         * config/frv/frvbegin.c: Likewise.
9150         * config/frv/frvend.c: Likewise.
9151
9152 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
9153
9154         * system.h (LINKER_DOES_NOT_WORK_WITH_DWARF2): Poison.
9155         * doc/tm.texi (PREFERRED_DEBUGGING_TYPE): Don't mention
9156         LINKER_DOES_NOT_WORK_WITH_DWARF2.
9157         (LINKER_DOES_NOT_WORK_WITH_DWARF2): Remove.
9158
9159 2004-01-16  J"orn Rennecke <joern.rennecke@superh.com>
9160
9161         PR 11864
9162         * postreload.c (reload_cse_simplify_operands): Don't remove
9163         implicit extension from LOAD_EXTEND_OP.
9164
9165 2004-01-16  Jan Hubicka  <jh@suse.cz>
9166
9167         PR opt/11350
9168         * cfgcleanup.c (try_optimize_cfg): Suppress tablejump removal
9169         after reload.
9170         * cfgrtl.c (rtl_can_merge_blocks, cfglayout_can_merge_blocks,
9171         rtl_try_redirect_by_replacing_branch): Likewise.
9172
9173 2004-01-15  Geoffrey Keating  <geoffk@apple.com>
9174
9175         PR pch/13689
9176         * alias.c (struct alias_set_entry): Mark for GC.
9177         (alias_sets): Make static, mark for GC.
9178         (record_alias_subset): Use GC to allocate alias structures.
9179         * varray.c (element): Make generic varrays GCed.
9180
9181         PR pch/13361
9182         * c-typeck.c (constructor_asmspec): Delete.
9183         (struct initializer_stack): Delete field 'asmspec'.
9184         (start_init): Delete saving of asmspec.
9185         (finish_init): Don't update constructor_asmspec.
9186         * dwarf2out.c (rtl_for_decl_location): Duplicate string from tree.
9187         * stmt.c (expand_asm): Duplicate strings from tree.
9188         (expand_asm_operands): Likewise.
9189         * tree.c (tree_size): Update computation of size of STRING_CST.
9190         (make_node): Don't make STRING_CST nodes.
9191         (build_string): Allocate string with tree node.
9192         * tree.def (STRING_CST): Update comment.
9193         * tree.h (TREE_STRING_POINTER): Adjust for change to STRING_CST.
9194         (tree_string): Place contents of string in tree node.
9195         * config/sh/sh.c (sh_handle_sp_switch_attribute): Duplicate string
9196         from tree.
9197
9198         * config/rs6000/rs6000.c (rs6000_va_arg): No need to special-case
9199         altivec operands.
9200
9201 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9202
9203         * c-common.h: Fix comment formatting.
9204         * c-cppbuiltin.c: Likewise.
9205         * c-pragma.c: Likewise.
9206         * calls.c: Likewise.
9207         * collect2.c: Likewise.
9208         * cppcharset.c: Likewise.
9209         * cpptrad.c: Likewise.
9210         * dbxout.c: Likewise.
9211         * defaults.h: Likewise.
9212         * dwarf2out.c: Likewise.
9213         * fold-const.c: Likewise.
9214         * genautomata.c: Likewise.
9215         * genconditions.c: Likewise.
9216         * genflags.c: Likewise.
9217         * gengtype.c: Likewise.
9218         * integrate.c: Likewise.
9219         * loop.c: Likewise.
9220         * predict.c: Likewise.
9221         * sdbout.c: Likewise.
9222
9223 2004-01-15  Zack Weinberg  <zack@codesourcery.com>
9224
9225         * config/ia64/ia64.md (*movti_internal): C output template
9226         extracted to ia64.c.
9227         (*movti_internal_reg): Delete.
9228         (reload_inti, reload_outti): Use the correct mode on operand 2
9229         in the first place, don't fix it up in the output template.
9230         (movtf, reload_ointf, reload_outtf): New expanders.
9231         (*movtf_internal): New define_insn_and_split.
9232         * config/ia64/ia64.c (ia64_split_timode): Rename to ia64_split_tmode;
9233         make static; do not hand TFmode CONST_DOUBLEs to split_double.
9234         (ia64_split_tmode_move): New function, body mostly pulled
9235         from ia64.md:*movti_internal.
9236         (ia64_function_arg_words): New function, extracted common
9237         logic from ia64_function_arg et seq.
9238         (ia64_function_arg_offset): Likewise.  Handle correctly the
9239         case of a scalar quantity 16 bytes wide with only 8-byte alignment.
9240         (ia64_function_arg, ia64_function_arg_partial_nregs)
9241         (ia64_function_arg_advance): Use ia64_function_arg_words and
9242         ia64_function_arg_offset.
9243         (ia64_function_value): TCmode does not go in float regs.
9244         (ia64_secondary_reload_class): Also handle TFmode.
9245         * config/ia64/ia64-protos.h: Remove prototype for
9246         ia64_split_timode; add prototype for ia64_split_tmode_move.
9247
9248 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
9249
9250         * Makefile.in (MAINT): Make it an immediate assignment.
9251
9252 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9253
9254         * config/m32r/m32r.md: Remove useless calls to gen_lowpart.
9255
9256 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9257
9258         * config/h8300/coff.h: Replace Hitachi with Renesas.
9259         * config/h8300/elf.h: Likewise.
9260         * config/h8300/h8300-protos.h: Likewise.
9261         * config/h8300/h8300.c: Likewise.
9262         * config/h8300/h8300.h: Likewise.
9263         * config/h8300/h8300.md: Likewise.
9264         * config/h8300/lib1funcs.asm: Likewise.
9265
9266 2004-01-15  Andrew Pinski  <apinski@apple.com>
9267
9268         * config/rs6000/rs6000.c (uses_TOC): Wrap #if TARGET_ELF
9269         around it.
9270
9271 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9272
9273         * config/h8300/h8300.c (h8300_return_in_memory): New.
9274         (TARGET_STRUCT_VALUE_RTX): Likewise.
9275         (TARGET_RETURN_IN_MEMORY): Likewise.
9276         * config/h8300/h8300.h (STRUCT_VALUE): Remove.
9277         (RETURN_IN_MEMORY): Likewise.
9278
9279 2004-01-15  Richard Earnshaw  <rearnsha@arm.com>
9280
9281         PR optimization/13375
9282         * gcse.c (handle_avail_expr): Just return if the source is not a
9283         single set.
9284
9285 2004-01-15  Richard Earnshaw  <rearnsha@arm.com>
9286             Daniel Jacobowitz  <drow@mvista.com>
9287
9288         * arm/lib1funcs.asm (ARM_FUNC_START): Correct interworking case.
9289         (EQUIV): Define.
9290         (ARM_FUNC_ALIAS): New macro.
9291         * arm/ieee754-df.S (gedf2, ledf2, nedf2, eqdf2): Use it.
9292         * arm/ieee754-sf.S (gesf2, lesf2, nesf2, eqsf2): Use it.
9293
9294 2004-01-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9295
9296         PR optimization/12372
9297         * calls.c (expand_call): Add call_fusage data for stack arguments in
9298         constant calls.
9299
9300 2004-01-15  Alan Modra  <amodra@bigpond.net.au>
9301
9302         * config/rs6000/rs6000.c (uses_TOC): Correct comment.  Make static.
9303         (rs6000_elf_declare_function_name): Formatting.
9304         * config/rs6000/rs6000-protos.h (uses_TOC): Remove declaration.
9305
9306 2004-01-15  Jan Hubicka  <jh@suse.cz>
9307
9308         PR bootstrap/13692
9309         * sched-deps.c (sched_analyze_1, sched_analyze_2): Fix thinko in
9310         previous patch.
9311
9312 2004-01-15  Richard Henderson  <rth@redhat.com>
9313
9314         * config/alpha/alpha.h (REG_ALLOC_ORDER): Reorder fp regs after
9315         integer regs of the same call-savedness.
9316
9317 2004-01-15  Andreas Schwab  <schwab@suse.de>
9318
9319         PR bootstrap/13562
9320         * config/m68k/m68k.c (output_move_const_into_data_reg): Clear cc
9321         status for NOTB/NOTW/NEGW methods.
9322
9323 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9324
9325         * doc/invoke.texi: Update dump file names.  Fix a typo.
9326
9327 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9328
9329         * builtins.c (expand_builtin_va_end): Don't use
9330         EXPAND_BUILTIN_VA_END.
9331         * system.h (EXPAND_BUILTIN_VA_END): Poison.
9332         * config/d30v/d30v.h: Remove a commented-out definition of
9333         EXPAND_BUILTIN_VA_END.
9334         * config/stormy16/stormy16.h: Likewise.
9335
9336 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
9337
9338         * system.h (STRUCT_VALUE_INCOMING_REGNUM): Poison.
9339         * targhooks.c (default_struct_value_rtx): Don't use
9340         STRUCT_VALUE_INCOMING_REGNUM.
9341
9342 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
9343
9344         PR bootstrap/12744
9345         * configure.in: Revamp enable-generated-files-in-srcdir rule to define
9346         GENINSRC and not parsedir.  Define srcextra as a langhook.
9347         * configure: Regenerate.
9348         * Makefile.in: Suppress default .l.c rule.  Don't substitute
9349         parsedir and delete all references throughout.  Conditionally define
9350         rule for srcextra dependent on GENINSRC.
9351         (stmp-docobjdir): Delete.
9352         (c-parse.o, gengtype-lex.o, gengtype-yacc.o): Use implicit build rule.
9353         (srcextra): Copy c-parse.y, c-parse.c, gengtype-lex.c, gengtype-yacc.c,
9354         and gengtype-yacc.h back to source directory.
9355         (maintainer-clean): Delete all parse files in source directory.
9356         (distclean): Delete generated files.
9357
9358         * objc/Make-lang.in (objc-parse.o): Use implicit build rule.
9359         (objc-parse.c, objc-parse.y): Don't use parsedir.
9360         (objc.srcextra): Copy objc-parse.y and objc-parse.c back to source
9361         directory if requested.
9362         (po-generated): Don't use parsedir.
9363         (objc.maintainer-clean): Delete above files from source directory.
9364
9365 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9366
9367         * doc/tm.texi (FUNCTION_VALUE): Fix a typo.
9368
9369 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9370
9371         * doc/tm.texi: Replace RETURN_IN_MEMORY with
9372         TARGET_RETURN_IN_MEMORY.
9373
9374 2004-01-15  Jan Hubicka  <jh@suse.cz>
9375
9376         * builtins.c (std_expand_builtin_va_arg): Align operand when needed.
9377         * i386.c (init_cumulative_args): Set warn_sse; fix handling of variadic
9378         functions accepting SSE arguments
9379         (function_arg): Warn only when asked to warn.
9380         * i386.h (ix86_args): Add warn_sse/warn_mmx fiels.
9381
9382 2004-01-14  Joseph S. Myers  <jsm@polyomino.org.uk>
9383
9384         * c-parse.in (stmts_and_decls): Make label at end of compound
9385         statement a hard error.
9386
9387 2004-01-14  Jan Hubicka  <jh@suse.cz>
9388
9389         * cgraph.c (create_edge): Use local.redefined_extern_inline.
9390         * cgraph.h (cgraph_local_info): Sort fields by size; add
9391         redefined_extern_inline
9392         (cgraph_global_info): Sort fields by size.
9393         (cgraph_node): Likewise.
9394         * cgraphunit.c (cgraph_finalize_function): Se
9395         local.redefined_extern_inline on redefinition.
9396         (cgraph_analyze_function): Use it; fix formating.
9397
9398 2004-01-14  Jan Hubicka  <jh@suse.cz>
9399
9400         PR c++/10776
9401         * sched-deps.c (trye_dependency_cache, anti_dependency_cache,
9402         outptu_dependency_cache, forward_dependency_cahe): Trun to vectors of
9403         bitmaps
9404         (cache_size): New variable
9405         (add_dependence): Update use; canonize early memory locations
9406         (sched_analyze_1): Likewise.
9407         (sched_analyze_2): Likewise.
9408         (init_dependency_caches): Initialize bitmaps.
9409         (free_dependency_caches): Free bitmaps
9410
9411 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9412
9413         * calls.c: Replace STRICT_ARGUMENT_NAMING in comments with
9414         targetm.calls.strict_argument_naming().
9415         * target.h: Likewise.
9416
9417 2004-01-14  Richard Henderson  <rth@redhat.com>
9418
9419         PR debug/13231
9420         * dwarf2out.c (dwarf2out_stack_adjust): Skip prologue and epilogue
9421         instructions.
9422
9423 2004-01-14  Richard Henderson  <rth@redhat.com>
9424
9425         PR c++/12491
9426         * except.c (struct eh_region): Add u.fixup.resolved.
9427         (resolve_one_fixup_region): Split out from ...
9428         (resolve_fixup_regions): ... here.
9429
9430 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9431
9432         * config/mn10300/mn10300.h (STRUCT_VALUE): Change to 0.
9433
9434 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9435
9436         * config/alpha/alpha.h (STRUCT_VALUE): Remove.
9437         * config/alpha/vms.h (STRUCT_VALUE_REGNUM): Remove #undef.
9438         (STRUCT_VALUE): Remove.
9439
9440 2004-01-14  Steven Bosscher  <stevenb@suse.de>
9441
9442         * system.h: Poison PROMOTED_MODE
9443         * integrate.c (expand_inline_function): Don't mention the
9444         PROMOTED_MODE.
9445         * loop.c (update_giv_derive): Same.
9446         * tree.h (DECL_RTL): Same.
9447
9448 2004-01-14  J"orn Rennecke <joern.rennecke@superh.com>
9449
9450         PR target/9365
9451         * sh.c (gen_block_redirect): Add special handling of RETURN.
9452         (gen_far_branch) Don't call gen_stuff_delay_slot if there is no
9453         far branch target (i.e. it's a return).
9454
9455 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9456
9457         * regrename.c (find_oldest_value_reg): Fix a warning.
9458
9459 2004-01-14  Richard Earnshaw  <rearnsha@arm.com>
9460
9461         PR bootstrap/12527
9462         * config.gcc (arm*-*-linux*): Don't include unknown-elf.h in tm_file.
9463         Move linux-gas.h and linux-elf.h before aout.h.
9464         * arm/arm.h (INITIALIZE_TRAMPOLINE): Only define if not already.
9465         * arm/linux-elf.h (SUBTARGET_CPU_DEFAULT): Define.
9466
9467 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
9468
9469         * config/m32r/m32r.md: Use GEN_INT instead of gen_rtx
9470         (CONST_INT, VOIDmode, ...).
9471
9472 2004-01-14  Richard Earnshaw  <rearnsha@arm.com>
9473
9474         * regrename.c (find_oldest_value_reg): If the replacement uses
9475         multiple hard registers, check that all of them are in CLASS.
9476
9477 2004-01-14  Jan Hubicka  <jh@suse.cz>
9478
9479         * alias.c (get_alias_set):  Initialize alias set to 0 when subset is
9480         impossible.
9481
9482 2004-01-14  Kelley Cook  <kcook@gcc.gnu.org>
9483
9484         * Makefile.in: Define MAINT from --enable-maintainer-mode.
9485
9486 2004-01-14  Hartmut Penner  <hpenner@de.ibm.com>
9487
9488         * gcc/config/rs6000/rs6000.c (rs6000_stack_info)
9489         Calculate always vrsave_mask if TARGET_ALTIVEC.
9490         (rs6000_emit_prologue): Emit code for vrsave
9491         only if TARGET_ALTIVEC_VRSAVE.
9492         (rs6000_emit_epilogue): Likewise.
9493
9494 2004-01-14  Eric Botcazou  <ebotcazou@libertysurf.fr>
9495
9496         * config/sparc/sparc.md (tie_add32): Fix pasto.
9497         (tie_add64): Likewise.
9498
9499 2004-01-14  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9500
9501         * config/i386/i386.md (*addqi_1_slp): Do not access operands[2].
9502
9503 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9504
9505         * config/iq2000/iq2000-protos.h: Fix comment formatting.
9506         * config/iq2000/iq2000.c: Likewise.
9507         * config/iq2000/iq2000.md: Likewise.
9508
9509 2004-01-14  J. Brobecker  <brobecker@gnat.com>
9510
9511         * dwarf2out.c (is_ada_subrange_type): No longer check the TYPE_NAME.
9512         (subrange_type_die): Add handle for nameless subrange types.
9513
9514 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9515
9516         * config/h8300/h8300-protos.h: Replace do_movsi with
9517         h8300_expand_movsi.
9518         * config/h8300/h8300.c (do_movsi): Change to
9519         h8300_expand_movsi.
9520         * config/h8300/h8300.md (movsi): Replace do_movsi with
9521         h8300_expand_movsi.
9522         (movsf): Likewise.
9523
9524 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9525
9526         * config/h8300/h8300.c (dosize): Change to
9527         h8300_emit_stack_adjustment.  Update callers.
9528
9529 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9530
9531         * config/h8300/h8300.md (movstrictqi): Add an alternative with
9532         the source being post_inc.  Tighten the predicate for the
9533         destination to register_operand.
9534         (movstricthi): Likewise.
9535
9536 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9537
9538         * system.h (SHARED_BSS_SECTION_ASM_OP): Poison.
9539         * varasm.c (bss_section): Don't use SHARED_BSS_SECTION_ASM_OP.
9540         * doc/tm.texi (SHARED_BSS_SECTION_ASM_OP): Remove.
9541
9542 2004-01-14  Jan Hubicka  <jh@suse.cz>
9543
9544         Partial fix PR c++/12850
9545         * cgraphunit.c (cgraph_finalize_function): Always ggc_collect when
9546         at zero nest level.
9547
9548 2004-01-13  Bernardo Innocenti  <bernie@develer.com>
9549
9550         * config/m68k/netbsd-elf.h (REGISTER_NAMES): Add missing "argptr"
9551         pseudo-register.
9552
9553 2004-01-13  Devang Patel <dpatel@apple.com
9554
9555         PR debug/7078
9556         * dbxout.c (dbxout_symbol_name): Emit mangled names for
9557         NAMESPACE_DECL memebers.
9558
9559 2004-01-13  Andrew Pinski  <pinskia@physics.uc.edu>
9560
9561         PR c++/12709
9562         * c-common.c (finish_fname_decls): Use the chain only if the
9563         tree is an expr_stmt.
9564
9565 2004-01-13  Vladimir Makarov  <vmakarov@redhat.com>
9566
9567         * rtl.def: Add comment about new option in automata_option.
9568
9569         * genautomata.c (PROGRESS_OPTION): New macro.
9570         (progress_flag): New global variable.
9571         (gen_automata_option): Process `progress'.
9572         (transform_insn_regexps, check_unit_distributions_to_automata,
9573         make_automaton, NDFA_to_DFA, build_automaton, create_automata,
9574         expand_automata, write_automata): Print about the progress only if
9575         progress_flag.  Remove fflush.
9576         (initiate_automaton_gen): Process command line flag `-progress'.
9577
9578         * doc/md.texi: Describe the new option.
9579
9580 2004-01-13  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
9581
9582         * cfg.c (dump_bb): Dump entry edges.
9583
9584 2004-01-13  Richard Earnshaw  <rearnsha@arm.com>
9585
9586         * arm.c (thumb_legitimate_address_p): Only allow constant pool
9587         references from SImode.
9588         * arm.md (thumb_movhi_insn): Don't allow minipool references.
9589
9590 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
9591
9592         * system.h (TEXT_SECTION): Poison.
9593         * varasm.c (text_section): Don't use TEXT_SECTION.
9594         * config/sh/sh.c (sh_file_start): Fix a comment typo.
9595         * doc/tm.texi (TEXT_SECTION): Remove.
9596
9597 2004-01-13  Ben Elliston  <bje@wasabisystems.com>
9598
9599         * doc/rtl.texi (Vector Operations): Remove defunct vec_const item.
9600
9601 2004-01-12  James E Wilson  <wilson@specifixinc.com>
9602
9603         * unwind-libunwind.c: Delete.
9604
9605 2004-01-12  Zack Weinberg  <zack@codesourcery.com>
9606
9607         PR 13656
9608         * c-decl.c (diagnose_mismatched_decls): Whenever newtype or
9609         oldtype is set, set *newtypep or *oldtypep too.  Do not set
9610         them at the very end.
9611         (validate_proto_after_old_defn): Restructure for comprehensibility;
9612         make error messages clearer.
9613
9614 2004-01-12  Zack Weinberg  <zack@codesourcery.com>
9615
9616         * varray.h (VARRAY_POP): Add checking variant, aborts on underflow.
9617         (VARRAY_TOP): Use VARRAY_CHECK so the access is bounds-checked.
9618         * varray.c: No need to prototype error.
9619         (varray_check_failed): Wrap long string onto two lines.
9620         (varray_underflow): New function.
9621
9622 2004-01-13  Steven Bosscher  <stevenb@suse.de>
9623
9624         PR c++/13376
9625         * function.h (struct function): Kill `name' field.
9626         (current_function_name): Make it an extern function.
9627         * function.c (current_function_name): New function.
9628         * graph.c: Update all uses of current_function_name.
9629         * gcse.c: Likewise.
9630         * config/alpha/alpha.c, config/avr/avr.c, config/c4x/c4x.c,
9631         config/mips/mips.c, config/pdp11/pdp11.c: Likewise.
9632         * config/ip2k/ip2k.c (function_prologue): Use MAIN_NAME_P
9633         instead of a strcmp with "main".
9634
9635 2004-01-13  Jan Hubicka  <jh@suse.cz>
9636
9637         * c-decl.c (diagnose_mismatched_decls):  Fix warning calls.
9638
9639         * cgraphunit.c (cgraph_optimize_function):  Always do
9640         optimize_inline_calls when there is always_inline callee.
9641         (cgraph_decide_inlining): Fix formating.
9642         * tree-inline.c (inlinable_function_p): Do sorry for alwaysinline
9643         functions.
9644         (expand_call_inline): Likewise.
9645         * toplev.h (sorry): Fix prototype.
9646
9647 2004-01-12  Roger Sayle  <roger@eyesopen.com>
9648
9649         * builtins.c (expand_builtin_expect_jump): Simplify logic. Handle
9650         conditional jumps that drop through to unconditional jumps or the
9651         end of the sequence.
9652
9653 2004-01-13  Jan Hubicka  <jh@suse.cz>
9654
9655         * alias.c (new_alias_set): Construct the alias_set varray.
9656         (init_alias_once): Don't do it here.
9657
9658 2004-01-12  Marc Espie <espie@openbsd.org>
9659
9660         * system.h: handle YYBYACC like YYBISON.
9661
9662 2004-01-12  Jonathan Merriman <jonm@dualitymedia.com>
9663
9664         PR target/10847
9665         * config.gcc: No longer includes conflicting header sparc/sol2.h when
9666         building on sparc64-*-openbsd*.
9667
9668 2004-01-12  Andrew Pinski  <pinskia@physics.uc.edu>
9669
9670         PR debug/13539
9671         * dbxout.c (dbxout_type): Protected inheritance is not
9672         private but protected.
9673
9674 2004-01-12  Richard Sandiford  <rsandifo@redhat.com>
9675
9676         * config/mips/mips.c (mips_symbolic_constant_p): Revert last patch.
9677
9678 2004-01-12  Kazu Hirata  <kazu@cs.umass.edu>
9679
9680         PR optimization/12508.
9681         * combine.c (try_combine): Remove a dead set in a parallel
9682         even if its destination is a subreg.
9683
9684         Revert:
9685         2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
9686         * combine.c (simplify_set): Don't move a subreg in SET_SRC to
9687         SET_DEST if WORD_REGISTER_OPERATIONS is not defined.
9688
9689 2004-01-12  Geoffrey Keating  <geoffk@apple.com>
9690
9691         * real.c: Update copyright date.
9692         * emit-rtl.c: Likewise.
9693         * rtl.h: Likewise.
9694         * dwarf2out.c: Likewise.
9695         * config/rs6000/darwin-ldouble.c: Likewise.
9696         * config/rs6000/rs6000.md: Likewise.
9697
9698 2004-01-12  David Edelsohn  <edelsohn@gnu.org>
9699
9700         * config/rs6000/rs6000.c (rs6000_init_libfuncs): Add AIX
9701         TFmode to SImode libfuncs.
9702
9703 2004-01-12  Roger Sayle  <roger@eyesopen.com>
9704
9705         PR middle-end/11397
9706         * varasm.c (assemble_alias): Remove weak aliases from weak_decls.
9707
9708 2004-01-12  Jan Hubicka  <jh@suse.cz>
9709
9710         PR opt/12826
9711         * loop.c (insert_loop_mem): Preffer VOLATILE memory references to be
9712         stored.
9713
9714         PR opt/12863
9715         * cfgcleanup.c (label_is_jump_target_p): Move to...
9716         * rtlanal.c (label_is_jump_target_p): ... here.
9717         * cfgrtl.c (cfg_layout_redirect_edge_and_branch):  Fix redirecting of fallthru
9718         edges unified with branch edges.
9719
9720 2004-01-12  Richard Earnshaw  <rearnsha@arm.com>
9721
9722         * simplify-rtx.c (simplify_immed_subreg): Correctly extract the
9723         high word of an integral CONST_DOUBLE.
9724
9725 2004-01-12  Paul Brook  <paul@codesourcery.com>
9726
9727         * simplify-rtx.c (simplify_plus_minus): Always generate canonical form.
9728
9729 2004-01-12  J"orn Rennecke <joern.rennecke@superh.com>
9730
9731         PR target/13585
9732         * sh-protos.h (check_use_sfunc_addr): Declare.
9733         * sh.c (extract_sfunc_addr, check_use_sfunc_addr): New functions.
9734         * sh.md (use_sfunc_addr): Use check_use_sfunc_addr in insn predicate.
9735
9736 2004-01-12  Jan Hubicka  <jh@suse.cz>
9737
9738         * alias.c:  Invlude varray.h
9739         (alias_sets): Turn into varray.
9740         (get_alias_set_entry): Use VARRAY; mark inline.
9741         (mems_in_disjoint_alias_sets_p): Mark inline.
9742         (record_alias_subset): Use varray.
9743         (init_alias_once): Initialize varray.
9744         (new_alias_set): Grow array.
9745         * varray.c: Make VARRAY_GENERIC_PTR non GTYized.
9746
9747 2004-01-12  Jan Hubicka  <jh@suse.cz>
9748
9749         Partial fix for PR opt/10776 II
9750         * cselib.c: Include params.h
9751         (cselib_invalidate_mem):  Limit amount of nonconflicting memory
9752         locations.
9753         * params.def (PARAM_MAX_CSELIB_MEMORY_LOCATIONS): New.
9754         * Makefile.in (cselib.o): Depend on params.h
9755
9756 2004-01-12  Richard Sandiford  <rsandifo@redhat.com>
9757
9758         * combine.c (combine_simplify_rtx): Don't pass VOIDmode to
9759         simplify_unary_operation if the operand has a known mode.
9760
9761 2004-01-12  Hartmut Penner  <hpenner@de.ibm.com>
9762
9763         PR target/13534
9764         * gcc/config/rs6000/rs6000.c (word_offset_memref_operand): New
9765         predicate to handle 'ld' conform addresses.
9766         * gcc/config/rs6000/rs6000.h (EXTRA_CONSTRAINT): New 'Y'
9767         contraint.
9768         (EXTRA_MEMORY_CONSTRAINT): Tell reload which constraint
9769         are memory contraints.
9770         * gcc/config/rs6000/rs6000-protos.h (word_offset_memref_operand):
9771         New prototype.
9772         * gcc/config/rs6000/rs6000.md (*movdf_hardfloat64):
9773         Change 'o' to 'Y' constraint.
9774         (*movdf_softfloat64): Ditto.
9775
9776 2004-01-12  Bernardo Innocenti  <bernie@develer.com>
9777
9778         * gcc/config/m68k/m68k.md: Switch from the "*..." syntax to the
9779         brace-enclosed syntax in all C output statements.
9780
9781 2004-01-12  David Edelsohn  <edelsohn@gnu.org>
9782
9783         PR target/13401
9784         * config/rs6000/rs6000.c (rs6000_output_function_epilogue):
9785         Objective-C language type value is 14.
9786
9787 2004-01-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
9788
9789         PR c/12148
9790         * config/m68k/fpgnulib.c: Fix `-mshort' bugs: Use `long' instead of
9791         `int' in a number of places to make sure we always have a SImode
9792         and not a HImode.  Add a 'L' suffix to a number of constants.
9793
9794 2004-01-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9795
9796         * pa.c: Don't include obstack.h.
9797
9798         * pa.md: Correct constraint in pattern for loading PIC label address.
9799
9800 2004-01-11  Kaz Kojima  <kkojima@gcc.gnu.org>
9801
9802         * config/sh/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): Undefine
9803          before defining.
9804
9805 2004-01-11  Steven Bosscher  <stevenb@suse.de>
9806
9807         PR fortran/9972
9808         * toplev.c (rest_of_handle_inline): Also consider functions
9809         for deferral if the language is GNU F77.
9810
9811 2004-01-11  Zack Weinberg  <zack@codesourcery.com>
9812
9813         * c-decl.c (diagnose_arglist_conflict): Add missing space to
9814         diagnostic messages.
9815
9816 2004-01-11  Jakub Jelinek  <jakub@redhat.com>
9817
9818         PR middle-end/13392
9819         * builtins.c (expand_builtin_expect_jump): Handle conditional jumps
9820         to drop through label.  Don't fall back to SCC even when conditional
9821         jump has not been found.
9822
9823 2004-01-11  Jan Hubicka  <jh@suse.cz>
9824
9825         * invoke.texi: Fix syntax error in previous patch.
9826
9827         Partial fix for PR opt/10776
9828         * Makefile.in (reload.o): Include param.h
9829         * params.def (PARAM_MAX_RELOAD_SEARCH_INSNS): New parameter.
9830         * reload.c: Include params.h.
9831         (find_equiv_reg): Work limiting check.
9832         * invoke.texi: Document.
9833
9834 2004-01-11  Richard Sandiford  <rsandifo@redhat.com>
9835
9836         * config/mips/mips.c (mips_symbolic_constant_p): Don't allow
9837         out-of-bounds accesses to string constants.  Simplify mips16
9838         case accordingly.
9839
9840 2004-01-11  Richard Sandiford  <rsandifo@redhat.com>
9841
9842         PR optimization/13469
9843         * toplev.c (rest_of_compilation): Call purge_all_dead_edges after
9844         reload_cse_regs (-fnon-call-exceptions only).
9845
9846 2004-01-11  Kazu Hirata  <kazu@cs.umass.edu>
9847
9848         * config/mcore/lib1.asm: Fix comment formatting.
9849         * config/mcore/mcore-elf.h: Likewise.
9850         * config/mcore/mcore.c: Likewise.
9851         * config/mcore/mcore.h: Likewise.
9852         * config/mcore/mcore.md: Likewise.
9853
9854 2004-01-10  Zack Weinberg  <zack@codesourcery.com>
9855
9856         * c-decl.c (duplicate_decls): Break apart into...
9857         (diagnose_arglist_conflict, validate_proto_after_old_defn)
9858         (locate_old_defn, diagnose_mismatched_decls, merge_decls):
9859         ... these new functions.  Restructure for comprehensibility.
9860         Remove various archaic special cases.  Always report the
9861         location of the previous declaration when a diagnostic is issued.
9862         (redeclaration_error_message): Fold into diagnose_mismatched_decls.
9863         (match_builtin_function_types): Delete unnecessary forward declaration.
9864
9865 2004-01-10  Zack Weinberg  <zack@codesourcery.com>
9866
9867         * genautomata.c (make_automaton, NDFA_to_DFA):
9868         Print progress bars with '.' characters instead of '*'.
9869         (build_automaton): Change notes to match.
9870
9871 2004-01-10  Kazu Hirata  <kazu@cs.umass.edu>
9872
9873         * config/m32r/m32r.md: Use define_constants for unspec and
9874         unspec_volatile.
9875
9876 2004-01-10  Jan Hubicka  <jh@suse.cz>
9877
9878         PR opt/11635
9879         * expr.c (expand_expr_real):  More curefully expand union casts.
9880
9881 2004-01-10  Kazu Hirata  <kazu@cs.umass.edu>
9882
9883         * config/m32r/m32r.md (flush_icache): Use 1 for
9884         unspec_volatile.
9885
9886 2004-01-10  David Edelsohn  <edelsohn@gnu.org>
9887             James E Wilson  <wilson@specifixinc.com>
9888
9889         PR debug/12860
9890         * dbxout.c (dbxout_symbol): Remove initialization of
9891         current_sym_code, current_sym_value, and current_sym_addr.
9892         (dbxout_symbol_location): Same.
9893         (dbxout_prepare_symbol): Zero current_sym_code,
9894         current_sym_value, and current_sym_addr.
9895
9896 2004-01-10  Richard Sandiford  <rsandifo@redhat.com>
9897
9898         * tree.c (get_unwidened): Reorder conditions so that the null pointer
9899         check is done first.
9900
9901 2004-01-09  Eric Christopher  <echristo@redhat.com>
9902
9903         * toplev.c (rest_of_handle_cfg): Add reg_scan pass
9904         if we're running mark_constant_function.
9905
9906 2004-01-09  Jeff Bailey  <jbailey@nisa.net>
9907
9908         PR target/12561
9909         * config/t-gnu: Rename SYSTEM_HEADER_DIR to NATIVE_SYSTEM_HEADER_DIR.
9910
9911 2004-01-09  Andrew Pinski <pinskia@physics.uc.edu>
9912
9913         PR debug/11231
9914         * dbxout.c (dbxout_type_fields): Return if any item is
9915         error_mark_node or the type is error_mark_node.
9916
9917 2004-01-09  Geoffrey Keating  <geoffk@apple.com>
9918
9919         * config/rs6000/darwin-ldouble.c: Add big comment explaining
9920         exactly what is expected as a 'long double'.
9921         (_xlqadd): When a value to be returned is representable as a
9922         'double', just return it directly, do not construct it using a union.
9923         Also, correct final fixup.
9924         (_xlqmul): Likewise.
9925         (_xlqdiv): Likewise.
9926         * real.c (encode_ibm_extended): Make consistent with darwin-ldouble.c.
9927
9928         * config/rs6000/rs6000.md (fix_trunctfdi2): Delete.
9929
9930 2004-01-09  Richard Henderson  <rth@redhat.com>
9931
9932         * recog.c (constrain_operands): Validate mem operands.
9933
9934 2004-01-09   James E Wilson  <wilson@specifixinc.com>
9935
9936         * gcc.c (init_spec): Remove -lunwind from shared case.
9937         * conifg/ia64/t-hpux (SHLIB_LINK): Add -lunwind.
9938
9939 2004-01-09  Steve Ellcey  <sje@cup.hp.com>
9940
9941         * configure.ac: (gcc_cv_ld_hidden) Set to true for ia64*-*-hpux*.
9942         * configure: Regenerate
9943
9944 2004-01-09  Joseph S. Myers  <jsm@polyomino.org.uk>
9945
9946         PR c/11234
9947         * c-typeck.c (build_c_cast): If pedantic, warn for conversions
9948         between function and object pointers.
9949         (digest_init): When comparing a pointer to function type to the
9950         target type, only apply TREE_TYPE once to the pointer to function
9951         type.
9952         * except.c (for_each_eh_label_1): Treat data as a pointer to a
9953         function pointer rather than casting it to a function pointer.
9954         (for_each_eh_label): Update caller.
9955         * recog.h (struct insn_data): Use a struct or union for output.
9956         * genoutput.c (output_insn_data): Update.
9957         * final.c (get_insn_template): Update.
9958
9959 2004-01-09  Mark Mitchell  <mark@codesourcery.com>
9960
9961         * expr.h (expand_expr): Make it a macro, not a function.
9962         (expand_expr_real): New function.
9963         * expr.c (store_expr): Adjust logic for deciding whether or not to
9964         copy the value returned by expand_expr.
9965         (expand_expr): Rename to ...
9966         (expand_expr_real): ... this.  Add alt_rtl parameter.  Adjust
9967         calls to language hooks.
9968         * c-common.h (c_expand_expr): Adjust prototype.
9969         * c-common.c (c_expand_expr): Add alt_rtl parameter.
9970         * langhooks-def.h (lhd_expand_expr): Change prototype.
9971         * langhooks.c (lhd_expand_expr): Add all_rtl parameter.
9972         * langhooks.h (lang_hooks): Change type of expand_expr.
9973         * stmt.c (stmt_status): Add x_last_expr_alt_rtl.
9974         (last_expr_alt_rtl): Likewise.
9975         (expand_expr_stmt_value): Set last_expr_alt_rtl.
9976         (clear_last_expr): Clear it.
9977         (expand_end_stmt_expr): Set RTL_EXPR_ATL_RTL.
9978         (expand_end_bindings): Save and restor last_expr_alt_rtl.
9979         * tree.def (RTL_EXPR): Give it an additional operand.
9980         * tree.h (RTL_EXPR_ALT_RTL): New macro.
9981
9982 2004-01-09  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
9983
9984         * config/m32r/m32r.h (TARGET_CPU_CPP_BUILTINS): Add __m32r__.
9985         * config/m32r/m32r.c (call26_operand): Allow in PIC mode.
9986
9987 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
9988
9989         PR target/13380.
9990         * config/m32r/m32r.md: Replace (reg:SI 17) with (reg:CC 17)
9991         or (ne:SI (reg:CC 17) (const_int 0)).
9992         Be specific about modes wherever possible.
9993
9994 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
9995
9996         * config/m32r/m32r.c (m32r_expand_block_move): Call
9997         gen_movestrsi_internal with two more arguments.
9998         (m32r_output_block_move): Adjust operand numbers.
9999         Properly update the source and destination pointers.
10000         * config/m32r/m32r.md (movstrsi_internal): Use 'r' instead of
10001         'r+'.  Change the set detinations to match_operand.
10002
10003 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
10004
10005         * final.c (FIRST_INSN_ADDRESS): Remove.
10006         (shorten_branches): Don't use FIRST_INSN_ADDRESS.
10007         * system.h (FIRST_INSN_ADDRESS): Poison.
10008         * config/avr/avr.h: Remove a comment about FIRST_INSN_ADDRESS.
10009         * config/m32r/m32r-protos.h: Remove the prototype for
10010         m32r_first_insn_address.
10011         * config/m32r/m32r.c (m32r_first_insn_address): Remove.
10012         * config/m32r/m32r.h (FIRST_INSN_ADDRESS): Likewise.
10013         * doc/md.texi (FIRST_INSN_ADDRESS): Likewise.
10014
10015 2004-01-09  J. Brobecker  <brobecker@gnat.com>
10016
10017         * dwarf2out.c (gen_enumeration_type_die): Return the DIE that
10018         we just created.
10019         (is_ada_subrange_type): DIEs for enumeration subtypes should be
10020         emitted as subrange types too.
10021         (subrange_type_die): Add handling of enumeration subtypes.
10022
10023 2004-01-08  Richard Henderson  <rth@redhat.com>
10024
10025         PR opt/12441
10026         Revert: Sat Mar 30 14:08:55 CET 2002  Jan Hubicka  <jh@suse.cz>
10027         * i386.c (aligned_operand): Be prepared for SUBREGed registers.
10028         (ix86_decompose_address): Use REG_P instead of GET_CODE (...) == REG.
10029         (ix86_address_cost): Be prepared for SUBREGed registers.
10030         (legitimate_address_p): Accept SUBREGed registers.
10031
10032 2004-01-08  Kelley Cook  <kcook@gcc.gnu.org>
10033
10034         * Makefile.in: Rename configure.in to configure.ac
10035         * doc/sourcebuild.texi: Likewise.
10036         * configure: Regenerate.
10037         * config.in: Regenerate.
10038
10039 2004-01-08  Stuart Hastings  <stuart@apple.com>
10040
10041         * config/i386/i386.md: Typos in MMX/SSE immediate shifts.
10042
10043 2004-01-08  Jan Hubicka  <jh@suse.cz>
10044
10045         * cgraphunit.c (cgraph_decide_inlining):  Fix typo.
10046
10047 2004-01-08  Geoffrey Keating  <geoffk@apple.com>
10048
10049         * config/rs6000/rs6000.md (cmptf_internal1): Correct branch offset.
10050         (UNSPEC_FIX_TRUNC_TF): New constant.
10051         (movtf_internal): Make splitter active only when insn is active.
10052         (extenddftf2): Rewrite to properly load zero into low part.
10053         (extenddftf2_internal): New.
10054         (extendsftf2): Rewrite.
10055         (truncdftf2): Correct length.
10056         (floatditf2): Delete.
10057         (fix_trunc_helper): New.
10058         (fix_trunctfdi2): Use fix_trunc_helper.
10059         (fix_trunctfsi2): Likewise.fix_trunc
10060         (fix_trunctfsi2_internal): New.
10061
10062         * config/rs6000/rs6000.c (legitimate_lo_sum_address_p): lo_sum
10063         addresses are legitimate on Darwin even when flag_pic.
10064         (rs6000_legitimize_reload_address) [TARGET_MACHO]: Don't create
10065         non-offsettable addresses for loads of TFmode constants.
10066
10067 2004-01-08  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
10068
10069         * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Actually emit
10070         variables in the appropriate bss section.
10071
10072 2004-01-09  Alan Modra  <amodra@bigpond.net.au>
10073
10074         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Ensure
10075         target_flags has MASK_POWERPC64 when -m64.
10076         * config/rs6000/rs6000.c (processor_target_table): Add MASK_POWERPC64
10077         to 620, 630, power3, power4 and rs64a entries.
10078         * config/rs6000/rs6000.h (MASK_64BIT): Expand comment.
10079
10080 2004-01-08  Richard Sandiford  <rsandifo@redhat.com>
10081
10082         * simplify-rtx.c (simplify_immed_subreg): Fix construction of
10083         floating-point constants.
10084
10085 2004-01-08  J. Brobecker  <brobecker@gnat.com>
10086
10087         * dwarf2out.c (subrange_type_die): Add context_die parameter.
10088         Create the subrange_type DIE using the given context DIE.
10089         (modified_type_die): Update call to subrange_type_die.
10090
10091 2004-01-08  Zack Weinberg  <zack@codesourcery.com>
10092
10093         * dwarf2.h, unwind-dw2-fde.h, unwind-pe.h, unwind.h:
10094         Add multiple-include guard.
10095
10096 2004-01-08  Hartmut Penner  <hpenner@de.ibm.com>
10097
10098         * gcc/config/rs6000/rs6000.c (easy_vector_constant): Accept
10099         all vector constant loadable by vsplt*.
10100         (output_vec_const_move): Likewise.
10101
10102 2004-01-07  Joseph S. Myers  <jsm@polyomino.org.uk>
10103
10104         PR c/6024
10105         * c-typeck.c (comptypes): Only treat enumerated types in the same
10106         translation unit as compatible with each other when they are the
10107         same type.
10108         * doc/extend.texi: Update.
10109
10110 2004-01-07  Joseph S. Myers  <jsm@polyomino.org.uk>
10111
10112         PR c/12165
10113         * c-decl.c (grokdeclarator): Take type qualifiers of typedefed
10114         array type from the array element type.
10115
10116 2004-01-07  Alan Modra  <amodra@bigpond.net.au>
10117
10118         * config/rs6000/rs6000.c (rs6000_dbx_register_number): New function.
10119         * config/rs6000/rs6000-protos.h (rs6000_dbx_register_number): Declare.
10120         * config/rs6000/rs6000.h (DWARF_FRAME_REGNUM): Define.
10121         (DWARF_REG_TO_UNWIND_COLUMN): Correct column adjustment and comment.
10122         * config/rs6000/sysv4.h (DBX_REGISTER_NUMBER): Define.
10123
10124 2004-01-06  Eric Christopher  <echristo@redhat.com>
10125
10126         * config/mips/mips.h (MDEBUG_ASM_SPEC): Change for dwarf2 default.
10127         (DWARF2_DEBUGGING_INFO): Define.
10128         (PREFERRED_DEBUGGING_TYPE): Set to dwarf2.
10129         * config/mips/openbsd.h (PREFERRED_DEBUGGING_TYPE): Remove.
10130         * config/mips/iris6.h (SUBTARGET_ASM_DEBUGGING_SPEC): Only pass -g0
10131         for irix as.
10132         (SUBTARGET_ASM_OPTIMIZING_SPEC): Only pass O0 for irix as.
10133         * config/mips/iris6gas.h (MDEBUG_ASM_SPEC): Remove.
10134         * config/mips/iris5gas.h: Ditto.
10135         (DBX_DEBUGGING_INFO): Remove.
10136         (DWARF2_DEBUGGING_INFO): Ditto.
10137         (MIPS_DEBUGGING_INFO): Ditto.
10138         (PREFERRED_DEBUGGING_TYPE): Ditto.
10139         * config/mips/elf.h (DWARF2_DEBUGGING_INFO): Remove.
10140         (PREFERRED_DEBUGGING_TYPE): Ditto.
10141         (SUBTARGET_ASM_DEBUGGING_SPEC): Ditto.
10142         * config/mips/elf64.h: Ditto.
10143
10144 2004-01-06  Jan Hubicka  <jh@suse.cz>
10145
10146         * Makefile.in (STAGEPROFILE_FLAGS_TO_PASS): Use -fprofile-generate.
10147         (STAGEFEEDBACK_FLAGS_TO_PASS): Use -fprofile-use.
10148
10149 2004-01-06  Geoffrey Keating  <geoffk@apple.com>
10150
10151         * config/rs6000/t-darwin (LIB2FUNCS_EXTRA): Compile darwin-ldouble.c.
10152         (TARGET_LIBGCC2_CFLAGS): Use -mlong-double-128.
10153         * config/rs6000/darwin-ldouble.c: New.
10154
10155         * emit-rtl.c (gen_lowpart_common): Use simplify_gen_subreg
10156         for constants.
10157         (constant_subword): Delete.
10158         * rtl.h (constant_subword): Delete prototype.
10159         (immed_double_const): Is not in varasm.c.
10160         * simplify-rtx.c (simplify_immed_subreg): New.
10161         (simplify_subreg): Use simplify_immed_subreg.
10162
10163         * config/rs6000/rs6000.md (floatsitf2): Use expand_float rather
10164         than trying to generate RTL directly.
10165         (fix_trunctfsi2): Use expand_fix rather than trying to generate
10166         RTL directly.
10167
10168         * dwarf2out.c (add_const_value_attribute): Remove incorrect comment.
10169
10170 2004-01-06  David Edelsohn  <edelsohn@gnu.org>
10171
10172         * config/rs6000/xcoff.h (EXTRA_SECTION_FUNCTIONS): Split each
10173         function into a separate macro.
10174         (read_only_data_section): Add void argument.
10175         (private_data_section): Same.
10176         (read_only_private_data_section): Same.
10177         (toc_section): Same.
10178
10179 2004-01-06  Jan Hubicka  <jh@suse.cz>
10180
10181         * invoke.texi:  Remove typo in last change.
10182
10183         PR target/10301
10184         * config.gcc: Accept opteron and athlon-64 as variants
10185         of k8.
10186         * i386.c (override_options): Likewise.
10187         * invoke.texi (i386 -mtune): Expand documentation.
10188
10189 2004-01-06  Kazu Hirata  <kazu@cs.umass.edu>
10190
10191         * alias.c: Fix comment typos.
10192         * builtins.c: Likewise.
10193         * cfg.c: Likewise.
10194         * df.c: Likewise.
10195         * dominance.c: Likewise.
10196         * dwarf2out.c: Likewise.
10197         * emit-rtl.c: Likewise.
10198         * expr.c: Likewise.
10199         * final.c: Likewise.
10200         * fold-const.c: Likewise.
10201         * gcse.c: Likewise.
10202         * genattrtab.c: Likewise.
10203         * genrecog.c: Likewise.
10204         * gensupport.c: Likewise.
10205         * ggc-zone.c: Likewise.
10206         * integrate.c: Likewise.
10207         * local-alloc.c: Likewise.
10208         * loop.c: Likewise.
10209         * recog.c: Likewise.
10210         * regmove.c: Likewise.
10211         * reg-stack.c: Likewise.
10212         * reorg.c: Likewise.
10213         * rtlanal.c: Likewise.
10214         * rtl.h: Likewise.
10215         * sched-ebb.c: Likewise.
10216         * simplify-rtx.c: Likewise.
10217         * toplev.c: Likewise.
10218         * varasm.c: Likewise.
10219
10220 2004-01-06  Kazu Hirata  <kazu@cs.umass.edu>
10221
10222         * doc/install.texi: Fix typos.
10223         * doc/invoke.texi: Likewise.
10224         * doc/md.texi: Likewise.
10225
10226 2004-01-06  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
10227
10228         * config/m32r/m32r.h (TRAMPOLINE_LINE_SIZE): Changed
10229
10230 2004-01-06  Jan Hubicka  <jh@suse.cz>
10231
10232         * i386.c (init_cumulative_args):  Add handling of MMX_REGPARM.
10233         (function_arg_advance):  Do not pass aggregates in SSE; deal handling
10234         of MMX_REGPARM.
10235         (function_arg): Add new warnings about ABI changes;  fix SSE_REGPARM;
10236         add MMX_REGPARM.
10237         * i386.h (ix86_args): Add mmx_words/mmx_regs/mmx_regno fields.
10238         (SSE_REGPARM_MAX): Default to 3 on i386 -msse ABI.
10239         (MMX_REGPARM_MAX): Similarly for -mmmx.
10240
10241 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10242
10243         * config/sh/linux.h: Fix comment formatting.
10244         * config/sh/netbsd-elf.h: Likewise.
10245         * config/sh/sh.c: Likewise.
10246         * config/sh/sh.h: Likewise.
10247         * config/sh/vxworks.h: Likewise.
10248
10249 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10250
10251         * system.h (ASM_OUTPUT_MAIN_SOURCE_FILENAME): Poison.
10252         * toplev.c (output_file_directive): Don't use
10253         ASM_OUTPUT_MAIN_SOURCE_FILENAME.
10254
10255 2004-01-05  Steven Bosscher <s.bosscher@student.tudelft.nl>
10256
10257         * toplev.c: Fix broken checkin of 2003-12-30.
10258
10259 2004-01-05  Daniel Berlin  <dberlin@dberlin.org>
10260
10261         * ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS
10262         (USING_MMAP): We don't support non-mmap.
10263         (struct alloc_chunk): Steal 1 bit from typecode, use it to mark
10264         large objects.
10265         (struct page_entry): Remove bytes_free.
10266         (struct page_table_chain): Remove.
10267         (struct globals): Remove page_table member.
10268         (loookup_page_table_entry): Function deleted.
10269         (set_page_table_entry): Ditto.
10270         (ggc_allocated_p): No longer need page table lookups.
10271         (ggc_marked_p): Ditto.
10272         (alloc_small_page): Don't care about bytes_free anymore.
10273         (alloc_large_page): Round up size.
10274         (ggc_alloc_zone_1): Mark large objects as such, and calculate
10275         their size the new way.
10276         Remove page table lookups and setting.
10277         (ggc_get_size): Calculate large object size the new way.
10278         (sweep_pages): Redo to account for fact that we no longer have
10279         bytes_free.
10280         (ggc_collect): No longer need to reincrement bytes_free.
10281         (ggc_pch_alloc_object): Handle new large objects properly.
10282         (ggc_pch_read): Put PCH stuff into it's own uncollected zone.
10283
10284 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10285
10286         * doc/invoke.texi: Remove a page break.
10287
10288 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10289
10290         * config/avr/avr.c (avr_output_function_prologue): Remove an
10291         extra pair of curly braces.
10292
10293 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10294
10295         * config/mn10300/mn10300.c: Fix comment formatting.
10296         * config/mn10300/mn10300.h: Likewise.
10297
10298 2004-01-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
10299
10300         * tree.h: Update documentation on nothrow_flag.
10301         * print-tree.c (print_node): Print TREE_NOTHROW as "align-ok" for
10302         types.
10303
10304 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
10305
10306         * doc/invoke.texi: Remove traces of dead ports.
10307
10308 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
10309
10310         * doc/invoke.texi: Add documentation for the MIPS -mexplicit-relocs
10311         option.
10312
10313 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
10314
10315         PR target/12945
10316         * coverage.c (coverage_counter_alloc): Set SYMBOL_FLAG_LOCAL for
10317         counter labels.
10318         * config/mips/mips.c (INTERNAL_SYMBOL_P): Delete.
10319         (mips_classify_symbol): Always treat SYMBOL_REF_FLAG as indicating
10320         string constants if TARGET_MIPS16.  Use SYMBOL_REF_DECL to check
10321         the binding of decl symbols, otherwise check SYMBOL_REF_LOCAL_P.
10322         (mips_symbol_insns): Don't trust the local/global classification.
10323         (m16_usym8_4, m16_usym5_4): Same mips16 change as mips_classify_symbol.
10324         (override_options): Make -mabicalls -fno-unit-at-a-time imply
10325         -mno-explicit-relocs.
10326         (mips_encode_section_info): Don't use SYMBOL_REF_FLAG to distinguish
10327         between local and global symbols.
10328
10329 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
10330
10331         * config/mips/mips-protos.h (mips_dangerous_for_la25_p): Declare.
10332         (mips_preferred_reload_class): Declare.
10333         * config/mips/mips.h (DANGEROUS_FOR_LA25_P): Replace with function.
10334         (EXTRA_CONSTRAINT): Update accordingly.
10335         (PREFERRED_RELOAD_CLASS): Use mips_preferred_reload_class.
10336         * config/mips/mips.c (mips_dangerous_for_la25_p): New function.
10337         (mips_preferred_reload_class): New function.  Prefer LEA_REGS if
10338         mips_dangerous_for_la25_p.
10339         (mips_secondary_reload_class): Use LEA_REGS rather than GR_REGS
10340         if mips_dangerous_for_la25_p.
10341
10342 2004-01-05  Bernardo Innocenti  <bernie@develer.com>
10343
10344         * config/m68k/m68k.c (output_andsi3): Fix signed/unsigned comparison
10345         warning.
10346
10347 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
10348
10349         * configure.ac: Use AC_PROG_CPP_WERROR.
10350         * configure: Regenerate.
10351
10352 2004-01-04  Zack Weinberg  <zack@codesourcery.com>
10353
10354         * .cvsignore: Add autom4te.cache.
10355
10356 2004-01-04  Richard Sandiford  <rsandifo@redhat.com>
10357
10358         * doc/invoke.texi: Revamp documentation of MIPS options.  Remove
10359         -mabi=meabi, -mabi-fake-default, -mmips-as, -mgas, -mmips-tfile,
10360         -m4650, -mfix7000 and -(m)no-crt0.  Put endianness options first,
10361         then architecture options, then ABI options.  General rewording.
10362
10363 2004-01-04  Joseph S. Myers  <jsm@polyomino.org.uk>
10364
10365         PR c/3414
10366         * doc/extend.texi: Clarify definition of malloc attribute.
10367
10368 2004-01-04  Jan Hubicka  <jh@suse.cz>
10369
10370         * Makefile.in (cgraph.o, cgraphunit.o): Add intl.h dependency.
10371         * cgraph.c (create_edge, dump_cgraph): Update to use inline_failed
10372         * cgraph.h (cgraph_edge): Replace inline_call by inline_failed
10373         (cgraph_inline_p): Add extra argument reason.
10374         * cgraphunit.c: Minor formating fixes.
10375         cgraph_first_inlined_callee): New functions.
10376         (record_call_1): Record builtins too.
10377         (cgraph_analyze_function): Update inline_failed messages.
10378         (cgraph_mark_functions_to_output, cgraph_expand_function, cgraph_inlined_into,
10379         cgraph_inlined_callees, cgraph_estimate_growth): Update to use inline_failed.
10380         (cgraph_check_inline_limits): Likewise; Add argument reason.
10381         (cgraph_set_inline_failed): New static function.
10382         (cgraph_decide_inlining_of_small_function, cgraph_decide_inlining): Set
10383         reasons.
10384         (cgraph_inline_p): Add new argument reason.
10385         * tree-inline.c (expand_call_inline):  Update warning.
10386
10387 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
10388
10389         * configure.ac: Replace AC_INIT, AC_OUTPUT, AC_CANONICAL_SYSTEM
10390         with modern equivalents.
10391         * configure: Regenerate.
10392
10393         * configure.ac: Replace gcc_AC_CHECK_TYPE with AC_CHECK_TYPE.
10394         * aclocal.m4 (gcc_AC_CHECK_TYPE): Remove.
10395         * configure: Regenerate.
10396
10397         * doc/install.texi: Note that 'gcc' is now a 2.57 directory.
10398
10399         * configure.in: Rename to configure.ac.
10400         * configure.ac: Renamed from configure.in; make minimum necessary
10401         changes for autoconf 2.5x.
10402         * aclocal.m4: Make minimum necessary changes for autoconf 2.5x.
10403         * configure: Regenerate with autoconf 2.57.
10404
10405 2004-01-03  Kazu Hirata  <kazu@cs.umass.edu>
10406
10407         * config/mips/linux.h: Fix comment formatting.
10408         * config/mips/mips.c: Likewise.
10409         * config/mips/mips.h: Likewise.
10410         * config/mips/mips.md: Likewise.
10411         * config/mips/netbsd.h: Likewise.
10412         * config/mips/windiss.h: Likewise.
10413
10414 2004-01-02  Richard Henderson  <rth@redhat.com>
10415
10416         * config/i386/i386.md (fp constant pool splitter): Reorg suppression
10417         for sse and 387; add suppression for mmx.
10418
10419 2004-01-02  Andrew Pinski  <pinskia@physics.uc.edu>
10420
10421         * loop.c (loop_optimize): Free all loops_info's mems.
10422
10423         * c-typeck.c (finish_init): Free spelling_base before
10424         setting it again.
10425
10426         * cfgloop.c (flow_loops_find): Always free the sbitmap
10427         headers.
10428
10429         * predict.c (estimate_probability): Free bbs after being
10430         done with it.
10431
10432 2004-01-02  Kazu Hirata  <kazu@cs.umass.edu>
10433
10434         * config/mn10300/mn10300.h (PREDICATE_CODES): Add
10435         const_8bit_operand and call_address_operand.
10436
10437 2004-01-02  Jan Hubicka  <jh@suse.cz>
10438
10439         * cgraphunit.c (cgraph_optimize_function):  Call optimize_inline_calls
10440         when there is nothing to inline but warnings are requested.
10441         (cgraph_decide_inlining):  Fix memory leak.
10442
10443 2004-01-02  Jan Hubicka  <jh@suse.cz>
10444
10445         * expr.c (store_constructor):  Fix pasto in previous patch.
10446
10447 2004-01-02  Kazu Hirata  <kazu@cs.umass.edu>
10448
10449         * config/i386/cygming.h: Fix comment formatting.
10450         * config/i386/djgpp.h: Likewise.
10451         * config/i386/gthr-win32.c: Likewise.
10452         * config/i386/i386-interix.h: Likewise.
10453         * config/i386/i386.c: Likewise.
10454         * config/i386/i386.h: Likewise.
10455         * config/i386/openbsd.h: Likewise.
10456         * config/i386/winnt.c: Likewise.
10457         * config/i386/xm-mingw32.h: Likewise.
10458
10459 2004-01-02  Joseph S. Myers  <jsm@polyomino.org.uk>
10460
10461         * doc/gcc.texi, doc/invoke.texi, doc/install.texi: Update
10462         copyright and last modification dates.
10463
10464 2004-01-02  Andreas Jaeger  <aj@suse.de>, Gerald Pfeifer  <gp@suse.de>
10465
10466         * doc/install.texi (Specific): Mention x86_64.
10467
10468 2004-01-01  Hans-Peter Nilsson  <hp@bitrange.com>
10469
10470         * builtins.c (expand_builtin_apply_args_1) [STACK_GROWS_DOWNWARD]:
10471         Call force_operand on plus_constant result.
10472
10473 2004-01-01  Jan Hubicka  <jh@suse.cz>
10474
10475         * expmed.c (store_bit_field, extract_bit_field): Use new named patterns
10476         * expr.c (store_constructor): Use vec_init pattern.
10477         * genopinit.c (optabs): Initailize vec_set/vec_extract/vec_init.
10478         * optabs.h (optab_index): ADD OTI_vec_set/OTI_vec_extract/OTI_vec_init
10479         (vec_set_optab, vec_extract_optab, vec_init_optab): New.
10480         * i386.md (vec_setv2df, vec_extractv2df, vec_setv4sf, vec_extractv4sf):
10481         New patterns.
10482         (sse2_unpc?pd): Fix pattern.
10483         (sse2_movlpd): Kill.
10484         (sse2_movsd): Deal with movlpd too.
10485         * i386.c (ix86_expand_builtin): Use sse2_movsd instead of sse2_movlpd.
10486         (ix86_expand_vector_init): New.
10487         * emmintrin.h (__mm_set_pd, __mm_set_ps): Use vector extensions.
10488         * md.texi (vec_set, vec_extract): Document
10489
10490 2003-12-31  Jan Hubicka  <jh@suse.cz>
10491
10492         PR opt/13473
10493         * recog.c (validate_replace_rtx_1):  Take care for RTL sharing inside
10494         ASM input operands
10495
10496         PR opt/12617
10497         * toplev.c (dump_file_index): Reorder ce3 and bbro.
10498         (dump_file): Likewise.
10499         (rest_of_compilation): Likewise.
10500
10501         PR debug/13367
10502         * cgraph.c (cgraph_function_possibly_inlined):  Even with
10503         flag_really_no_inline we inline always_inline functions.
10504         * cgraphunit.c (cgraph_analyze_function): Clear inlinable flag
10505         for non-always_inline functions when there is flag_really_no_inline.
10506         (cgraph_decide_inlining): Limit work done when not inlining.
10507         (cgraph_decide_inlining_incrementally): Likewise.
10508         (cgraph_optimize_function): Check whether something got inlined.
10509         * c-objc-common.c (c_disregard_inline_limits): Do not always inline
10510         extern inline functions when not inlining.
10511
10512         * opts.c (decode_options):  Disable crossjumping at -O1
10513         * invoke.texi (-O1): Document change.
10514
10515 See ChangeLog.10 for earlier changes.