OSDN Git Service

* varasm.c (unlikely_text_section): Use assemble_align instead of
[pf3gnuchains/gcc-fork.git] / gcc / ChangeLog
1 2004-03-13  Richard Henderson  <rth@redhat.com>
2
3         * bb-reorder.c (fix_crossing_unconditional_branches): Use Pmode
4         for LABEL_REFs.
5
6         * defaults.h (HOT_TEXT_SECTION_NAME): Add leading dot.
7         (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Likewise.
8         * doc/invoke.texi: Update to match.
9
10         * varasm.c (unlikely_text_section): Use assemble_align instead of
11         ASM_OUTPUT_ALIGN.  Use it in the correct place with an approximately
12         correct alignment argument.
13
14 2004-04-13  Ulrich Weigand  <uweigand@de.ibm.com>
15
16         * reload1.c (emit_reload_insns): Set reg_has_output_reload to one
17         after setting reg_last_reload_reg for optional output reloads.
18
19 2004-04-12  Fariborz Jahanian <fjahanian@apple.com>
20
21         * config/rs6000/altivec.h (vec_mergeh, vec_mergel):
22         Definition of these two macros are corrected by adding
23         matchine right paren.
24
25 2004-04-12  Jonathan Larmour  <jifl@eCosCentric.com>
26
27         * fix-header.c: kill(), putenv() and tzset() are POSIX not ANSI.
28
29 2004-04-12  Roger Sayle  <roger@eyesopen.com>
30
31         * config/i386/i386.c (output_387_reg_move): New function.
32         * config/i386/i386-protos.h (output_387_reg_move): Prototype here.
33         * config/i386/i386.md (*movsf_1, *movsf1_nointerunit,
34         *movdf_nointeger, *movdf_integer, *movxf_nointeger, *movxf_integer,
35         *extendsfdf2_1,  *extendsfxf2_1, *extenddfxf2_1, truncdfsf2_noop,
36         truncxfsf2_noop, truncxfdf2_noop): Call output_387_reg_move.
37
38 2004-04-12  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
39
40         * c-decl.c (finish_decl): Make a decl_stmt for a variable-sized
41         TYPE_DECL.
42         * c-semantics.c (genrtl_decl_stmt): Handle TYPE_DECL.
43         * stmt.c (expand_decl): Remove redundant expansion of TYPE_DOMAIN.
44         * stor-layout.c (variable_size): Don't check for MINUS_EXPR.
45         Use skip_simple_arithmetic to find SAVE_EXPR.
46         (force_type_save_exprs, force_type_save_exprs_1): New functions.
47         * tree-inline.c (remap_type, case POINTER_TYPE, case REFERENCE_TYPE):
48         Properly chain multiple pointers.
49         (copy_tree_r): Copy a TYPE_DECL.
50         * tree.c (variably_modified_type_p): Add some missing tests and
51         make some other minor changes.
52         * tree.h (force_type_save_exprs): New declaration.
53
54 2004-04-12  Roger Sayle  <roger@eyesopen.com>
55
56         * simplify-rtx.c (simplify_binary_operation) <UDIV, DIV, UMOD, MOD>:
57         Remove fall throughs.  Convert 0/x and 0%x into x&0 when x has
58         side-effects.  Don't convert x/1.0 into x if we honor signaling NaNs.
59         Convert x/-1.0 into -x if we don't honor signaling NaNs.  Convert
60         x/-1 into -x.  Optimize x%1 into x&0 if x has side-effects.  Optimize
61         x%-1 into 0 (or x&0 if x has side-effects).
62
63 2004-04-11  Aldy Hernandez  <aldyh@redhat.com>
64
65         * config/rs6000/rs6000.md: Document why a pattern is not
66         available.
67
68         * config/rs6000/rs6000.c (rs6000_emit_cmove): Disable comparisons
69         of floats on the E500.
70         (branch_positive_comparison_operator): Do not allow NE even on the
71         E500.
72
73 2004-04-11  Aldy Hernandez  <aldyh@redhat.com>
74
75         * config/rs6000/rs6000.c (rs6000_assemble_integer): Change
76         in_text_unlikely_section to in_unlikely_text_section.
77
78 2004-04-11  Roger Sayle  <roger@eyesopen.com>
79
80         * fold-const.c (fold_binary_op_with_conditional_arg):  Tweak
81         calling convention to allow a NULL_TREE to be returned.  Factor
82         sanity checks from callers, return NULL_TREE when appropriate.
83         (fold): Handle COMPOUND_EXPR operands of binary expressions
84         before COND_EXPR operands.  Use reorder_operands_p(a,b) to check
85         whether a op (b,c) can be rewritten as (b, a op c).  Simplify
86         calls to fold_binary_op_with_conditional_arg.
87
88 2004-04-11  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
89
90         * config/mips/iris5.h (current_section_flags):  Add
91         in_unlikely_executed_text and default case.
92
93 2004-04-11  Andreas Tobler  <a.tobler@schweiz.ch>
94
95         * bb-reorder.c (fix_crossing_conditional_branches): Fix bootstrap
96         failure on solaris. Place ifdef HAVE_return around gen_ret call.
97         * cfgrtl.c (force_nonfallthru_and_redirect): Remove ifdef
98         HAVE_return and place it around the place where it is needed.
99
100 2004-04-11  Andrew Pinski  <pinskia@physics.uc.edu>
101
102         * varasm.c (text_section): Use TEXT_SECTION_ASM_OP and
103         ASM_OUTPUT_ALIGN instead of SECTION_FORMAT_STRING
104         and NORMAL_TEXT_SECTION_NAME.
105         (unlikely_text_section): Check targetm.have_named_sections
106         instead of TARGET_ASM_NAMED_SECTION and use TEXT_SECTION_ASM_OP
107         instead of SECTION_FORMAT_STRING.
108         * config/mips/iris5.h (current_section_name): Add
109         in_unlikely_executed_text case and move the abort into the switch.
110         * config/rs6000/sysv4.h (HOT_TEXT_SECTION_NAME): Remove.
111         (NORMAL_TEXT_SECTION_NAME): Remove.
112         (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Remove.
113         (SECTION_FORMAT_STRING): Remove.
114         * defaults.h (SECTION_FORMAT_STRING): Remove.
115         * tm.texi (NORMAL_TEXT_SECTION_NAME): Remove.
116         (SECTION_FORMAT_STRING): Remove.
117
118 2004-04-10  Joseph S. Myers  <jsm@polyomino.org.uk>
119
120         * c-typeck.c (common_type): Prefer long long to long when same
121         precision.
122
123 2004-04-09  Zack Weinberg  <zack@codesourcery.com>
124
125         PR 14887
126         * config/ia64/hpux.h (MEMBER_TYPE_FORCES_BLK): Look only at
127         mode argument.
128         * config/ia64/ia64.c (ia64_hpux_file_end): Check
129         TREE_SYMBOL_REFERENCED on DECL_ASSEMBLER_NAME, not DECL_NAME.
130
131 2004-04-09  Roger Sayle  <roger@eyesopen.com>
132
133         * simplify-rtx.c (mode_signbit_p): New function to check whether
134         an RTX is an immediate constant that represents the most significant
135         bit of a given machine mode.
136         (simplify_unary_operation) <NOT>: Optimize ~(X+C) as X ^ ~C, where
137         C is the sign bit.
138         (simplify_binary_operation) <PLUS>: Optimize (X^C1) + C2 as X^(C1^C2)
139         when C2 is the sign bit.
140         (simplify_binary_operation) <XOR>: Canonicalize X^C as X+C when C
141         is the sign bit.  Optimize (X+C1) ^ C2 as X^(C1^C2) when C1 is the
142         sign bit.
143
144 2004-04-09  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
145
146         * builtins.c (mathfn_built_in): Check TYPE_MAIN_VARIANT, not
147         TYPE_MODE.
148
149 2004-04-09  Andrew Pinski  <pinskia@physics.uc.edu>
150
151         * c-common.c (handle_noreturn_attribute): Use TYPE_READONLY instead
152         of TREE_READONLY for types.
153
154 2004-04-09  Caroline Tice  <ctice@apple.com>
155
156         * basic-block.h (struct edge_def):  Add new field, crossing_edge.
157         (struct basic_block_def):  Add new field, partition.
158         (UNPARTITIONED, HOT_PARTITION, COLD_PARTITION):  New constant macro
159         definitions.
160         (partition_hot_cold_basic_blocks): Add extern function
161         declaration.
162         * bb-reorder.c (function.h, obstack.h, expr.h, regs.h):  Add four new
163         include statements.
164         (N_ROUNDS): Increase the maximum number of rounds by 1.
165         (branch_threshold): Add array value for new round.
166         (exec_threshold): Add array value for new round.
167         (push_to_next_round_p): New function.
168         (add_unlikely_executed_notes): New function.
169         (find_rarely_executed_basic_blocks_and_crossing_edges): New function.
170         (mark_bb_for_unlikely_executed_section): New function.
171         (add_labels_and_missing_jumps): New function.
172         (add_reg_crossing_jump_notes): New function.
173         (fix_up_fall_thru_edges): New function.
174         (find_jump_block): New function.
175         (fix_crossing_conditional_branches): New function.
176         (fix_crossing_unconditional_branches): New function.
177         (fix_edges_for_rarely_executed_code): New function.
178         (partition_hot_cold_basic_blocks): New function.
179         (find_traces):  Add an extra round for partitioning hot/cold
180         basic blocks.
181         (find_traces_1_round): Add a parameter.  Modify to push all cold blocks,
182         and only cold blocks, into the last (extra) round of collecting traces.
183         (better_edge_p): Add a parameter.  Modify to favor non-crossing edges
184         over crossing edges.
185         (bb_to_key):  Add code to correctly identify cold blocks when
186         doing partitioning.
187         (connect_traces): Modify to connect all the non-cold traces first, then
188         go back and connect up all the cold traces.
189         (reorder_basic_blocks):  Add call to add_unlikely_executed_notes.
190         * cfg.c (entry_exit_blocks): Add initialization for partition field in
191         entry and exit blocks.
192         * cfgbuild.c (make_edges): Update current_function_has_computed_jump
193         if we are doing hot/cold partitioning.
194         * cfgcleanup.c (cfglayout.h): Add new include statement.
195         (try_simplify_condjump): Modify to not attempt on blocks with jumps
196         that cross section boundaries.
197         (try_forward_edges): Likewise.
198         (merge_blocks_move_predecessor_nojumps): Likewise.
199         (merge_blocks_move_successor_nojumps): Likewise.
200         (merge_blocks_move): Likewise.
201         (try_crossjump_to_edge): Modify to not attempt after we have done
202         the block partitioning.
203         (try_crossjump_bb): Modify to not attempt on blocks with jumps that
204         cross section boundaries.
205         (try_optimize_cfg): Likewise.
206         * cfghooks.c (tidy_fallthru_edges): Modify to not remove indirect
207         jumps that cross section boundaries.
208         * cfglayout.c (flags.h): Add new include statement.
209         (update_unlikely_executed_notes):  New function.
210         (fixup_reorder_chain):  Add code so when a new jumping basic block is
211         added, it's UNLIKELY_EXECUTED_CODE and REG_CROSSING_JUMP notes are
212         updated appropriately.
213         (duplicate_insn_chain):  Add code to duplicate the new NOTE insn
214         introduced by this optimization.
215         * cfglayout.h (scan_ahead_for_unlikely_executed_note):  Add new
216         extern function declaration.
217         * cfgrtl.c (can_delete_note_p):  Add NOTE_INSN_UNLIKELY_EXECUTED_CODE to
218         list of notes that can be deleted.
219         (create_basic_block_structure):  Add initialization for partition field.
220         (rtl_can_merge_blocks):  Modify to test blocks for jumps that cross
221         section boundaries.
222         (try_redirect_by_replacing_jump):  Modify to not attempt on jumps that
223         cross section boundaries.
224         (commit_one_edge_insertion): Add code so newly created basic block
225         ends up in correct (hot or cold) section.  Modify to disallow
226         insertions before NOTE_INSN_UNLIKELY_EXECUTED_CODE notes.
227         (rtl_verify_flow_info_1):  Add code to verify that no fall_thru edge
228         crosses section boundaries.
229         (cfg_layout_can_merge_blocks_p): Modify to test blocks for jumps that
230         cross section boundaries.
231         (force_nonfallthru_and_redirect): Modify to make sure new basic block
232         ends up in correct section, with correct notes attached.
233         * common.opt (freorder-blocks-and-partition):  Add new flag for this
234         optimization.
235         * dbxout.c (dbx_function_end):  Add code to make sure scope labels at
236         the end of functions are written into the correct (hot or cold)
237         section.
238         (dbx_source_file): Add code so writing debug file information
239         doesn't incorrectly change sections.
240         * defaults.h (NORMAL_TEXT_SECTION_NAME): New constant macro, for use
241         in partitioning hot/cold basic blocks into separate sections.
242         (SECTION_FORMAT_STRING): New constant macro, for linux/i386 hot/cold
243         section partitioning.
244         (HAS_LONG_COND_BRANCH): New constant macro, indicating whether or not
245         conditional branches can span all of memory.
246         (HAS_LONG_UNCOND_BRANCH): New constant macro, indicationg whether or not
247         unconditional branches can span all of memory.
248         * final.c (scan_ahead_for_unlikely_executed_note):  New function.
249         (final_scan_insn):  Add code to check for NOTE instruction indicating
250         whether basic block belongs in hot or cold section, and to make sure
251         the current basic block is being written to the appropriate section.
252         Also added code to ensure that jump table basic blocks end up in the
253         correct section.
254         * flags.h (flag_reorder_blocks_and_partition):  New flag.
255         * ifcvt.c (find_if_case_1):  Modify to not attempt if conversion if
256         one of the branches has a jump that crosses between sections.
257         (find_if_case_2): Likewise.
258         (ifcvt): Modify to not attempt to mark loop exit edges after
259         hot/cold partitioning has occurred.
260         * opts.c (decode_options): Code to handle new flag,
261         flag_reorder_blocks_and_partition; also to turn it off if
262         flag_exceptions is on.
263         (common_handle_option): Code to handle new flag,
264         flag_reorder_blocks_and_partition.
265         * output.h (unlikely_text_section): New extern function declaration.
266         (in_unlikely_text_section): New extern function declaration.
267         * passes.c (rest_of_handle_stack_regs):  Add
268         flag_reorder_blocks_and_partition as an 'or' condition for calling
269         reorder_basic_blocks.
270         (rest_of_handle_reorder_blocks):  Add flag_reorder_blocks_and_partition
271         as an 'or' condition for calling reorder_basic_blocks.
272         (rest_of_compilation):  Add call to partition_hot_cold_basic_blocks.
273         * print-rtl.c (print_rtx): Add code for handling new note,
274         NOTE_INSN_UNLIKELY_EXECUTED_CODE
275         * rtl.c  (NOTE_INSN_UNLIKELY_EXECUTED_CODE): New note insn (see below).
276         (REG_CROSSING_JUMP): New kind of reg_note, to mark jumps that
277         cross between section boundaries.
278         * rtl.h (NOTE_INSN_UNLIKELY_EXECUTED_CODE):  New note instruction,
279         indicating the basic block containing it belongs in the cold section.
280         (REG_CROSSING_JUMP): New type of reg_note, to mark jumps that cross
281         between hot and cold sections.
282         * toplev.c (flag_reorder_blocks_and_partition):  Add code to
283         initialize this flag, and to tie it to the command-line option
284         freorder-blocks-and-partition.
285         * varasm.c (cfglayout.h):  Add new include statement.
286         (unlikely_section_label_printed):  New global variable, used for
287         determining when to output section name labels for cold sections.
288         (in_section):  Add in_unlikely_executed_text to enum data structure.
289         (text_section):  Modify code to use SECTION_FORMAT_STRING and
290         NORMAL_TEXT_SECTION_NAME macros.
291         (unlikely_text_section):  New function.
292         (in_unlikely_text_section):  New function.
293         (function_section):  Add code to make sure beginning of function is
294         written into correct section (hot or cold).
295         (assemble_start_function):  Add code to make sure stuff is written to
296         the correct section.
297         (assemble_zeros):  Add in_unlikely_text_section as an 'or' condition
298         to an if statement that was checking 'in_text_section'.
299         (assemble_variable):  Add 'in_unlikely_text_section' as an 'or'
300         condition to an if statement that was checking 'in_text_section'.
301         (default_section_type_flags_1):  Add check: if in cold section
302         flags = SECTION_CODE.
303         * config/darwin.c (darwin_asm_named_section):  Modify to use
304         SECTION_FORMAT_STRING if we are partitioning hot/cold blocks.
305         * config/i386/i386.h (HAS_LONG_COND_BRANCH): Defined this macro
306         specifically for the i386.
307         (HAS_LONG_UNCOND_BRANCH):  Defined this macro specifically for the i386.
308         * config/rs6000/darwin.h (UNLIKELY_EXECUTED_TEXT_SECTION_NAME): Change
309         text string to something more informative.
310         (NORMAL_TEXT_SECTION_NAME): Add new definition.
311         (SECTION_FORMAT_STRING):  Add new definition.
312         * config/rs6000/rs6000.c (rs6000_assemble_integer):  Add
313         '!in_unlikely_text_section' as an 'and' condition to an if statement
314         that was already checking '!in_text_section'.
315         * config/rs6000/sysv4.h (HOT_TEXT_SECTION_NAME,NORMAL_TEXT_SECTION_NAME,
316         UNLIKELY_EXECUTED_TEXT_SECTION_NAME,SECTION_FORMAT_STRING): Make
317         sure these are properly defined for linux on ppc.
318         * doc/invoke.texi  (freorder-blocks-and-partition): Add documentation
319         for this new flag.
320         * doc/rtl.texi (REG_CROSSING_JUMP):  Add documentation for new
321         reg_note.
322         * doc/tm.texi (NORMAL_TEXT_SECTION_NAME, SECTION_FORMAT_STRING,
323         HAS_LONG_COND_BRANCH, HAS_LONG_UNCOND_BRANCH): Add documentation for
324         these new macros.
325
326 2004-04-08  Roger Sayle  <roger@eyesopen.com>
327
328         * function.c (gen_mem_addressof): When changing the RTX from a REG
329         to a MEM, clear MEM_VOLATILE_P which was formerly REG_USERVAR_P.
330
331 2004-04-08  Roger Sayle  <roger@eyesopen.com>
332
333         PR target/14888
334         * config/i386/i386.md (truncdfsf2_noop, truncxfsf2_noop,
335         truncxfdf2_noop): Provide dummy "fmov" implementations.
336
337 2004-04-08  Ian Lance Taylor  <ian@wasabisystems.com>
338
339         * gcc.c (default_compilers): Add missing initializers.
340
341         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
342         Return 1 if file was successfully mapped.
343
344 2004-04-08  Geoffrey Keating  <geoffk@apple.com>
345
346         PR pch/13419
347         PR pch/14137
348         Radar #: 3315288
349         * doc/invoke.texi (Precompiled Headers): Suggest -o
350         to put an output file in a particular place.  Be more detailed
351         about which options affect PCH validity and which options
352         might not work.
353         * c-pch.c (pch_matching): New.
354         (MATCH_SIZE): New.
355         (struct c_pch_validity): New field 'match'.
356         (pch_init): Handle pch_matching.
357         (c_common_valid_pch): Check pch_matching.
358
359         * explow.c: Fix typo defining default of PROMOTE_FUNCTION_MODE.
360
361 2004-04-08  Mark Mitchell  <mark@codesourcery.com>
362
363         * doc/invoke.texi (Precompiled Headers): Warn about known
364         problems.
365
366 2004-04-08  Danny Smith  <dannysmith@users.sourceforge.net>
367
368         PR c++/14808
369         * defaults.h (TARGET_USE_LOCAL_THUNK_ALIAS_P): New macro. Default
370         to 1 if ASM_OUTPUT_DEF is defined.
371         * doc/tm.texi (TARGET_USE_LOCAL_THUNK_ALIAS_P): Document.
372         * config/i386/cygming.h (TARGET_USE_LOCAL_THUNK_ALIAS_P): Define.
373         Set to non-zero iff not a one_only decl.
374
375 2004-04-08  Paul Brook  <paul@codesourcery.com>
376
377         * arm.h (CLASS_LIKELY_SPILLED_P): Define.
378
379 2004-04-08  Paul Brook  <paul@codesourcery.com>
380
381         * explow.c (promote_mode): Use PROMOTE_FUNCTION_MODE instead of
382         PROMOTE_FOR_CALL_ONLY.
383         * config/arm/arm-protos.h (arm_function_value): Declare.
384         * config/arm/arm.h (TARGET_PROMOTE_FUNCTION_ARGS): Define.
385         (TARGET_PROMOTE_PROTOTYPES): Return false.
386         (arm_function_value): New function.
387         * config/arm/arm.h (PROMOTE_FUNCTION_MODE): Define.
388         (FUNCTION_VALUE): Call arm_function_value.
389         * config/cris/cris.h (PROMOTE_MODE): Rename ...
390         (PROMOTE_FUNCTION_MODE): ... to this.
391         (PROMOTE_FOR_CALL_ONLY): Remove.
392         * config/mmix/mmix.h: Likewise.
393         * config/s390/s390.h: Likewise.
394         * config/sparc/sparc.h: Likewise.
395         * config/sparc/sparc.c: Update comments about PROMOTE_MODE.
396         * doc/tm.texi (PROMOTE_FUNCTION_MODE): Document.
397         (TARGET_PROMOTE_FUNCTION_MODE, TARGET_PROMOTE_FUNCTION_RETURN): Update.
398         (PROMOTE_FOR_CALL_ONLY): Remove.
399
400 2004-04-08  Joel Sherrill <joel@oarcorp.com>
401
402         PR ada/14538
403         * ada/5rosinte.adb: Remove fake mprotect() body.
404         * ada/5rosinte.ads: Add SA_SIGINFO.
405         * ada/5rtpopsp.adb: Rewrite to use new interface.
406         * ada/init.c: Reorder so the simple single OS conditional __rtems__
407         is tested before more complex ones which mix UNIX and embedded
408         systems in the conditional.
409
410 2004-04-08  Joel Sherrill  <joel@oarcorp.com>
411
412         PR ada/14665
413         * ada/osint.adb (Find_Program_Name): Rework to properly handle
414         filenames which end in .exe or have versioning suffixes like VMS.
415
416 2004-04-08  Andrew Pinski  <pinskia@physics.uc.edu>
417
418         PR target/10129
419         * config/darwin.c (darwin_encode_section_info): When the decl has
420         a DECL_INITIAL, it is only defined also when it is not a common.
421
422 2004-04-08  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
423
424         * builtins.c (fold_builtin_isascii, fold_builtin_toascii): New.
425         (fold_builtin): Handle BUILT_IN_ISASCII and BUILT_IN_TOASCII.
426
427 2004-04-07  H.J. Lu  <hongjiu.lu@intel.com>
428
429         * config/ia64/ia64.c (ia64_encode_section_info): Don't prod
430         global register variables.
431
432 2004-04-07  Joseph S. Myers  <jsm@polyomino.org.uk>
433
434         * fixinc/inclhack.def (rpc_xdr_lvalue_cast_a,
435         rpc_xdr_lvalue_cast_b): New fixes.
436         * fixinc/fixincl.x: Regenerate.
437         * fixinc/tests/base/rpc/xdr.h: Add new tests.
438
439 2004-04-07  David Edelsohn  <edelsohn@gnu.org>
440
441         * config/rs6000/rs6000.c (processor_target_table): Add MASK_MFCRF
442         to power4 and power5 entries.
443
444 2004-04-06  Geoffrey Keating  <geoffk@apple.com>
445
446         * c-common.h (pending_lang_change): Mark for PCH.
447
448 2004-04-07  Caroline Tice  <ctice@apple.com>
449
450         * gcc.c (main): Move 'break' in main loops (on an error)
451         to wait until error processing has occurred.
452
453 2004-04-06  Nathanael Nerode  <neroden@gcc.gnu.org>
454
455         * config.gcc: Stop changing enable_threads midstream.
456         Replace uses of enable_threads_flag with enable_threads.
457         * configure.ac: Replace uses of enable_threads_flag with
458         enable_threads.  Improve autoconf quotation in one place.
459         * configure: Regenerate.
460
461 2004-04-06  Uros Bizjak  <uros@kss-loka.si>
462
463         * builtins.c: Implement support for sincos function.
464         (expand_builtin_mathfn): Remove BUILT_IN_SIN{,F,L} and
465         BUILT_IN_COS{,F,L}.
466         (expand_builtin_mathfn_3): New function.
467         (expand_builtin): Expand BUILT_IN_SIN{,F,L} and
468         BUILT_IN_COS{,F,L} using expand_builtin_mathfn_3 if
469         flag_unsafe_math_optimization is set.
470
471         * optabs.h (enum optab_index): Add new OTI_sincos.
472         (sincos_optab): Define corresponding macro.
473
474         * optabs.c (init_optabs): Initialize sincos_optab.
475         (expand_twoval_unop): New function.
476
477         * genopinit.c (optabs): Implement sincos_optab using sincos?f3
478         patterns.
479
480         * reg-stack.c (subst_stack_regs_pat): Handle UNSPEC_SINCOS_COS
481         and UNSPEC_SINCOS_SIN.
482
483         * config/i386/i386.md (sincosdf3, sincossf3, *sincosextendsfdf3,
484         sincosxf3): New patterns to implement sincos, sincosf and sincosl
485         built-ins as inline x87 intrinsics. Define splits for
486         sindf2, sinsf2, *sinextendsfdf2, sinxf2, cosdf2,
487         cossf2, *cosextendsfdf2 and cosxf2 patterns from corresponding
488         sincos patterns.
489         (sindf2, sinsf2, sinxf2): Rename to *sindf2, *sinsf2, *sinxf2.
490         (cosdf2, cossf2, cosxf2): Rename to *cosdf2, *cossf2, *cosxf2.
491
492         (UNSPEC_SINCOS_SIN, UNPEC_SINCOS_COS): New unspecs to represent
493         x87's unspec insn.
494
495 2004-04-06  Devang Patel  <dpatel@apple.com>
496
497         PR 14467
498         * config/darwin.h (LINK_COMMAND_SPEC): Use c++filt instead of c++filt3.
499
500 2004-04-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
501
502         * doc/install.texi: Update HP-UX 11 installation procedure.
503
504 2004-04-06  Paul Brook  <paul@codesourcery.com>
505
506         * doc/sourcebuild.texi: Remove obsolete contraint on testcases.
507
508 2004-04-05  Kaz Kojima  <kkojima@gcc.gnu.org>
509
510         * config/sh/sh.c (prepare_move_operands): Use emit_call_insn
511         when the TLS address is generated by a function call.
512         * config/sh/sh.md (tls_global_dynamic): Use a call expression.
513         (tls_local_dynamic): Likewise.
514
515 2004-04-05  Andrew Pinski  <pinskia@physics.uc.edu>
516
517         * tree.c (reconstruct_complex_type): Use TYPE_READONLY
518         and TYPE_VOLATILE.
519
520 2004-04-05  Caroline Tice  <ctice@apple.com>
521
522         * gcc.c (combine_flag): New global variable, for new driver option.
523         (struct compiler): Add two new fields, to be used when
524         combining multiple input files in a single pass (IMA).
525         (default_compilers):  Add values for the new fields to all
526         compiler entries. Modify the "@c" compiler entry for doing IMA
527         properly with "-save-temps" and the "combine" flag.
528         (option_map):  Add new driver option, "--combine", to tell driver
529         to pass multiple input files to compiler at one time.
530         (have_o_argbuf_index): New global variable.
531         (store_arg): Modify to assign value to have_o_argbuf_index.
532         (struct infile):  Add three new fields, to help with IMA.
533         (display_help): Add help for new "combine" option.
534         (process_command): Remove local variable have_o; add code to check
535         for new "combine" option; remove assignment to combine_inputs.
536         (do_spec_1):  Modify to deal with IMA better.
537         (main): Make variable 'lang_n_infiles' local to entire function
538         rather than to a single block.  Use flag combine_flag to
539         determine whether to do IMA or not; Modify loop initializing
540         infiles to deal properly with linker files.
541         Add code for doing preprocessing in presence of
542         IMA with "-save-temps" flag.  Modify "main" loop to handle
543         multiple input files, in multiple languages, with or without
544         preprocessing,  gracefully.
545         * toplev.c (set_src_pwd): Modify to not complain if attempting to
546         re-set it to same directory it's previously been set to (avoid
547         irritating, meaningless warning messages when doing IMA with
548         save-temps).
549         * doc/invoke.texi: Add "-combine" to list of Overall Options;
550         remove documentation about IMA that is no longer accurate; Add
551         documentation explaining what "-combine" does.
552         * ada/lang-specs.h: Add initialization values for new fields in
553         "struct compiler".
554         * cp/lang-specs.h: Likewise.
555         * f/lang-specs.h: Likewise.
556         * java/lang-specs.h: Likewise.
557         * objc/lang-specs.h: Likewise.
558         * treelang/lang-specs.h: Likewise.
559
560 2004-04-05  David Edelsohn
561
562         * config/rs6000/rs6000.c (VTABLE_NAME_P): Add _ZTI to special
563         symbol handling.
564
565 2004-04-05  Jakub Jelinek  <jakub@redhat.com>
566             John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
567
568         PR optimization/13424 (hppa), bootstrap/14462, c/14828
569         * pa.md: Use replace_equiv_address to retain the attributes of the
570         memory operands used in the split and peephole2 patterns for optimizing
571         the pre-reload movstrsi, movstrdi, clrstrsi and clrstrdi patterns.
572
573 2004-04-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
574
575         * c-decl.c (build_compound_literal): Use TYPE_READONLY.
576         * emit-rtl.c (set_mem_attributes_minus_bitpos): Likewise.
577         * objc/objc-act.c (adorn_decl, gen_declspecs): Likewise.
578         * c-typeck.c (decl_constant_value): Don't access DECL_INITIAL of a
579         PARM_DECL.
580         * calls.c (flags_from_decl_or_type): Use TYPE_READONLY and do so only
581         for a type.
582         * print-tree.c (print_node): Properly handle side-effects, readonly,
583         and constant flags.
584         * tree.c (build1_stat, build_expr_wfl): Only look at TREE_SIDE_EFFECTS
585         and TREE_CONSTANT if not a type.
586         * tree.h (IS_NON_TYPE_CODE_CLASS): New macro.
587         (IS_EXPR_CODE_CLASS): Write 'E', not 'e'.
588         (NON_TYPE_CHECK): New macro.
589         (TREE_SIDE_EFFECT, TREE_READONLY, TREE_CONSTANT: Add check.
590
591 2004-04-05  Eric Botcazou  <ebotcazou@libertysurf.fr>
592
593         * config/sparc/sol2-bi.h (PREFERRED_DEBUGGING_TYPE): Set
594         to DWARF2_DEBUG unconditionally.
595         (ASM_DEBUG_SPEC): Set the default to --gdwarf2 unconditionally.
596
597 2004-04-04  Ian Lance Taylor  <ian@wasabisystems.com>
598             Nathanael Nerode  <neroden@gcc.gnu.org>
599
600         PR target/14548
601         * config.host: Set the shell variable host_can_use_collect2.
602         Set it to yes by default, and to no for alpha*-dec-*vms*,
603         i[34567]86-*-mingw32*, and powerpc-*-beos*.
604         * configure.ac: Set and substitute the shell variable collect2.
605         Give an error if use_collect2 is yes and host_can_use_collect2 is
606         no.
607         * Makefile.in (COLLECT2): Rename from USE_COLLECT2.  Change all
608         uses.  Initialize to @collect2@.
609         (STAGESTUFF): Remove $(USE_COLLECT2).
610         * config/alpha/x-vms (USE_COLLECT2): Don't set.
611         * config/i386/t-mingw32 (USE_COLLECT2): Likewise.
612         * config/rs6000/t-beos (USE_COLLECT2): Likewise.
613         * config/pa/t-pa64: Remove commented out USE_COLLECT2.
614         * configure: Regenerate.
615
616 2004-04-04  Roger Sayle  <roger@eyesopen.com>
617
618         * simplify-rtx.c (simplify_binary_operation): Constant fold
619         DIV, MOD, UDIV and UMOD using div_and_round_double.
620
621 2004-04-04  Mark Mitchell  <mark@codesourcery.com>
622
623         PR c++/14804
624         * varasm.c (initializer_constant_valid_p): Allow NOP_EXPRs to
625         RECORD_TYPEs.
626
627 2004-04-04  Mark Mitchell  <mark@codesourcery.com>
628
629         * doc/invoke.texi (-mabi=o64): Create link to O64 ABI
630         documentation.
631
632 2004-04-04  Roger Sayle  <roger@eyesopen.com>
633
634         * cse.c (cse_insn): Correct usage of simplify_replace_rtx when
635         updating the REG_EQUAL note on an insn's libcall_insn.
636
637 2004-04-04  Roger Sayle  <roger@eyesopen.com>
638
639         * df.h: Tidy up whitespace in the definitions of the DF_ flags.
640
641 2004-04-03  Roger Sayle  <roger@eyesopen.com>
642
643         * fold-const.c (fold) <PLUS_EXPR>: Guard (-A)+B -> B-A transformation
644         with reorder_operands_p.
645
646 2004-04-03  Jan Hubicka  <jh@suse.cz>
647
648         * md.texi (vec_set, vec_extract, vec_init): Document.
649
650 2004-04-02  Gabor Loki <loki@inf.u-szeged.hu>
651
652        * opts.c (decode_options): Do function inlining with very small
653        max-inline-insns-* parameters when optimizing for size.
654
655 2004-04-02  Vladimir Makarov  <vmakarov@redhat.com>
656
657         * config/i386/i386.h (TARGET_NOCONA): New macro.
658         (TARGET_CPU_CPP_BUILTINS): Add code for Nocona.
659         (processor_type): Add PROCESSOR_NOCONA.
660
661         * config/i386/i386.md (cpu): Add nocona to the attribute values.
662
663         * config/i386/i386.c (nocona_cost): New variable.
664         (m_NOCONA): New macro.
665         (x86_push_memory, x86_movx, x86_cmove, x86_deep_branch,
666         x86_branch_hints, x86_use_sahf, x86_single_stringop,
667         x86_sub_esp_4, x86_sub_esp_8, x86_add_esp_4, x86_add_esp_8,
668         x86_integer_DFmode_moves, x86_partial_reg_dependency,
669         x86_memory_mismatch_stall, x86_accumulate_outgoing_args,
670         x86_decompose_lea, x86_arch_always_fancy_math_387,
671         x86_sse_partial_reg_dependency, x86_sse_load0_by_pxor,
672         x86_ext_80387_constants, x86_four_jump_limit):
673         (override_options): Add nocona_cost to processor_target_table.
674         Set up PROCESSOR_NOCONA for Nocona entry in processor_alias_table.
675         (incdec_operand): Prevent inc/dec generation for Nocona too.
676         (ix86_issue_rate): Add PROCESSOR_NOCONA.
677
678 2004-04-01  Andrew Pinski  <pinskia@physics.uc.edu>
679
680         * rtlanal.c (find_reg_note): Manually
681         unswitch the loop.
682
683 2004-04-01  Mark Mitchell  <mark@codesourcery.com>
684
685         * genemit.c (gen_split): Change prototype of generated code.
686         * genrecog.c (write_action): Adjust prototype for and calls to
687         gen_split_*.
688         * gensupport.c (struct queue_elem): Add split field.
689         (queue_pattern): Return a value.  Clear the split field.
690         (process_rtx): Maintain an association between an insn and the
691         split generated from it for a define_insn_and_split.
692         (process_one_cond_exec): Generate a new split for a
693         define_insn_and_split.
694         * config/arm/arm-protos.h (arm_split_constant): Add insn
695         parameter.
696         (emit_constant_insn): New function.
697         (arm_gen_constant): Use it.
698         * config/arm/arm.md: Adjust calls to arm_split_constant.
699
700 2004-04-02  Jan Hubicka  <jh@suse.cz>
701
702         * cgraph.c: Add overall comment.
703         (cgraph_inline_hash): New global variable.
704         (cgraph_create_node): Break out from ...
705         (cgraph_node): ... here.
706         (cgraph_edge): New function.
707         (cgraph_create_edge): New CALL_EXPR argument; some sanity checking.
708         (cgraph_remove_edge): Accept edge, intead of source and destination.
709         (cgraph_redirect_edge_callee): New.
710         (cgraph_remove_node): Update all new datastructures.
711         (cgraph_record_call, cgraph_remove_call): Kill.
712         (dump_cgraph_node): Break out from ... ; dump new datastructures.
713         (dump_cgraph): ... here.
714         (cgraph_function_possibly_inlined_p): Use new hashtable.
715         (cgraph_clone_edge, cgraph_clone_node): New.
716         * cgraph.h: Include hashtab.h
717         (struct cgraph_global_info): Kill cloned_times, inline_once, will_be_output
718         fields, add inlined_to pointer.
719         (cgraph_node): Add pointer to next_clone.
720         (cgraph_remove_edge, cgraph_create_edge): Update prototype.
721         (cgraph_remove_call, cgraph_record_call): Kill.
722         (cgraph_inline_hash): Declare.
723         (dump_cgraph_node, cgraph_edge, cg4raph_clone_edge, cgraph_clone_node,
724         cgraph_redirect_edge_callee): Declare.
725         (cgraph_create_edges, cgraph_inline_p): Update prorotype.
726         (cgraph_preserve_function_body_p, verify_cgraph, verify_cgraph_node,
727         cgraph_mark_inline_edge, cgraph_clone_inlined_nodes): Declare.
728         * cgraphunit.c: Add overall comment.
729         (cgraph_optimize_function): Kill.
730         (cgraph_assemble_pending_functions): Do not assemble inline clones.
731         (cgraph_finalize_function): Update call of cgraph_remove_node
732         (record_call_1): Record call sites.
733         (cgraph_create_edges): Accept node instead of decl argument.
734         (error_found): New static variable.
735         (verify_cgraph_node_1, verify_cgraph_node, verify_cgraph): New functions.
736         (cgraph_analyze_function): Update for new datastructures.
737         (cgraph_finalize_compilation_unit): Plug memory leak.
738         (cgraph_optimize_function): Kill.
739         (cgraph_expand_function): Do not use cgraph_optimize_function.
740         (INLINED_TIMES, SET_INLINED_TIMES, cgraph_inlined_into,
741         cgraph_inlined_callees): Kill.
742         (cgraph_remove_unreachable_nodes): Verify cgraph; update handling of
743         clones.
744         (estimate_growth): Simplify.
745         (cgraph_clone_inlined_nodes): New function.
746         (cgraph_mark_inline_edge): Re-implement.
747         (cgraph_mark_inline): Likewise.
748         (cgraph_check_inline_limits): Simplify.
749         (cgraph_recursive_inlining_p): New.
750         (update_callee_keys): Break out from ...
751         (cgraph_decide_inlining_of_small_functions): ... here; simplify.
752         (cgraph_decide_inlining, cgraph_decide_inlining_incrementally):
753         Likewise.
754         (cgraph_expand_all_functions):  Remove inline clones from the ordered
755         list.
756         (cgraph_preserve_function_body_p): New predicate.
757         (cgraph_optimize): Verify cgraph.
758         * function.h (struct function): Add fields saved_tree/saved_args.
759         * timevar.def (TV_CGRAPH_VERIFY): Use verifier.
760         * toplev.c (rest_of_compilation): Do not free cfun.
761         * tree-inline.c: Include function.h
762         (struct inline_data): Add saving_p field; replace decl/current_decl by
763         node/current_node.
764         (insert_decl_map): New function.
765         (copy_body_r): Handle saving; update cgraph datastructure.
766         (copy_body): Handle recursive inlining.
767         (initialize_inlined_parameters): Likewise.
768         (expand_call_inline): Propagate node attributes; update cgraph.
769         (optimize_inline_calls): Verify that datastructure still match.
770         (save_body): New function.
771         * tree-inline.h (save_body): New.
772         * tree-optimize.c (tree_rest_of_compilation): preserve function body; do inlining.
773         * langhooks-def.c (LANG_HOOKS_UPDATE_DECL_AFTER_SAVING): New.
774         * langhooks.c (lang_hooks): Add update_decl_after_saving.
775
776 2004-04-01  Serge Belyshev  <1319@bot.ru>
777
778         PR target/14702
779         * config/i386/i386.md: fix source operand constraints in
780         mmx_pshufw, sse2_pshufd, sse2_pshuflw, sse2_pshufhw
781
782 2004-04-01  Waldek Hebisch  <hebisch@math.uni.wroc.pl>
783
784         * fold-const.c (folda): Preserve types of comparisons.
785
786 2004-04-01  Richard Henderson  <rth@redhat.com>
787
788         * toplev.c (backend_init): Move init_optimization_passes call ...
789         (lang_dependent_init): ... here.
790
791 2004-04-01  Alan Modra  <amodra@bigpond.net.au>
792             Jakub Jelinek  <jakub@redhat.com>
793
794         * gcc.c (init_gcc_specs): If HAVE_LD_AS_NEEDED, link with
795         -lgcc --as-needed -lgcc_s --no-as-needed by default.
796         * configure.ac (HAVE_LD_AS_NEEDED): Check for ld --as-needed.
797         * configure: Rebuilt.
798         * config.in: Rebuilt.
799         * Makefile.in (stage1-start): Copy also libgcc_s*$(SHLIB_EXT).
800         (stage2-start, stage3-start, stage4-start): Likewise.
801         (stageprofile-start, stagefeedback-start): Likewise.
802
803 2004-04-01  Jakub Jelinek  <jakub@redhat.com>
804
805         * config/sparc/sparc.h (DITF_CONVERSION_LIBFUNCS): Define to 0.
806         * config/sparc/linux.h (DITF_CONVERSION_LIBFUNCS): Redefine to 1.
807         * config/sparc/linux64.h (DITF_CONVERSION_LIBFUNCS): Redefine to 1.
808         * config/sparc/sol2.h (DITF_CONVERSION_LIBFUNCS): Redefine to 1.
809         (SOLARIS_CONVERSION_LIBFUNCS): Rename to SUN_CONVERSION_LIBFUNCS.
810         * config/sparc/sparc.c (sparc_init_libfuncs): Initialize optabs
811         with _Q_qtoll, _Q_qtoull and _Q_lltoq if DITF_CONVERSION_LIBFUNCS.
812         * config.gcc (sparc-*-linux*): Revert 2004-03-23 change.
813         * config/sparc/t-linux64 (TARGET_LIBGCC2_CFLAGS): Likewise.
814         * config/sparc/t-linux: Removed.
815
816 2004-04-01  Jakub Jelinek  <jakub@redhat.com>
817
818         PR c++/14755
819         * fold-const.c (fold) <EQ_EXPR>: Properly compute newconst in
820         "bitfld++ == const" to "++bitfld == const + incr" transformations.
821
822 2004-04-01  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
823
824         * expr.c (get_inner_reference): Use DECL_UNSIGNED, not TREE_UNSIGNED.
825         * stor-layout.c (layout_decl): Likewise.
826         * tree.c (get_narrower): Likewise and also use BIT_FIELD_REF_UNSIGNED.
827         * fold-const.c (make_bit_field_ref): Use BIT_FIELD_REF_UNSIGNED.
828         * print-tree.c (print_node): Handle various used of unsigned_flag.
829         * tree.def (BIT_FIELD_REF): Update comment.
830         * tree.h (TREE_UNSIGNED): Deleted.
831         (DECL_UNSIGNED, BIT_FIELD_REF_UNSIGNED): New macros.
832
833 2004-03-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
834
835         * builtins.c, c-aux-info.c, c-common.c, c-cppbuiltin.c, c-decl.c:
836         Change most occurrences of TREE_UNSIGNED to TYPE_UNSIGNED.
837         * c-format.c, c-opts.c, c-pretty-print.c, c-typeck.c: Likewise.
838         * calls.c, convert.c, dbxout.c, dojump.c, dwarf2out.c: Likewise.
839         * expmed.c, expr.c, fold-const.c, function.c, integrate.c: Likewise.
840         * optabs.c, sdbout.c, stmt.c, stor-layout.c, tree-dump.c: Likewise.
841         * tree.c, config/iq2000/iq2000.c, config/m32r/m32r.c: Likewise.
842         * config/mips/mips.c, config/rs6000/rs6000.c: Likewise.
843         * config/s390/s390.c, config/sparc/sparc.c, objc/objc-act.c: Likewise.
844         * stor-layout.c (layout_type, case COMPLEX_TYPE): Test for
845         REAL_TYPE, not INTEGER_TYPE.
846         (layout_type, case VECTOR_TYPE): Simplify code.
847         * tree.c (build_vector_type_for_mode): Remove dup unsigned setting.
848         * tree.h: Update comments.
849         (STRIP_NOPS): Use TYPE_UNSIGNED.
850         (TYPE_UNSIGNED): New macro.
851         (TYPE_TRAP_SIGNED): Remove now redundant check.
852         (SAVE_EXPR_NOPLACEHOLDER): Don't use TREE_UNSIGNED.
853
854 2004-03-31  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
855
856         * function.c (put_var_into_stack): Properly set orig_reg for indirect.
857
858 2004-03-31  Andrew Pinski  <pinskia@physics.uc.edu>
859
860         * config/rs6000/t-darwin (LIB2FUNCS_STATIC_EXTRA):
861         Add darwin-fpsave.asm, darwin-vecsave.asm,
862         and darwin-world.asm.
863         (TARGET_LIBGCC2_CFLAGS): Add -Wa,-force_cpusubtype_ALL
864         as the asm files contain altivec instructions.
865         * config/rs6000/darwin-fpsave.asm: New file.
866         * config/rs6000/darwin-vecsave.asm: New file.
867         * config/rs6000/darwin-world.asm: New file.
868
869 2004-03-31  Zack Weinberg  <zack@codesourcery.com>
870
871         * gengtype-yacc.y (option, stringseq): Add missing
872         terminating semicolon.
873
874 2004-03-30  David Edelsohn  <edelsohn@gnu.org>
875
876         * config/rs6000/rs6000.md (tls_gd_32, tls_gd_64,
877         tls_ld_32, tls_ld_64, tls_dtprel_32, tls_dtprel_64,
878         tls_dtprel_ha_32, tls_dtprel_ha_64,
879         tls_dtprel_lo_32, tls_dtprel_lo_64,
880         tls_got_dtprel_64, tls_tprel_32, tls_tprel_64,
881         tls_tprel_ha_32, tls_tprel_ha_64,
882         tls_tprel_lo_32, tls_tprel_lo_64,
883         tls_got_tprel_32, tls_got_tprel_64,
884         tls_tls_32, tls_tls_64): Replace register_operand with
885         gpc_reg_operand.
886
887 2004-03-30  Mostafa Hagog  <mustafa@il.ibm.com>
888
889         * config/rs6000/rs6000.md (*ctrsi_internal1, *ctrsi_internal2,
890         *ctrdi_internal1, *ctrdi_internal2, *ctrsi_internal3,
891         *ctrsi_internal4, *ctrdi_internal3, *ctrdi_internal4,
892         *ctrsi_internal5, *ctrsi_internal6, *ctrdi_internal5,
893         *ctrdi_internal6): Replace register_operand with
894         nonimmediate_operand.
895
896 2004-03-29  Fariborz Jahanian <fjahanian@apple.com>
897
898         * fold-const.c (fold): Reassociate multiply expression
899         with an adjacent non-multiply expression to use
900         architecture's multiply-add instruction.
901
902 2004-03-30  Zack Weinberg  <zack@codesourcery.com>
903
904         * gengtype.c (create_option): New function.
905         * gengtype.h: Prototype it.
906         * gengtype-yacc.y (stringseq): New rule.
907         (option): Use create_option.  Add new bare ID production.  Use
908         stringseq, not STRING directly.
909
910         * alias.c, bitmap.c, c-decl.c, cgraph.h, cpplib.h, cselib.h
911         * dwarf2out.c, emit-rtl.c, function.h, lists.c, tree.h
912         * varray.h, config/alpha/alpha.c:
913         Use new shorter form of GTY markers.
914
915         * doc/gty.texi: Rewrite.
916
917 2004-03-30  Andrew Pinski  <pinskia@physics.uc.edu>
918
919         * config/darwin.c (machopic_function_base_name):
920         Remove current_name and getting the name of the
921         current function.
922
923 2004-03-30  Nick Clifton  <nickc@redhat.com>
924
925         * config/arm/arm.md (thumb_jump): Reduce the backward branch
926         range, and increase the forward branch range, to allow for
927         the fact that the PC will be off by 4.
928
929 2004-03-30  Alan Modra  <amodra@bigpond.net.au>
930
931         * .cvsignore: Add GPATH, GRTAGS, GSYMS and GTAGS (GNU GLOBAL)
932
933 2004-03-30  Hartmut Penner  <hpenner@de.ibm.com>
934
935         * config/rs6000/rs6000.c (output_vec_const_move):
936         Find all cases of EASY_VECTOR_15_ADD_SELF.
937         (easy_vector_constant_add_self): Accept
938         all vector constant loadable by vsplt* and vadd*.
939         (easy_vector_same): Use easy_vector_splat_const.
940         (easy_vector_const): Use easy_vector_splat_const.
941         (easy_vector_splat_const): New function.
942         (gen_easy_vector_constant_add_self): New function.
943
944         * config/rs6000/rs6000-protos.c (gen_easy_vector_constant_add_self):
945         New prototype.
946
947         * config/rs6000/altivec.md (movv4si splitter): Change to
948         emit move insn with halfed vector constant.
949         (*movv8hi splitter): Likewise.
950         (*movv16qi splitter): Likewise.
951
952 2004-03-30  Hartmut Penner  <hpenner@de.ibm.com>
953
954         PR 11591
955         * config/rs6000/rs6000.c (rs6000_legitimate_address):
956         Allow any offset to argument pointer in no-strict case.
957
958 2004-03-30  Jan Hubicka  <jh@suse.cz>
959
960         * toplev.c (backend_init): Add missing call to inint_optimization_passes.
961         * passes.c (init_optimization_passes, finish_optimization_passes): Output cgraph
962         dump file in non-unit-at-a-time mode.
963
964 2004-03-29  Hans-Peter Nilsson  <hp@axis.com>
965
966         * config/cris/cris.h: Correct #ifdef to test for
967         HAVE_AS_NO_MUL_BUG_ABORT_OPTION, not
968         HAVE_AS_MUL_BUG_ABORT_OPTION.
969
970 2004-03-29  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
971
972         * function.c (put_var_into_stack): If old RTL was ADDRESSOF, update
973         the address inside the old RTL.
974
975 2004-03-28  Zack Weinberg  <zack@codesourcery.com>
976
977         * c-decl.c: Verify that C_SIZEOF_STRUCT_LANG_IDENTIFIER is correct.
978         (struct c_binding, struct c_scope): Add chain_next
979         attributes to GTY markers.
980         (struct lang_identifier, struct lang_tree_node): Define
981         here...
982         * c-tree.h: ... not here.  No longer need to declare struct
983         c_binding either.  Do define C_SIZEOF_STRUCT_LANG_IDENTIFIER.
984         * c-lang.c, objc/objc-lang.c: Set LANG_HOOKS_IDENTIFIER_SIZE
985         to C_SIZEOF_STRUCT_LANG_IDENTIFIER.
986
987         PR 14734, 11944
988         * c-decl.c (get_parm_info): If error_mark_node is encountered
989         in the bindings chain, unbind and discard it; don't abort.
990
991 2004-03-28  Olga Golovonevsky <olga@il.ibm.com>
992             Dorit Naishlos <dorit@il.ibm.com>
993
994         * config/rs6000/altivec.md: (andvv16qi3, andv8hi3, one_cmplv16qi2,
995         one_cmplv8hi2, one_cmplv4si2, iorv16qi3, iorv8hi3,): New modelling.
996
997 2004-03-28  Stephane Carrez  <stcarrez@nerim.fr>
998
999         * config/m68hc11/m68hc11-protos.h (m68hc11_page0_symbol_p): Declare.
1000
1001         * config/m68hc11/m68hc11.c (m68hc11_handle_page0_attribute): New.
1002         (m68hc11_attribute_table): New attribute "page0" to mark a global
1003         variable as being allocated from within page0 section.
1004         (m68hc11_encode_label): New function.
1005         (m68hc11_strip_name_encoding): New function.
1006         (m68hc11_page0_symbol_p): New function.
1007         (m68hc11_indirect_p): Accept global variables marked in page0.
1008         (m68hc11_encode_section_info): Lookup "page0" attribute.
1009
1010         * config/m68hc11/m68hc11.h (EXTRA_CONSTRAINT): 'R' constraint also
1011         represents access to page0 variables.
1012
1013         * config/m68hc11/m68hc11.md ("*logicalsi3_zexthi"): Use gen_rtx_REG.
1014         ("*logicalsi3_silshl16_zext"): Likewise.
1015         ("*ashldi3_const32"): Likewise.
1016         (peephole2 ashift): Likewise.
1017
1018 2004-03-28  Joseph S. Myers  <jsm@polyomino.org.uk>
1019
1020         * c-tree.h (C_DECL_REGISTER): New.
1021         * c-aux-info.c (gen_decl), c-decl.c (objc_mark_locals_volatile,
1022         finish_decl, grokdeclarator, get_parm_info), c-typeck.c
1023         (build_array_ref, c_mark_addressable): Set and use it.
1024         * c-decl.c (grokdeclarator), c-typeck.c (c_mark_addressable):
1025         Allow structures with volatile fields to be declared register.
1026         Don't check TREE_ADDRESSABLE before warning about taking address
1027         of register.
1028         * c-decl.c (finish_decl): Don't allow structures with volatile
1029         fields to be placed in named register.
1030         * doc/trouble.texi: Remove reference to structures with volatile
1031         fields in registers.
1032
1033 2004-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
1034
1035         * function.c (thread_prologue_and_epilogue): Move
1036         NOTE_INSN_FUNCTION_END and NOTE_INSN_FUNCTION_BEG notes
1037         before the epilogue.
1038
1039 2004-03-27  Ulrich Weigand  <uweigand@de.ibm.com>
1040
1041         * expr.c (store_constructor): Use gen_int_mode to correctly
1042         sign-extend CONST_INT value.
1043
1044 2004-03-27  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1045
1046         * builtin-types.def (BT_WINT, BT_FN_INT_WINT, BT_FN_WINT_WINT): New.
1047         * builtins.def (DEF_C94_BUILTIN): New.  Add wctype builtins.
1048         * doc/extend.texi: Likewise.
1049
1050 2004-03-26  Diego Novillo  <dnovillo@redhat.com>
1051
1052         * c-typeck.c (comptypes): Replace calls to TYPE_DOMAIN
1053           with TYPE_ORIG_SIZE_TYPE.
1054
1055 2004-03-25  Aldy Hernandez  <aldyh@redhat.com>
1056
1057         PR 14219
1058         * c-typeck.c (build_binary_op): Do not allow comparisons of
1059         vectors.
1060
1061 2004-03-26  James A. Morrison  <ja2morri@uwaterloo.ca>
1062
1063         * config.gcc: Remove sparc-tti-*.
1064         * config/sparc/pbd.h: Delete.
1065
1066         * config/sparc/sol2.h: Remove note about Sun OS 4.x.
1067         * config/sparc/aout.h: Likewise.
1068
1069         * config/sparc/sparc.h: Remove if 0'd code.
1070         * config/sparc/sparc.md (call): Remove if 0'd code.
1071         (call_value): Likewise.
1072         (nonlocal_goto): Likewise.
1073         (unimp_insn): Delete.
1074
1075 2004-03-25  Roger Sayle  <roger@eyesopen.com>
1076
1077         * fold-const.c (tree_expr_nonnegative_p): Handle BIT_XOR_EXPR like
1078         BIT_IOR_EXPR; A^B is nonnegative when A and B are nonnegative.
1079
1080 2004-03-25  Richard Henderson  <rth@redhat.com>
1081
1082         PR 11527
1083         * c-typeck.c (pop_init_level): Emit pending init elements earlier
1084         rather than later.
1085
1086 2004-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1087
1088         * builtins.c (fold_builtin): Fix error in last change.
1089
1090 2004-03-25  Richard Sandiford  <rsandifo@redhat.com>
1091
1092         * config/mips/mips.h: Formatting fix.
1093
1094 2004-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1095
1096         * builtins.def: Add ctype builtins.
1097         * doc/extend.texi: Likewise.
1098
1099 2004-03-25  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1100
1101         * builtins.c (fold_builtin): Add new builtin optimizations for
1102         sqrt and/or cbrt.
1103         * fold-const.c (fold): Likewise.
1104
1105 2004-03-25  David Edelsohn  <edelsohn@gnu.org>
1106
1107         * config/rs6000/rs6000.c (rs6000_always_hint): New variable.
1108         (rs6000_sched_groups): New variable.
1109         (processor_target_table): Add power5.
1110         (rs6000_override_options): Set rs6000_sched_insert_nops,
1111         rs6000_sched_costly_dep and rs6000_sched_restricted_insns_priority
1112         from rs6000_sched_groups.
1113         (output_cbranch): Use rs6000_always_hint.
1114         (rs6000_variable_issue): Use rs6000_sched_groups.
1115         (rs6000_adjust_cost): Add CPU_POWER5.
1116         (is_microcoded_insn): Use rs6000_sched_groups.
1117         (is_dispatch_slot_restricted): Use rs6000_sched_groups.
1118         Return 2 for POWER5 cracked instructions.
1119         (is_cracked_insn): Use rs6000_sched_groups.
1120         (is_branch_slot_insn): Use rs6000_sched_groups.
1121         (rs6000_issue_rate): Add CPU_POWER5.
1122         (rs6000_sched_finish): Use rs6000_sched_groups.
1123         (rs6000_rtx_costs): Add PROCESSOR_POWER5.
1124         * config/rs6000/rs6000.h (processor_type): Add PROCESSOR_POWER5.
1125         (DEFAULT_SCHED_COSTLY_DEP): Delete.
1126         (DEFAULT_RESTRICTED_INSNS_PRIORITY): Delete.
1127         (DEFAULT_SCHED_FINISH_NOP_INSERTION_SCHEME): Delete.
1128         * config/rs6000/rs6000.md (define_attr "cpu"): Add power5.
1129         * config/rs6000/power5.md: New file.
1130         * doc/invoke.texi: Add power5 option.
1131
1132 2004-03-25  Kazu Hirata  <kazu@cs.umass.edu>
1133
1134         * cfgrtl.c, dbxout.c, tree.def, config/darwin.h,
1135         config/arm/arm.c, objc/objc-act.c: Fix comment typos.
1136         * doc/invoke.texi: Fix a typo.
1137
1138 2004-03-25  Kazu Hirata  <kazu@cs.umass.edu>
1139
1140         PR optimization/9707.
1141         * stmt.c (emit_case_nodes): Emit equality comparisons instead
1142         of recursing if both children are single-valued cases with no
1143         children.
1144
1145 2004-03-25  Paul Brook  <paul@codesourcery.com>
1146
1147         * config/arm/arm.c (vfp_print_multi): Remove.
1148         (arm_output_fldmx): New function.
1149         (vfp_emit_fstmx): Return block size, not insn. Add ARM10 VFPr1 bugfix.
1150         (arm_expand_prologue): Update to match.
1151         (arm_get_vfp_saved_size): New Function.
1152         (arm_get_frame_offsets): Use it.
1153         (arm_output_epilogue): Use new functions.
1154
1155 2004-03-24  Richard Henderson  <rth@redhat.com>
1156
1157         * alias.c (alias_invariant, alias_invariant_size): Mark GTY.
1158         (reg_known_value, reg_known_value_size): Likewise; make static.
1159         (reg_known_equiv_p): Make static.
1160         (clear_reg_alias_info): Update for new indexing.
1161         (get_reg_known_value, set_reg_known_value): New.
1162         (get_reg_known_equiv_p, set_reg_known_equiv_p): New.
1163         (canon_rtx): Use them.
1164         (init_alias_analysis): Likewise.  Allocate reg_known_value with gc.
1165         Don't play queer offsetting games with reg_known_value and
1166         reg_known_equiv_p.
1167         (end_alias_analysis): Free reg_known_value with gc.
1168         * rtl.h (get_reg_known_value, get_reg_known_equiv_p): Declare.
1169         * sched-deps.c (reg_known_equiv_p, reg_known_value): Remove.
1170         (deps_may_trap_p, sched_analyze_1, sched_analyze_2): Use the new
1171         functions instead.
1172
1173 2004-03-24  Kazu Hirata  <kazu@cs.umass.edu>
1174
1175         * dwarf2asm.c, loop.h, pretty-print.c, pretty-print.h,
1176         config/i386/mmintrin.h: Update copyright.
1177
1178 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
1179
1180         * configure.ac: Add --enable-werror-always (for top level bootstrap
1181         support).
1182         * configure: Regenerate.
1183
1184 2004-03-24  Ziemowit Laski  <zlaski@apple.com>
1185
1186         * objc/objc-act.c (objc_comptypes): Treat comparisons
1187         between 'Class' and '<class> *' as explicitly invalid.
1188
1189 2004-03-24  David Edelsohn  <edelsohn@gnu.org>
1190
1191         * doc/invoke.texi (-frename-registers: Add enabled at -O3.
1192         (-fprofile-values): Add enabled with profile-{generate,use}.
1193         (-fvpt): Same.
1194         (-ftracer): Add enabled with profile-use.
1195         (-funit-at-a-time): Add enabled at -O2,-O3.
1196         (-funroll-loops): Add enabled with profile-use.
1197         (-funswitch-loops): Add enabled with profile-use.  Remove duplicates.
1198         (max-gcse-passes): Mention default.
1199         (max-cse-path-length): Mention default.
1200
1201 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
1202
1203         * Makefile.in (STRICT2_WARN): Reorder.
1204         * configure.ac: Check for -Wold-style-definition, and use it
1205         in strict1_warn if it's available.
1206         * configure: Regnerate.
1207
1208 2004-03-24  Paul Brook  <paul@nowt.org>
1209
1210         * config.gcc <arm>: Add --with-abi=
1211         * config/arm/arm-protos.h (arm_get_frame_size, thumb_get_frame_size,
1212         thumb_far_jump_used): Remove prototypes.
1213         (arm_needs_doubleword_align): Add prototype.
1214         (thumb_compute_initial_elimination_offset): Ditto.
1215         * config/arm/arm.c (arm_get_frame_offsets): New function.
1216         (use_return_insn, output_return_instruction, arm_output_epilogue,
1217         arm_output_function_epilogue, arm_compute_initial_elimination_offset,
1218         arm_expand_prologue, thumb_expand_epilogue): Use it.
1219         (arm_abi, target_abi_name, all_arm_abis): New variables.
1220         (arm_override_options): Set them.  Set structure padding for AAPCS.
1221         (arm_return_in_memory): Update ABI check.
1222         (arm_init_cumulative_args): Initialize can_split.
1223         (arm_needs_doubleword_align): New function.
1224         (arm_function_arg): Don't split args after pushing to stack. Handle
1225         doubleword/even reg alignment.
1226         (arm_va_arg): Handle all doubleword aligned args.
1227         (add_minpoolforward ref, dump_minpool, push_minpool_fix): Align based
1228         on ABI, not CPU.
1229         (arm_compute_save_reg0_reg12_mask): Fix comment.
1230         (thumb_get_frame_size, thumb_get_frame_size): Remove.
1231         (thumb_jump_far_used_p): Remove superfluous argument.  Return save
1232         value for alignment.
1233         (thumb_unexpanded_epilogue, thumb_output_function_prologue): Change
1234         to match.
1235         (thumb_compute_initial_elimination_offset): New function.
1236         (thumb_expand_prologue): Use arm_get_frame_offsets.  Remove
1237         unneccessary rounding.
1238         * config/arm/arm.h (target_abi_name): Declare.
1239         (ARM_DOUBLEWORD_ALIGN, DOUBLEWORD_ALIGNMENT, TARGET_IWMMXT_ABI,
1240         arm_abi_type, ARM_DEFAULT_ABI): Define.
1241         (ARM_FLAG_ATPCS): Remove.
1242         (TARGET_OPTIONS, OPTION_DEFAULT_SPECS): Add -mabi=.
1243         (BIGGEST_ALIGNMENT, PREFERRED_STACK_BOUNDARY, STACK_BOUNDARY): Use it.
1244         (ADJUST_FIELD_ALIGN, DATA_ALIGNMENT, LOCAL_ALIGNMENT,
1245         TYPE_NEEDS_IWMMXT_ALIGNMENT): Remove.
1246         (LIBCALL_VALUE, FUNCTION_VALUE_REGNO_P, FUNCTION_ARG_REGNO_P):
1247         Contitionalize on ABI, not CPU.
1248         (struct arm_stack_offsets): Define.
1249         (struct machine_function): Add stack_offsets.  Remove frame_size.
1250         (FUNCTION_ARG_PARTIAL_NREGS): Don't split if previous args have been
1251         pushed.
1252         (FUNCTION_ARG_ADVANCE, FUNCTION_ARG_BOUNDARY): Handle general
1253         doubleword alignment.
1254         (THUMB_INITIAL_ELIMINATION_OFFSET,
1255         ARM_INITIAL_ELIMINATION_OFFSET): Remove.
1256         (INITIAL_ELIMINATION_OFFSET): Call functions directly.
1257         * config/arm/arm.md (align_8): Enable for all targets.
1258         * config/arm/netbsd-elf.h (TARGET_DEFAULT): Remove TARGET_ATPCS.
1259         (ARM_DEFAULT_ABI): Define.
1260         * doc/invoke.texi <ARM>: Document -mabi=. Update documentation for
1261         -mstructure-size-boundary.
1262
1263 2004-03-24  Nathanael Nerode  <neroden@gcc.gnu.org>
1264
1265         * configure.ac: Check for -Wno-variadic-macros; don't use
1266         -pedantic (in stage 1 or a simple 'make all') unless it's available,
1267         and if it's available, use it.  Also, clean up check for
1268         -Wno-long-long.
1269         * configure: Regenerate.
1270
1271 2004-03-24  Richard Sandiford  <rsandifo@redhat.com>
1272
1273         * config.gcc (mips64vr-*-elf*, mips64vrel-*-elf*): Remove tm_defines.
1274         * config/mips/vr.h (DEFAULT_VR_ARCH): New macro, defined to vr4130.
1275         (MULTILIB_DEFAULTS): Use it.
1276         (MIPS_CPU_STRING_DEFAULT): Remove.
1277         (MIPS_ABI_DEFAULT, MIPS_MARCH_CONTROLS_SOFT_FLOAT): Define.
1278         (DRIVER_SELF_SPECS): Make -mfix-vr4122-bugs imply -march=vr4120.  Make
1279         EABI64 -mlong32 the default ABI.  Enforce the default architecture.
1280         * config/mips/t-vr (MULTILIB_OPTIONS): Add mfix-vr4122-bugs,
1281         march=vr4130, march=vr4300, march=vr5000 and march=vr5500.
1282         (MULTILIB_MATCHES): Use -mfix-vr4122-bugs multilibs for -march=vr4120.
1283         (MULTILIB_EXCEPTIONS): Change choice of multilibs.  Update comments
1284         accordingly.
1285
1286 2004-03-24  DJ Delorie  <dj@redhat.com>
1287             Richard Sandiford  <rsandifo@redhat.com>
1288
1289         * config/mips/mips.h (MASK_FIX_VR4122, TARGET_FIX_VR4122): New macros.
1290         (TARGET_SWITCHES): Add -mfix-vr4122-bugs and -mno-fix-vr4122-bugs.
1291         (ASM_SPEC): Pass down -mfix-vr4122-bugs.
1292         * config/mips/mips.c (mips_avoid_hazards): Don't emit whole functions
1293         in .set noreorder and .set nomacro if TARGET_FIX_VR4122.
1294         (mips_init_libfuncs): Use special functions for divsi3 and modsi3
1295         if TARGET_FIX_VR4122.
1296         * config/mips/mips.md (define_attr length): Account for nops inserted
1297         after macc and dmult when using -mfix-vr4122-bugs.
1298         (umuldi3_highpart, divmodsi4, divmoddi4): Disable if TARGET_FIX_VR4122.
1299         * config/mips/t-vr (LIB2FUNCS_STATIC_EXTRA): Define instead of
1300         LIB2FUNCS_EXTRA.  Add config/mips/vr4122-div.S.
1301         * config/mips/vr4122-div.S: New file.
1302         * doc/invoke.texi: Document -mfix-vr4122-bugs.
1303
1304 2004-03-24  Richard Sandiford  <rsandifo@redhat.com>
1305
1306         * config/mips/mips.h (PROCESSOR_R4130): New processor_type.
1307         (TARGET_MIPS4130): New macro.
1308         (ISA_HAS_MACC): Return true if TARGET_MIPS4130 && !TARGET_MIPS16.
1309         * config/mips/mips.c (mips_cpu_info_table): Add a vr4130 entry.
1310         (override_options): Extend MIPS_MARCH_CONTROLS_SOFT_FLOAT to deal
1311         with PROCESSOR_R4130.
1312         * config/mips/mips.md (define_attr cpu): Add r4130.
1313         * doc/invoke.texi: Document vr4130 as a supported MIPS architecture.
1314
1315 2004-03-24  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
1316             Richard Sandiford  <rsandifo@redhat.com>
1317
1318         * doc/invoke.texi: Apply missed hunk from 2004-03-03 change.
1319
1320 2004-03-24  Alexandre Oliva  <aoliva@redhat.com>
1321
1322         PR preprocessor/14438
1323         * cpplib.c (do_pragma): Remove line_change call after pragma
1324         handler.
1325
1326 2004-03-23  Ian Lance Taylor  <ian@wasabisystems.com>
1327
1328         * doc/extend.texi (ARM Built-in Functions): Replace with correct
1329         declarations.
1330
1331 2004-03-23  Roger Sayle  <roger@eyesopen.com>
1332
1333         * reg-stack.c (get_true_reg): Handle FLOAT_TRUNCATE like FLOAT_EXTEND
1334         if flag_unsafe_math_optimizations.
1335         * config/i386/i386.md (truncdfsf2): If flag_unsafe_math_optimizations
1336         and TARGET_80387 expand using truncdfsf2_noop pattern.
1337         (truncxfsf2): Likewise using truncxfsf2_noop.
1338         (truncxfdf2): Likewise using truncxfdf2_noop.
1339         (truncdfsf2_noop, truncxfsf2_noop, truncxfdf2_noop): New patterns.
1340
1341 2004-03-23  Ziemowit Laski  <zlaski@apple.com>
1342
1343         * hooks.c (hook_constcharptr_tree_null): New hook.
1344         * hooks.h (hook_constcharptr_tree_null): New prototype.
1345         * target-def.h (TARGET_MANGLE_FUNDAMENTAL_TYPE): New target hook.
1346         * target.h (mangle_fundamental_type): New target hook.
1347         * config/rs6000/rs6000.c (TARGET_MANGLE_FUNDAMENTAL_TYPE): Point
1348         target hook at rs6000_mangle_fundamental_type.
1349         (rs6000_mangle_fundamental_type): New function.
1350         * doc/tm.texi (TARGET_MANGLE_FUNDAMENTAL_TYPE): Document.
1351
1352 2004-03-23  Zack Weinberg  <zack@codesourcery.com>
1353
1354         PR 12267, 12391, 12560, 13129, 14114, 14133
1355         * c-tree.h: Forward declare struct c_binding.  Declare
1356         c_override_bindings_to_false.  Update prototypes.
1357         (struct lang_identifier): Update comments.  Change fields to be
1358         struct c_binding *.
1359         (IDENTIFIER_SYMBOL_VALUE, IDENTIFIER_TAG_VALUE)
1360         (IDENTIFIER_LABEL_VALUE, C_DECL_INVISIBLE)
1361         (KEEP_NO, KEEP_YES, KEEP_MAYBE): Delete.
1362         (C_DECL_IN_EXTERNAL_SCOPE, C_DECL_DECLARED_BUILTIN): New.
1363         * c-common.h: Update prototypes.
1364         * c-decl.c (struct c_scope): Update commentary.  Remove names,
1365         names_last, parms, parms_last, tags, and shadowed fields.  Add
1366         bindings and depth fields.
1367         (scope_freelist): Move to more appropriate location.
1368         (c_print_identifier): Update for changes to struct lang_identifier.
1369         (objc_mark_locals_volatile): Update for new bindings structures.
1370         (global_bindings_p): Honor c_override_global_bindings_to_false.
1371         (pushlevel): Rename to push_scope; take no arguments; use the
1372         scope_freelist; initialize scope->depth and check for overflow.
1373         (poplevel): Rename to pop_scope; totally rewritten for new bindings
1374         structures.
1375         (diagnose_mismatched_decls): Use C_DECL_DECLARED_BUILTIN, not
1376         C_DECL_INVISIBLE, for certain decisions.  Adjust some diagnostics.
1377         Improve some commentary.  Adjust handling of forward parm decls.
1378         (merge_decls): Set C_DECL_DECLARED_BUILTIN when appropriate.
1379         Preserve C_DECL_IN_EXTERNAL_SCOPE.
1380         (warn_if_shadowing): Correct indentation.  Improve diagnostics.
1381         (pushdecl): Remove unnecessary assertion.  Short-circuit anonymous
1382         decls.  Rewrite for new bindings structures.  Improve commentary.
1383         Eliminate the copy_node call.
1384         (implicit_decl_warning): Use the "diag" idiom (as seen in
1385         locate_old_decl) to reduce code duplication; call locate_old_decl
1386         if appropriate.  Relocate to remove need for forward declaration.
1387         (implicitly_declare): Adjust for new bindings structures.  Kludge
1388         around Objective-C not-really-builtin functions.
1389         (undeclared_variable): Improve diagnostics.  If current_function_decl
1390         is nonnull but current_function_scope is null, use current_scope.
1391         Use bind.
1392         (lookup_tag): Adjust for new bindings structures.  Kludge around
1393         Objective-C's tag declarations that wind up in the external scope.
1394         (lookup_name): Adjust for new bindings structures.  Kludge around
1395         c-common.c's pseudo-typedefs that wind up in the external scope.
1396         (lookup_name_current_level): Rename lookup_name_in_scope; take a
1397         second argument indicating the scope to examine; rewrite for
1398         new bindings structures.
1399         (c_init_decl_processing): Adjust for renamed functions.  Do not
1400         initialize current_file_decl, first_builtin_decl, last_builtin_decl.
1401         First scope pushed is the external scope, not the global scope.
1402         (builtin_function): Use bind, not pushdecl.  Adjust other bits
1403         for new data structures.  Keep track of builtins that should be
1404         made visible automatically.
1405         (start_decl): Adjust diagnostics.  Remove unnecessary call to
1406         expand_decl.
1407         (grokparms): Return 0 if arg_types is error_mark_node.
1408         (get_parm_info): Rename "void_at_end" argument to "ellipsis", with
1409         reversed sense.  Rewrite for new bindings structures.  Do not
1410         leave any decls in the scope, to prevent pop_scope from doing
1411         contradictory things with them.
1412         (finish_struct, finish_enum): Remove redundant diagnostics.
1413         (build_enumerator): Don't cascade diagnostics for error_mark_node.
1414         Mark location where -pedantic changes the meaning of the program.
1415         (store_parm_decls_newstyle, store_parm_decls_oldstyle): Load the
1416         parameter decls into the function's scope structure using bind.
1417         Warn here about function definitions in the wrong style.
1418         Adjust diagnostics.
1419         (store_parm_decls): Correct the determination of whether a
1420         function was defined with a prototype.
1421         (c_write_global_declarations): Operate on all file decls and on
1422         the external scope.  Split body of the loop to...
1423         (c_write_global_declarations_1): ... this new function, to avoid
1424         code duplication.
1425         (truly_local_externals, first_builtin_decl, last_builtin_decl)
1426         (make_scope, pop_scope, in_parm_level_p, set_block)
1427         (any_external_decl, record_external_decl, bind_label, getdecls)
1428         (link_hash_hash, link_hash_eq, merge_translation_unit_decls)
1429         (c_reset_state): Delete.
1430         (visible_builtins, c_override_global_bindings_to_false)
1431         (c_binding, I_SYMBOL_BINDING, I_SYMBOL_DECL, I_TAG_BINDING)
1432         (I_TAG_DECL, I_LABEL_BINDING, I_LABEL_DECL, file_scope)
1433         (external_scope, binding_freelist, bind, free_binding_and_advance)
1434         (push_file_scope, pop_file_scope): New.
1435         (pushtag, pushdecl_top_level, lookup_label, declare_label)
1436         (define_label, c_make_fname_decl, finish_decl)
1437         (mark_forward_parm_decls, build_compound_literal)
1438         (grokdeclarator, start_function, check_for_loop_decls)
1439         (identifier_global_value, record_builtin_type): Minor adjustments
1440         for new bindings structures.  Improve diagnostics and commentary.
1441         * c-objc-common.c (start_cdtor, finish_cdtor): Adjust calls to
1442         pushlevel/poplevel respectively.
1443         (c_objc_common_finish_file): Don't call merge_translation_unit_decls.
1444         * c-opts.c (c_common_parse_file): Remove spurious ATTRIBUTE_UNUSED.
1445         Warn about YYDEBUG not being defined only if -dy.  Remove no-longer-
1446         correct loop over multiple translation units; call fatal_error if
1447         requested to compile more than one file at once.  (This disables
1448         IMA temporarily - an up-front error being preferable to a crash.)
1449         * c-parse.in (pushlevel, poplevel rules): Rename push_scope, pop_scope.
1450         (all actions): Adjust calls to pushlevel/poplevel.
1451         (parsing_iso_function_signature): Delete.
1452         (extdef_1): Fold into extdef.
1453         (old_style_parm_decls_1): Fold into old_style_parm_decls.  Don't
1454         warn here about function definitions in the wrong style.
1455         (after_tyle_declarator, parm_declarator_starttypename)
1456         (parm_declarator_nostarttypename, notype_declarator): Remove
1457         commented-out productions.
1458         (parmlist_1, parmlist_2): Use make_node, not tree_cons, to create
1459         an empty TREE_LIST node.  Adjust calls to get_parm_info.
1460         (parmlist_2 : ELLIPSIS): Tag the arg-info block with error_mark_node
1461         to suppress -Wold-style-definition after this error.
1462         (c_parse_file): Don't clear the binding stack or call
1463         finish_fname_decls here.  Correct comment.
1464         * c-typeck.c (same_translation_unit_p): Export.
1465         (common_type): Use c_override_global_bindings_to_false, not
1466         pushlevel/poplevel/declare_parm_level.
1467         * c-lang.c: Override LANG_HOOKS_CLEAR_BINDING_STACK,
1468         LANG_HOOKS_PUSHLEVEL, LANG_HOOKS_POPLEVEL, LANG_HOOKS_SET_BLOCK,
1469         and LANG_HOOKS_GETDECLS with do-nothing stubs.
1470         * objc/objc-lang.c: Likewise.
1471         * objc/objc-act.c: Adjust all calls to pushlevel, poplevel,
1472         get_parm_info.
1473         (OBJC_VOID_AT_END): Delete; replace all uses
1474         with void_list_node.
1475         (generate_forward_declaration_to_string_table): Delete.
1476         * objc/objc-act.h (OCTI_STRG_DECL, UOBJC_STRINGS_decl): Delete.
1477
1478         * coverage.c (create_coverage): Don't pushdecl anything.
1479         * langhooks.c (lhd_clear_binding_stack): Call
1480         lang_hooks.decls.poplevel, not poplevel.
1481         * tree.c (list_length): If ENABLE_TREE_CHECKING, abort on a
1482         circular list rather than going into an infinite loop.
1483
1484 2004-03-23  Olivier Hainque  <hainque@act-europe.fr>
1485
1486         * optabs.c (expand_binop): When synthesizing double word rotates
1487         from single word shifts, use a new register target if the provided
1488         target is not a REG already.
1489
1490 2004-03-23  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1491
1492         * alias.c (get_alias_set): Add support for TYPE_REF_CAN_ALIAS_ALL.
1493         * c-common.c (handle_mode_attribute): Add extra arg to
1494         build_pointer_type_for_mode and build_reference_type_for_mode.
1495         * c-typeck.c (build_c_cast): Only look at TREE_CONSTANT_OVERFLOW
1496         for INTEGER_CST.
1497         * tree.c (build_pointer_type_for_mode): Add arg CAN_ALIAS_ALL.
1498         Chain pointers via TYPE_NEXT_PTR_TO.
1499         (build_reference_type_for_mode): Similarly.
1500         (build_type_no_quals): Add extra arg to build_pointer_type_for_mode
1501         and build_reference_type_for_mode.
1502         (tree_check4_failed): New function.
1503         * tree.h (TREE_CHECK4, PTR_OR_REF_CHECK): New macros.
1504         (TYPE_REF_CAN_ALIAS_ALL, TYPE_NEXT_PTR_TO, TYPE_NEXT_REF_TO): Likewise.
1505         (TREE_NO_UNSUED_WARNING, TREE_VIA_VIRTUAL, TREE_CONSTANT_OVERFLOW):
1506         Add check.
1507
1508 2004-03-23  Roger Sayle  <roger@eyesopen.com>
1509
1510         * fold-const.c (tree_expr_nonnegative_p): A&B is nonnegative when
1511         A is nonnegative or B is nonnegative.  Similarly A|B is nonnegative
1512         when both A and B are nonnegative.
1513         (tree_expr_nonzero_p): A|B is nonzero when A is nonzero or B is
1514         nonzero.
1515
1516 2004-03-23  Kazu Hirata  <kazu@cs.umass.edu>
1517
1518         * fold-const.c (fold): Remove cases for INTEGER_CST, REAL_CST,
1519         VECTOR_CST, STRING_CST, COMPLEX_CST, and CONSTRUCTOR.
1520
1521 2004-03-23  Kazu Hirata  <kazu@cs.umass.edu>
1522
1523         PR optimization/14669
1524         * fold-const.c (fold): Only unwiden integer comparisons for equality
1525         and inequality operators, or when the signedness doesn't change.
1526
1527 2004-03-23  Jakub Jelinek  <jakub@redhat.com>
1528
1529         * config.gcc (sparc-*-linux*): Add sparc/t-linux to tmake_file.
1530         * config/sparc/t-linux64 (TARGET_LIBGCC2_CFLAGS): Set.
1531         * config/sparc/t-linux: New file.
1532
1533 2004-03-23  Richard Sandiford  <rsandifo@redhat.com>
1534
1535         * gcse.c (can_assign_to_reg_p): New function, split out from...
1536         (want_to_gcse_p): ...here.
1537         (compute_ld_motion_mems): Use can_assign_to_reg_p to validate
1538         the rhs of a store.
1539
1540 2004-03-22  Diego Novillo  <dnovillo@redhat.com>
1541
1542         * c-typeck.c (same_translation_unit_p): Fix pasto.
1543
1544 2004-03-22  David Edelsohn  <edelsohn@gnu.org>
1545
1546         * params.def (PARAM_MAX_SCHED_REGION_BLOCKS): New.
1547         (PARAM_MAX_SCHED_REGION_INSNS): New.
1548         * sched-rgn.c: Include params.h
1549         (MAX_RGN_BLOCKS): Delete.
1550         (MAX_RGN_INSNS): Delete.
1551         (too_large): Return bool.  Convert to PARAM_VALUE.
1552         * Makefile.in (sched-rgn.o): Depend on $(PARAMS_H).
1553         * doc/invoke.texi (param): Document max-sched-region-blocks and
1554         max-sched-region-insns.
1555
1556 2004-03-22  Joel Brobecker  <brobecker@gnat.com>
1557
1558         * dwarf2out.c (is_subrange_type): Do not emit a subrange_type DIE
1559         for base types.
1560
1561 2004-03-22  Joel Brobecker  <brobecker@gnat.com>
1562
1563         * dwarf2out.c (is_subrange_type): Minor code rework. No behavior
1564         change.
1565
1566 2004-03-22  Jakub Jelinek  <jakub@redhat.com>
1567
1568         PR c/14069
1569         * c-decl.c (finish_struct): Change type of incorrect flexible array
1570         field into error_mark_node.
1571
1572 2004-03-22  Andrew Pinski  <pinskia@physics.uc.edu>
1573
1574         PR target/14580
1575         * config/rs6000/rs6000.c (symbol_ref_operand): Reject symbols
1576         who are not local for Darwin PIC.
1577
1578 2004-03-22  Ulrich Weigand  <uweigand@de.ibm.com>
1579
1580         * regrename.c (regrename_optimize): Set regs_ever_live for all
1581         registers introduced as replacement.
1582
1583 2004-03-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
1584
1585         PR middle-end/14470
1586         * expr.c (mark_queue): New function.
1587         (emit_insns_enqueued_after_mark): New function replacing
1588         emit_queue.  Clear the body of emitted queued insns.
1589         (emit_queue): Call emit_insns_enqueued_after_mark.
1590         (store_expr): Mark the increment queue on entry.  Emit
1591         only the incrementations queued when expanding the source.
1592
1593 2004-03-22  Nathanael Nerode  <neroden@gcc.gnu.org>
1594
1595         * configure.ac: Allow --disable-coverage-flags (for the future benefit
1596         of top level bootstrap, and consistency).  Reindent.
1597         * configure: Regenerate.
1598
1599 2004-03-21  Kazu Hirata  <kazu@cs.umass.edu>
1600
1601         * bt-load.c, builtins.c, cfghooks.c, cfgrtl.c, gcse.c,
1602         ggc-page.c, integrate.c, var-tracking.c, web.c: Remove
1603         unnecessary casts.
1604
1605 2004-03-22  Danny Smith  <dannysmith@users.sourceforge.net>
1606
1607         PR target/14291
1608         * gcov-io.h (gcov_truncate): Define ftruncate as _chsize for
1609         __MINGW32__.
1610
1611 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
1612
1613         * config/s390/s390.md ("*doloop_si"): Change predicate for operand 2
1614         to nonimmediate_operand.
1615         ("*doloop_di"): Likewise.
1616
1617 2004-03-21  Alexandre Oliva  <aoliva@redhat.com>
1618
1619         * real.h (struct real_value): Use the same type for all
1620         bitfields.  Rename exp to uexp.
1621         (REAL_EXP, SET_REAL_EXP): New accessor macros for uexp.
1622         Adjust all uses of exp...
1623         * builtins.c: ... here, ...
1624         * emit-rtl.c: ... here, and ...
1625         * real.c: ... and here.
1626
1627 2004-03-21  Gabriel Dos Reis  <gdr@integrable-solutions.net>
1628
1629         * pretty-print.c (pp_base_maybe_space): New function.
1630         * pretty-print.h (pp_base_maybe_space): Declare.
1631         (pp_maybe_space): New macro.
1632
1633 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
1634
1635         * config/s390/s390.md ("addti3", "subti3"): New insns and splitters.
1636
1637 2004-03-21  Ulrich Weigand  <uweigand@de.ibm.com>
1638
1639         * expmed.c (choose_mult_variant): Pass MULT_COST as argument instead
1640         of using register multiplication cost.
1641         (expand_mult): Adapt choose_mult_variant call.
1642         (expand_mult_highpart): Call choose_mult_variant with WIDER_MODE
1643         of MODE; pass appropriate cost bound.  Adjust result when
1644         performing signed multiplication by a negative constant.
1645         Don't use intermediate modes larger than word_mode.
1646
1647 2004-03-21  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1648
1649         * alias.c (get_alias_set): Remove handling of PLACEHOLDER_EXPR.
1650         * emit-rtl.c (component_ref_for_mem_expr): Likewise.
1651         (set_mem_attributes_minus_bitpos): Call SUBSTITUTE_PLACEHOLDER_IN_EXPR.
1652         * explow.c (expr_size): Likewise.
1653         * expr.h (placeholder_list, find_placeholder): Deleted.
1654         * expr.c (store_constructor): Likewise.
1655         (get_inner_reference): Likewise.  Also don't call find_placeholder.
1656         (placeholder_list, find_placeholder): Deleted.
1657         (is_aligning_offset): Don't handle WITH_RECORD_EXPR, PLACEHOLDER_EXPR.
1658         (expand_expr_real, cases PLACEHOLDER_EXPR, WITH_RECORD_EXPR): Likewise.
1659         (highest_pow2_factor, case WITH_RECORD_EXPR): Remove.
1660         * dojump.c (do_jump, case WITH_RECORD_EXPR): Likewise.
1661         * dwarf2out.c (loc_descriptor_from_tree, case WITH_RECORD_EXPR):
1662         Likewise.
1663         * fold-const.c (invert_truthvalue, case WITH_RECORD_EXPR): Likewise.
1664         (extract_muldiv, case WITH_RECORD_EXPR): Likewise.
1665         * tree.c (expr_align, case WITH_RECORD_EXPR): Likewise.
1666         (contains_placeholder_p): Don't handle WITH_RECORD_EXPR.
1667         Clean up by using first_rtl_op.
1668         (substitute_in_expr): Use SUBSTITUTE_IN_EXPR for recursive call.
1669         (substitute_placeholder_in_expr): New function.
1670         * tree.def (WITH_RECORD_EXPR): Deleted.
1671         * tree.h (SUBSTITUTE_IN_EXPR, SUBSTITUTE_PLACEHOLDER_IN_EXPR): New.
1672         (substitute_placeholder_in_expr): New.
1673
1674 2004-03-21  Andrew Pinski  <pinskia@gcc.gnu.org>
1675
1676         * dojump.c (prefer_and_bit_test): Fix which part of
1677         the and_test is replaced.
1678
1679 2004-03-21  Joseph S. Myers  <jsm@polyomino.org.uk>
1680
1681         * frontends.texi: Add missing line.
1682
1683 2004-03-21  Zack Weinberg  <zack@codesourcery.com>
1684             Chris Devers  <cdevers@pobox.com>
1685             Joseph S. Myers  <jsm@polyomino.org.uk>
1686
1687         * doc/frontends.texi: Rewrite.
1688         * doc/gcc.texi: Update last modification date.
1689
1690 2004-03-21  Josef Zlomek  <zlomekj@suse.cz>
1691
1692         * cfgrtl.c (cfg_layout_redirect_edge_and_branch): Print the debug
1693         message before redirecting the edge.
1694
1695 2004-03-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1696
1697         * emit-rtl.c (set_mem_attributes_minus_bitpos): Set MEM_POINTER
1698         flag.
1699         * explow.c (force_not_mem): Set REG_POINTER flag according to
1700         MEM_POINTER one.
1701         * rtl.h (MEM_POINTER): New macro.
1702         (struct rtx_def): Use integrated for MEM_SCALAR_P and frame_related
1703         for MEM_POINTER.
1704
1705 2004-03-20  Roger Sayle  <roger@eyesopen.com>
1706
1707         PR target/13889
1708         * cse.c (fold_rtx): Avoid substituting constants into unary
1709         conversion operations.
1710
1711 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1712
1713         * fold-const.c (fold): Replace "expr" with "t".
1714
1715 2004-03-20  Ian Lance Taylor  <ian@wasabisystems.com>
1716
1717         PR c/12373
1718         * c-typeck.c (tagged_types_tu_compatible_p): Don't use
1719         DECL_ORIGINAL_TYPE if there isn't one.
1720
1721 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1722
1723         * fold-const.c (fold): Replace "final_type" with "type".
1724         Remove variable "final_type".
1725
1726 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1727
1728         * fold-const.c (fold): Constify "type".
1729         Replace "TREE_TYPE (t)" with "type".
1730
1731 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1732
1733         * bb-reorder.c, bt-load.c, c-decl.c, cfgcleanup.c, coverage.c,
1734         dwarf2asm.c, ifcvt.c, stor-layout.c, varasm.c: Replace calls
1735         via (*targetm.foo) () with targetm.foo ().
1736
1737 2004-03-20  Joseph S. Myers  <jsm@polyomino.org.uk>
1738
1739         PR other/14630
1740         * doc/install.texi: Add info directory category and entry.
1741
1742 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1743
1744         * fold-const.c (fold): Replace "t" with "tem" where it is used
1745         as a temporary variable.  Remove "orig_t" and all of its uses.
1746
1747 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1748
1749         * fold-const.c (fold): Remove variable "invert".
1750         Move the handling of relational expressions that can be folded
1751         to a constant ...
1752         (fold_relational_const): ... here.
1753         (tree_expr_nonzero_p): New.
1754
1755 2004-03-20  Joseph S. Myers  <jsm@polyomino.org.uk>
1756
1757         PR c/14635
1758         * builtins.def (nan, nanf, nanl, nans, nansf, nansl): Change to
1759         DEF_GCC_BUILTIN.
1760
1761 2004-03-20  Richard Sandiford  <rsandifo@redhat.com>
1762
1763         * Makefile.in (dojump.o): Depend on $(GGC_H) and dojump.h.
1764         (GTFILES): Add $(srcdir)/dojump.h.
1765         (gt-dojump.h): New dependency.
1766         * dojump.c (and_reg, and_test, shift_test): New static variables.
1767         (prefer_and_bit_test): New function.
1768         (do_jump): Use it to choose between (X & (1 << C)) and (X >> C) & 1.
1769
1770 2004-03-20  Kazu Hirata  <kazu@cs.umass.edu>
1771
1772         * c-common.c, cfgcleanup.c, cgraphunit.c, c-pretty-print.c,
1773         expmed.c, ggc-common.c, jump.c, passes.c, recog.c, regmove.c,
1774         reorg.c, tree.h: Fix comment typos.
1775
1776 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
1777
1778         * alias.c, attribs.c, bt-load.c, builtins.c, c-common.c,
1779         c-decl.c, c-objc-common.c, c-typeck.c, calls.c, cfglayout.c,
1780         cse.c, dbxout.c, dwarf2out.c, except.c, final.c,
1781         haifa-sched.c, integrate.c, passes.c, rtlanal.c, sched-rgn.c,
1782         sched-vis.c, simplify-rtx.c, stor-layout.c, tree.c, varasm.c,
1783         vmsdbgout.c: Replace calls via (*targetm.foo) () with
1784         targetm.foo ().
1785
1786 2004-03-19  Ziemowit Laski  <zlaski@apple.com>
1787
1788         * config/rs6000/altivec.h (vec_dst, vec_dstst, vec_dststt,
1789         vec_dstt, vec_sld, vec_splat): Add prototypes, marked with
1790         always_inline attribute.
1791         * config/rs6000/rs6000.c (altivec_expand_dst_builtin):
1792         Treat expansion as completed even if literal argument is
1793         invalid (so that other expansions are not tried in vain).
1794
1795 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
1796
1797         * loop-doloop.c (add_test): Replace GEN_INT (0) with
1798         const0_rtx.
1799
1800 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
1801
1802         * fold-const.c (fold) <ABS_EXPR>: Move the handling of constants
1803         ...
1804         (fold_abs_const): ... here.
1805
1806 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1807
1808         * tree.h (TYPE_ARRAY_MAX_SIZE): Use type.maxval directly.
1809
1810 2004-03-19  Denis Chertykov  <denisc@overta.ru>
1811
1812         PR target/11520
1813         * config/avr/avr.md ("call_insn"): Handle explicit integer
1814         specially.
1815         (call_value_insn): Likewise.
1816
1817 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1818
1819         * tree.c (substitute_in_expr): Rewrite to simplify and be more generic.
1820
1821 2004-03-19  Kazu Hirata  <kazu@cs.umass.edu>
1822
1823         * fold-const.c (negate_expr): Move the handling of constants
1824         ...
1825         (fold_negate_const): ... here.
1826
1827 2004-03-19  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1828
1829         * langhooks-def.h (LANG_HOOKS_HASH_TYPES): New macro and hook.
1830         * langhooks.h (struct lang_hooks_for_types): New field hash_types.
1831         * tree.c (debug_no_type_hash): Deleted.
1832         (type_hash_canon): Abort if passed a variant.
1833         Check lang_hooks.types.hash_types.
1834         (build_type_no_quals): Copy mode of POINTER_TYPE and REFERENCE_TYPE.
1835         (build_array_type): Remove unnecessary allocation of pointer type.
1836         (build_complex_type): Properly qualify resulting type.
1837
1838 2004-03-19  Paolo Bonzini  <bonzini@gnu.org>
1839
1840         * config/rs6000/rs6000.c (rs6000_init_builtins): Fix typo.
1841
1842 2004-03-19  Richard Sandiford  <rsandifo@redhat.com>
1843
1844         * expmed.c (choose_mult_variant, expand_mult_const): New, split from...
1845         (expand_mult): ...here.
1846         (extract_high_half): New, split out from expand_mult_highpart.
1847         (expand_highpart_optab): Likewise.  Don't clobber target prematurely.
1848         (expand_highpart): Evaluate the cost of a shift/add sequence,
1849         then see if any of the specialized optabs are cheaper.
1850
1851 2004-03-18  Ian Lance Taylor  <ian@wasabisystems.com>
1852
1853         * mklibgcc.in: Remove obsolete MAYBE_USE_COLLECT2.
1854
1855 2004-03-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1856
1857         * convert.c (convert_to_real): Add more math builtins.
1858
1859 2004-03-18  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
1860
1861         * convert.c (convert_to_real): Reformat using switch stmt.
1862
1863 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
1864
1865         * c-common.c (pointer_int_sum): Do not complain about using
1866         pointers to pointers-to-members.
1867
1868 2004-03-18  Kazu Hirata  <kazu@cs.umass.edu>
1869
1870         * system.h (MD_ASM_CLOBBERS): Move to "Old target macros that
1871         have moved to the target hooks structure".
1872
1873 2004-03-18  James E Wilson  <wilson@specifixinc.com>
1874
1875         * config/mips/mips.md (type): Split move into arith and fmove.  Split
1876         hilo into mthilo and mfhilo.  Add trap.  Delete icmp.  Fix all uses.
1877         * config/mips/5400.md (ir_vr54_hilo, ir_vr54_arith, ir_vr54_fabs):
1878         Likewise.
1879         * config/mips/5500.md (ir_vr55_hilo, ir_vr55_arith, ir_vr55_fabs):
1880         Likewise.
1881         * config/mips/7000.md (rm7_int_other, rm7_mthilo, rm7_mfhilo,
1882         rm7_fp_quick): Likewise.
1883         * config/mips/9000.md (rm9k_int, rm9k_mfhilo, rm9k_mthilo,
1884         rm9k_fquick): Likewise.
1885         * config/mips/sr71k.md (ir_sr70_hilo, ir_sr70_arith, ir_sr70_fabs):
1886         Likewise.
1887         (ir_sr70_icmp): Delete.
1888
1889 2004-03-18  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
1890
1891         * tree.h (TREE_CHECK2, TREE_CHECK3, TREE_CHECK5): New macros.
1892         (tree_check2_failed, tree_check3_failed, tree_check5_failed): New decl.
1893         (FUNC_OR_METHOD_CHECK, SET_ARRAY_OR_VECTOR_CHECK): New macros.
1894         (REC_OR_UNION_CHECK, NUMERICAL_TYPE_CHECK): Likewise.
1895         (TYPE_VALUES, TYPE_DOMAIN, TYPE_FIELDS, TYPE_METHODS, TYPE_VFIELD):
1896         Protect with proper check.
1897         (TYPE_ARG_TYPES, TYPE_METHOD_BASETYPE, TYPE_OFFSET_BASETYPE): Likewise.
1898         (TYPE_MIN_VALUE, TYPE_MAX_VALUE): Likewise.
1899         * tree.c (type_hash_eq): Rewrite to access proper fields for each type.
1900         (tree_check2_failed, tree_check3_failed, tree_check5_failed): New.
1901         * c-typeck.c (build_array_ref): Use TYPE_DOMAIN, not TYPE_VALUES.
1902         * dwarf2out.c (gen_enumeration_type_die): Use TYPE_VALUES,
1903         not TYPE_FIELDS.
1904         * stor-layout.c (set_sizetype): Use TYPE_ORIG_SIZE_TYPE.
1905
1906 2004-03-18  Mostafa Hagog  <mustafa@il.ibm.com>
1907
1908         * gcse.c (eliminate_partially_redundant_loads): Reject change if
1909         dest is set between beginning and current insn.
1910
1911 2004-03-18  Mark Mitchell  <mark@codesourcery.com>
1912
1913         * c-decl.c (grokdeclarator): Do not complain about redeclaring
1914         visible "static" identifiers "extern" in a local scope.
1915         * dwarf2out.c (loc_descriptor_from_tree): Handle pre- and
1916         post-increments/decrements.
1917
1918 2004-03-18  Bob Wilson  <bob.wilson@acm.org>
1919
1920         * config/xtensa/xtensa.c (current_function_arg_words): Delete.
1921         (xtensa_builtin_saveregs): Use current_function_args_info.arg_words.
1922         (xtensa_va_start): Remove assignment to current_function_arg_words.
1923
1924 2004-03-18  Richard Sandiford  <rsandifo@redhat.com>
1925
1926         * alias.c (record_set): Detect the case where a register is assigned
1927         a new value that has the same base term as the old one.
1928
1929 2004-03-18  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
1930
1931         * doloop.c: Removed.
1932         * loop-doloop.c: New file.
1933         * Makefile.in (doloop.o): Remove.
1934         (loop-doloop.o): New.
1935         * cfgloop.h (get_loop_level, doloop_optimize_loops): Declare.
1936         * cfgloopanal.c (get_loop_level): New function.
1937         * loop-iv.c (iv_number_of_iterations): Handle case when loop
1938         is leaved immediatelly.
1939         * loop.c (strength_reduce): Do not call doloop optimization.
1940         * loop.h (LOOP_BCT): Removed.
1941         * passes.c (rest_of_handle_loop_optimize): Do not use LOOP_BCT.
1942         (rest_of_handle_loop2): Call doloop_optimize_loops.
1943         (rest_of_compilation): Test for optimizations moved to
1944         rest_of_handle_loop2.
1945
1946 2004-03-17  Fariborz Jahanian <fjahanian@apple.com>
1947
1948         * config/rs6000/rs6000.c (rs6000_stack_info): correct reg_size
1949         for mixed mode.
1950         (rs6000_emit_prologue): Ditto.
1951         (rs6000_emit_epilogue): Ditto.
1952         * config/rs6000/rs6000.h: Definition of DWARF_CIE_DATA_ALIGNMENT
1953         macro for mixed mode.
1954
1955 2004-03-18  Jan Hubicka  <jh@suse.cz>
1956
1957         * predict.c (propagate_freq): Compute correctly frequency of
1958         EXIT_BLOCK.
1959
1960 2004-03-17  Eric Christopher  <echristo@redhat.com>
1961
1962         * builtins.c (apply_args_size): Use reg_raw_mode.
1963         (apply_result_size): Ditto.
1964
1965 2004-03-17  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
1966
1967         PR target/14620
1968         * config/rtems.h: Add STD_LIB_SPEC and LIB_SPEC.
1969
1970 2004-03-17  Jakub Jelinek  <jakub@redhat.com>
1971
1972         * config/rs6000/t-linux64 (bispecs): Don't add -mlong-double-128 for
1973         32-bit builds when defaulting to 32-bit.
1974
1975 2004-03-17  Jan Hubicka  <jh@suse.cz>
1976
1977         * cfgrtl.c (rtl_create_basic_block): Pre-allocate basic_block_info
1978         array.
1979
1980 2004-03-17  James E Wilson  <wilson@specifixinc.com>
1981
1982         * config/mips/mips.md (zero_extendsidi2): Add length attribute.
1983         (hazard_nop): Change type to nop.
1984         (type): Split arith into arith, shift, slt, clz.  Delete darith.
1985         Fix all uses.  Change arith to multi if more than one insn emitted.
1986         * config/mips/5400.md (ir_vr54_arith): Likewise.
1987         * config/mips/5500.md (ir_vr55_arith): Likewise.
1988         * config/mips/7000.md (rm7_int_other): Likewise.
1989         * config/mips/9000.md (rm9k_int): Likewise.
1990         * config/mips/sr71k.md (ir_sr70_arith): Likewise.
1991
1992 2004-03-17  Joel Brobecker  <brobecker@gnat.com>
1993
1994         * dwarf2out.c (subrange_type_die): Define new variable "subtype"
1995         to hold the subtype tree instead of recomputing it several times.
1996
1997 2004-03-17  Kazu Hirata  <kazu@cs.umass.edu>
1998
1999         * config/mn10300/mn10300.c (notice_update_cc): Don't handle
2000         CC_INVERT.
2001         * config/mn10300/mn10300.md (cc): Remove "invert".
2002
2003 2004-03-16  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2004
2005         * builtins.c (integer_valued_real_p): Add builtin rint.
2006         (fold_builtin): Likewise.
2007         * convert.c (convert_to_real): Likewise.
2008
2009         * convert.c (convert_to_real): Fix typos in `long double'
2010         builtins.
2011
2012 2004-03-16  Mark Mitchell  <mark@codesourcery.com>
2013
2014         PR c++/14481
2015         * fold-const.c (fold): Set TREE_NO_UNUSED_WARNING on implicitly
2016         generated COMPOUND_EXPRs.
2017
2018 2004-03-16  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2019
2020         * config/h8300/t-rtems (h8300-*-rtems*): New.
2021
2022 2004-03-16  Eric Christopher  <echristo@redhat.com>
2023
2024         * doc/cppopts.texi(fwide-exec-charset): Fix typo.
2025
2026 2004-03-16  Kazu Hirata  <kazu@cs.umass.edu>
2027
2028         * config/i386/i386-protos.h: Add a prototype for
2029         ix86_reverse_condition.
2030         * config/i386/i386.c (ix86_reverse_condition): New.
2031         * config/i386/i386.h (REVERSE_CONDITION): Use
2032         ix86_reverse_condition.
2033         * config/i386/i386.md: Use ix86_reverse_condition instead of
2034         REVERSE_CONDITION.
2035
2036 2004-03-16  J. Brobecker  <brobecker@gnat.com>
2037
2038         * dwarf2out.c (loc_descriptor_from_tree): Add handling for MIN_EXPR.
2039
2040 2004-03-16  Nathanael Nerode  <neroden@gcc.gnu.org>
2041
2042         PR bootstrap/12974
2043         * Makefile.in: Pass $(INCLUDES) down to libgcc.mk explicitly.
2044
2045 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
2046
2047         * c-common.c (c_common_type_for_mode): Build vector types on
2048         demand.
2049         (handle_mode_attribute): Deprecate using the mode attribute
2050         to create vector types.  Fix indentation.
2051         (vector_type_node_list): Remove.
2052         (handle_vector_size_attribute): Create vector types on demand.
2053         Strip a NON_LVALUE_EXPR from the attribute if there is one.
2054         * c-typeck.c (comptypes): Make vector types compatible if they
2055         have the same underlying mode.
2056         (convert_for_assignment): Use comptypes to convert between
2057         vector types.
2058         * tree.c (build_common_tree_nodes_2): Do not create vector types.
2059         * config/arm/arm.c (arm_init_iwmmxt_builtins): Create necessary
2060         vector types.
2061         * tree.h: Remove vector types.
2062         * config/i386/i386.c (i386_init_mmx_sse_builtins): Likewise.
2063         * config/rs6000/rs6000.c (rs6000_init_builtins): Likewise.
2064         (V16QI_type_node, V2SI_type_node, V2SF_type_node, V4HI_type_node,
2065         V4SI_type_node, V4SF_type_node, V8HI_type_node): New globals.
2066         * doc/extend.texi (Vector Types): Document how to use the
2067         vector_size attribute to create vectors, rather than mode.
2068
2069         * config/arm/mmintrin.h: Use vector_size attribute, not mode.
2070         * config/i386/emmintrin.h: Likewise.
2071         * config/i386/mmintrin.h: Likewise.
2072         * config/i386/xmmintrin.h: Likewise.
2073         * config/sh/ushmedia.h: Likewise.
2074
2075 2004-03-16  Kazu Hirata  <kazu@cs.umass.edu>
2076
2077         * config/freebsd-spec.h, config/arc/arc-protos.h,
2078         config/arm/aout.h, config/arm/elf.h, config/arm/freebsd.h,
2079         config/arm/linux-gas.h, config/arm/semi.h,
2080         config/cris/cris-protos.h, config/i386/xm-djgpp.h,
2081         config/ia64/freebsd.h, config/mips/7000.md,
2082         config/mips/9000.md, config/ns32k/ns32k-protos.h,
2083         config/sparc/pbd.h: Update copyright.
2084
2085 2004-03-16  Ralf Corsepius <corsepiu@faw.uni-ulm.de>
2086
2087         PR target/14577
2088         * config.gcc: Switch sh-*-rtems* to ELF.  Add sh-*-rtemscoff.
2089
2090 2004-03-16  Paolo Bonzini  <bonzini@gnu.org>
2091
2092         * combine.c (combine_simplify_rtx): Remove the "last"
2093         parameter and its documentation.  Adjust recursive calls.
2094         (simplify_logical): Always perform the only simplification
2095         controlled by "last", if the simplified expression is
2096         actually different.
2097         (try_combine): Do not pass the "last" parameter to
2098         combine_simplify_rtx.
2099
2100 2004-03-16  Richard Sandiford  <rsandifo@redhat.com>
2101
2102         PR target/14599
2103         * config/mips/mips.md (UNSPEC_GP): New constant.
2104         * config/mips/mips.c (CONST_GP_P): Expect the CONST to contain
2105         an UNSPEC instead of (reg $gp).
2106         (mips16_gp_pseudo_reg): Change accordingly.
2107         (print_operand): Print $gp directly when handling CONST_GP_P.
2108
2109 2004-03-16  Richard Zidlicky  <rz@linux-m68k.org>
2110
2111         * config.gcc, config/m68k/linux.h: Implement with-cpu for m68k-linux.
2112         * longlong.h: Make code 68060 clean when compiling for m68060.
2113
2114 2004-03-16  Richard Zidlicky  <rz@linux-m68k.org>
2115
2116         * config/m68k/m68k.md: Fix constraints for bitfield instructions.
2117         * doc/md.texi: Clarify description of "i" constraint.
2118
2119 2004-03-15  James E Wilson  <wilson@specifixinc.com>
2120
2121         * config/mips/mips.md (type): Split load into load, fpload, fpidxload.
2122         Split store into store, fpstore, fpidxstore.  Fix all uses.
2123         * config/mips/5400.md (ir_vr54_load, ir_vr54_store, ir_vr54_fstore):
2124         Likewise.
2125         * config/mips/5500.md (ir_vr55_load, i5_vr55_store): Likewise.
2126         * config/mips/7000.md (rm7_ld, rm7_st): Likewise.
2127         * config/mips/9000.md (rm9k_load, rm9k_store): Likewise.
2128         * config/mips/sr71k.md (ir_sr70_load, ir_sr70_store, ir_sr70_fload,
2129         ir_sr70_fstore): Likewise.
2130
2131 2004-03-15  Richard Henderson  <rth@redhat.com>
2132
2133         PR middle-end/14535
2134         * except.c (collect_one_action_chain): Record action for cleanup
2135         outer of exception spec.
2136
2137 2004-03-15  Ian Lance Taylor  <ian@wasabisystems.com>
2138
2139         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
2140         Fix the check for abort and only do the mmap if we can.
2141
2142 2004-03-15  Eric Botcazou  <ebotcazou@act-europe.fr>
2143
2144         * config/sparc/sparc.h: Rework comments about the code model
2145         in 64-bit environment and the mode 'Pmode'.
2146         * doc/invoke.texi (SPARC options): Rework description of the
2147         different code models supported in 64-bit environment.
2148
2149 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
2150
2151         * defaults.h (REVERSIBLE_CC_MODE): Define.
2152         * jump.c (reversed_comparison_code_parts): Don't check if
2153         REVERSIBLE_CC_MODE is defined.
2154
2155 2004-03-15  Kazu Hirata  <kazu@cs.umass.edu>
2156
2157         * c-incpath.c, c-incpath.h, c-pch.c, c.opt, cppexp.c,
2158         et-forest.h, genattr.c, ggc-none.c, hosthooks-def.h,
2159         hosthooks.h, params.h, ra-colorize.c, web.c,
2160         config/darwin-c.c, config/alpha/freebsd.h, config/arm/pe.c,
2161         config/avr/avr-protos.h, config/avr/avr.md,
2162         config/fr30/fr30-protos.h, config/fr30/fr30.md,
2163         config/h8300/fixunssfsi.c, config/i386/darwin.h,
2164         config/i386/freebsd.h, config/i386/freebsd64.h,
2165         config/ia64/hpux.h, config/ia64/unwind-ia64.c,
2166         config/ip2k/libgcc.S, config/m32r/xm-m32r.h,
2167         config/mmix/mmix-modes.def, config/ns32k/netbsd.h,
2168         config/ns32k/ns32k.md, config/pa/pa64-hpux.h,
2169         config/pa/pa64-regs.h, config/rs6000/aix41.h,
2170         config/rs6000/aix43.h, config/rs6000/host-darwin.c,
2171         config/sparc/aout.h, config/sparc/freebsd.h,
2172         config/sparc/litecoff.h, config/vax/vax-protos.h,
2173         doc/hostconfig.texi, doc/include/gcc-common.texi: Update
2174         copyright.
2175
2176 2004-03-15  Paul Brook  <paul@codesourcery.com>
2177
2178         * config/arm/arm.c (thumb_expand_prologue): Tie prologue insns to fp.
2179
2180 2004-03-15  Gabriel Dos Reis  <gdr@integrable-solutions.net>
2181
2182         * c-pretty-print.c (pp_c_semicolon): Fix formatting.
2183         (pp_c_cv_qualifier): Document.
2184         (pp_c_space_for_pointer_operator): Likewise.
2185         (pp_c_integer_constant): Likewise.
2186         (pp_c_identifier): Likewise.
2187         (pp_c_init_declarator): Don't print function body.
2188
2189 2004-03-14  Joseph S. Myers  <jsm@polyomino.org.uk>
2190
2191         * doc/contrib.texi, doc/extend.texi, doc/gcov.texi,
2192         doc/install.texi, doc/invoke.texi, doc/makefile.texi,
2193         doc/sourcebuild.texi, doc/tm.texi, doc/trouble.texi: Capitalize
2194         "gcc", "g++" and "g77" or mark up with appropriate markup.  Adjust
2195         wording and grammar.
2196
2197 2004-03-14  Roger Sayle  <roger@eyesopen.com>
2198
2199         * alias.c (get_alias_set): Replace calls via (*lang_hooks.foo) ()
2200         with lang_hooks.foo ().
2201         * builtins.c (expand_builtin_va_arg): Likewise.
2202         * c-common.c (fname_as_string, c_common_truthvalue_conversion,
2203         c_common_type_for_mode, c_common_nodes_and_builtins,
2204         handle_mode_attribute, handle_vector_size_attribute): Likewise.
2205         * c-convert.c (convert): Likewise.
2206         * c-format.c (check_format_types): Likewise.
2207         * c-objc-common.c (c_tree_printer): Likewise.
2208         * c-typeck.c (build_unary_op, build_conditional_expr,
2209         build_binary_op): Likewise.
2210         * calls.c (try_to_integrate, expand_call,
2211         emit_library_call_value_1): Likewise.
2212         * cgraph.c (cgraph_node_name, cgraph_function_possibly_inlined_p):
2213         Likewise.
2214         * cgraphunit.c (record_call_1, cgraph_analyze_function,
2215         cgraph_expand_function): Likewise.
2216         * convert.c (convert_to_pointer, convert_to_integer): Likewise.
2217         * coverage.c (build_fn_info_type, build_ctr_info_type,
2218         build_gcov_info, create_coverage): Likewise.
2219         * dbxout.c (dbxout_init): Likewise.
2220         * diagnostic.c (diagnostic_report_current_function): Likewise.
2221         * dojump.c (do_jump): Likewise.
2222         * dwarf2out.c (dwarf2_name): Likewise.
2223         * except.c (init_eh): Likewise.
2224         * explow.c (expr_size, int_expr_size): Likewise.
2225         * expmed.c (make_tree, const_mult_add_overflow_p, expand_mult_add):
2226         Likewise.
2227         * expr.c (store_expr, store_constructor, safe_from_p,
2228         expand_expr_real, do_store_flag, try_casesi): Likewise.
2229         * function.c (push_function_context_to, pop_function_context_from,
2230         free_after_parsing, assign_stack_local_1, assign_stack_temp_for_type,
2231         put_var_into_stack, allocate_struct_function, current_function_name):
2232         Likewise.
2233         * integrate.c (copy_decl_for_inlining, expand_inline_function):
2234         Likewise.
2235         * langhooks.c (lhd_clear_binding_stack, write_global_declarations,
2236         lhd_print_error_function): Likewise.
2237         * opts.c (handle_option, decode_options): Likewise.
2238         * passes.c (open_dump_file): Likewise.
2239         * print-tree.c (print_node): Likewise.
2240         * stmt.c (expand_fixup, fixup_gotos, expand_asm_operands,
2241         expand_decl_cleanup, emit_case_nodes): Likewise.
2242         * stor-layout.c (variable_size): Likewise.
2243         * toplev.c (announce_function, wrapup_global_declarations,
2244         check_global_declarations, compile_file, default_tree_printer,
2245         process_options, lang_dependent_init, finalize): Likewise.
2246         * tree-dump.c (dequeue_and_dump): Likewise.
2247         * tree-inline.c (remap_decl, remap_block, copy_body_r,
2248         initialize_inlined_parameters, declare_return_variable,
2249         inlinable_function_p, expand_call_inline, optimize_inline_calls,
2250         walk_tree, copy_tree_r): Likewise.
2251         * tree-optimize.c (tree_rest_of_compilation): Likewise.
2252         * tree.c (decl_assembler_name, tree_size, size_in_bytes, staticp,
2253         unsafe_for_reeval, get_unwidened, get_narrower, get_callee_fndecl,
2254         variably_modified_type_p, dump_tree_statistics): Likewise.
2255         * varasm.c (assemble_variable, compare_constant, copy_constant,
2256         force_const_mem, compute_reloc_for_constant, output_constant,
2257         output_addressed_constants, initializer_constant_valid_p): Likewise.
2258
2259 2004-03-14  Kelley Cook  <kcook@gcc.gnu.org>
2260
2261         * doc/install.texi: Make autoconf 2.13 the exception, not the rule.
2262
2263 2004-03-14  Andreas Tobler  <a.tobler@schweiz.ch>
2264
2265         * doc/install.texi: Reflect autoconf and automake version for
2266         libffi. Update autoconf version to 2.59.
2267
2268 2004-03-13  Roger Sayle  <roger@eyesopen.com>
2269
2270         * fold-const.c (negate_expr, operand_equal_for_comparison_p,
2271         optimize_bit_field_compare, decode_field_reference, all_ones_mask_p,
2272         make_range, build_range_check, fold_range_test, unextend,
2273         constant_boolean_node, fold_binary_op_with_conditional_arg,
2274         fold_truthop, fold_mathfn_compare, fold_inf_compare,
2275         fold_single_bit_test, fold): Replace calls via (*lang_hooks.foo) ()
2276         with lang_hooks.foo ().
2277
2278 2004-03-14  Richard Earnshaw  <rearnsha@arm.com>
2279
2280         * arm.h (EXTRA_CONSTRAINT_STR_ARM): Update comment.
2281
2282 2004-03-13  Dara Hazeghi  <dhazeghi@yahoo.com>
2283
2284         * doc/install.texi: Note status of -fnew-ra.
2285
2286 2004-03-13  Eric Botcazou  <ebotcazou@libertysurf.fr>
2287
2288         PR middle-end/14470
2289         * expr.c (store_expr): Call emit_queue before generating the move
2290         from the temporary to the original target.  Protect the temporary
2291         from emit_queue.
2292
2293 2004-03-13  Jakub Jelinek  <jakub@redhat.com>
2294
2295         PR target/14533
2296         * config/s390/s390.c (legitimize_pic_address): Don't abort on UNSPEC
2297         other than UNSPEC_GOTOFF.
2298
2299 2004-03-13  Richard Earnshaw  <rearnsha@arm.com>
2300
2301         * arm.c (arm_legitimate_address_p): New argument, OUTER.  Pass through
2302         to arm_legitimate_index_p.  Update all callers with SET as default
2303         value.
2304         (arm_legitimate_index_p): New argument, OUTER.  Restrict the index
2305         range if OUTER is a sign-extend operation on QImode.  Correctly
2306         reject shift operations on sign-extended QImode addresses.
2307         (bad_signed_byte_operand): Delete.
2308         (arm_extendqisi_mem_op): New function.
2309         * arm.h (EXTRA_CONSTRAINT_ARM): Delete.  Replace with...
2310         (EXTRA_CONSTRAINT_STR_ARM): ... this.  Handle extended address
2311         constraints.
2312         (CONSTRAINT_LEN): New.
2313         (EXTRA_CONSTRAINT): Delete.  Replace with...
2314         (EXTRA_CONSTRAINT_STR): ... this.
2315         (PREDICATE_CODES): Remove bad_signed_byte_operand.
2316         * arm.md (extendqihi_insn): Use new constraint Uq.  Rework.  Length
2317         is now always default.
2318         (define_splits for bad sign-extend loads): Delete.
2319         (arm_extendqisi, arm_extendqisi_v5): Likewise.
2320         * arm/vfp.md (arm_movsi_vfp, arm_movdi_vfp, movsf_vfp, movdf_vfp):
2321         Rework 'U' constraint to 'Uv'.
2322         * arm-protos.h: Remove bad_signed_byte_operand.  Add
2323         arm_extendqisi_mem_op.
2324         * doc/md.texi (ARM constraints): Rename VFP constraint (now Uv).
2325         Add Uq constraint.
2326
2327 2004-03-13  Alan Modra  <amodra@bigpond.net.au>
2328
2329         * config/rs6000/rs6000.c (rs6000_va_arg): Replace SPLIT_COMPLEX_ARGS
2330         with targetm version.
2331
2332         PR target/14567
2333         * config/rs6000/rs6000.h (UNITS_PER_ARG, RS6000_ARG_SIZE): Delete.
2334         (HARD_REGNO_MODE_OK): Disallow TFmode for fp31.
2335         * config/rs6000/rs6000.c (rs6000_arg_size): New function.
2336         Update all users of RS6000_ARG_SIZE.
2337         (function_arg_advance): Count fregno using mode size.
2338         (function_arg): Handle long double split over regs and memory.
2339         (function_arg_partial_nregs): Likewise.
2340         (rs6000_va_arg): Repackage complex args.
2341
2342 2004-03-13  Dean Ferreyra <dferreyra@igc.org>
2343
2344         PR target/14047
2345         * config/avr/avr.c (avr_progmem_p): Add "attributes" parameter.
2346         (avr_insert_attributes): Pass "attributes" to avr_progmem_p.
2347         * config/avr/avr-protos.h (avr_progmem_p): Change prototype.
2348
2349 2004-03-12  Jakub Jelinek  <jakub@redhat.com>
2350
2351         * config/rs6000/rs6000-protos.h (rs6000_output_dwarf_dtprel): Add
2352         prototype.
2353         * config/rs6000/rs6000.c (rs6000_output_dwarf_dtprel): New.
2354         * config/rs6000/rs6000.h (ASM_OUTPUT_DWARF_DTPREL): Define.
2355
2356 2003-03-12  Andrew Pinski  <apinski@apple.com>
2357
2358         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_use_address):
2359         Use ret instead of result. Use addr instead of base.
2360
2361 2004-03-12  David Edelsohn  <edelsohn@gnu.org>
2362
2363         * doc/install.texi (*-ibm-aix*): Document assembler and achiver
2364         fixes required by libstdc++ and update installation instructions
2365         for libstdc++.a.
2366
2367 2004-03-12  Danny Smith  <dannysmith@users.sourceforge.net>
2368
2369         * config/i386/winnt.c (i386_pe_strip_name_encoding_full): Strip
2370         leading '@' on fastcall symbols before stripping suffix.
2371
2372 2004-03-12  Roger Sayle  <roger@eyesopen.com>
2373
2374         * combine.c (unmentioned_reg_p): New function to check whether an
2375         expression is a "specialization" of another, i.e. that there are
2376         no registers or memory references mentioned in the first that don't
2377         appear in the second.
2378         (unmentioned_reg_p_1): New helper subroutine of unmentioned_reg_p.
2379         (combine_instructions): Also try combining instructions using the
2380         REG_EQUAL note from a preceding log-linked instruction.
2381
2382 2004-03-12  Roger Sayle  <roger@eyesopen.com>
2383
2384         * config/i386/i386.c (ix86_split_ashrdi): Optimize shift by 63.
2385
2386 2004-03-12  Matt Austern  <austern@apple.com>
2387
2388         * target.h (struct gcc_target): New target hook, unwind_label.
2389         * target-def.h (TARGET_ASM_EMIT_UNWIND_LABEL): New hook.
2390         * output.h (default_emit_unwind_label): New function.
2391         * default.h (TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY): New macro.
2392         (TARGET_USES_WEAK_UNWIND_INFO): New target macro.
2393         (TARGET_SUPPORTS_HIDDEN): New target macro.
2394         * dwarf2out.c (struct dw_fde_struct): Add field for function decl
2395         that corresponds to this FDE.
2396         (FRAME_BEGIN_LABEL): Allow target to override default label.
2397         (output_call_frame_info): If FDEs are linknonce, then use extra
2398         indirection for FDE encoding, output a label for each FDE, and
2399         output an empty label for each function without an FDE.
2400         (dwarf2out_begin_prologue): Set up decl field when creating an FDE.
2401         * varasm.c (globalize_decl): Call ASM_MAKE_LABEL_LINKONCE for
2402         decls with DECL_ONE_ONLY set, if that macro is defined.
2403         (make_decl_one_only): Don't use DECL_COMMON if we're compiling
2404         for a SUPPORTS_ONE_ONLY target.
2405         * config/darwin-protos.h (darwin_unique_section): Declare.
2406         (darwin_asm_named_section): Likewise.
2407         (darwin_section_type_flags): Likewise.
2408         (darwin_non_lazy_pcrel): Likewise.
2409         (darwin_emit_unwind_label): Likewise.
2410         (darwin_make_decl_one_only): Likewise.
2411         * config/darwin.c (machopic_finish): Get rid of tweak that
2412         eliminate stubs for symbols that are defined.
2413         (darwin_encode_section_info): Don't treat weak functions as defined.
2414         (darwin_make_decl_one_only): Define.
2415         (darwin_asm_named_section): Likewise.
2416         (darwin_section_type_flags): Likewise.
2417         (darwin_unique_section): Likewise.
2418         (darwin_emit_unwind_label): Likewise.
2419         (darwin_non_lazy_pcrel): Likewise.
2420         (darwin_asm_output_dwarf_delta): Difference between two labels is
2421         local only if both labels are local.
2422         * config/darwin.h (MAKE_DECL_ONE_ONLY): Define.
2423         (ASM_MAKE_LABEL_LINKONCE): Likewise.
2424         (TARGET_SUPPORTS_HIDDEN): Likewise.
2425         (TARGET_USES_WEAK_UNWIND_INFO): Likewise.
2426         (TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY): Likewise.
2427         (FRAME_BEGIN_LABEL): Likewise.
2428         (ASM_DECLARE_OBJECT_NAME): Make references to weak symbols indirect.
2429         (ASM_DECLARE_FUNCTION_NAME): Likewise.
2430         (darwin_eh_frame_section): Give __eh_frame section the coalesced flag.
2431         (TARGET_ASM_UNIQUE_SECTION): Define.
2432         (EH_FRAME_SECTION_NAME): Define.
2433         (EH_FRAME_SECTION_ATTR): Likewise.
2434         (ASM_MAYBE_OUTPUT_ENCODED_ADDR_RTX): Likewise.
2435         (TARGET_ASM_NAMED_SECTION): Likewise.
2436         (TARGET_SECTION_TYPE_FLAGS): Likewise.
2437         * doc/tm.texi: Document TARGET_USES_WEAK_UNWIND_INFO,
2438         TARGET_EXPLICIT_INSTANTIATIONS_ONE_ONLY, TARGET_SUPPORTS_HIDDEN,
2439         TARGET_ASM_EMIT_UNWIND_LABEL.
2440
2441 2004-03-12  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2442
2443         * builtins.c (expand_builtin_mathfn): Add pow10* to the
2444         existing exp10* case.
2445         (expand_builtin): Likewise.
2446
2447 2004-03-12  Eric Botcazou  <ebotcazou@libertysurf.fr>
2448
2449         * doc/tm.texi (registers) <Values in Registers>: Add
2450         entry for REGMODE_NATURAL_SIZE.
2451
2452 2004-03-12  Richard Henderson  <rth@redhat.com>
2453
2454         PR target/14547
2455         * target.h (struct gcc_target): Move calls substructure before
2456         booleans.  Add split_complex_arg.
2457         * function.c (assign_parms, split_complex_args): Use it.
2458         * calls.c (expand_call): Likewise.
2459         (split_complex_values): Likewise.  Check for splittable types
2460         before allocating memory.
2461         (split_complex_types): Likewise.
2462         * system.h (SPLIT_COMPLEX_ARGS): Poison.
2463         * expr.h (SPLIT_COMPLEX_ARGS): Remove.
2464         * target-def.h (TARGET_SPLIT_COMPLEX_ARG): New.
2465         * config/alpha/alpha.c (alpha_split_complex_arg): New.
2466         (TARGET_SPLIT_COMPLEX_ARG): New.
2467         * config/alpha/alpha.h (SPLIT_COMPLEX_ARGS): Remove.
2468         * config/rs6000/rs6000.c (TARGET_SPLIT_COMPLEX_ARG): New.
2469         (rs6000_override_options): Zap it for non-AIX.
2470         (rs6000_function_value): Use targetm.calls.split_complex_arg.
2471         * config/rs6000/rs6000.h (SPLIT_COMPLEX_ARGS): Remove.
2472         * config/xtensa/xtensa.c (TARGET_SPLIT_COMPLEX_ARG): New.
2473         * config/xtensa/xtensa.h (SPLIT_COMPLEX_ARGS): Remove.
2474         * doc/tm.texi (TARGET_SPLIT_COMPLEX_ARG): Modify from old
2475         SPLIT_COMPLEX_ARGS entry.
2476
2477 2004-03-11  Richard Henderson  <rth@redhat.com>
2478
2479         * config/alpha/alpha.c (xfloating_ops, vax_cvt_ops): New.
2480         (alpha_lookup_xfloating_lib_func): Use them, return rtx.
2481         (alpha_emit_xfloating_arith): Update to match.
2482         (alpha_emit_xfloating_compare): Likewise.
2483         (alpha_emit_xfloating_cvt): Likewise.
2484         (alpha_emit_xfloating_libcall): Take already built symbol,
2485         mark call const.
2486         * config/alpha/alpha.md (extendsftf2, extenddftf2): Take
2487         op1 in a register.
2488
2489 2004-03-11  Richard Henderson  <rth@redhat.com>
2490
2491         PR target/14539
2492         * config/alpha/alpha.h (STACK_BOUNDARY): Set to 128.
2493
2494         * simplify-rtx.c (simplify_relational_operation): Fix typo.
2495
2496 2004-03-11  Richard Henderson  <rth@redhat.com>
2497
2498         PR middle-end/14477
2499         * except.c (remove_unreachable_regions): Look thru CALL_PLACEHOLDER.
2500
2501 2004-03-11  Ulrich Weigand  <uweigand@de.ibm.com>
2502
2503         PR target/14262
2504         * calls.c (load_register_parameters): If BLOCK_REG_PADDING is not
2505         defined, pass small BLKmode values in registers in the low-order part.
2506
2507 2004-03-11  Ulrich Weigand  <uweigand@de.ibm.com>
2508
2509         * combine.c (if_then_else_cond): Check for NULL return value of
2510         simplify_gen_subreg.
2511
2512 2004-03-11  Richard Sandiford  <rsandifo@redhat.com>
2513
2514         PR target/14496
2515         * config/mips/mips.h (UNITS_PER_FPVALUE): Fix value for
2516         TARGET_SINGLE_FLOAT.
2517
2518 2004-03-11  Steve Ellcey  <sje@cup.hp.com>
2519
2520         * config/ia64/hpux.h (TARGET_INIT_LIBFUNCS): Add undef.
2521         * config/ia64/ia64.h (TARGET_INIT_LIBFUNCS): Add define.
2522         * config/ia64/ia64.c (ia64_init_libfuncs): New.
2523         (ia64_hpux_init_libfuncs): Add call to ia64_init_libfuncs.
2524
2525 2004-03-11  Roger Sayle  <roger@eyesopen.com>
2526
2527         * fold-const.c (negate_expr_p) <RSHIFT_EXPR>: We can optimize
2528         -((int)X>>C) where C is an integer constant one bit less than the
2529         size of X into (unsigned)X>>C.  Similarly for unsigned->signed.
2530         (negate_expr) <RSHIFT_EXPR>: Implement the above transformations.
2531
2532         * simplify-rtx.c (simplify_unary_operation): Also implement the
2533         above transformations at the RTL level.
2534
2535 2004-03-11  Alan Modra  <amodra@bigpond.net.au>
2536
2537         * real.c (encode_ibm_extended): Do round low word.
2538
2539 2004-03-11  Ben Elliston  <bje@wasabisystems.com>
2540
2541         * config/arm/arm.md (is_xscale): Comment this attribute and move
2542         it a bit further up in the file, closer to related attributes.
2543
2544 2004-03-11  Eric Botcazou  <ebotcazou@libertysurf.fr>
2545
2546         * config/host-solaris.c (sol_gt_pch_use_address): Add
2547         missing terminating marker to comment.
2548
2549 2004-03-11  Richard Sandiford  <rsandifo@redhat.com>
2550
2551         * config/mips/mips.md: Use move_operand in splitters for 64-bit moves.
2552         (movdi, movsi, movhi, movqi, movsf, movdf): Remove predicates.
2553         (*movdi_32bit_mips16, *movsi_mips16, *movhi_mips16, *movqi_mips16)
2554         (*movsf_mips16, *movdf_mips16):  Name unnamed patterns.  Use
2555         move_operand as source predicate in all cases.
2556         (*movdi_32bit): Renamed from movdi_internal.  Remove 'F' constraint.
2557         Test reg_or_0_operand.  Use move_operand as source predicate.
2558         (*movdi_64bit): Renamed from movdi_internal2.  Test reg_or_0_operand.
2559         (*movdi_64bit_mips16): Renamed from movdi_internal2_mips16.
2560         (*movsi_internal): Renamed from movsi_internal.  Test reg_or_0_operand.
2561         (movhi, movqi, movsf, movdf): Use mips_legitimize_move.
2562         (*movhi_internal): Renamed from movhi_internal.  Test reg_or_0_operand.
2563         Use move_operand as source predicate.  Remove 'K' constraint.
2564         (*movqi_internal): Likewise movqi_internal.
2565         (*movsf_hardfloat): Renamed from movsf_internal1.  Test
2566         reg_or_0_operand.  Use move_operand as source predicate.
2567         (*movsf_softfloat): Likewise movsf_internal2.
2568         (*movdf_hardfloat_64bit): Likewise movsf_internal1a.
2569         (*movdf_hardfloat_32bit): Likewise movsf_internal1b.
2570         (*movdf_softfloat): Likewise movdf_internal2.
2571         * config/mips/mips.c (move_operand): Match arbitrary CONST_INTs
2572         for DImode if !TARGET_64BIT.
2573         (mips_legitimize_move): Simplify accordingly.
2574
2575 2004-03-11  Josef Zlomek  <zlomekj@suse.cz>
2576
2577         PR/14362
2578         * var-tracking.c (struct variable_def): Added field refcount.
2579         (variable_htab_free): Decrease the refcount and delete variable
2580         only if there are no more references.
2581         (unshare_variable): New function.
2582         (vars_copy_1): Increase refcount instead of copying the variable.
2583         (variable_union): Share the variables where possible, unshare
2584         the variables if needed.
2585         (variable_different_p): Return false if var1 and var2 are
2586         the same structure.
2587         (variable_was_changed): Init the refcount of new variable.
2588         (set_frame_base_location): Unshare variable if needed.
2589         (set_variable_part): Init the refcount of new variable.
2590         Unshare the variables if needed.
2591         (delete_variable_part): Unshare the variables if needed.
2592         (emit_notes_for_differences_1): Init the refcount of new variable.
2593         (vt_add_function_parameters): Do not add function parameters to
2594         IN set of ENTRY_BLOCK_PTR because it is unused anyway.
2595         (vt_initialize): Do not add frame_base_decl to IN set of
2596         ENTRY_BLOCK_PTR because it is unused anyway.
2597
2598 2004-03-11  Josef Zlomek  <zlomekj@suse.cz>
2599
2600         * var-tracking.c (vars_copy_1): Cleanup and speedup chain operations.
2601         (vars_copy): Likewise.
2602         (variable_union): Likewise.
2603         (set_variable_part): Likewise.
2604         (delete_variable_part): Likewise.
2605
2606 2004-03-11  Kazu Hirata  <kazu@cs.umass.edu>
2607
2608         * c-typeck.c, combine.c, cse.c, dominance.c, et-forest.h,
2609         ggc-page.c, var-tracking.c, config/fp-bit.c, config/c4x/c4x.c,
2610         config/cris/cris.c, config/i386/ppro.md, config/i860/i860.c,
2611         config/i860/i860.h, config/m32r/m32r.h, config/m32r/xm-m32r.h,
2612         config/m68hc11/m68hc11.h, config/m68hc11/m68hc11.md,
2613         config/mips/mips.c, config/mmix/mmix.c, config/ns32k/ns32k.h,
2614         config/pa/pa.c, config/pa/pa32-regs.h, config/pa/pa64-regs.h,
2615         config/pdp11/pdp11.h, config/rs6000/rs6000.c,
2616         config/stormy16/stormy16.c: Fix comment typos and formatting.
2617
2618 2004-03-11  Nathanael Nerode  <neroden@gcc.gnu.org>
2619
2620         * configure: Regenerate, since I forgot to while committing Paolo's
2621         changes.
2622
2623 2004-03-08  Paolo Bonzini  <bonzini@gnu.org>
2624
2625         PR ada/14131
2626         Move language detection to the top level.
2627         * configure.ac: Remove code to detect languages,
2628         it now lives exclusively in the top level.
2629         * aclocal.m4 (gcc_AC_PROG_GNAT): Moved to the
2630         top level, renamed to ACX_PROG_GNAT.
2631
2632 2004-03-10  Richard Henderson  <rth@redhat.com>
2633
2634         * c-pch.c (c_common_no_more_pch): Update for gt_pch_use_address
2635         extra arguments.
2636         * config.host (*-*-solaris2*, *-*-linux*): Add out_host_hook_obj
2637         and host_xmake_file fragments.
2638         * ggc-common.c (gt_pch_save): Update for gt_pch_get_address change.
2639         (gt_pch_restore): Similarly for gt_pch_use_address.
2640         (default_gt_pch_get_address): New.
2641         (mmap_gt_pch_get_address): Split out of gt_pch_save.
2642         (default_gt_pch_use_address): Split out of gt_pch_restore.
2643         (mmap_gt_pch_use_address): Likewise.
2644         * hooks.c (hook_voidp_size_t_null): Remove.
2645         (hook_bool_voidp_size_t_false): Remove.
2646         * hooks.h: Likewise.
2647         * hosthooks-def.h (HOST_HOOKS_GT_PCH_GET_ADDRESS): Use one of the
2648         default_ or mmap_ definitions.
2649         (HOST_HOOKS_GT_PCH_USE_ADDRESS): Likewise.
2650         * hosthooks.h (struct host_hooks): Update gt_pch_get_address
2651         and gt_pch_use_address.
2652         * config/host-linux.c, config/host-solaris.c: New files.
2653         * config/x-linux, config/x-solaris: New files.
2654         * config/rs6000/host-darwin.c (darwin_rs6000_gt_pch_get_address):
2655         Update for changed definition.
2656         (darwin_rs6000_gt_pch_use_address): Likewise.
2657         * doc/hostconfig.texi: Update docs.
2658
2659 2004-03-10  Richard Henderson  <rth@redhat.com>
2660
2661         PR c/14517
2662         * c-decl.c (grokdeclarator): Don't warn for duplicate qualifiers
2663         except for pedantic c90 mode.
2664
2665 2004-03-10  Kelley Cook  <kcook@gcc.gnu.org>
2666
2667         * configure.ac: Bump AC_PREREQ to 2.59.
2668         * configure: Regenerate.
2669
2670 2004-03-10  Uros Bizjak  <uros@kss-loka.si>
2671
2672         * optabs.h (enum optab_index): Add new OTI_exp10 and OTI_exp2.
2673         (exp10_optab, exp2_optab): Define corresponding macros.
2674         * optabs.c (init_optabs): Initialize exp10_optab and exp2_optab.
2675         * genopinit.c (optabs): Implement exp10_optab and exp2_optab
2676         using exp10?f2 and exp2?f2 patterns.
2677         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_EXP10{,F,L}
2678         using exp10_optab, and BUILT_IN_EXP2{,F,L} using exp2_optab.
2679         (expand_builtin): Expand BUILT_IN_EXP10{,F,L} and BUILT_IN_EXP2{,F,L}
2680         using expand_builtin_mathfn if flag_unsafe_math_optimizations is set.
2681
2682         * config/i386/i386.md (exp10sf2, exp10df2, exp10xf2, exp2sf2,
2683         exp2df2, exp2xf2): New patterns to implement exp10, exp10f, exp10l,
2684         exp2, exp2f and exp2l built-ins as inline x87 intrinsics.
2685
2686 2004-03-10  Anthony Green  <green@redhat.com>
2687
2688         * doc/invoke.texi (ARM Options): Fix -mpfu typo.
2689
2690 2004-03-10  David Edelsohn  <edelsohn@gnu.org>
2691
2692         * config/rs6000/aix.h (TARGET_OS_CPP_BUILTINS): Rename to ...
2693         (TARGET_OS_AIX_CPP_BUILTINS): this.  Conditionally define
2694         __LONGDOUBLE128.
2695         * config/rs6000/aix41.h (TARGET_OS_CPP_BUILTINS): Use
2696         TARGET_OS_AIX_CPP_BUILTINS.
2697         * config/rs6000/aix43.h (TARGET_OS_CPP_BUILTINS): Same.
2698         * config/rs6000/aix51.h (TARGET_OS_CPP_BUILTINS): Same.
2699         * config/rs6000/aix52.h (TARGET_OS_CPP_BUILTINS): Same.
2700         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Revert
2701         previous change.
2702
2703 2004-03-10  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2704
2705         * fold-const.c (tree_expr_nonnegative_p): Add more builtin cases.
2706
2707 2004-03-10  David Edelsohn  <edelsohn@gnu.org>
2708
2709         * config/rs6000/rs6000-c.c (rs6000_cpu_cpp_builtins): Define
2710         __LONGDOUBLE128 on AIX.
2711
2712 2004-03-10  Andrew Haley  <aph@redhat.com>
2713
2714         PR optimization/14381
2715         * function.c (expand_function_end): Emit a blockage insn before
2716         the epilogue when -fnon-call-exceptions is used.
2717
2718         * except.c (expand_start_all_catch): Make comment more accurate.
2719
2720 2004-03-08  Joel Sherrill  <joel@oarcorp.com>
2721
2722         PR target/14480
2723         * config/rs6000/t-rtems: Add missing file on branch.
2724
2725 2004-03-10  Ulrich Weigand  <uweigand@de.ibm.com>
2726
2727         * dbxout.c (dbxout_symbol_location): Do not output references
2728         to optimized-out constant pool symbols.
2729
2730 2004-03-10  Andreas Schwab  <schwab@suse.de>
2731
2732         * config/ia64/ia64.md (divsi3, udivsi3): Remove unused variable
2733         twon34_r.
2734
2735 2004-03-09  James E Wilson  <wilson@specifixinc.com>
2736
2737         * alias.c (alias_sets_might_conflict_p): New.
2738         * c-typeck.c (build_c_cast): Call it if warn_strict_aliasing > 1.
2739         * common.opt (Wstrict-aliasing=): New.
2740         * flags.h (warn_strict_aliasing): Change type to int.
2741         * opts.c (warn_strict_aliasing): Change type to int.
2742         (common_handle_option): Handle OPT_Wstrict_aliasing_.
2743         * tree.h (alias_sets_might_conflict_p): Declare it.
2744         * doc/invoke.tex (-Wstrict-aliasing=2): Document it.
2745
2746 2004-03-10  Roman Zippel  <zippel@linux-m68k.org>
2747
2748         PR bootstrap/12371
2749         * config/m68k/m68k.h (FIXED_REGISTERS): Add arg pointer.
2750         (CALL_USED_REGISTERS): Likewise.
2751         (REG_CLASS_CONTENTS): Likewise.
2752         (REG_ALLOC_ORDER): New.
2753         (REGNO_REG_CLASS): Use regno_reg_class.
2754         * config/m68k/m68k.c: Add regno_reg_class array.
2755
2756 2004-03-09  Steve Ellcey  <sje@cup.hp.com>
2757
2758         * config/ia64/ia64.md (divsi3): Fix algorithm.
2759           (udivsi3): Ditto.
2760           (setf_exp_xf): Remove '*' from name.
2761         * testsuite/gcc.dg/20040309-1.c: New test.
2762
2763 2004-03-09  Ian Lance Taylor  <ian@wasabisystems.com>
2764
2765         * system.h (SUNOS4_SHARED_LIBRARIES): Poison.
2766         * collect2.c: Remove SUNOS4_SHARED_LIBRARIES code.
2767         * config/sparc/aout.h (TARGET_ASM_SELECT_SECTION): Don't define.
2768         * config/sparc/sparc.c (sparc_aout_select_section): Remove.
2769         (sparc_aout_select_rtx_section): Don't check
2770         SUNOS4_SHARED_LIBRARIES.
2771         * config/sparc/sparc.h (SUNOS4_SHARED_LIBRARIES): Don't define.
2772
2773 2004-03-10  Hans-Peter Nilsson  <hp@axis.com>
2774
2775         PR other/14474
2776         * doc/md.texi (Pattern Ordering, Dependent Patterns)
2777         (Jump Patterns, Looping Patterns): Wrap in separate "@ifset
2778         INTERNALS".
2779
2780 2004-03-09  Zack Weinberg  <zack@codesourcery.com>
2781
2782         * config/ia64/hpux.h (MULTILIB_DEFAULTS): Define.
2783         (LIBGCC_SPEC): Update to match.
2784
2785 2004-03-09  Zack Weinberg  <zack@codesourcery.com>
2786
2787         * c-decl.c (last_function_parms, last_function_parm_tags)
2788         (last_function_parm_others, current_function_parms)
2789         (current_function_parm_tags, current_function_parm_others):
2790         Delete.
2791         (ARG_INFO_PARMS, ARG_INFO_TAGS, ARG_INFO_TYPES, ARG_INFO_OTHERS):
2792         New macros.
2793         (grokdeclarator): For function definitions, save the arg-info
2794         block from the declarator in DECL_ARGUMENTS.
2795         (grokparms): Do not write to last_function_parm*.  Use ARG_INFO_*
2796         macros to operate on arg-info block.  Can assume ARG_INFO_PARMS
2797         contains only PARM_DECLs.  Improve diagnostics.
2798         (get_parm_info): Use ARG_INFO_* macros.  Improve comments and
2799         diagnostics.  Disable some expensive checks if not ENABLE_CHECKING.
2800         (store_parm_decls_newstyle): Take the function to operate on,
2801         and an arg-info block, as arguments; don't get anything from
2802         current_function_* globals.
2803         (store_parm_decls_oldstyle): Likewise.
2804         (store_parm_decls): Pass fndecl and its arg-info block down to
2805         store_parm_decls_newstyle/oldstyle.  Send functions with empty
2806         argument lists through store_parm_decls_newstyle to reduce
2807         overhead.
2808         (pushdecl): Comment on the problems with the call to copy_node.
2809         Clear DECL_ARGUMENTS of the old node after copying it, if it
2810         is an arg-info block instead of a chain of decls.
2811         (start_function): Do not manipulate current_function_parm* or
2812         last_function_parm*.
2813
2814 2004-03-09  Roger Sayle  <roger@eyesopen.com>
2815             Andrew Pinski  <pinskia@physics.uc.edu>
2816
2817         * ifcvt.c (noce_try_sign_mask): New function to transform
2818         "x = (y < 0) ? z : 0" into the equivalent "x = (y >> C) & z".
2819         (noce_process_if_block): Call noce_try_sign_mask.
2820
2821 2004-03-09  Andrew Pinski  <apinski@apple.com>
2822
2823         * c-typeck.c (tagged_types_tu_compatible_p):
2824         Fix typo.
2825
2826 2004-03-09  Roger Sayle  <roger@eyesopen.com>
2827
2828         * simplify-rtx.c (simplify_const_relational_operation): New function
2829         renamed from simplify_relational_operation.
2830         (simplify_relational_operation): Change prototype to accept an
2831         additional mode argument.  Call simplify_const_relational_operation.
2832         (simplify_gen_relational): Update simplify_relational_operation call.
2833         (simplify_ternary_operation): Update simplify_relational_operation
2834         subroutine call to use simplify_const_relational_operation instead.
2835
2836         * rtl.h (simplify_const_relational_operation): Prototype here.
2837         (simplify_relational_operation): Add addtional mode argument.
2838
2839         * combine.c (combine_simplify_rtx): Update calls to
2840         simplify_relational_operation.
2841         (simplify_set): Likewise.
2842         (gen_binary): Likewise.
2843         * cse.c (fold_rtx): Likewise.
2844         * dojump.c (compare_from_rtx): Likewise.
2845         (do_compare_rtx_and_jump): Likewise.
2846         * integrate.c (subst_constants): Likewise.
2847         * unroll.c (simplify_cmp_and_jump_insns): Likewise.
2848
2849 2004-03-09  Kazu Hirata  <kazu@cs.umass.edu>
2850
2851         * config/m32r/m32r.md: Remove all define_peephole's.
2852
2853 2004-03-09  Alan Modra  <amodra@bigpond.net.au>
2854
2855         * config/rs6000/rs6000.md: Remove trailing whitespace.
2856
2857 2004-03-08  Eric Christopher  <echristo@redhat.com>
2858
2859         * Makefile.in (site.exp): Add libiconv variable definition.
2860
2861 2004-03-09  Hans-Peter Nilsson  <hp@axis.com>
2862
2863         * configure: Regenerate for config/accross.m4 correction.
2864
2865 2004-03-08  Joel Sherrill  <joel@oarcorp.com>
2866
2867         PR target/14480
2868         * config/rs6000/t-rtems: Add missing file on branch.
2869
2870 2004-03-08  Roger Sayle  <roger@eyesopen.com>
2871
2872         PR middle-end/14289
2873         * c-typeck.c (c_mark_addressable): A register variable should
2874         be considered global if its not automatic, i.e. TREE_PUBLIC,
2875         TREE_STATIC or DECL_EXTERNAL.
2876         * function.c (put_var_into_stack): Call abort when placing a
2877         hard register into the stack, if x_parm_reg_stack_loc is NULL.
2878
2879 2004-03-08  Ulrich Weigand  <uweigand@de.ibm.com>
2880
2881         * config/s390/s390.md ("*extendqidi2_short_displ"): Add CC clobber.
2882         ("*extendqisi2_short_displ"): Likewise.
2883
2884 2004-03-08  Kazu Hirata  <kazu@cs.umass.edu>
2885
2886         * config/pdp11/pdp11.c (comparison_operator_index): Remove.
2887         (comp_operator): Likewise.
2888         * config/pdp11/pdp11-protos.h: Remove corresponding
2889         prototypes.
2890
2891 2004-03-08  Eric Botcazou  <ebotcazou@act-europe.fr>
2892
2893         * expr.c (highest_pow2_factor_for_type): Rename into
2894         highest_pow2_factor_for_target.  Use DECL_ALIGN instead of
2895         TYPE_ALIGN when the target is a COMPONENT_REF.
2896         (expand_assignment): Ajust call to highest_pow2_factor_for_type.
2897
2898 2004-03-08  Alan Modra  <amodra@bigpond.net.au>
2899
2900         * config/rs6000/rs6000.c: Formatting fix.
2901         (legitimate_offset_address_p): Correct offset range check.
2902
2903         * config/rs6000/rs6000.c (rs6000_override_options): Don't override
2904         -msoft-float by -mcpu.  Consolidate similar code for MASK_MULTIPLE
2905         and MASK_STRING.
2906
2907 2004-03-07  Aldy Hernandez  <aldyh@redhat.com>
2908
2909         * config/rs6000/rs6000.md (ashrdi3): Do not call ashrdi3_no_power
2910         for little endian.
2911         ("ashrdi3_no_power"): Disable for little endian.
2912         (ashrdi3): Same.
2913
2914 2004-03-07  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
2915
2916         * fold-const.c (tree_expr_nonnegative_p): Reformat checks for
2917         builtins.
2918
2919 2004-03-08  Hans-Peter Nilsson  <hp@axis.com>
2920
2921         PR target/14471
2922         * configure.ac (Target-specific assembler checks) <cris-*-*>: New
2923         case, checking for -no-mul-bug-abort option.
2924         * configure, config.in: Regenerate.
2925         * doc/invoke.texi (CRIS Options): Document -mmul-bug-workaround
2926         and -mno-mul-bug-workaround.
2927         * config/cris/cris.md ("smulsi3_highpart", "umulsi3_highpart")
2928         ("mulsidi3", "umulsidi3"): Prefix output template with "%!".
2929         ("umulhisi3", "umulqihi3", "mulsi3", "mulqihi3", "mulhisi3"):
2930         Ditto.  Make attribute "slottable" dependent on TARGET_MUL_BUG.
2931         * config/cris/mulsi3.asm (__Mul) [__CRIS_arch_version >= 10]: Make
2932         sure mulu.d is not last on cache-line.
2933         * config/cris/cris.h (ASM_SPEC): Translate -mno-mul-bug-workaround
2934         into -no-mul-bug-abort depending on HAVE_AS_MUL_BUG_ABORT_OPTION.
2935         (TARGET_MASK_MUL_BUG, TARGET_MUL_BUG): New macros.
2936         (TARGET_SWITCHES): New options -mmul-bug-workaround and
2937         -mno-mul-bug-workaround.
2938         (TARGET_DEFAULT): Include TARGET_MASK_MUL_BUG.
2939         (PRINT_OPERAND_PUNCT_VALID_P): Include '!'.
2940         * config/cris/cris.c (cris_operand_extend_operator): Clarify
2941         relation to MULT in head comment.
2942         (cris_op_str): Abort for MULT.
2943         (cris_print_operand) <case '!'>: New case.
2944
2945 2004-03-08  Alan Modra  <amodra@bigpond.net.au>
2946
2947         PR debug/11983
2948         * dwarf2out.c (enum dw_val_class): Rename dw_val_class_float to
2949         dw_val_class_vec.  Replace use throughout file.
2950         (dw_float_const): Delete.
2951         (dw_vec_const): New.
2952         (dw_val_struct_union): Rename val_float to val_vec.  Replace use
2953         throughout file.
2954         (add_AT_vec): Rename from add_AT_float.  Add elt_size param.
2955         (same_dw_val_p): Adjust vec comparison.  Use memcmp.
2956         (size_of_die): Adjust dw_val_class_vec sizing.
2957         (output_die): Output dw_val_class_vec.
2958         (insert_int, extract_int, insert_float): New functions.
2959         (add_const_value_attribute): Use insert_float for CONST_DOUBLE.
2960         Handle CONST_VECTOR.
2961         (add_location_or_const_value_attribute): Handle CONST_VECTOR.
2962
2963 2004-03-07  Aldy Hernandez  <aldyh@redhat.com>
2964
2965         * config/rs6000/rs6000.c (rs6000_parse_abi_options): SPE and
2966         AltiVec abi cannot co-exist.
2967
2968         * config/rs6000/eabispe.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Same.
2969
2970 2004-03-07  Jan Hubicka  <jh@suse.cz>
2971
2972         * except.c (emit_to_new_bb_before):  Break fallthru edges.
2973
2974 2004-03-07  Stephane Carrez  <stcarrez@nerim.fr>
2975
2976         * config/m68hc11/m68hc11.md ("*lshrsi3_const"): Disable for 68HC12.
2977         ("*lshrsi3"): Also accept an immediate for 68HC12.
2978         ("*ashrsi3_const"): Likewise.
2979         ("*ashrsi3"): Likewise.
2980         ("*ashlsi3_const"): Likewise.
2981         ("*ashlsi3"): Likewise.
2982         ("cmphi_1_hc12"): Compare two hard register by pushing them and
2983         comparing with a pop; don't use a split for that.
2984         ("cmphi split"): Disable compare split for 68HC12.
2985
2986         * config/m68hc11/m68hc11.c (m68hc11_notice_update_cc): Invalidate
2987         the status operands if they have side effects.
2988
2989 2004-03-07  Kazu Hirata  <kazu@cs.umass.edu>
2990
2991         * defaults.h (LEGITIMIZE_ADDRESS): Provide a default
2992         definition.
2993         * config/arc/arc.h, config/fr30/fr30.h, config/frv/frv.h,
2994         config/h8300/h8300.h, config/ia64/ia64.h,
2995         config/mcore/mcore.h, config/mmix/mmix.h,
2996         config/ns32k/ns32k.h, config/pdp11/pdp11.h,
2997         config/stormy16/stormy16.h, config/v850/v850.h,
2998         config/vax/vax.h (LEGITIMIZE_ADDRESS): Remove.
2999         * doc/tm.texi (LEGITIMIZE_ADDRESS): Mention the default
3000         definition.
3001
3002 2004-03-07  Roger Sayle  <roger@eyesopen.com>
3003
3004         * fold-const.c (fold) <IOR_EXPR>: Fold x | x as x.
3005         <XOR_EXPR>: Fold x ^ x as zero.
3006         <AND_EXPR>: Fold x & x as x.
3007
3008 2004-03-07  Roger Sayle  <roger@eyesopen.com>
3009
3010         * fold-const.c (fold) <EQ_EXPR>: Rewrite optimization to transform
3011         "foo++ == const" into "++foo == const+incr".
3012
3013 2004-03-07  Richard Sandiford  <rsandifo@redhat.com>
3014
3015         * config/mips/mips.c (mips_in_small_data_p): Return false if
3016         TARGET_ABICALLS.
3017
3018 2004-03-06  Stephane Carrez  <stcarrez@nerim.fr>
3019
3020         * config/m68hc11/m68hc11.c (m68hc11_gen_movhi): Use 2,-sp to push
3021         the stack register.
3022         (expand_prologue): Don't make an interrupt or a trap handler a far
3023         symbol.
3024         (m68hc11_initial_elimination_offset): Likewise.
3025
3026 2004-03-06  Richard Henderson  <rth@redhat.com>
3027
3028         * config/alpha/alpha.c (alpha_in_small_data_p): False for functions.
3029
3030 2004-03-06  Kazu Hirata  <kazu@cs.umass.edu>
3031
3032         * config/ns32k/ns32k-protos.h: Add a prototype for
3033         ns32k_notice_update_cc.
3034         * config/ns32k/ns32k.c (ns32k_notice_update_cc): New.
3035         * config/ns32k/ns32k.h (NOTICE_UPDATE_CC): Call
3036         ns32k_notice_update_cc.
3037
3038 2004-03-06  Ulrich Weigand  <uweigand@de.ibm.com>
3039
3040         * config/s390/s390.md ("load_multiple", "*load_multiple_di",
3041         "*load_multiple_si"): Allow only if reload_completed.
3042         ("store_multiple", "*store_multiple_di", "*store_multiple_si"):
3043         Likewise.
3044
3045 2004-03-06  Kazu Hirata  <kazu@cs.umass.edu>
3046
3047         * config/vax/vax-protos.h: Add a prototype for
3048         vax_notice_update_cc.
3049         * config/vax/vax.c (vax_notice_update_cc): New.
3050         * config/vax/vax.h (NOTICE_UPDATE_CC): Call
3051         vax_notice_update_cc.
3052
3053 2004-03-06  David Edelsohn  <edelsohn@gnu.org>
3054
3055         * collect2.c (main): Only export initfunc and finifunc if
3056         LD_INIT_SWITCH not defined.
3057         (scan_prog_file): Only export constructors and destructors if
3058         LD_INIT_SWITCH not defined.  Only export symbols not found in
3059         shared objects.
3060
3061 2004-03-06  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
3062
3063         * pa.md (icacheflush): Reorder operands to make match_scratch operand
3064         last.
3065         * pa.h (INITIALIZE_TRAMPOLINE): Remove unnecessary scratch argument
3066         from calls to gen_icacheflush.
3067
3068 2004-03-06  Richard Henderson  <rth@redhat.com>
3069
3070         * config/alpha/alpha.h (MASK_LONG_DOUBLE_128): New.
3071         (TARGET_LONG_DOUBLE_128): New.
3072         (TARGET_SWITCHES): Add long-double-{128,64}.
3073         (TARGET_HAS_XFLOATING_LIBS): Default to TARGET_LONG_DOUBLE_128.
3074         (LONG_DOUBLE_TYPE_SIZE): Honor TARGET_LONG_DOUBLE_128.
3075         (LIBGCC2_LONG_DOUBLE_TYPE_SIZE): New.
3076         (WIDEST_HARDWARE_FP_SIZE): New.
3077         (TARGET_CPU_CPP_BUILTINS): Define __LONG_DOUBLE_128__.
3078         * config/alpha/alpha.c (override_options): Clear MASK_LONG_DOUBLE_128
3079         if TARGET_VAX_FLOAT.
3080         * config/alpha/osf5.h (LONG_DOUBLE_TYPE_SIZE): Remove.
3081         (TARGET_DEFAULT): Set MASK_LONG_DOUBLE_128.
3082
3083 2004-03-06  Richard Henderson  <rth@redhat.com>
3084
3085         * config/alpha/alpha.c (alpha_swapped_comparison_operator): Fix
3086         botched rtx class conversion.
3087
3088 2004-03-06  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3089
3090         * tree.h (BUILTIN_EXP10_P, BUILTIN_EXPONENT_P, BUILTIN_SQRT_P,
3091         BUILTIN_CBRT_P, BUILTIN_ROOT_P): New macros.
3092
3093         * builtins.c (fold_builtin_logarithm, fold_builtin): Use new
3094         macros.
3095         * fold-const.c (fold_mathfn_compare, fold): Likewise.
3096
3097 2004-03-06  Eric Botcazou  <ebotcazou@libertysurf.fr>
3098
3099         PR target/14343
3100         * config/i386/i386.md (movv2di_internal): Conditionalize on
3101         TARGET_SSE, not TARGET_SSE2.
3102
3103 2004-03-05  Chris Demetriou  <cgd@broadcom.com>
3104
3105         * config.gcc (mips64orion-*-elf*, mips64orionel-*-elf*): Delete
3106         duplicated line.
3107
3108 2004-03-05  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
3109
3110         * builtins.c: Consistently use logN not log* in comments.
3111
3112 2004-03-05  Andreas Krebbel  <krebbel1@de.ibm.com>
3113
3114         * rtl.h (mem_expr_equal_p): Function prototype added.
3115         * cfgcleanup.c (merge_memattrs): New function.
3116         (flow_find_cross_jump): Call merge_memattrs for matching insns.
3117         * emit-rtl.c (mem_expr_equal_p): New function.
3118
3119 2004-03-05  Ziemowit Laski  <zlaski@apple.com>
3120
3121         * objc/objc-act.c (synth_module_prologue): Const-qualify
3122         objc_selector type if using the GNU runtime; fix generated
3123         signatures for objc_msg_lookup and objc_msg_lookup_super
3124         to match what GNU ObjC headers provide; reformat and clean up.
3125         (synth_self_and_ucmd_args): Use previously constructed (and
3126         hence possibly const-qualified) objc_selector type.
3127
3128 2004-03-05  Kazu Hirata  <kazu@cs.umass.edu>
3129
3130         * doc/tm.texi (HARD_REGNO_RENAME_OK): Document.
3131
3132 2004-03-05  Jason Merrill  <jason@redhat.com>
3133
3134         * tree.h (TYPE_HASH): Use TYPE_UID.
3135         (TREE_HASH): New macro with old definition of TYPE_HASH.
3136         * tree.c (build_type_attribute_variant): Use iterative_hash_object.
3137         (build_array_type, build_function_type): Likewise.
3138         (build_method_type_directly): Likewise.
3139         (build_offset_type, build_complex_type): Likewise.
3140         (type_hash_list, attribute_hash_list): Likewise. Now static.
3141         * except.c: s/TYPE_HASH/TREE_HASH/.
3142
3143 2004-03-05  Bob Wilson  <bob.wilson@acm.org>
3144
3145         * config/xtensa/xtensa.c (function_arg): Handle 16-byte aligned args.
3146         (xtensa_va_start): Initialize __va_stk to ($arg_ptr - 32).  Adjust
3147         __va_ndx by 2 words when referencing an argument on the stack.
3148         (xtensa_va_arg): Handle 16-byte aligned args.  Adjust __va_ndx by 2
3149         words when an arg on the stack is first seen.
3150
3151 2004-03-05  Paul Brook  <paul@codesourcery.com>
3152
3153         * arm.h (ARM_FLAG_VFP): Remove.
3154         (ARM_FLAG_ATPCS, CIRRUS_FIX_INVALID_INSNS): Renumber.
3155         * netbsd-elf.h (ARM_FLAG_VFP): Remove.
3156
3157 2004-03-05  Paul Brook  <paul@codesourcery.com>
3158
3159         * function.c (assign_parms): Include pretend alignment offset.
3160
3161 2004-03-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3162
3163         * stor-layout.c (layout_type, case FUNCTION_TYPE): Make size
3164         FUNCTION_BOUNDARY, not POINTER_SIZE * 2.
3165
3166 2004-03-05  Ian Lance Taylor  <ian@wasabisystems.com>
3167
3168         * configure.ac: When passing --enable-languages to subdir
3169         configure when host != build, make sure we don't pass an empty
3170         value.
3171         * configure: Regenerate.
3172
3173 2004-03-05  Nathan Sidwell  <nathan@codesourcery.com>
3174
3175         PR 13577
3176         * gcc.c (cc1_options): Robustify -auxbase-strip from multiple -o
3177         options.
3178
3179 2004-03-05  Paolo Bonzini  <bonzini@gnu.org>
3180
3181         * simplify-rtx.c (simplify_relational_operation): If
3182         flag_wrapv is set, do not move terms between the two
3183         side of a relational operator.
3184
3185 2004-03-05  Paolo Bonzini  <bonzini@gnu.org>
3186
3187         * rtlanal.c: Include target.h and output.h
3188         (rtx_cost, address_cost, default_address_cost): Move from...
3189         * cse.c (rtx_cost, address_cost, default_address_cost):
3190         ... this file.
3191         * rtl.h (rtx_cost, address_cost): Move under rtlanal.c.
3192         * Makefile.in: Adjust dependencies.
3193
3194 2004-03-05  Paolo Bonzini <bonzini@gnu.org>
3195
3196         * cse.c (cse_end_of_basic_block): Make static.
3197         * local-alloc.c (function_invariant_p): Move to
3198         reload1.c.
3199         * loop.c (libcall_other_reg, record_excess_regs):
3200         Make static.
3201         * reload1.c (function_invariant_p): Moved here
3202         from local-alloc.c, made static.
3203         * rtl.h (cse_end_of_basic_block, function_invariant_p,
3204         libcall_other_reg, record_excess_regs): Remove
3205         declarations.
3206
3207 2004-03-05  Kazu Hirata  <kazu@cs.umass.edu>
3208
3209         * config/m32r/m32r.c (signed_comparison_operator): Add a
3210         missing parenthesis.
3211
3212 2004-03-04  Ian Lance Taylor  <ian@wasabisystems.com>
3213
3214         * ggc-common.c (gt_pch_restore): Don't unmap addr unless we are
3215         going to call mmap again.  Read the file into the right place.
3216         Give a fatal error if we have to relocate.
3217
3218 2004-03-04  Bob Wilson  <bob.wilson@acm.org>
3219
3220         * config/xtensa/xtensa.c (xtensa_return_in_msb): New function.
3221         (TARGET_RETURN_IN_MSB): Define to xtensa_return_in_msb.
3222
3223 2004-03-05  Hans-Peter Nilsson  <hp@axis.com>
3224
3225         PR other/14354
3226         * config/fp-bit.c (_fpdiv_parts): Do not round when pack_d would
3227         round the same.  When rounding, clear bits that would cause a
3228         second rounding in pack_d.
3229         (_fpmul_parts): Ditto.  Remove #if 0:d code.
3230
3231 2004-03-04  Ziemowit Laski  <zlaski@apple.com>
3232
3233         PR c++/14425, c++/14426
3234         * config/rs6000/altivec.h (vec_splat_s8, vec_splat_s16,
3235         vec_splat_s32, vec_splat_u8, vec_splat_u16, vec_splat_u32):
3236         Change C++ definitions to accept a 'const int' argument;
3237         the prototypes already do.
3238         * config/rs6000/rs6000.c (rs6000_common_init_builtins):
3239         Rename v4si_ftype_char, v8hi_ftype_char, v16qi_ftype_char,
3240         v4sf_ftype_v4si_char, v4si_ftype_v4sf_char, v4si_ftype_v4si_char,
3241         v8hi_ftype_v8hi_char, v16qi_ftype_v16qi_char,
3242         v16qi_ftype_v16qi_v16qi_char, v8hi_ftype_v8hi_v8hi_char,
3243         v4si_ftype_v4si_v4si_char and v4sf_ftype_v4sf_v4sf_char to
3244         end in ..._int; change them to accept an int instead of a char
3245         as the last parameter.
3246
3247 2004-03-04  Phil Edwards  <phil@codesourcery.com>
3248
3249         * genmultilib:  Change '=' to '-' when translating option names
3250         to directory names.
3251
3252 2004-03-04  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
3253
3254         * expr.c (expand_expr_real, case COMPONENT_REF): Get proper type of
3255         stack slot for temp used for result of BLKmode but in integral mode.
3256
3257 2004-03-04  Jan Hubicka  <jh@suse.cz>
3258
3259         * reload.c (find_reloads): Reorganize if seqeunce to switch.
3260
3261         * cfgrtl.c (rtl_redirect_edge_and_branch):  Set the source BB as dirty.
3262         (cfglayout_redirect_edge_and_branch):  Set the source BB as dirty.
3263
3264 2004-03-04  Steve Ellcey  <sje@cup.hp.com>
3265
3266         * config/ia64/ia64.md (divdf3_internal_thr): Fix algorithm.
3267         * testsuite/gcc.dg/20040303-1.c: New test.
3268
3269 2004-03-04  Steven Bosscher  <stevenb@suse.de>
3270
3271         * ppro.md: Rewrite as a DFA pipeline description.
3272         * i386.md: Remove all uses of the ppro_uops attribute.
3273         * i386.c: (ix86_safe_ppro_uops, ix86_dump_ppro_packet,
3274         ix86_reorder_insn, ix86_sched_reorder_ppro, ix86_sched_init,
3275         ix86_sched_reorder, ix86_variable_issue,
3276         struct ix86_sched_data, TARGET_SCHED_VARIABLE_ISSUE,
3277         TARGET_SCHED_INIT, TARGET_SCHED_REORDER): Remove.
3278         (ia32_use_dfa_pipeline_interface): Add TARGET_PENTIUMPRO.
3279         (ia32_multipass_dfa_lookahead): Add TARGET_PENTIUMPRO.
3280         * athlon.md (athlon_ssecmp_load): Fix comment
3281
3282 2004-03-04  Stuart Hastings  <stuart@apple.com>
3283
3284         * gcc/doc/invoke.texi: Document -mlongcall for Darwin/PPC.
3285
3286 2004-03-04  Stuart Hastings  <stuart@apple.com>
3287
3288         * gcc/config/i386/darwin.h: Darwin/x86 doesn't support CPUs before
3289         686, tell Darwin assembler to allow prefetch insns, non-empty def
3290         of SUBTARGET_OPTION_TRANSLATE_TABLE.
3291
3292 2004-03-04  DJ Delorie  <dj@redhat.com>
3293
3294         PR optimization/14282
3295         * sched-deps.c (sched_analyze_insn): Allow a stack adjustment
3296         between a call and the assignment of its return value.
3297
3298 2004-03-04  Kazu Hirata  <kazu@cs.umass.edu>
3299
3300         * config/h8300/h8300.c: Put a comment for every function.
3301
3302 2004-03-04  Kazu Hirata  <kazu@cs.umass.edu>
3303
3304         * config/h8300/h8300.md: Add comments about peephole2's.
3305
3306 2004-03-04  Steven Bosscher  <stevenb@suse.de>
3307
3308         * i386.h (TARGET_CPU_DEFAULT_nocona): Fix value.
3309
3310 2004-03-04  Jan Hubicka  <jh@suse.cz>
3311
3312         * cfgcleanup.c (thread_jump): Update call of cselib_init.
3313         * cselib.c (cselib_record_memory): New static variable.
3314         (cselib_lookup_mem, cselib_record_set, cselib_record_sets):
3315         Give up on memories when asked for.
3316         (cselib_init): Accept new argument.
3317         * cselib.h (cselib_init): Update prototype.
3318         * gcse.c (local_cprop_pass): Update call of cselib_init.
3319         * loop.c (load_mems): Update call of cselib_init.
3320         * postreload.c (reload_cse_regs_1): Update call of cselib_init.
3321         * sched-deps.c (sched_analyze): Update call of cselib_init.
3322
3323 2004-03-04  David Edelsohn  <edelsohn@gnu.org>
3324             GP <gp@qnx.com>
3325
3326         * config/rs6000/rs6000.c (output_function_profiler): Append @plt
3327         when compiling PIC.
3328
3329 2004-03-04  Josef Zlomek  <zlomekj@suse.cz>
3330
3331         PR/14362
3332         * var-tracking.c (track_expr_p): Do not track variables which
3333         should be ignored for debugging purposes.
3334
3335 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
3336
3337         * real.c (encode_ibm_extended): Don't bother rounding low double.
3338         * c-cppbuiltin.c (builtin_define_float_constants): Tweak MAX
3339         when fmt->pnan < fmt->p.
3340
3341 2004-03-04  Eric Christopher  <echristo@redhat.com>
3342
3343         * config/mips/mips.h (FUNCTION_ARG_REGNO_P): Fix to check
3344         only range of valid arg registers and fixed_regs.
3345
3346 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
3347
3348         PR target/14406
3349         * config/rs6000/rs6000.md (abstf2, abstf2+1): Delete define_insn.
3350         (abstf2, abstf2_internal): New define_expand.
3351
3352 2004-03-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
3353
3354         PR optimization/14235
3355         * expr.c (convert_move): Copy the source to a new pseudo
3356         when converting from a sub-word source to a larger-than-word
3357         register which conflicts with the source.
3358
3359 2004-03-03  Zack Weinberg  <zack@codesourcery.com>
3360
3361         PR 13728
3362         * c-decl.c (diagnose_mismatched_decls): Issue an error for two
3363         parameters with the same name, unless one is a forward decl.
3364         Do not issue a redundant-redeclaration warning for forward
3365         decls of parameters.
3366
3367 2004-03-04  David Edelsohn  <edelsohn@gnu.org>
3368
3369         * doc/install.texi (*-ibm-aix*): Document use of Bash to speed up
3370         configuration.
3371
3372 2004-03-03  Ian Lance Taylor  <ian@wasabisystems.com>
3373
3374         * ggc-zone.c (ggc_pch_write_object): Don't align file pointer.
3375
3376 2004-03-04  Alan Modra  <amodra@bigpond.net.au>
3377
3378         * target-def.h (TARGET_OPTF): Delete.
3379         * c-opts.c (TARGET_OPTF): Define.
3380
3381 2004-03-04  Jan Hubicka  <jh@suse.cz>
3382
3383         * cselib.c (cselib_finish): Fix another miss-application of my previous
3384         patch.
3385
3386 2004-03-03  Mike Stump  <mrs@apple.com>
3387
3388         Add framework support for darwin.
3389
3390         * c-incpath.c: Include target.h and machmode.h.
3391         (add_path): Use a consistent style for cpp_dir.  Initialize
3392         p->construct to 0.
3393         (add_cpp_dir_path): New.
3394         (register_include_chains): Add use of extra_includes callback.
3395         (hook_void_int): Add.
3396         (target_c_incpath): Add.
3397         * c-incpath.h (add_cpp_dir_path): New.
3398         (target_c_incpath_s): Add.
3399         (target_c_incpath): Add.
3400         (C_INCPATH_INIT): Add.
3401         * c-opts.c (c_common_missing_argument,
3402         c_common_handle_option): Add -F argument processing.
3403         * c.opt: Add -F argument processing.
3404         * gcc.c (trad_capable_cpp): Add -F argument processing.
3405         * cppfiles.c (find_file_in_dir): Update to use construct
3406         callback.
3407         (search_path_exhausted, cpp_get_path, cpp_get_buffer,
3408         cpp_get_prev): New.
3409         (_cpp_find_file): Use search_path_exhausted.
3410         (make_cpp_dir): Initialize construct to 0.
3411         * cpplib.h (missing_header_cb
3412         cpp_get_path, cpp_get_buffer, cpp_get_file, cpp_get_prev): New.
3413         (cpp_callbacks): Add missing_header
3414         (cpp_dir): Add construct.
3415         * target-def.h: (TARGET_OPTF): New.
3416         * hooks.c (hook_void_int, hook_void_charptr): Add.
3417         * hooks.h (hook_void_int, hook_void_charptr): Add.
3418         * Makefile.in (c-incpath.o) : Add $(TARGET_H) and
3419         $(MACHMODE_H) dependencies.
3420         * doc/invoke.texi (Darwin Options): Document -F.
3421         * doc/tm.texi (TARGET_EXTRA_INCLUDES): Add.
3422         (TARGET_OPTF): Add.
3423         * fix-header.c (target_c_incpath): Add.
3424
3425         * config/darwin-c.c: Add c-incpath.h include.
3426         (using_frameworks, find_subframework_file,
3427         find_subframework_header, add_system_framework_path,
3428         frameworks_in_use, num_frameworks, max_frameworks,
3429         add_framework, find_framework, struct framework_header,
3430         framework_header_dirs, framework_construct_pathname,
3431         find_subframework_file, add_system_framework_path,
3432         add_framework_path, framework_defaults,
3433         darwin_register_frameworks, find_subframework_header): Add.
3434         * config/darwin.h (TARGET_EXTRA_INCLUDES, TARGET_OPTF): New.
3435         (TARGET_OPTION_TRANSLATE_TABLE): Add -framework support.
3436         (CPP_SPEC): Add __APPLE_CC__ support.
3437         * t-darwin (darwin-c.o): Add c-incpath.h dependency.
3438
3439 2004-03-04  Jan Hubicka  <jh@suse.cz>
3440
3441         * cselib.c (cselib_finish): Fix miss-application of my previous
3442         patch.
3443
3444 2004-03-03  Kazu Hirata  <kazu@cs.umass.edu>
3445
3446         * hooks.c (hook_tree_tree_identity): New.
3447         * hooks.h: Add a prototype for hook_tree_tree_identity.
3448         * stmt.c (expand_asm_operands): Use targetm.md_asm_clobbers
3449         instead of MD_ASM_CLOBBERS.
3450         * system.h (MD_ASM_CLOBBERS): Poison.
3451         * target-def.h (TARGET_MD_ASM_CLOBBERS): New.
3452         (TARGET_INITIALIZER): Add TARGET_MD_ASM_CLOBBERS.
3453         * target.h (gcc_target): Add md_asm_clobbers.
3454         * config/i386/i386.c (TARGET_MD_ASM_CLOBBERS): New.
3455         (ix86_md_asm_clobbers): New.
3456         * config/i386/i386.h (MD_ASM_CLOBBERS): Remove.
3457         * doc/tm.texi (MD_ASM_CLOBBERS): Change to
3458         TARGET_MD_ASM_CLOBBERS.
3459
3460 2004-03-03  Stuart Hastings  <stuart@apple.com>
3461
3462         * gcc/config.gcc: Arrange for Darwin/x86 to build libgcc_eh.a.
3463
3464 2004-03-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
3465
3466         * config/sparc/sparc.c (noov_compare64_op): Fix typo.
3467
3468         * config/sparc/sparc.h (ASM_FLOAT): Delete.
3469         (ASM_DOUBLE): Likewise.
3470         (ASM_LONGDOUBLE): Likewise.
3471         * config/sparc/pbd.h (ASM_INT_OP): Delete.
3472
3473 2003-03-03  Richard Henderson  <rth@redhat.com>
3474
3475         PR opt/13862
3476         * cselib.c (cselib_record_sets): Don't record multiple sets in
3477         asm insns.
3478
3479 2004-03-03  Mostafa Hagog  <mustafa@il.ibm.com>
3480
3481         * common.opt: Add description of the new -fgcse-after-reload flag.
3482
3483         * flags.h (flag_gcse_after_reload): Declaration of global variable.
3484
3485         * gcse.c (reg_used_on_edge ,reg_set_between_after_reload_p,
3486         reg_used_between_after_reload_p, rtx get_avail_load_store_reg,
3487         is_jump_table_basic_block, bb_has_well_behaved_predecessors,
3488         get_bb_avail_insn, hash_scan_set_after_reload,
3489         compute_hash_table_after_reload, eliminate_partially_redundant_loads,
3490         gcse_after_reload, get_bb_avail_insn): New functions to implement
3491         gcse-after-reload.
3492         (gcse_after_reload_main): New function, the main entry point to
3493         gcse-after-reload.
3494
3495         * rtl.h (gcse_after_reload_main): Declaration of the new function.
3496
3497         * opts.c (common_handle_option): Handle the -fgcse-after-reload flag.
3498
3499         * toplev.c (flag_gcse_after_reload): Initialization.
3500
3501         * passes.c (rest_of_handl_gcse2): Call gcse_after_reload_main.
3502
3503         * params.def (PARAM_GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
3504         PARAM_GCSE_AFTER_RELOAD_CRITICAL_FRACTION): New parameters for tuning
3505         the gcse after reload optimization.
3506
3507         * params.h (GCSE_AFTER_RELOAD_PARTIAL_FRACTION,
3508         GCSE_AFTER_RELOAD_CRITICAL_FRACTION): Two macros to access the tuning
3509         parameters.
3510
3511         * doc/invoke.texi: Documentation for the new flag gcse-after-reload.
3512
3513 2004-03-03  Nicolas Pitre <nico@cam.org>
3514
3515         * config/arm/ieee754-df.S (muldf3, divdf3): Fix denormalization of
3516         small negative values.
3517
3518 2004-03-03  Jan Hubicka  <jh@suse.cz>
3519
3520         * cselib.c (hash_table):  Remove GTY marker.
3521         (reg_values): Turn into array.
3522         (used_regs): Likewise.
3523         (n_used_regs): New static variable.
3524         (reg_values_old): Kill.
3525         (clear_table): Update uses of arrays.
3526         (cselib_lookup): Likewise.
3527         (cselib_record_set): Likewise.
3528         (cselib_init): Likewise.
3529         (cselib_finish): Likewise.
3530         (cselib_udpate_varray_sizes): Kill.
3531         * cselib.h (cselib_update_varray_sizes): Kill.
3532
3533 2004-03-03  Paul Brook  <paul@codesourcery.com>
3534
3535         * flow.c (ior_reg_cond, and_reg_cond): Remove stray ")".
3536
3537 2004-03-03  Jan Hubicka  <jh@suse.cz>
3538
3539         * ggc-common.c (ggc_alloc_cleared_stat, ggc_realloc_stat):
3540         Rename from ...; make statistics transparent.
3541         (ggc_alloc_cleared, ggc_realloc_stat): ... these.
3542         (loc_descriptor): New structure.
3543         (hash_descriptor, eq_descriptor, loc_descriptor, cmp_statistics,
3544         add_statistics):
3545         New static function.
3546         (ggc_record_overhead, dump_statistics): New global function.
3547         * ggc-none.c (ggc_alloc_types_stat, ggc_alloc_stat, ggc_alloc_zone_stat,
3548         ggc_alloc_cleared_stat, ggc_realloc_stat, ggc_alloc_typed_stat): Rename
3549         from ...; accept locations
3550         (ggc_alloc_types, ggc_alloc, ggc_alloc_zone, ggc_alloc_cleared,
3551         ggc_realloc, ggc_alloc_typed):  ... this one.
3552         from ...; accept locations
3553         * ggc-page.c (ggc_alloc_typed_stat, ggc_alloc_zone_stat,
3554         ggc_alloc_stat): Rename from ... ; pass locations
3555         * ggc-page.c (ggc_alloc_typed, ggc_alloc_zone, ggc_alloc):
3556         ... this one.
3557         (ggc_alloc_stat): Record overehead.
3558         * ggc.h (ggc_alloc_types, ggc_alloc, ggc_alloc_zone, ggc_alloc_cleared,
3559         ggc_realloc, ggc_alloc_typed):  Turn to macros
3560         (ggc_alloc_types_stat, ggc_alloc_stat, ggc_alloc_zone_stat,
3561         ggc_alloc_cleared_stat, ggc_realloc_stat, ggc_alloc_typed_stat): Declare.
3562         (dump_ggc_loc_satistics, ggc_record_overehead): Declare.
3563         * langhooks.h (lhd_make_node): Declare.
3564         (LANG_HOOKS_MAKE_TYPE): Default to new function,
3565         * langhooks.c (lhd_make_node): New.
3566         * rtl.c (rtx_alloc_stat, swallow_copy_rtx_stat): Rename from ... ; pass
3567         locations.
3568         (rtx_alloc, swallow_copy_rtx): ... this one.
3569         * rtl.h (rtx_alloc, swallow_copy_rtx): Turn to macros.
3570         * rtl.c (rtx_alloc_stat, swallow_copy_rtx_stat): Declare.
3571         * toplpev.c (finalize): Dump stats.
3572         * tree.c (make_node_stat, copy_node_stat, make_tree_vec_stat,
3573         build_tree_list_stat, tree_cons_stat, build?_stat,  build_decl_stat):
3574         Rename from ... ; pass locators.
3575         (make_node, copy_node, make_tree_vec, build_tree_list, tree_cons,
3576         build?,  build_decl): Declare.
3577         * tree.h (make_node_stat, copy_node_stat, make_tree_vec_stat,
3578         build_tree_list_stat, tree_cons_stat, build?_stat,  build_decl_stat):
3579         Declare.
3580         (make_node, copy_node, make_tree_vec, build_tree_list, tree_cons,
3581         build?,  build_decl): New macros.
3582         * Makefile.in (RTL_H, TREE_H): Add statistics.h dependency.
3583         * statistics.h: New file.
3584
3585 2004-03-03  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
3586             Richard Sandiford  <rsandifo@redhat.com>
3587
3588         * config/mips/mips.h (MASK_FIX_SB1): Bump.
3589         (MASK_FIX_R4400, TARGET_FIX_R4400): New macros.
3590         (TARGET_SWITCHES): Add -mfix-r4400 and -mno-fix-r4400.
3591         * config/mips/mips.c (mips_output_division): Fill the branch delay
3592         slot with a nop if TARGET_FIX_R4000.  Extend R4000 workarounds to
3593         TARGET_FIX_R4400.
3594         (mips_output_division): Adjust accordingly.
3595         (override_options): Make -march=r4400 imply -mfix-r4400 by default.
3596         * doc/invoke.texi: Document -mfix-r4400 and new errata workarounds.
3597
3598 2004-03-03  Paolo Bonzini  <bonzini@gnu.org>
3599
3600         * alias.c (rtx_equal_for_memref_p): Use predicates
3601         to test rtx classes and new rtx class codes, possibly
3602         splitting conditionals that tested against '<' and 'o'.
3603         * caller-save.c (save_call_clobbered_regs): Likewise.
3604         * combine.c (contains_muldiv, find_split_point, subst,
3605         combine_simplify_rtx, simplify_if_then_else,
3606         simplify_set, simplify_logical, expand_compound_operation,
3607         make_compound_operation, if_then_else_cond, known_cond,
3608         apply_distributive_law, cached_nonzero_bits,
3609         cached_num_sign_bit_copies, simplify_shift_const,
3610         gen_binary, simplify_comparison, update_table_tick,
3611         record_value_for_reg, get_lsat_value_validate): Likewise.
3612         * cse.c (mention_regs, find_best_addr, find_comparison_args,
3613         fold_rtx, cse_insn, invalidate_memory, cse_basic_block):
3614         Likewise.
3615         * emit-rtl.c (copy_insn_1): Likewise.
3616         * expr.c (force_operand): Likewise.
3617         * final.c (final_scan_insn, get_mem_expr_from_op): Likewise.
3618         * flow.c (notice_stack_pointer_modification_1,
3619         invalidate_mems_from_autoinc, ior_reg_cond, not_reg_cond,
3620         and_reg_cond, elim_reg_cond): Likewise.
3621         * function.c (update_epilogue_consts): Likewise.
3622         * genattrtab.c (attr_rtx_1): Likewise.
3623         * genopinit.c (gen_insn): Likewise.
3624         * integrate.c (subst_constants): Likewise.
3625         * jump.c (reversed_comparison_code_parts,
3626         reversed_comparison_code, delete_related_insns,
3627         rtx_renumbered_equal_p): Likewise.
3628         * local-alloc.c (block_alloc): Likewise.
3629         * loop.c (rtx_equal_for_prefetch_p, maybe_eliminate_biv,
3630         canonicalize_condition): Likewise.
3631         * loop-iv.c (simplify_using_conditions, iv_number_of_iterations):
3632         Likewise.
3633         * optabs.c (add_equal_node, expand_binop): Likewise.
3634         * predict.c (estimate_probability): Likewise.
3635         * ra-debug.c (ra_print_rtx_2op, ra_print_rtx): Likewise.
3636         * recog.c (validate_replace_rtx_1, comparison_operator,
3637         offsettable_address_p, constrain_operands): Likewise.
3638         * reg-stack.c (swap_rtx_condition_1, subst_stack_regs_pat):
3639         Likewise.
3640         * regclass.c (scan_one_insn): Likewise.
3641         * regmove.c (stable_and_no_regs_but_for_p): Likewise.
3642         * regrename.c (kill_autoinc_value): Likewise.
3643         * reload.c (find_reusable_reload, find_reloads,
3644         reg_overlap_mentioned_for_reload_p): Likewise.
3645         * reload1.c (gen_reload, delete_address_reloads_1): Likewise.
3646         * rtl.c (copy_rtx): Likewise.
3647         * rtl.h (CONSTANT_P, INSN_P): Likewise.
3648         * rtlanal.c (commutative_operand_precedence): Likewise.
3649         * sched-deps.c (conditions_mutex_p): Likewise.
3650         * sched-rgn.c (is_cfg_nonregular): Likewise.
3651         * simplify-rtx.c (simplify_gen_binary,
3652         simplify_gen_relational, simplify_replace_rtx,
3653         simplify_unary_operation, simplify_binary_operation,
3654         simplify_ternary_operation, simplify_rtx): Likewise.
3655         * unroll.c (reg_dead_after_loop): Likewise.
3656         * config/alpha/alpha.c (alpha_swapped_comparison_operator,
3657         print_operand): Likewise.
3658         * config/arc/arc.c (proper_comparison_operator): Likewise.
3659         * config/arm/arm.c (arm_arm_address_cost, arm_select_cc_mode):
3660         Likewise.
3661         * config/avr/avr.c (_reg_unused_after): Likewise.
3662         * config/frv/frv.c (frv_ifcvt_modify_tests,
3663         frv_ifcvt_modify_insn, frv_pack_insn): Likewise.
3664         * config/i386/i386.c (ix86_comparison_operator,
3665         ix86_carry_flag_operator, fcmov_comparison_operator,
3666         arith_or_logical_operator, print_operand,
3667         ix86_expand_binary_operator, ix86_binary_operator_ok):
3668         Likewise.
3669         * config/i386/i386.md: Likewise.
3670         * config/ia64/ia64.c (not_postinc_memory_operand,
3671         ia64_print_operand, update_set_flags, errata_emit_nops):
3672         Likewise.
3673         * config/ia64/ia64.h (PREFERRED_RELOAD_CLASS,
3674         CONSTRAINT_OK_FOR_S): Likewise.
3675         * config/ip2k/ip2k.c (mdr_resequence_xy_yx,
3676         mdr_try_move_dp_reload, ip2k_check_can_adjust_stack_ref,
3677         ip2k_xexp_not_uses_reg_for_mem, ip2k_xexp_not_uses_reg_p,
3678         ip2k_composite_xexp_not_uses_reg_p, ip2k_unary_operator):
3679         Likewise.
3680         * config/iq2000/iq2000.c (cmp_op, symbolic_expression_p,
3681         eqne_comparison_operator, signed_comparison_operator):
3682         Likewise.
3683         * config/mips/mips.c (cmp_op, symbolic_expression_p):
3684         Likewise.
3685         * config/mmix/mmix (mmix_foldable_comparison_operator,
3686         mmix_comparison_operator): Likewise.
3687         * config/pa/pa.c (hppa_legitimize_address): Likewise.
3688         * config/rs6000/rs6000.c (stmw_operation,
3689         branch_comparison_operator, trap_comparison_operator,
3690         ccr_bit): Likewise.
3691         * config/rs6000/rs6000.h (SELECT_CC_MODE): Likewise.
3692         * config/s390/s390.c (s390_alc_comparison,
3693         s390_slb_comparison):L Likewise.
3694         * config/sh/sh.c (gen_block_redirect, reg_unused_after):
3695         Likewise.
3696         * config/sparc/sparc.c (eq_or_neq, normal_comp_operator,
3697         noov_compare_op, noov_compare64_op, v9_regcmp_op,
3698         emit_hard_tfmode_operation, reg_unused_after)
3699         * doc/md.texi, doc/rtl.texi: Likewise.
3700
3701         * ra-debug.c: Add 2004 to list of copyright years.
3702         * unroll.c: Likewise.
3703
3704         * combine.c (simplify_logical): Remove dummy test,
3705         (apply_distributive_law): Fix typo in comment.
3706         GET_CODE (x) == AND so x is a commutative binary op.
3707         * jump.c (delete_related_insns): simplify loop
3708         condition, move testing of RTX codes inside the loop.
3709         (rtx_renumbered_equal_p): do not use RTX_CODE.
3710         * rtl.c (rtx_class): Declare as enum rtx_class.
3711         * rtl.def (EQ, NE, UNEQ, LTGT, UNORDERED, ORDERED):
3712         Move to RTX_COMM_COMPARE class.
3713         (HIGH, SYMBOL_REF, LABEL_REF, CONST, CONST_INT, CONST_DOUBLE):
3714         Move to RTX_CONST_OBJ class.
3715         * rtl.h (enum rtx_class): New declaration,
3716         (RTX_OBJ_MASK, RTX_OBJ_RESULT, RTX_COMPARE_MASK,
3717         RTX_COMPARE_RESULT, RTX_ARITHMETIC_MASK, RTX_ARITHMETIC_RESULT,
3718         RTX_BINARY_MASK, RTX_BINARY_RESULT, RTX_COMMUTATIVE_MASK,
3719         RTX_COMMUTATIVE_RESULT, RTX_NON_COMMUTATIVE_RESULT,
3720         RTX_EXPR_FIRST, RTX_EXPR_LAST, UNARY_P, BINARY_P,
3721         ARITHMETIC_P, COMMUTATIVE_ARITHMETIC_P, COMPARISON_P,
3722         SWAPPABLE_OPERANDS_P, NON_COMMUTATIVE_P, COMMUTATIVE_P,
3723         OBJECT_P): New macros.
3724         * config/sparc/sparc.c (noov_compare_op): Remove register
3725         from parameter.
3726
3727 2004-03-03  Kazu Hirata  <kazu@cs.umass.edu>
3728
3729         * target.h: Remove texi jargons in comments.
3730
3731 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3732
3733         * config/h8300/lib1funcs.asm (___fixunssfsi): Change the
3734         threshold to 0x4f.
3735
3736         Revert:
3737         2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
3738         * config/h8300/fixunssfsi.c (__fixunssfsi): Enable on H8/300
3739         as well.
3740         * config/h8300/lib1funcs.asm (___fixunssfsi): Remove.
3741         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _fixunssfsi_asm.
3742
3743 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3744
3745         * doc/md.texi (cbranchmode4): New.
3746
3747 2004-03-02  Eric Christopher  <echristo@redhat.com>
3748
3749         * config/mips/mips16.S: Change fixsfsi and fixdfsi to
3750         fix_trunc.
3751         * config/mips/mips.c (mips_init_libfuncs): Change accordingly.
3752         * config/mips/t-elf (LIB1ASMFUNCS): Ditto.
3753         * config/mips/t-isa3264 (LIB1ASMFUNCS): Ditto.
3754         * config/mips/t-r3900 (LIB1ASMFUNCS): Ditto.
3755
3756 2004-03-02  Richard Henderson  <rth@redhat.com>
3757
3758         PR middle-end/11767
3759         * coverage.c (coverage_counter_ref): Set MEM_NOTRAP_P.
3760         * optabs.c (prepare_cmp_insn): Force trapping memories to registers
3761         before the compare, if flag_non_call_exceptions.
3762
3763 2004-03-02  Richard Henderson  <rth@redhat.com>
3764
3765         PR middle-end/14327
3766         * stmt.c (expand_computed_goto): Do do_pending_stack_adjust before
3767         emitting the label, not after.
3768
3769 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3770
3771         * config/m68hc11/m68hc11.c (m68hc11_addr_mode): New variable.
3772         (m68hc11_mov_addr_mode): Likewise.
3773         (m68hc11_override_options): Initialize them based on target.
3774         (register_indirect_p): Allow a MEM for indirect addressing modes and
3775         use flags to control what is allowed.
3776         (m68hc11_small_indexed_indirect_p): Use m68hc11_mov_addr_mode for
3777         supported addressing modes.
3778         (m68hc11_register_indirect_p): Use m68hc11_addr_mode.
3779         (go_if_legitimate_address_internal): Likewise.
3780         (m68hc11_indirect_p): Likewise and check the mode.
3781         (print_operand): Allow a (MEM (MEM)) and generate indirect addressing.
3782
3783 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3784
3785         * builtins.c (BUILTIN_SETJMP_FRAME_VALUE): Remove.
3786         (expand_builtin_setjmp_setup): Use
3787         targetm.builtin_setjmp_frame_value instead of
3788         BUILTIN_SETJMP_FRAME_VALUE.
3789         * system.h (BUILTIN_SETJMP_FRAME_VALUE): Poison.
3790         * target-def.h (TARGET_BUILTIN_SETJMP_FRAME_VALUE): New.
3791         (TARGET_INITIALIZER): Add TARGET_BUILTIN_SETJMP_FRAME_VALUE.
3792         * target.h (gcc_target): Add builtin_setjmp_frame_value.
3793         * targhooks.c (default_builtin_setjmp_frame_value): New.
3794         * targhooks.h: Add a prototype for
3795         default_builtin_setjmp_frame_value.
3796         * doc/tm.texi (BUILTIN_SETJMP_FRAME_VALUE): Change to
3797         TARGET_BUILTIN_SETJMP_FRAME_VALUE.
3798
3799 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3800
3801         * config/m68hc11/m68hc11.md (move peephole2): New peepholes to optimize
3802         sequences of moves.
3803         (add peepholes): New peepholes to optimize sequences adding small
3804         constants.
3805         (bset peepholes): New peepholes to transform an OR in a bset form
3806         (bclr peepholes): Likewise for bclr form.
3807         (cmp peepholes): New peepholes to avoid register copies when comparing.
3808
3809 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3810
3811         * config/m68hc11/m68hc11.md ("*pushdi_internal"): New insn and split
3812         to separate push from moves.
3813         ("*pushdf_internal"): Likewise.
3814         ("*pushsf_internal"): Likewise.
3815         ("*pushsi_internal"): Likewise.
3816         ("movdi_internal"): Use define_insn_and_split; non push operand.
3817         ("movdf_internal"): Likewise.
3818         ("movsf_internal"): Likewise.
3819         ("movsi_internal"): Likewise.
3820         ("*movhi_68hc12", "*addhi3_68hc12"): Fix and tune constraints
3821         ("*addhi3", "*subhi3", "*andhi3_mem", "*iorhi3_mem"): Likewise.
3822         ("*ashlsi3_const1", "*lshrsi3_const1"): Likewise.
3823
3824 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3825
3826         * config/m68hc11/m68hc11.md ("tstqi_z_used"): Use define_insn_and_split.
3827         ("cmphi_z_used", "cmpqi_z_used"): Likewise.
3828         ("movstrictsi", "movstricthi", "movstrictqi"): Likewise.
3829         ("anddi3", "andsi3", "iordi3", "iorsi3"): Likewise.
3830         ("xordi3", "xorsi3", "*logicalsi3_zexthi"): Likewise.
3831         ("*logicalsi3_zextqi", "*logicalhi3_zexthi_ashift8"): Likewise.
3832         ("logicalhi3_zexthi", "*logicalsi3_silshr16"): Likewise.
3833         ("*logicalsi3_silshl16", "*logicalsi3_silshl16_zext"): Likewise.
3834         ("*ashldi3_const32", "*ashldi3_const1", "addsi_silshr16"): Likewise.
3835         ("addsi_andshr16", "*ashlsi3_const16_zexthi"): Likewise.
3836         ("*lshrdi3_const32", "*lshrdi_const1"): Likewise.
3837
3838 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3839
3840         * config/m68hc11/m68hc11.md (SOFT_TMP_REGNUM): Define.
3841         (SOFT_XY_REGNUM): Define.
3842         (cmp split): Use the above instead of hard coded numbers.
3843         (8-bit op split): No need to check the mode; allow Q_REG.
3844         (ashift split): Adjust the first operand if it uses the SP and we
3845         are pushing the shifted value.
3846         (plus shift split): Fix when a source is in register D+X.
3847         ("doloop_end"): Pass dummy arguments to gen_rtx_NE.
3848
3849 2004-03-02  Stephane Carrez  <stcarrez@nerim.fr>
3850
3851         * config/m68hc11/m68hc11.c (m68hc11_check_z_replacement): Fix when
3852         comparing with Z register.
3853
3854 2004-03-02  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3855
3856         * cfgloop.h (struct loop_desc): Removed.
3857         (struct loop): Fields simple, desc and has_desc removed.
3858         (simple_loop_p, count_loop_iterations): Declaration removed.
3859         * cfgloopanal.c (struct unmark_altered_insn_data): Removed.
3860         (unmark_altered, blocks_invariant_registers, unmark_altered_insn
3861         blocks_single_set_registers, invariant_rtx_wrto_regs_p_helper,
3862         invariant_rtx_wrto_regs_p, test_for_iteration, constant_iterations,
3863         simple_loop_exit_p, variable_initial_value, variable_initial_values,
3864         simple_condition_p, simple_increment, count_strange_loop_iterations,
3865         inverse, fits_in_mode_p, simple_loop_p, count_loop_iterations):
3866         Removed.
3867         * loop-iv.c (check_simple_exit, find_simple_exit): Update comments.
3868
3869 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3870
3871         * genattrtab.c: Don't handle MATCH_INSN.
3872         * genrecog.c: Likewise.
3873         * gensupport.c: Likewise.
3874         * rtl.def (match_insn): Remove.
3875         * doc/md.texi (match_insn, match_insn2): Remove.
3876
3877 2004-03-02  Mark Mitchell  <mark@codesourcery.com>
3878
3879         * doc/c-tree.texi (DECL_ASSEMBLER_NAME): Mention that using this
3880         macro results in memory allocation.
3881
3882 2004-03-02  David O'Brien  <obrien@FreeBSD.org>
3883
3884         * config/freebsd-spec.h (FBSD_DYNAMIC_LINKER): Add.
3885         * config/alpha/freebsd.h (SUBTARGET_EXTRA_SPECS): Define
3886         %(fbsd_dynamic_linker),
3887         (LINK_SPEC): Use %(fbsd_dynamic_linker), and sync style with
3888         config/i386/freebsd.h
3889         * config/arm/freebsd.h: Ditto.
3890         * config/i386/freebsd.h: Ditto.
3891         * config/i386/freebsd64.h: Ditto.
3892         * config/ia64/freebsd.h: Ditto.
3893         * config/rs6000/sysv4.h: Ditto.
3894         * config/sparc/freebsd.h: Ditto.
3895
3896 2004-03-02  Loren James Rittle  <ljrittle@acm.org>
3897
3898         * gcc/doc/install.texi (*-*-freebsd*): Update target information.
3899
3900 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3901
3902         * rtl.def (define_combine): Remove.
3903
3904 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3905
3906         * config/h8300/h8300.md: Tweak formatting.
3907
3908 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3909
3910         * config/h8300/h8300.md (*cmphi_h8300): Rename to
3911         *cmphi_h8300_znvc.
3912         (*cmphi_h8300hs): Rename to *cmphi_h8300hs_znvc.
3913
3914 2004-03-01  Mark Mitchell  <mark@codesourcery.com>
3915
3916         PR bootstrap/14356
3917         * gcc.c (process_command): Remove const-qualification from argv.
3918         (main): Likewise.
3919
3920 2004-03-02  Kazu Hirata  <kazu@cs.umass.edu>
3921
3922         * config/h8300/h8300.md (pushqi1_h8300hs): Rename to
3923         pushqi1_h8300hs_advanced.  Adjust its caller.
3924         (pushhi1_h8300hs): Rename to pushhi1_h8300hs_advanced.
3925         Adjust its caller.
3926
3927 2004-03-02  Nicolas Roche  <roche@act-europe.fr>
3928
3929         * Makefile.in (install-libgcc, install-multilib): Pass
3930         mkinstalldirs var to libgcc.mk.
3931
3932 2004-03-01  Kazu Hirata  <kazu@cs.umass.edu>
3933
3934         * system.h (DBX_OUTPUT_STANDARD_TYPES): Poison.
3935         * doc/tm.texi (DBX_OUTPUT_STANDARD_TYPES): Remove.
3936
3937 2004-03-01  Kazu Hirata  <kazu@cs.umass.edu>
3938
3939         * config/h8300/h8300.c (gtle_operator): Accept GT and LE.
3940         * config/h8300/h8300.md: Split several peephole2's, each into
3941         two.
3942
3943 2004-03-02  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
3944
3945         * dominance.c (recount_dominator): Handle postdominators.
3946
3947 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
3948
3949         * config/mips/mips-protos.h (enum mips_symbol_type): Move from mips.h.
3950         (NUM_SYMBOL_TYPES): Likewise.
3951         (SYMBOL_64_HIGH, SYMBOL_64_MID, SYMBOL_64_LOW): New symbol types.
3952         (mips_unspec_address): Declare.
3953         (mips_gotoff_page, mips_gotoff_global): Delete.
3954         * config/mips/mips.h (PREDICATE_CODES): Add general_symbolic_operand.
3955         * config/mips/mips.c (enum mips_symbol_type, NUM_SYMBOL_TYPES): Delete.
3956         (mips_symbolic_constant_p, mips_symbolic_address_p)
3957         (mips_symbol_insns): Handle new symbol types.
3958         (general_symbolic_operand): New predicate.
3959         (mips_unspec_address): Make extern.
3960         (mips_gotoff_page, mips_gotoff_global): Delete.
3961         (override_options): Allow -mabi=64 -mno-abicalls -mexplicit-relocs.
3962         Handle new symbol types.
3963         * config/mips/mips.md (*lea_high64, *lea64): New patterns.
3964         (*xgot_hi[sd]i, *xgot_lo[sd]i, *got_disp[sd]i, *got_disp[sd]i): Call
3965         mips_unspec_address directly.
3966         * doc/invoke.texi: Remove the -mabi=64 -mno-abicalls exception from
3967         the documentation of -mexplicit-relocs.
3968
3969 2004-03-01  Jeff Law  <law@redhat.com>
3970
3971         * fold-const.c (fold): An equality comparison of a non-weak object
3972         against zero has a known result.  Similarly an equality comparison
3973         of the address of two non-weak, unaliased symbols has a known result.
3974
3975         * ggc-page.c (struct page_entry): New field PREV.
3976         (ggc_alloc): Update PREV field appropriately.
3977         (sweep_pages): Likewise.
3978         (ggc_free): Likewise.  Use PREV field rather than loop to
3979         improve ggc_free performance.
3980
3981 2004-03-01  Richard Sandiford  <rsandifo@redhat.com>
3982
3983         * config/mips/mips.c (mips_output_division): Use the division
3984         instruction to fill the delay slot of a zero check.
3985         (mips_idiv_insns): Adjust accordingly.
3986
3987 2004-03-01  Nathanael Nerode  <neroden@gcc.gnu.org>
3988
3989         * config.gcc: Create a default tmake_file for linux, and use
3990         it in all but two linux clauses.  Comment those two.
3991
3992 2004-03-01  Paolo Bonzini  <bonzini@gnu.org>
3993
3994         * combine.c (try_combine):  Do not refer to is_replaced.
3995         (gen_lowpart_for_combine):  Perverse subregs now have a
3996         more politically correct name.
3997         * cse.c (cse_insn): Likewise.
3998         * jump.c: Fix bogus reference to delete_insn.
3999
4000 2004-02-29  Mark Mitchell  <mark@codesourcery.com>
4001
4002         PR debug/14328
4003         * dwarf2out.c (gen_enumeration_type_die): Output all enumeration
4004         constants as signed values.
4005
4006         PR middle-end/13448
4007         * c-tree.h (readonly_warning): Rename to ...
4008         (readonly_error): ... this.
4009         * c-typeck.c (build_unary_op): Adjust accordingly.
4010         (readonly_warning): Rename to ...
4011         (readonly_error): ... this and issue errors, not warnings.
4012         (build_modify_expr): Call readonly_error, not readonly_warning.
4013         (c_expand_asm_operands): Likewise.
4014         * tree-inline.c (optimize_inline_calls): Do not inline functions
4015         after errors have occurred.
4016
4017 2004-02-29  Nathanael Nerode  <neroden@gcc.gnu.org>
4018
4019         * configure.ac: Rearrange some threading code for clarity;
4020         add section comment.
4021         * configure: Regenerate.
4022
4023 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
4024
4025         * passes.c, config/frv/frv.c, config/sh/sh.c: Fix comment
4026         typos.
4027         * doc/cppopts.texi: Fix a typo.
4028
4029 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
4030
4031         * config/i386/i386.md: Fix formatting.
4032
4033 2004-02-29  Nathanael Nerode  <neroden@gcc.gnu.org>
4034
4035         * configure.ac: Add some comments delineating sections of code.
4036
4037         * doc/install.texi: Note that libada uses autoconf 2.57 also.
4038
4039         * doc/install.texi: Fix idiot typo in previous commit.
4040
4041         * doc/install.texi: Update for conversion of intl to autoconf 2.57.
4042
4043 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
4044
4045         * config/h8300/h8300.md: Add comments about peephole2's.
4046
4047 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
4048
4049         * config/h8300/h8300.md: Tweak operand numbers of some
4050         peephole2's.
4051
4052 2004-02-29  Kazu Hirata  <kazu@cs.umass.edu>
4053
4054         * config/h8300/h8300.md: Tweak comments about peephole2's.
4055
4056 2004-02-29  Waldek Hebisch  <hebisch@math.uni.wroc.pl>
4057
4058         PR middle-end/14203
4059         * function.c (uninitialized_vars_warning): Use DECL_RTL_SET_P
4060         instead of testing whether DECL_RTL is not NULL.
4061
4062 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
4063
4064         * config/sh/sh.c: Fix formatting.
4065
4066 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
4067
4068         * config/sh/sh.c: Convert to ISO-C.
4069
4070 2004-02-28  Andrew Pinski  <pinskia@physics.uc.edu>
4071
4072         * c-typeck.c (tagged_types_tu_compatible_p): Fix pasto in
4073         my previous patch.
4074
4075         * config/darwin.h (machopic_finish): Output stub even if the
4076         symbol is already defined.
4077
4078 2004-02-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4079
4080         * pa64-hpux.h (LIB_SPEC): Fix linking under HP-UX 11.00 with -p and -pg.
4081
4082 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
4083
4084         * genattr.c (main): Don't define
4085         TRADITIONAL_PIPELINE_INTERFACE or DFA_PIPELINE_INTERFACE.
4086         * system.h (TRADITIONAL_PIPELINE_INTERFACE): Poison.
4087         (DFA_PIPELINE_INTERFACE): Likewise.
4088         * doc/tm.texi (TRADITIONAL_PIPELINE_INTERFACE): Remove.
4089         (DFA_PIPELINE_INTERFACE): Likewise.
4090
4091 2004-02-28  Richard Sandiford  <rsandifo@redhat.com>
4092
4093         * config/mips/mips.md (tstsi, tstdi): Delete.
4094
4095 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
4096
4097         * config/mips/mips.c (override_options): Remove an obsolete
4098         duplicate definition of the "e" constraint.
4099         * config/mips/mips.h: Update a comment accordingly.
4100
4101 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
4102
4103         * config/mips/mips.md: Complete the unfinished R4000
4104         multiply/shift errata workaround.  Improve documentation.
4105         (hazard): Use TARGET_FIX_R4000 to decide whether an "imul" instruction
4106         has a hilo hazard.
4107         (mulsi3, mulsi3_internal, mulsi3_r4000): Use TARGET_FIX_R4000.
4108         (muldi3, muldi3_internal): Likewise.
4109         (muldi3_internal2): Remove, replacing with...
4110         (muldi3_mult3, muldi3_r4000): ...these new patterns.
4111         (mulsidi3): Take the errata into account.
4112         (mulsidi3_32bit): Remove, replacing with...
4113         (mulsidi3_32bit_internal, mulsidi3_32bit_r4000): ...these new patterns.
4114         (mulsidi3_64bit, mulsidi3_64bit_parts): Disable if TARGET_FIX_R4000.
4115         (umulsidi3): Take the errata into account.
4116         (umulsidi3_32bit): Remove, replacing with..
4117         (umulsidi3_32bit_internal, umulsidi3_32bit_r4000): ...these patterns.
4118         (umulsi3_highpart, umulsi3_highpart_internal): Disable if
4119         TARGET_FIX_R4000.
4120         (smulsi3_highpart, smulsi3_highpart_internal): Likewise.
4121         (smuldi3_highpart, umuldi3_highpart): Likewise.
4122         * doc/invoke.texi: Document the errata workaround.
4123
4124 2004-02-28  Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
4125
4126         * config/mips/mips-protos.h (mips_idiv_insns): Declare.
4127         * config/mips/mips.h (MASK_FIX_SB1): Bump.
4128         (MASK_FIX_R4000, TARGET_FIX_R4000): New macros.
4129         (TARGET_SWITCHES): Add -mfix-r4000 and -mno-fix-r4000.
4130         * config/mips/mips.c (mips_idiv_insns): New function.
4131         (override_options): Make -march=r4000 imply -mfix-r4000 by default.
4132         (mips_output_division): Add a workaround for the R4000 divide/shift
4133         errata.
4134         * config/mips/mips.md (length): Use mips_idiv_insns() to calculate
4135         the length of an "idiv" instruction.
4136         * doc/invoke.texi: Document the new switches.
4137
4138 2004-02-28  Kazu Hirata  <kazu@cs.umass.edu>
4139
4140         * doc/tm.texi (IS_COSTLY_DEPENDENCE): Change to
4141         TARGET_SCHED_IS_COSTLY_DEPENDENCE.
4142
4143 2004-02-28  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
4144
4145         PR optimization/14229
4146         * cfgrtl.c (rtl_tidy_fallthru_edge): Do not fail for !onlyjump jump.
4147
4148 2004-02-28  Eric Botcazou  <ebotcazou@act-europe.fr>
4149
4150         * fold-const.c (fold): Strip NOPs that change the signedness
4151         for RSHIFT too.  Expand comment.
4152
4153 2004-02-27  Ian Lance Taylor  <ian@wasabisystems.com>
4154
4155         PR optimization/7871
4156         * flow.c (mark_set_1): Don't add LOG_LINKS for global registers
4157         from or to call insns.
4158
4159 2004-02-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
4160
4161         PR optimization/7871
4162         * flow.c (propagate_one_insn): Interpret calls as setting global
4163         registers, not merely clobbering them.
4164
4165 2004-02-27  Dale Johannesen  <dalej@apple.com>
4166
4167         * config/darwin.c (machopic_output_possible_stub_label):  Remove.
4168         config/darwin-protos.h:  Ditto.
4169         config/darwin.h:  Remove call to it.
4170         * combine.c (distribute_notes): Do not place a REG_DEAD note
4171         when value is both set and used.
4172
4173 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
4174
4175         * config/h8300/fixunssfsi.c (__fixunssfsi): Enable on H8/300
4176         as well.
4177         * config/h8300/lib1funcs.asm (___fixunssfsi): Remove.
4178         * config/h8300/t-h8300 (LIB1ASMFUNCS): Remove _fixunssfsi_asm.
4179
4180 2004-02-27  Andrew Pinski  <apinski@apple.com>
4181
4182         * c-typeck.c (tagged_types_tu_compatible_p) <ENUMERAL_TYPE>:
4183         Speedup common case of the type values being in the same order.
4184
4185 2004-02-27  Steve Ellcey  <sje@cup.hp.com>
4186
4187         * config/ia64/ia64.h (no-inline-float-divide): New option.
4188         * config/ia64/ia64.h (no-inline-int-divide): New option.
4189         * config/ia64/ia64.h (no-inline-sqrt): New option.
4190         (TARGET_DEFAULT): Add MASK_INLINE_FLOAT_DIV_THR to define.
4191         * config/ia64/hpux.h (TARGET_DEFAULT): Ditto.
4192         * config/ia64/ia64.c (ia64_override_options): Modify error
4193         checking for inlined division/sqrt.
4194
4195 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
4196
4197         * bb-reorder.c, cfgbuild.c, diagnostic.c, explow.c, profile.c,
4198         ra-build.c, read-rtl.c, tracer.c, unwind-dw2-fde-glibc.c,
4199         value-prof.c, config/darwin-protos.h, config/frv/frv-abi.h,
4200         config/i386/pmmintrin.h, config/pa/pa-hpux.h: Update
4201         copyright.
4202
4203 2004-02-27  Paul Brook  <paul@codesourcery.com>
4204
4205         * function.c (assign_parms): Don't count pretend args for alignment.
4206
4207 2004-02-27  Richard Henderson  <rth@redhat.com>
4208
4209         * passes.c: New file.
4210         * Makefile.in (OBJS-common): Add it.
4211         * diagnostic.c (rtl_dump_and_exit): Move decl ...
4212         * flags.h (rtl_dump_and_exit): ... here.
4213         * output.h (size_directive_output, last_assemble_variable_decl):
4214         Move from toplev.c.
4215         * rtl.h (reg_alloc): Move from toplev.c.
4216         * toplev.c (HAVE_conditional_execution, DUMPFILE_FORMAT,
4217         struct dump_file_info, enum dump_file_index, dump_file_tbl,
4218         open_dump_file, close_dump_file, rest_of_decl_compilation,
4219         rest_of_type_compilation, rest_of_handle_final,
4220         rest_of_handle_delay_slots, rest_of_handle_stack_regs,
4221         rest_of_handle_variable_tracking, rest_of_handle_machine_reorg,
4222         rest_of_handle_new_regalloc, rest_of_handle_old_regalloc,
4223         rest_of_handle_regrename, rest_of_handle_reorder_blocks,
4224         rest_of_handle_sched, rest_of_handle_sched2, rest_of_handle_regmove,
4225         rest_of_handle_tracer, rest_of_handle_if_conversion,
4226         rest_of_handle_if_after_combine, rest_of_handle_web,
4227         rest_of_handle_branch_prob,
4228         rest_of_handle_value_profile_transformations, rest_of_handle_cfg,
4229         rest_of_handle_addressof, rest_of_handle_sibling_calls,
4230         rest_of_handle_jump_bypass, rest_of_handle_inlining,
4231         rest_of_handle_null_pointer, rest_of_handle_combine,
4232         rest_of_handle_life, rest_of_handle_cse, rest_of_handle_cse2,
4233         rest_of_handle_gcse, rest_of_handle_loop_optimize,
4234         rest_of_handle_loop2, rest_of_compilation): Move to passes.c.
4235         (decode_d_option): Use enable_rtl_dump_file.
4236         (compile_file, finalize, do_compile): Move profile+combine+graph
4237         cleanup to finish_optimization_passes.
4238         * toplev.h (init_optimization_passes, finish_optimization_passes,
4239         enable_rtl_dump_file): Declare.
4240
4241 2004-02-27  Eric Botcazou  <ebotcazou@act-europe.fr>
4242             Roger Sayle  <roger@eyesopen.com>
4243
4244         * fold-const.c (fold): Revert 2004-02-25 change.  Use the original
4245         operands to build a tree with swapped operands.
4246         * expr.c (expand_expr_real) <MAX_EXPR>: Consistently use the
4247         'unsignedp' predicate to specify the signedness.
4248
4249 2004-02-27  Kazu Hirata  <kazu@cs.umass.edu>
4250
4251         * c-decl.c, c-ppoutput.c, combine.c, cppfiles.c, dwarf2out.c,
4252         expr.c, fold-const.c, gcc.c, haifa-sched.c, loop-iv.c,
4253         params.def, read-rtl.c, rtl.c, rtlanal.c, toplev.c: Fix
4254         comment typos and formatting.  Follow spelling conventions.
4255
4256 2004-02-26  Aldy Hernandez  <aldyh@redhat.com>
4257
4258         * config/rs6000/rs6000.md: Add fixuns_truncsfsi2 and
4259         fix_truncsfsi2.
4260
4261         * config/rs6000/spe.md: Delete spe_efsctuiz.
4262         Add spe_fixuns_truncsfsi2.
4263         Add spe_fix_truncsfsi2.
4264
4265 2004-02-26  Eric Christopher  <echristo@redhat.com>
4266
4267         * c-lex.c (c_lex_string_translate): New variable.
4268         (lex_string): Use to determine string translation.
4269         * c-pragma.h: Prototype.
4270         * c-parse.in (start_string_translation): New. Set above.
4271         (stop_string_translation): Ditto.
4272         (attribute, attribute_list, asm_def, asm_stmt,
4273         asm_operand): Use above functions.
4274         * cp/parser.c (cp_parser_declaration): Translate strings
4275         unless token is RID_EXTERN. Set c_lex_string_translate
4276         for recursive use.
4277         (cp_parser_asm_definition): Only translate argument strings
4278         to asms.
4279         (cp_parser_asm_operand_list): Ditto.
4280         (cp_parser_attribute_list): Do not translate attribute strings.
4281
4282 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4283
4284         * stmt.c (expand_start_case_dummy): Remove.
4285         * tree.h: Remove the corresponding prototype.
4286
4287 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4288
4289         * builtins.c (apply_args_register_offset): Remove.
4290         * tree.h: Remove the corresponding prototype.
4291
4292 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4293
4294         * stor-layout.c (is_pending_size): Remove.
4295         * tree.h: Remove the corresponding prototype.
4296
4297 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4298
4299         * recog.c (validate_replace_src): Remove.
4300         * recog.h: Remove the corresponding prototype.
4301
4302 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4303
4304         * calls.c: Don't reference FINAL_REG_PARM_STACK_SPACE or
4305         MAYBE_REG_PARM_STACK_SPACE.
4306         * function.c: Likewise.
4307         * system.h (FINAL_REG_PARM_STACK_SPACE): Poison.
4308         (MAYBE_REG_PARM_STACK_SPACE): Likewise.
4309         * doc/tm.texi (FINAL_REG_PARM_STACK_SPACE): Remove.
4310         (MAYBE_REG_PARM_STACK_SPACE): Likewise.
4311
4312 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4313
4314         * c-decl.c (c_expand_deferred_function): Remove.
4315         * c-tree.h: Remove the corresponding prototype.
4316
4317 2004-02-26  Kazu Hirata  <kazu@cs.umass.edu>
4318
4319         * postreload.c (reload_cse_move2add): Generate just a PLUS
4320         instead of an entire SET.
4321
4322 2004-02-26  Jan Hubicka  <jh@suse.cz>
4323
4324         * config.gcc: Add support for nocoma/prescott/pentium-m/pentium3m
4325         /pentium4m.
4326         * i386.c (override_options): Add support for new CPUs.
4327         * i386.h (TARGET_CPU_DEFAULT_NAMES): New names.
4328         (TARGET_CPU_DEFAULT_pentium_m, TARGET_CPU_DEFAULT_pentium4e): New
4329         constants.
4330         * invoke.texi: Extend documentation of -mtune/-march for new CPUs.
4331
4332 2004-02-26  Bob Wilson  <bob.wilson@acm.org>
4333
4334         * config/xtensa/xtensa.h (TARGET_CPU_CPP_BUILTINS): Define __xtensa__.
4335
4336 2004-02-26  Eric Botcazou  <ebotcazou@act-europe.fr>
4337
4338         * config/sparc/sparc-protos.h (sparc_emit_floatunsdi): Add 'mode'.
4339         (sparc_emit_fixunsdi): New prototype.
4340         * config/sparc/sparc.c (sparc_emit_floatunsdi): Use 'mode' argument.
4341         (sparc_emit_fixunsdi): New function.
4342         * config/sparc/sparc.md (floatunsdisf2): Use 'general_operand' for
4343         operand 1.  Pass SFmode to sparc_emit_floatunsdi.
4344         (floatunsdidf2): Use 'general_operand' for operand 1.  Pass DFmode
4345         to sparc_emit_floatunsdi.
4346         (fixuns_truncsfdi2): New expander.
4347         (fixuns_truncdfdi2): Likewise.
4348
4349 2004-02-26  Alan Modra  <amodra@bigpond.net.au>
4350
4351         * gcse.c (delete_null_pointer_checks_1): Do not delete CC setter
4352         unless HAVE_cc0.
4353
4354 2004-02-25  Richard Henderson  <rth@redhat.com>
4355
4356         * explow.c (force_reg): Call mark_reg_pointer as appropriate.
4357         * config/alpha/alpha.c (alpha_emit_conditional_branch): Don't
4358         use (op0-op1) == 0 if op0 is a pointer.
4359         * config/alpha/alpha.md (cmpdi): Use some_operand.
4360         (three comparison combine splits): Remove.
4361
4362 2004-02-25  Richard Henderson  <rth@redhat.com>
4363
4364         PR c/12794
4365         * c-common.c (handle_alias_attribute): Reject the attribute if
4366         current_function_decl is set.
4367
4368 2004-02-25  Kelley Cook  <kcook@gcc.gnu.org>
4369
4370         * config.gcc: Add comment describing extra_gcc_objs.
4371         i[34567]86-*-cygwin*): Replace host_extra_gcc_objs with extra_gcc_objs.
4372         * configure.ac (extra_gcc_objs): New substitution variable.
4373         (host_extra_gcc_objs): Don't substitute.
4374         * configure: Regenerate.
4375         * Makefile.in: Use extra_gcc_objs.
4376
4377 2004-02-25  Kelley Cook  <kcook@gcc.gnu.org>
4378
4379         * doc/contrib.texi: Add an entry for myself.
4380
4381 2004-02-25  Jan Hubicka  <jh@suse.cz>
4382
4383         * basic-block.h (make_eh_edge, break_superblocks): Declare.
4384         * cfgbuild.c (make_eh_edge):  Make global.
4385         * cfglayout.c (break_superblocks): Likewise; fix memory leak.
4386         * except.c (build_post_landing_pads, connect_post_landing_pads,
4387         dw2_build_landing_pads, sjlj_emit_function_enter,
4388         sjlj_emit_function_exit, sjlj_emit_dispatch_table,
4389         sjlj_build_landing_pads): Update CFG.
4390         (emit_to_new_bb_before): New function.
4391         (finish_eh_generation): Do not rebuild the CFG.
4392
4393 2004-02-25  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
4394
4395         * config.gcc (hppa*-*-*, parisc*-*-*): Add MASK_BIG_SWITCH to all
4396         target_cpu_default defines.
4397         * pa-hpux.h (TARGET_DEFAULT): Add MASK_BIG_SWITCH to define.
4398         * pa.h (TARGET_DEFAULT): Likewise.
4399
4400 2004-02-25  Eric Botcazou  <ebotcazou@act-europe.fr>
4401
4402         * fold-const.c (fold): Treat MAX_EXPR and MIN_EXPR like
4403         comparisons with regard to signedness.
4404
4405 2004-02-25  Richard Earnshaw  <rearnsha@arm.com>
4406
4407         * arm.c (thumb_legitimize_address): New function.
4408         * arm-protos.h: Prototype it.
4409         * arm.h (THUMB_LEGITIMIZE_ADDRESS): Define.
4410         (LEGITIMIZE_ADDRESS): Use it.
4411
4412 2004-02-25  J"orn Rennecke <joern.rennecke@superh.com>
4413
4414         * reload1.c (reload): Only spill eliminable register with multiple
4415         adjacent elimination alternatives if all alternatives fail.
4416
4417 2004-02-25  Richard Earnshaw  <rearnsha@arm.com>
4418
4419         * arm.c (arm_legitimate_index_p): For QImode the range of an offset
4420         is -4095...+4095 inclusive.
4421
4422 2004-02-25  Eric Botcazou  <ebotcazou@libertysurf.fr>
4423
4424         * doc/install.texi (sparc-sun-solaris2* specific notes): Document
4425         the bootstrap failure with Sun CC 5.4 and 5.5.
4426
4427 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
4428
4429         * cse.c (cse_change_cc_mode_insns): Stop at any instruction
4430         which modifies NEWREG.
4431         (cse_condition_code_reg): Update the mode of CC_REG in
4432         CC_SRC_INSN on our own.
4433
4434 2004-02-24  Michael Matz  <matz@suse.de>
4435
4436         * config/i386/i386.c (ix86_comp_type_attributes): Check for
4437         regparm attributes.
4438
4439 2004-02-24  Richard Henderson  <rth@redhat.com>
4440
4441         * toplev.c (dump_file_tbl): Rename from dump_file.
4442         * bb-reorder.c, bt-load.c, cfgcleanup.c, cfglayout.c, cfgloopanal.c,
4443         cfgloopmanip.c, cfgrtl.c, config/arm/arm.c, config/frv/frv.c,
4444         config/i386/i386.c, config/ia64/ia64.c, config/mips/mips.c,
4445         config/sh/sh.c, cse.c, flow.c, ifcvt.c, loop-iv.c, loop-unroll.c,
4446         loop-unswitch.c, output.h, predict.c, profile.c, ra-build.c,
4447         ra-colorize.c, ra-debug.c, ra-rewrite.c, ra.c, regrename.c, reload1.c,
4448         toplev.c, tracer.c, value-prof.c, var-tracking.c, web.c:
4449         s/rtl_dump_file/dump_file/g.
4450
4451 2004-02-24  Aldy Hernandez  <aldyh@redhat.com>
4452
4453         * config/rs6000/spe.md (spe_fix_truncsfsi2): Delete.
4454         (spe_fixuns_truncsfsi2): Delete.
4455
4456         * config/rs6000/rs6000.md (fix_truncsfsi2): Delete.
4457         (fixuns_truncsfsi2): Delete.
4458
4459 2004-02-24  Josef Zlomek  <zlomekj@suse.cz>
4460
4461         PR/14240
4462         * rtlanal.c (replace_label): Fix replacing labels in constant pool.
4463
4464 2004-02-24  Geoffrey Keating  <geoffk@apple.com>
4465
4466         * config/darwin.h (TARGET_HAS_F_SETLKW): Define.
4467
4468 2004-02-24  Jason Merrill  <jason@redhat.com>
4469
4470         * tree.c (check_qualified_type): New fn.
4471         (get_qualified_type): Use it.  If type already has the desired
4472         quals, just return it.
4473         * tree.h: Declare it.
4474
4475 2003-02-24  Sanjiv Kumar Gupta  <sanjivg@noida.hcltech.com>
4476
4477         * target-def.h (TARGET_SCHED_INIT_GLOBAL,
4478         TARGET_SCHED_FINISH_GLOBAL): New macros.
4479
4480         * target.h (md_init_global, md_finish_global): Function
4481         declarations corresponding to new target macros.
4482
4483         * haifa-sched.c (sched_init, sched_finish): Allow target to
4484         call the new schedular hooks.
4485
4486         * flow.c (recompute_reg_usage): Add PROP_DEATH_NOTES flag in
4487         call to update_life_info.
4488
4489         * config/sh/sh.h (OVERRIDE_OPTIONS): Re-enable
4490         flag_schedule_insns for SH4.
4491
4492         * config/sh/sh.c (sh_md_init_global, sh_md_finish_global,
4493         find_set_regmode_weight, find_insn_regmode_weight,
4494         find_regmode_weight), sh_md_init, sh_dfa_new_cycle,
4495         sh_variable_issue, high_pressure, ready_reorder,
4496         rank_for_reorder, swap_reorder, sh_reorder, sh_reorder2): New
4497         functions used to throttle the insn movement in first
4498         scheduling pass for SH.
4499
4500         * gcc/doc/tm.texi: Document TARGET_SCHED_INIT_GLOBAL and
4501         TARGET_SCHED_FINISH_GLOBAL.
4502
4503 2004-02-24  Alexandre Oliva  <aoliva@redhat.com>
4504
4505         Implement FR-V FDPIC ABI support for frv-uclinux and frv-linux.
4506         2004-02-05  Alexandre Oliva  <aoliva@redhat.com>
4507         * config/frv/frv.c (frv_emit_movsi): Use GOT relocations for
4508         symbols in sections named by the user.
4509         2004-01-30  Alexandre Oliva  <aoliva@redhat.com>
4510         * config/frv/linux.h (TARGET_OS_CPP_BUILTINS): New.
4511         2004-01-27  Alexandre Oliva  <aoliva@redhat.com>
4512         * config.gcc (frv-*-*linux*): Handle like *-*-linux*.
4513         * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Remove, obviated by
4514         the above.
4515         2004-01-20  Alexandre Oliva  <aoliva@redhat.com>
4516         * config/frv/frv.md (symGOT2reg_hilo, symGOTOFF2reg_hilo): Add
4517         one more pseudo to further improve code generation.
4518         2004-01-19  Alexandre Oliva  <aoliva@redhat.com>
4519         * config/frv/frv.md (movdi_ldd): Introduce explicit indirection
4520         inside UNSPEC.
4521         2004-01-16  Alexandre Oliva  <aoliva@redhat.com>
4522         * config/frv/frv.c (frv_legitimate_address_p): Added
4523         allow_double_reg_p argument.  Adjust all callers.  Use it to
4524         decide whether to enable double-register indirect addressing.
4525         (frv_funcdesc_alias_set): Remove.
4526         (frv_expand_fdpic_call): Force non-SYMBOL_REF operand into
4527         register.  Emit movdi_ldd.
4528         (ldd_address_operand): New.
4529         * config/frv/frv-protos.h (frv_legitimate_address_p): Adjust.
4530         * config/frv/frv.h (GO_IF_LEGITIMATE_ADDRESS): Likewise.
4531         (PREDICATE_CODES): Add ldd_address_operand.
4532         * config/frv/frv.md (movdi_ldd): New.
4533         (symGOT2reg_hilo, symGOTOFF2reg_hilo): Use separate pseudo for
4534         intermediate computations if possible.
4535         (symGOTOFF2reg_i): Fix harmless typo.
4536         2003-12-18  Alexandre Oliva  <aoliva@redhat.com>
4537         * unwind-dw2-fde-glibc.c (_Unwind_IteratePhdrCallback): Cast
4538         relocated p_vaddr to vaddr type.
4539         * config/frv/frv-protos.h (frv_expand_fdpic_call): Return void.
4540         * config/frv/frv.c (frv_get_funcdesc_alias_set): New.
4541         (frv_expand_fdpic_call): Propagate incoming MEM's expr to funcdesc
4542         MEM, or use a funcdesc alias set.  Use regular move instead of
4543         ldd.
4544         (dbl_memory_one_insn_operand): Recognize function descriptors by
4545         type or by alias set, and don't split them.
4546         * config/frv/frv.md (call, call_value): Never use call_internal
4547         for fdpic.
4548         (call_internal, call_value_internal): Never match for FDPIC.
4549         (call_fdpicdi, call_fdpicsi, call_value_fdpicdi,
4550         call_value_fdpicsi): Require FDPIC.
4551         (ldd): Removed.
4552         2003-12-17  Alexandre Oliva  <aoliva@redhat.com>
4553         * config/frv/frv.h (CRT_GET_RFIB_DATA): Define for __FRV_FDPIC__.
4554         * unwind-dw2-fde-glibc.c: Don't include elf-fdpic.h any more.
4555         (_Unwind_IteratePhdrCallback): Adjust type of load_base for FRV
4556         FDPIC.  Compute data base address.
4557         * config/frv/linux.h (SUBTARGET_DRIVER_SELF_SPECS): Enable -mfdpic
4558         before the other self-specs are processed.
4559         * config/frv/t-linux (CRTSTUFF_T_CFLAGS, TARGET_LIBGCC2_CFLAGS):
4560         Build with -fPIC.
4561         2003-12-15  Alexandre Oliva  <aoliva@redhat.com>
4562         * unwind-dw2-fde-glibc.c: Don't include bits/elf-fdpic.h if
4563         inhibit_libc is defined.
4564         2003-12-12  Alexandre Oliva  <aoliva@redhat.com>
4565         * unwind-dw2-fde-glibc.c: Include bits/elf-fdpic.h for
4566         __FRV_FDPIC__.
4567         (__RELOC_POINTER): Define.
4568         (_Unwind_IteratePhdrCallback): Use it.
4569         * config/frv/frv.h (Twrite): Define.
4570         (TRANSFER_FROM_TRAMPOLINE): Use it.
4571         * config/frv/linux.h (INVOKE__main): Undefine.
4572         (Twrite): Override.
4573         2003-12-05  Richard Sandiford  <rsandifo@redhat.com>
4574         * doc/invoke.texi (-mlong-calls, -mlinked-fp): Document FRV options.
4575         (-mlibrary-pic): Emphasize that this option generates EABI code.
4576         (-mcpu): Add fr550.
4577         (-mpack): Remove.
4578         2003-11-30  Alexandre Oliva  <aoliva@redhat.com>
4579         * config/frv/frv.c (int_2word_operand): Reject LABELs, SYMBOL_REFs
4580         and CONSTs in FDPIC mode.
4581         * gcc/config.gcc (with_cpu): Default to fr400 on frv-*-*linux*.
4582         2003-11-29  Richard Sandiford  <rsandifo@redhat.com>
4583         * config/frv/frv.c (move_source_operand): Don't accept symbolic
4584         constants.
4585         * config/frv/frv.md (*movhi_internal, *movsi_internal): Use an 'n'
4586         rather than 'i' constraint for the 2-instruction alternative.
4587         (*movsi_2word): New, incorporating existing int_2word_operand splitter.
4588         2003-11-29  Richard Sandiford  <rsandifo@redhat.com>
4589         * config/frv/frv.h (EXTRA_CONSTRAINT_FOR_Q): Renamed from
4590         EXTRA_CONSTRAINT_FOR_Y.
4591         (EXTRA_CONSTRAINT): Remove handling of 'Y'.
4592         * config/frv/frv.md (*movsi_internal): Remove 'Q' constraint.
4593         (addsi3): Change 'Y' constraint to 'Q'.
4594         2003-11-27  Richard Sandiford  <rsandifo@redhat.com>
4595         * reload.c (CONST_POOL_OK_P): New macro.
4596         (find_reloads): Use it to decide whether a constant can be forced
4597         into memory.
4598         * config/frv/frv.h (LEGITIMATE_PIC_OPERAND_P): Return true if the
4599         constant satisfies got12_operand.
4600         (frv_cannot_force_const_mem): Always return true for TARGET_FDPIC.
4601         (frv_legitimate_address_p): Check for valid unspec offsets using
4602         got12_operand rather than frv_legitimate_fdpic_operand_p.
4603         (frv_legitimate_fdpic_operand_p): Delete.
4604         (frv_emit_movsi): Abort if we try to use the FDPIC register during
4605         or after reload.
4606         (frv_legitimate_constant_p): Return LEGITIMATE_PIC_OPERAND_P if
4607         TARGET_FDPIC.
4608         * config/frv/frv.md (*movdf_double): Add alternatives for CONST_DOUBLE.
4609         2003-11-19  Richard Sandiford  <rsandifo@redhat.com>
4610         * config/frv/frv-protos.h (fdpic_operand, fdpic_got12_operand)
4611         (frv_fdpic_fptr_operand): Don't declare here.
4612         * config/frv/frv.h (EXTRA_CONSTRAINT_FOR_Y): Call got12_operand
4613         rather than fdpic_got12_operand.
4614         (PREDICATE_CODES): Remove symbolic_operand entry.  Add entries for
4615         got12_operand and const_unspec_operand.
4616         * config/frv/frv.c (got12_operand): Renamed from fdpic_got12_operand.
4617         (gpr_or_int12_operand, dbl_memory_one_insn_operand): Update calls.
4618         (symbolic_operand): Remove.
4619         (const_unspec_operand): New predicate.
4620         * config/frv/frv.md (*movsi_got): Use got12_operand.
4621         (*movsi_high_got, *movsi_lo_sum_got): Use const_unspec_operand.
4622         2003-11-18  Richard Sandiford  <rsandifo@redhat.com>
4623         * config/frv/frv-protos.h (frv_output_addr_const_extra): Remove.
4624         * config/frv/frv.h (OUTPUT_ADDR_CONST_EXTRA): Remove definition.
4625         * config/frv/frv.c (frv_unspec): New structure.
4626         (frv_small_data_reloc_p, frv_const_unspec_p): New functions.
4627         (frv_print_operand_memory_reference): Use frv_const_unspec_p to
4628         validate CONST indices.  Use frv_output_const_unspec to print them.
4629         (frv_print_operand): Update call to unspec_got_name.  Use
4630         frv_output_const_unspec to print constant unspecs.
4631         (frv_legitimate_fdpic_operand_p): Return true if frv_const_unspec_p.
4632         Reject UNSPECs otherwise.
4633         (unspec_got_name): Take the relocation number as argument, not an
4634         rtx containing it.
4635         (frv_output_addr_const_extra): Remove, replacing with...
4636         (frv_output_const_unspec): ...this new function.
4637         (frv_find_base_term): Use frv_const_unspec_p & frv_small_data_reloc_p.
4638         (gpr_or_int12_operand): Use fdpic_got12_operand.
4639         (dbl_memory_one_insn_operand): Likewise.
4640         (fdpic_got12_operand): Use frv_const_unspec_p.
4641         (frv_emit_movsi): Use frv_const_unspec_p to check for CONSTs that
4642         are already legitimate.  Use frv_small_data_reloc_p when deciding
4643         whether to use HIGH/LO_SUM for R_FRV_GOTOFF12 and R_FRV_GPREL12.
4644         2003-11-18  Alexandre Oliva  <aoliva@redhat.com>
4645         * config/frv/t-linux (SHLIB_MAPFILES): Override so as to export...
4646         * config/frv/libgcc-frv.ver: ... frv-specific symbols.  New file.
4647         * config/frv/frv-abi.h (CREATE_DOUBLE_SHIFT): Use branch to local
4648         label, for real this time.
4649         * config/frv/frv.c (frv_local_funcdesc_p): Update to new
4650         representation of visibility.
4651         (fdpic_got12_operand, symbolic_operand): Mark unused arguments as
4652         such.
4653         2003-11-17  Richard Sandiford  <rsandifo@redhat.com>
4654         * config/frv/frv.h (MASK_LINKED_FP, TARGET_LINKED_FP): New macros.
4655         (TARGET_SWITCHES): Add -mlinked-fp and -mno-linked-fp.
4656         * config/frv/frv.c (frv_override_options): Set MASK_LINKED_FP unless
4657         it was explicitly disabled.
4658         (frv_stack_info): There is no need to save the link register in every
4659         frame unless TARGET_LINKED_FP is true.
4660         (frv_frame_pointer_required): If !TARGET_LINKED_FP, only require a
4661         frame pointer if the stack pointer might change value.
4662         (frv_return_addr_rtx): Check and process "count" argument.
4663         2003-11-14  Richard Sandiford  <rsandifo@redhat.com>
4664         * config/frv/frv-protos.h (frv_legitimize_address): Remove.
4665         (frv_find_base_term): Declare.
4666         * config/frv/frv.h (LEGITIMIZE_ADDRESS): Do nothing.
4667         (FIND_BASE_TERM): Define.
4668         (PREDICATE_CODES): Remove pic_register_operand, pic_symbolic_operand,
4669         small_data_register_operand, small_data_symbolic_operand.  Add
4670         symbolic_operand.
4671         * config/frv/frv.c (const_small_data_p, plus_small_data_p): Delete.
4672         (frv_print_operand_memory_reference, output_move_single): Remove
4673         special handling for unlegitimized sdata addresses.
4674         (frv_legitimate_address_p): Don't allow sums of SDA_BASE_REG
4675         and symbolic addresses.
4676         (frv_legitimize_address, frv_legitimize_fdpic_address): Delete.
4677         (frv_find_base_term): New function.
4678         (int_2word_operand): Check specifically for symbolic address constants.
4679         (pic_register_operand, pic_symbolic_operand): Delete.
4680         (small_data_register_operand, small_data_symbolic_operand): Delete.
4681         (dbl_memory_one_insn_operand): Don't call plus_small_data_p.
4682         Allow UNSPEC_GOT constants if !TARGET_FDPIC.
4683         (move_source_operand): Only accept CONSTs if they're a two-insn
4684         symbolic constant.
4685         (fdpic_got12_operand): Don't require TARGET_FDPIC.
4686         (frv_emit_movsi): Legitimize sdata and -mlibrary-pic addresses
4687         using gen_symGOTOFF2reg*.
4688         (frv_ifcvt_rewrite_mem): Remove (plus gr16 ...) special cases.
4689         (frv_rtx_costs): Give all MEM addresses a cost of 0.  Give MEMs
4690         themselves a cost of 3 insns.
4691         * config/mips/mips.md (*movsi_got): Allow for !TARGET_FDPIC too.
4692         Change predicate to symbolic_operand.
4693         (*movsi_high_got, *movsi_lo_sum_got): Likewise.
4694         (*movsi_lda_sdata): Delete.
4695         (*movsi_pic, movsi_high_pic, movsi_lo_sum_pic): Delete.
4696         2003-11-05  Alexandre Oliva  <aoliva@redhat.com>
4697         * config.gcc: Add t-slibgcc-elf-ver and support --with-cpu for
4698         frv-*-*linux*.
4699         * config/frv/frv-abi.h (CREATE_DOUBLE_SHIFT): Use branch to local
4700         label.
4701         * config/frv/frv.h (DRIVER_SELF_SPECS): Add blank before
4702         -multilib-library-pic.
4703         (LINK_SPEC): Add -z text for -mfdpic.
4704         * config/frv/frvbegin.c (__ROFIXUP_LIST__): Don't define on FDPIC.
4705         * config/frv/frvend.c (__ROFIXUP_END__): Likewise.
4706         * config/frv/linux.h (STARTFILE_SPEC, ENDFILE_SPEC, LINK_SPEC):
4707         Override.
4708         (OPTION_DEFAULT_SPECS, HAS_INIT_SECTION, INIT_SECTION_ASM_OP,
4709         FINI_SECTION_ASM_OP, CRT_CALL_STATIC_FUNCTION): Define.
4710         * config/frv/t-linux (EXTRA_MULTILIB_PARTS): Use
4711         crtstuff-generated files.
4712         2003-10-31  Alexandre Oliva  <aoliva@redhat.com>
4713         * config.gcc: Add frv-*-*linux*.
4714         * config/frv/linux.h, config/frv/t-linux: New.
4715         2003-10-06  Alexandre Oliva  <aoliva@redhat.com>
4716         * config/frv/frv.h (LINK_SPEC): Pass -melf32frvfd to the linker
4717         when -mfdpic even if a linker script is explicitly listed.
4718         2003-10-02  Alexandre Oliva  <aoliva@redhat.com>
4719         * config/frv/frv.c (frv_override_options): Clear asm_out
4720         unaligned_op for SImode on FDPIC.
4721         (frv_emit_movsi): Use compute_reloc_for_constant to compute the
4722         argument passed to decl_readonly_section.
4723         (frv_assemble_integer): Revert 2003-09-30's change, but make the
4724         whole block run with FDPIC even with -fno-PIC.
4725         2003-10-02  Alexandre Oliva  <aoliva@redhat.com>
4726         * config/frv/frv.c (frv_cannot_force_const_mem): Don't force
4727         symbol or label plus offset to memory.
4728         (frv_emit_movsi): Emit GPREL only if -mgprel-ro.  Emit 32-bit
4729         GOTOFF and GPREL for LABEL_REF.
4730         * config/frv/frv.h (DRIVER_SELF_SPECS): Add -mgprel-ro with
4731         -mfdpic unless -mno-gprel-ro, -fpic or -fpie.
4732         (MASK_GPREL_RO, TARGET_GPREL_RO): New.
4733         (TARGET_SWITCHES): Added gprel-ro and no-gprel-ro.
4734         * doc/invoke.texi: Document them.
4735         2003-09-30  Alexandre Oliva  <aoliva@redhat.com>
4736         * config/frv/frv-protos.h (frv_gen_GPsym2reg): Declare.
4737         (frv_splittable_got_operand): Removed.
4738         * config/frv/frv.c (frv_cannot_force_const_mem): Reject HIGH and
4739         LO_SUM.  Add comments.
4740         (frv_override_options): Moved enabling of FDPIC to
4741         DRIVER_SELF_SPECS.  Don't enable MASK_DWORD.
4742         (frv_local_funcdesc_p): Remove unnecessary heck for flag_pie.
4743         (frv_legitimize_fdpic_address): Don't duplicate logic in
4744         frv_emit_movsi.
4745         (frv_gen_GPsym2reg): New.
4746         (unspec_got_name): Added gprel.
4747         (frv_expand_fdpic_call): Add support for inlining PLTs.
4748         (fdpic_fptr_operand): Renamed from frv_fdpic_fptr_operand.
4749         (gpr_or_int12_operand): Added GPREL12.
4750         (pic_symbolic_operand): Match even if !flag_pic for FDPIC.
4751         (small_data_symbolic_operand): Fail if FDPIC.
4752         (fdpic_splittable_got_operand): Removed.
4753         (fdpic_got12_operand): Added GPREL12.
4754         (frv_emit_movsi): Reorganize to avoid duplication.  Emit GPREL
4755         when appropriate.  Fix sdata GOTOFF.
4756         (frv_legitimate_constant_p): Require legitimate PIC operand for
4757         FDPIC with pic, but only a legitimate fdpic operand for non-pic.
4758         (frv_assemble_integer): Move FDPIC funcdesc handling out of
4759         flag_pic case.
4760         (frv_asm_out_constructor, frv_asm_out_destructor): Abort if
4761         frv_assemble_integer fails.
4762         * config/frv/frv.h (DRIVER_SELF_SPECS): New.
4763         (SUBTARGET_DRIVER_SELF_SPECS): New.
4764         (ASM_SPEC): Don't pass -mno-fdpic.
4765         (LINK_SPEC): Pass -melf32frvfd for FDPIC.
4766         (MASK_INLINE_PLT, TARGET_INLINE_PLT): New.
4767         (TARGET_SWITCHES): Add -minline-plt, -mno-inline-plt and
4768         -multilib-library-pic.
4769         (PREDICATE_CODES): Added fdpic_operand, fdpic_fptr_operand,
4770         condexec_si_media_operator, condexec_sf_add_operator and
4771         condexec_sf_conv_operator.  Removed condexec_sf_binary_operator
4772         and condexec_sf_unary_operator.
4773         * config/frv/frv.md (R_FRV_GPREL12, R_FRV_GPRELHI, R_FRV_GPRELLO):
4774         New.
4775         (movsi_got, movsi_high_got, movsi_lo_sum_got): Move before
4776         movsi_internal.  Give them internal names.  movsi_got has type
4777         int.
4778         (fdpic got splitters): Remove.
4779         (symGPREL2reg, symGPREL2reg_hilo): New.
4780         * config/frv/t-frv (MULTILIB_MATCHES): Don't map -fpic and -fPIC
4781         to -mlibrary-pic.  Map -multilib-library-pic to it.
4782         * doc/invoke.texi: -mfdpic, -minline-plt, -multilib-library-pic:
4783         Document.
4784         2003-09-28  Alexandre Oliva  <aoliva@redhat.com>
4785         * config/frv/frv.c (frv_function_symbol_referenced_p): Declare.
4786         (TARGET_CANNOT_FORCE_CONST_MEM): Define to...
4787         (frv_cannot_force_const_mem): New function.
4788         (const_small_data_p, plus_small_data_p): Update comments on sdata
4789         on FDPIC.
4790         (frv_override_options): Set flag_pie for FDPIC too.
4791         (frv_conditional_register_usage): Mark gr16 and gr17 as non-fixed,
4792         call-saved registers on FDPIC.
4793         (frv_stack_info): Don't preserve the PIC register on FDPIC, and
4794         don't force LR to be preserved.
4795         (frv_expand_prologue): Likewise.
4796         (frv_asm_output_mi_thunk): Use 12-bit funcdesc gotoff for -fpic.
4797         (frv_frame_pointer_required): Don't force it just because the
4798         FDPIC register is used.
4799         (frv_legitimate_address_p) <CONST>: Accept a legitimate FDPIC
4800         operand only if !condexec_p.
4801         (frv_legitimize_address): Return the FDPIC-legitimized address.
4802         Don't match small data here on FDPIC.
4803         (frv_legitimate_fdpic_operand_p): Don't accept unadorned function
4804         symbols.  Use TRUE/FALSE instead of 1/0.
4805         (frv_local_funcdesc_p): New.
4806         (frv_legitimize_fdpic_address): Rewrite to use GOTOFF and 12-bit
4807         immediates when possible.
4808         (pic_symbolic_operand): Accept SYMBOL_REFs and CONSTs in FDPIC.
4809         (dbl_memory_one_insn_operand): Accept addresses that add a REG and
4810         an UNSPEC_GOT.
4811         (frv_emit_movsi): Handle FDPIC before small data.  Use GOTOFF and
4812         12-bit immediates when possible.
4813         (frv_legitimate_constant_p): In FDPIC, reject SImode operands that
4814         are not legitimate pic operands.
4815         (frv_in_small_data_p): Re-enable for FDPIC.
4816         * config/frv/frv.h (SDA_BASE_REG): Remove comment about FDPIC.
4817         (FRV_GLOBAL_P): Removed.
4818         * config/frv/frv.md: Add modes to CONSTs.
4819         (movsi_got): New.
4820         (movsi_lo_sum_got): Use separate matches instead of match_dup.
4821         (movsi_high_pic, movsi_lo_sum_pic): Match on non-FDPIC only.
4822         (fdpic splittable operations): Match on flag_pic != 1.
4823         2003-09-22  Alexandre Oliva  <aoliva@redhat.com>
4824         * config/frv/frv.c (frv_asm_out_constructor,
4825         frv_asm_out_destructor): Pass to frv_assemble_integer the size in
4826         bytes, not bits.
4827         2003-09-19  Alexandre Oliva  <aoliva@redhat.com>
4828         * config/frv/frv.c (frv_assemble_integer): Reject complex
4829         expressions referencing function SYMBOL_REFs.
4830         * config/frv/frv.c (frv_function_symbol_referenced_p): New.
4831         (move_source_operand): Reject CONSTs that reference function
4832         SYMBOL_REFs on FDPIC.
4833         (frv_emit_movsi): If we get such a CONST, break it up.
4834         * config/frv/frv.h (CPP_SPEC): Define __FRV_FDPIC__ for -mfdpic.
4835         (TRANSFER_FROM_TRAMPOLINE): Use different definitions for FDPIC.
4836         * config/frv/frv.c (frv_print_operand) <I>: Recognize PLUS without
4837         MEM.
4838         (frv_assemble_integer): Don't use funcdesc for LABEL_REFs.
4839         (frv_trampoline_size): Increase for FDPIC.
4840         * config/frv/frv.h (TRAMPOLINE_ALIGNMENT): Bump to 64 for FDPIC.
4841         (TRANSFER_FROM_TRAMPOLINE): Handle FDPIC trampolines.
4842         * config/frv/frv.c (frv_legitimize_fdpic_address, frv_emit_movsi):
4843         Disable use of GOTOFF for now.
4844         (const_small_data_p, plus_small_data_p, frv_in_small_data_p):
4845         Disable use of small data in FDPIC for now.
4846         (frv_asm_output_mi_thunk): Implement for FDPIC.
4847         * config/frv/frv.h (SDA_BASE_REG): Set to -1 with FDPIC.
4848         * config/frv/frv.c (frv_asm_out_constructor): Use
4849         frv_assemble_integer for FDPIC pointers.
4850         (frv_asm_out_destructor): Likewise.
4851         * config/frv/frv.md (ldd): Fix order of operands.  Use
4852         address_operand for input.
4853         2003-09-18  DJ Delorie  <dj@redhat.com>
4854         * config/frv/frv.c (frv_legitimate_fdpic_operand_p): Remove UNSPEC_PIC.
4855         (unspec_got_name): Correct typo.
4856         (frv_emit_movsi): Pre-expand splittable GOTs.
4857         (frv_expand_fdpic_call): Rename gen_lddi to gen_ldd.
4858         * config/frv/frv.md (lddi): Fix syntax error, rename to ldd.
4859         (symGOT2reg_hilo, symGOTOFF2reg_hilo): New.
4860         * config/frv/t-frv: Add -mfdpic multilibs.
4861         * config/frv/frv.h (ASM_SPEC): Pass -mfdpic/-mno-fdpic.
4862         (TARGET_SWITCHES): Add -mno-fdpic, fix documentation.
4863         * config/frv/frv.c (frv_override_options): -mfdpic assumes
4864         flag_pic, default to 32-bit pics, require DWORD ops.
4865         (frv_override_options): Add W and Z constraints.
4866         (frv_expand_prologue): No pic prologue for -mfdpic.
4867         (frv_asm_output_mi_thunk): Support -mfdpic (soon).
4868         (frv_print_operand_memory_reference): Handle GOT constants.
4869         (frv_legitimate_address_p): Allow GOT constants.
4870         (frv_legitimize_address): Handle GOT addresses too.
4871         (frv_legitimate_fdpic_operand_p): New.
4872         (frv_legitimize_fdpic_address): New.
4873         (unspec_got_name): New.
4874         (frv_output_addr_const_extra): New.
4875         (frv_expand_fdpic_call): New.
4876         (frv_fdpic_fptr_operand): New.
4877         (gpr_or_int12_operand): Handle GOT operands.
4878         (int_2word_operand): Handle GOT operands.
4879         (fdpic_operand): New.
4880         (fdpic_splittable_got_operand): New.
4881         (fdpic_got12_operand): New.
4882         (frv_emit_movsi): Handle GOT operands.
4883         (frv_assemble_integer): -mfdpic doesn't use rofixups.
4884         (frv_print_operand): Support 'g' code for GOT operands.
4885         * config/frv/frv-protos.h: Add prototypes as needed.
4886         * config/frv/frv.md (R_FRV_GOT12, R_FRV_GOTHI, R_FRV_GOTLO,
4887         R_FRV_FUNCDESC, R_FRV_FUNCDESC_GOT12, R_FRV_FUNCDESC_GOTHI,
4888         R_FRV_FUNCDESC_GOTLO, R_FRV_FUNCDESC_VALUE,
4889         R_FRV_FUNCDESC_GOTOFF12, R_FRV_FUNCDESC_GOTOFFHI,
4890         R_FRV_FUNCDESC_GOTOFFLO, R_FRV_GOTOFF12, R_FRV_GOTOFFHI,
4891         R_FRV_GOTOFFLO): New.
4892         (movsi_high_got, movsi_lo_sum_got): New.
4893         (*movsi_pic): Don't use this splitter for -mfdpic.
4894         (addsi3): Allow GOT references also.
4895         (call, call_value): Handle -mfdpic separately.
4896         (call_fdpicdi, call_fdpicsi, lddi, call_value_fdpicdi,
4897         call_value_fdpicsi): New.
4898         (symGOT2reg, symGOT2reg_i, got splitters, symGOTOFF2reg,
4899         symGOTOFF2reg_i): New.
4900         * config/frv/frv.h (MASK_FDPIC): New.
4901         (TARGET_FDPIC): New.
4902         (TARGET_SWITCHES): Add -mfdpic.
4903         (FDPIC_FPTR_REGNO): New.
4904         (FDPIC_REGNO): New.
4905         (OUR_FDPIC_REG): New.
4906         (enum reg_class): Add FDPIC_REGS, FDPIC_FPTR_REGS, and
4907         FDPIC_CALL_REGS.
4908         (REG_CLASS_NAMES): Likewise.
4909         (REG_CLASS_CONTENTS): Likewise.
4910         (EXTRA_CONSTRAINT_FOR_Y): New, for 12-bit GOTs.
4911         (EXTRA_CONSTRAINT): Add it here.
4912         (FRV_GLOBAL_P): New.
4913         (OUTPUT_ADDR_CONST_EXTRA): New.
4914
4915 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
4916
4917         * config/sparc/sparc.h: Remove commented-out definitions of
4918         TARGET_EDOM and GEN_ERRNO_RTX.
4919
4920 2004-02-24  Kazu Hirata  <kazu@cs.umass.edu>
4921
4922         * df.c, df.h, ra-build.c, ra-rewrite.c, ra.c, web.c: Replace
4923         df_analyse with df_analyze.
4924
4925 2004-02-24  Alan Modra  <amodra@bigpond.net.au>
4926
4927         * gcse.c (delete_null_pointer_checks_1): Set stop_insn to end, not
4928         beginning of block.
4929
4930 2004-02-23  James E Wilson  <wilson@specifixinc.com>
4931
4932         * calls.c (precompute_arguments): Update comment.
4933
4934 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
4935
4936         * et-forest.c: Replace et_occurences with et_occurrences.
4937
4938 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
4939
4940         * cfgloop.h, loop-iv.c, loop-unswitch.c: Replace iv_analyse
4941         with iv_analyze.
4942
4943 2004-02-23  Kelley Cook  <kcook@gcc.gnu.org>
4944
4945         * config/i386/i386.c: Rename pni to sse3.
4946         * config/i386/i386.h: Likewise.
4947         * config/i386/i386.md: Likewise.
4948         * config/i386/pmmintrin.h: Likewise.
4949         * doc/extend.texi: Likewise.
4950         * doc/invoke.texi: Likewise.
4951
4952 2004-02-23  Zack Weinberg  <zack@codesourcery.com>
4953             Kazu Hirata  <kazu@cs.umass.edu>
4954
4955         Remove -fwritable-strings.
4956         * c-common.c (fix_string_type): Don't check
4957         flag_writable_strings.
4958         (fix_string_type): Likewise.
4959         * c-opts.c (set_std_c89): Don't initialize
4960         flag_writable_strings.
4961         (set_std_c99): Likewise.
4962         * common.opt (fwritable-strings): Remove.
4963         * flags.h: Remove the external declaration of
4964         flag_writable_strings.
4965         * opts.c (common_handle_option) <OPT_fwritable_strings>:
4966         Remove.
4967         * toplev.c (flag_writable_strings): Remove.
4968         (f_options): Remove an entry for writable-strings.
4969         * varasm.c (const_hash_1) <STRING_CST>: Don't check
4970         flag_writable_strings.
4971         (compare_constant) <STRING_CST>: Likewise.
4972         (build_constant_desc): Likewise.
4973         * config/darwin.c (machopic_select_section): Likewise.
4974         * config/arm/arm.c (AOF_ASSEMBLER): Likewise.
4975         * config/arm/pe.c (arm_pe_encode_section_info): Likewise.
4976         * config/iq2000/iq2000.c (iq2000_select_section): Likewise.
4977         * config/mips/mips.c (mips_select_section): Likewise.
4978         (mips_encode_section_info): Likewise.
4979         * config/pa/pa.c (pa_select_section): Likewise.
4980         * config/pa/pa.h (TEXT_SPACE_P): Likewise.
4981         * config/v850/v850.c (v850_select_section): Likewise.
4982         * doc/invoke.texi (-fwritable-strings): Remove.
4983         (-fno-const-strings): Don't mention -fwritable-strings.
4984         * doc/trouble.texi: Don't mention -fwritable-strings.
4985
4986 2003-02-23  Nathanael Nerode  <neroden@gcc.gnu.org>
4987
4988         * doc/install.texi: Update for switch of boehm-gc to autoconf 2.57.
4989
4990 2004-02-23  Dale Johannesen  <dalej@apple.com>
4991
4992         * config/rs6000.md (movsf_hardfloat): Add POWER form of nop.
4993         (movdf_hardfloat64):  Ditto.
4994         (movdf_softfloat64):  Ditto.
4995
4996 2004-02-23  Fariborz Jahanian <fjahanian@apple.com>
4997         * config/rs6000/rs6000.c (function_arg): call to
4998         rs6000_mixed_function_arg for DFmode moved to allow
4999         normal DFmode incoming register assignment.
5000
5001 2004-02-23  Dale Johannesen  <dalej@apple.com>
5002
5003         * config/rs6000.md (movsf_hardfloat): Accept CTR-to-CTR copy.
5004         (movdf_hardfloat64):  Ditto.
5005
5006 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
5007
5008         * convert.c, gcov-io.c, libgcov.c, sched-int.h, sibcall.c,
5009         config/rs6000/linux.h, config/rs6000/rs6000-c.c: Update
5010         copyright.
5011
5012 2004-02-23  Andrew Pinski  <pinskia@physics.uc.edu>
5013
5014         PR c/14156
5015         * c-typeck.c (c_expand_return): Change check for VAR_DECL
5016         to use DECL_P instead.
5017
5018         * config/rs6000/linux.h (OS_MISSING_POWERPC64): Define.
5019         * config/rs6000/linux64.h (OS_MISSING_POWERPC64): Define.
5020
5021 2004-02-23  Kazu Hirata  <kazu@cs.umass.edu>
5022
5023         * Makefile.in (opts.o): Depend on target.h.
5024         * opts.c (decode_options): Use targetm.default_short_enums
5025         instead of DEFAULT_SHORT_ENUMS.
5026         * system.h (DEFAULT_SHORT_ENUMS): Poison.
5027         * target-def.h (TARGET_DEFAULT_SHORT_ENUMS): New.
5028         (TARGET_INITIALIZER): Add TARGET_DEFAULT_SHORT_ENUMS.
5029         * target.h (gcc_target): Add default_short_enums.
5030         * config/cris/cris.h: Remove a comment about
5031         DEFAULT_SHORT_ENUMS.
5032         * config/ip2k/ip2k.h: Likewise.
5033         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Change to
5034         TARGET_DEFAULT_SHORT_ENUMS.  Update the description.
5035
5036 2004-02-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
5037             Falk Hueffner  <falk@debian.org>
5038
5039         PR c/14188
5040         * builtins.c (expand_builtin_va_arg): Emit an informative message
5041         if a trap is generated.
5042         * c-typeck.c (build_function_call): Likewise.
5043
5044 2004-02-22  Jakub Jelinek  <jakub@redhat.com>
5045
5046         * gcov-io.c (gcov_open) [GCOV_LOCKED]: Use open + fdopen instead of
5047         fopen.
5048         * libgcov.c: Include sys/stat.h.
5049         * config/rs6000/linux.h (TARGET_HAS_F_SETLKW): Define.
5050         * config/rs6000/linux64.h (TARGET_HAS_F_SETLKW): Define.
5051         * config/sparc/linux.h (TARGET_HAS_F_SETLKW): Define.
5052         * config/sparc/linux64.h (TARGET_HAS_F_SETLKW): Define.
5053
5054 2004-02-22  Kazu Hirata  <kazu@cs.umass.edu>
5055
5056         * reorg.c: Remove comments about dead ports.
5057
5058 2004-02-22  Christopher Faylor  <cgf@redhat.com>
5059
5060         * config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): *Really* specify
5061         extra host object file when targetting cygwin rather than generic
5062         object files.
5063
5064 2004-02-22  Josef Zlomek  <zlomekj@suse.cz>
5065
5066         Merge from tree-ssa:
5067         2003-11-20  Richard Henderson  <rth@redhat.com>
5068
5069                 * tree-inline.c (insert_decl_map): New.
5070                 (remap_decl, remap_type, remap_block, copy_body_r,
5071                 initialize_inlined_parameters, declare_return_variable,
5072                 remap_save_expr): Use it.
5073
5074         * function.c (copy_body_r): Add mapping from id->ret_label to
5075         id->ret_label.  Revert test for ret_label.
5076
5077 2004-02-22  Jakub Jelinek  <jakub@redhat.com>
5078
5079         * genoutput.c (process_template): Strip trailing whitespace in @
5080         templates and issue a warning if there was any.
5081
5082 2004-02-21  Christopher Faylor  <cgf@redhat.com>
5083
5084         * config.gcc (i[34567]86-*-pe|i[34567]86-*-cygwin*): Specify extra host
5085         object file when targetting cygwin.
5086         * config/i386/t-cygwin (EXTRA_GCC_OBJS): Remove definition since it is
5087         overridden by top-level Makefile.
5088
5089 2004-02-21  Roger Sayle  <roger@eyesopen.com>
5090
5091         * config/i386/i386.c (standard_80387_constant_p): Also prefer
5092         the x87's load constant instructions when optimizing for size.
5093
5094 2004-02-21  Kazu Hirata  <kazu@cs.umass.edu>
5095
5096         * combine.c (SHIFT_COUNT_TRUNCATED): Remove.
5097         * defaults.h (SHIFT_COUNT_TRUNCATED): Provide the default.
5098         * expmed.c: Assume SHIFT_COUNT_TRUNCATED is always defined.
5099         * fold-const.c: Likewise.
5100         * simplify-rtx.c: Likewise.
5101
5102 2004-02-21  Alan Modra  <amodra@bigpond.net.au>
5103
5104         * combine.c (can_combine_p): Don't ignore SETs marked with
5105         REG_EH_REGION notes.
5106         (try_combine): When attemting to fix unrecognized insns, don't
5107         split a PARALLEL that contains the original i2.
5108
5109 2004-02-21  Ziemowit Laski  <zlaski@apple.com>
5110
5111         * config/darwin.h (TARGET_OPTION_TRANSLATE_TABLE): Refer to
5112         SUBTARGET_OPTION_TRANSLATE_TABLE for architecture-specific options.
5113         * config/i386/darwin.h (SUBTARGET_OPTION_TRANSLATE_TABLE): Define it.
5114         * config/rs6000/altivec.h: #error out if '-maltivec' not specified.
5115         (vector, pixel, bool): #define to __vector, __pixel and __bool.
5116         (__un_args_eq, __bin_args_eq, __tern_args_eq): Move to C-specific
5117         portion of header.
5118         (__altivec_link_error_invalid_argument): Remove prototype; will use
5119         __builtin_altivec_compiletime_error("vec_*") instead.
5120         (vec_*): Fix/complete set of available operation overloads given the
5121         existence of distinct 'vector bool ...' and 'vector pixel' types; tighten
5122         cv-correctness of pointer arguments; in C, always check for correct
5123         argument types before macro expansion.
5124         * config/rs6000/darwin.h (SUBTARGET_OPTION_TRANSLATE_TABLE): New macro
5125         defining Darwin/PowerPC-specific '-f[no-]altivec' and
5126         '-W[no-]altivec-long-deprecated' switches.
5127         * config/rs6000/rs6000-c (rs6000_cpu_cpp_builtins): Pre-define
5128         '__vector', '__pixel' and '__bool' macros using
5129         '__attribute__((altivec(...)))' types.
5130         * config/rs6000/rs6000.c (bool_char_type_node, bool_short_type_node,
5131         bool_int_type_node, pixel_type_node, bool_V16QI_type_node,
5132         bool_V8HI_type_node, bool_V4SI_type_node, pixel_V8HI_type_node):
5133         New type nodes.
5134         (rs6000_warn_altivec_long, rs6000_warn_altivec_long_switch): New, for
5135         handling '-W[no-]altivec-long-deprecated'.
5136         (rs6000_override_options): Handle '-W[no-]altivec-long-deprecated'.
5137         (rs6000_expand_binop_builtin, rs6000_expand_ternop_builtin,
5138         altivec_expand_dst_builtin): Remove casts from integer literals.
5139         (altivec_expand_builtin): Likewise; handle expansion of new
5140         '__builtin_altivec_compiletime_error' function.
5141         (rs6000_init_builtins): Initialize 'vector bool ...' and 'vector pixel'
5142         types, and make them distinct from other vector types; register
5143         '__builtin_altivec_compiletime_error' function.
5144         (print_operand): For 'P', print a full target register name instead of
5145         merely its number.
5146         (rs6000_attribute_table): Add "altivec" attribute.
5147         (rs6000_handle_altivec_attribute): New function.
5148         * config/rs6000/rs6000.h (TARGET_OPTIONS): Describe
5149         '-m[no-]-warn-altivec-long' (which '-W[no-]altivec-long-deprecated'
5150         maps to).
5151         (rs6000_warn_altivec_long, rs6000_warn_altivec_long_switch): Forward
5152         declare.
5153         (ALTIVEC_BUILTIN_COMPILETIME_ERROR): New built-in enumeration.
5154
5155 2004-02-20  James E Wilson  <wilson@specifixinc.com>
5156
5157         * config/ia64/ia64.md (shift_mix4left+1): Delete reload_completed
5158         check.
5159         (shift_mix4left+2): Delete redundant pattern.
5160
5161 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
5162
5163         * alias.c (OUTGOING_REGNO): Don't define the default.
5164         * builtins.c (OUTGOING_REGNO): Likewise.
5165         (INCOMING_REGNO): Likewise.
5166         (apply_args_register_offset): Always use OUTGOING_REGNO.
5167         * combine.c (OUTGOING_REGNO): Likewise.
5168         * sibcall.c (OUTGOING_REGNO): Likewise.
5169         * defaults.h (INCOMING_REGNO): Provide the default.
5170         (OUTGOING_REGNO): Likewise.
5171
5172 2004-02-21  Jan Hubicka  <jh@suse.cz>
5173
5174         * params.def (max-peeled-insns, max-completely-peeled-insns,
5175         max-once-peeled-insns): Set to 400.
5176
5177 2004-02-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5178
5179         PR c++/12007
5180         * dbxout.c (dbxout_parms): Check that DECL_RTL and DECL_INCOMING_RTL
5181         are set for parameters before outputing debugging information.
5182
5183 2004-02-20  Falk Hueffner  <falk@debian.org>
5184
5185         PR target/14201
5186         * config/alpha/alpha.md (*fix_truncsfsi_ieee): Fix typoed operand
5187         numbers.
5188
5189 2004-02-20  Per Bothner  <per@bothner.com>
5190
5191         * input.h:  Don't #include line-map.h.  It may cause link problems
5192         with undefined linemap_line_start when line-map.h is included but
5193         line-map.o is not linked, as currently happens with gengtype on
5194         compilers that don't support inline.
5195         * toplev.c:  So we do have to explicitly #include line-map.h here.
5196
5197 2004-02-20  Richard Henderson  <rth@redhat.com>
5198
5199         * doc/invoke.texi: Add -Wvariadic-macros.
5200
5201 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
5202
5203         * haifa-sched.c (sched_emit_insn): Remove.
5204         * sched-int.h: Remove the corresponding prototype.
5205
5206 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
5207
5208         Revert:
5209         2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5210         * opts.c (decode_options): Don't use DEFAULT_SHORT_ENUMS.
5211         * system.h (DEFAULT_SHORT_ENUMS): Poison.
5212         * config/cris/cris.h: Remove a comment about
5213         DEFAULT_SHORT_ENUMS.
5214         * config/ip2k/ip2k.h: Likewise.
5215         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Remove.
5216
5217 2004-02-20  Mohan Embar  <gnustuff@thisiscool.com>
5218             Tom Tromey  <tromey@redhat.com>
5219
5220         * doc/install.texi: Moved --disable-libgcj and
5221         --with-system-zlib documentation to new section for
5222         Java-specific options.
5223         Added explicit Cross-Compiler-Specific Options subheading.
5224         Added section for Java-specific options.
5225
5226 2004-02-20  Matt Kraai  <kraai@alumni.cmu.edu>
5227
5228         * doc/install.texi (Building the Ada compiler): Remove
5229         example.
5230
5231 2004-02-20  James E Wilson  <wilson@specifixinc.com>
5232
5233         * toplev.c (dump_file_index, dump_file): Put ce3 before rnreg.
5234
5235 2004-02-20  Kazu Hirata  <kazu@cs.umass.edu>
5236
5237         * gcc.c (process_command): Allow translation of the copyright
5238         symbol but not the rest of the copyright message.
5239         * gcov.c (print_version): Likewise.  Allow translation of the
5240         message about warranty.
5241
5242 2004-02-20  Hans-Peter Nilsson  <hp@axis.com>
5243
5244         * config/cris/cris.md ("*andsi_movu"): Correct parentheses in
5245         predicate.
5246         ("*andsi_clear"): Tweak constraints to not match postincrement.
5247         Adjust the predicate to exclude a volatile memory reference.
5248         ("*andhi_clear"): Ditto.  Rename from "*andhi_clear_signed".
5249         ("*andhi_clear_unsigned"): Remove, non-matching pattern.
5250
5251 2004-02-19  Matt Kraai  <kraai@alumni.cmu.edu>
5252
5253         * move-if-change: Remove.
5254         * Makefile.in (s-mlib, c-parse.y, s-check, s-gencheck)
5255         (s-specs, s-options, s-config, s-conditions, s-flags, s-codes)
5256         (s-constants, s-emit, s-recog, s-opinit, s-extract, s-peep)
5257         (s-attr, s-attrtab, s-output, s-genrtl, s-modes, s-preds)
5258         (s-gtyp-gen, s-iov): Use the top level move-if-change.
5259         * objc/Make-lang.in (objc/objc-parse.y): Likewise.
5260
5261 2004-02-19  James E Wilson  <wilson@specifixinc.com>
5262
5263         * config/i386/i386.md (doloop_end_internal): Use nonimmediate_operand
5264         for operand2.  Add condition that requires register_operand operand2
5265         before reload.
5266
5267 2004-02-19  Richard Sandiford  <rsandifo@redhat.com>
5268             Maciej W. Rozycki  <macro@ds2.pg.gda.pl>
5269
5270         * config/mips/mips.c (mips_address_insns): Treat BLKmode specially.
5271         * config/mips/mips.md: Expand comment above unaligned loads and stores.
5272
5273 2004-02-19  Richard Henderson  <rth@redhat.com>
5274
5275         * Makefile.in (STRICT2_WARN): Add -Wno-variadic-macros.
5276         * tree.c (build0, build1, build2, build3, build4): Split out from...
5277         (build): ... here.  Call them.
5278         * tree.h (build, _buildN1, _buildN2, _buildC1, _buildC2): New.
5279
5280         * convert.c (convert_to_integer): Remove extra build argument.
5281         * tree-inline.c (expand_call_inline): Likewise.
5282
5283 2004-02-19  Richard Henderson  <rth@redhat.com>
5284
5285         * c-opts.c (warn_variadic_macros): New.
5286         (c_common_handle_option): Set it.
5287         (sanitize_cpp_opts): Copy it to cpp_opts.
5288         * c.opt (Wvariadic-macros): New.
5289         * cpplib.h (struct cpp_options): Add warn_variadic_macros.
5290         * cppinit.c (cpp_create_reader): Initialize it.
5291         * cppmacro.c (parse_params): Check it.
5292
5293 2004-02-19  David Daney <ddaney@avtrex.com>
5294
5295         PR preprocessor/14198
5296         * config/mips/linux.h (TARGET_OS_CPP_BUILTINS): Add
5297         builtin_assert ("machine=mips")
5298
5299 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5300
5301         * opts.c (decode_options): Don't use DEFAULT_SHORT_ENUMS.
5302         * system.h (DEFAULT_SHORT_ENUMS): Poison.
5303         * config/cris/cris.h: Remove a comment about
5304         DEFAULT_SHORT_ENUMS.
5305         * config/ip2k/ip2k.h: Likewise.
5306         * doc/tm.texi (DEFAULT_SHORT_ENUMS): Remove.
5307
5308 2004-02-19  Zack Weinberg  <zack@codesourcery.com>
5309
5310         * config/ia64/ia64.c (ia64_function_arg): In big-endian mode,
5311         when passing single SFmode quantities in general registers,
5312         put them in the high half.
5313
5314 2004-02-19  Aldy Hernandez  <aldyh@redhat.com>
5315
5316         * doc/md.texi (Standard Names): Document additional dependency on
5317         fix pattern.
5318
5319         * optabs.c (ftruncify): Remove.
5320         (expand_fix): Manually inline ftruncify above.
5321         (can_fix_p): Add FIXME note.
5322
5323 2004-02-19  Aldy Hernandez  <aldyh@redhat.com>
5324
5325         * config/rs6000/spe.md (spe_fixunssfsi2): Rename to
5326         spe_fixuns_truncsfsi2.
5327
5328         * config/rs6000/rs6000.md (fixunssfsi2): Rename to
5329         fixuns_truncsfsi2.
5330
5331 2004-02-19  Steve Ellcey  <sje@cup.hp.com>
5332
5333         * config/ia64/ia64.h (HARD_REGNO_CALLER_SAVE_MODE): New macro.
5334         * testsuite/gcc.dg/20040219-1.c: New test.
5335
5336 2004-02-19  Ulrich Weigand  <uweigand@de.ibm.com>
5337
5338         * config/s390/s390.md ("*subdf3_cc", "*subdf3_cconly", "*subsf3_cc",
5339         "*subsf3_cconly"): Subtraction is not commutative.
5340
5341 2004-02-19  Zack Weinberg  <zack@codesourcery.com>
5342
5343         * sdbout.c (preinit_symbols, sdbout_initialized): New statics.
5344         (sdbout_symbol): If called before sdbout_init, queue DECL for
5345         later and return.
5346         (sdbout_init): Set sdbout_initialized true, process decls
5347         queued earlier by sdbout_symbol.
5348         (sdbout_finish): Use size_t for index variable.
5349
5350 2004-02-19  Jeff Law  <law@redhat.com>
5351
5352         * fold-const.c (invert_truthvalue): Do not call invert_tree_comparison
5353         for unordered comparison codes.
5354
5355 2004-02-19  Ian Lance Taylor  <ian@wasabisystems.com>
5356
5357         * reload1.c (reload): Correct comment.
5358         (scan_paradoxical_subregs): Remove #if 0 and old comment.
5359         * doc/extend.texi (Local Reg Vars): Remove obsolete comment that
5360         register variables are not used by reload.
5361
5362 2004-02-19  Hans-Peter Nilsson  <hp@axis.com>
5363
5364         PR target/14209
5365         * config/cris/cris.md ("*andsi_movu", "*andhi_movu"): Tweak
5366         constraints to not match postincrement.  Adjust the predicate to
5367         exclude a volatile memory reference.
5368
5369 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5370
5371         * config/mcore/mcore.h (ASM_OUTPUT_EXTERNAL): Remove.
5372
5373 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5374
5375         * hooks.c (hook_void_tree_int): Remove.
5376         (hook_void_constcharptr): Likewise.
5377         (hook_int_void_0): Likewise.
5378         * hooks.h: Remove the prototypes for the above three
5379         functions.
5380         * targhooks.c (hook_bool_machine_mode_true): Remove.
5381         * targhooks.h: Remove the prototype for
5382         hook_bool_machine_mode_true.
5383
5384 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5385
5386         * emit-rtl.c (subreg_realpart_p): Remove.
5387         (reorder_insns_with_line_notes): Likewise.
5388         (end_full_sequence): Likewise.
5389         * rtl.h: Remove the prototype for the above functions.
5390
5391 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5392
5393         * config/arc/arc.h, config/arm/arm.h, config/frv/frv.h,
5394         config/h8300/h8300.h, config/i386/i386.h, config/i860/i860.h,
5395         config/iq2000/iq2000.h, config/m32r/m32r.h,
5396         config/pdp11/pdp11.h, config/sparc/sparc.h,
5397         config/xtensa/xtensa.h: Remove commented-out or useless
5398         definitions of CASE_VECTOR_PC_RELATIVE.
5399
5400 2004-02-19  Kazu Hirata  <kazu@cs.umass.edu>
5401
5402         * loop.c (all_sets_invariant_p): Remove.
5403
5404 2004-02-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
5405
5406         PR target/12916
5407         * config/sparc/sparc.h (NPARM_REGS): Delete.
5408         (BASE_RETURN_VALUE_REG): Likewise.
5409         (BASE_OUTGOING_VALUE_REG): Likewise.
5410         (BASE_PASSING_ARG_REG): Likewise.
5411         (BASE_INCOMING_ARG_REG): Likewise.
5412         * config/sparc/sparc.c (sparc_strict_argument_naming): Test
5413         TARGET_ARCH64, not TARGET_V9.
5414         (function_arg_slotno): Dispatch based on the mode class.
5415         Handle vector modes like floating-point modes.
5416         (function_arg_record_value_1): Handle vector types like
5417         floating-point types.
5418         (function_arg_record_value_2): Likewise.
5419         Calculate regno after mode transformation.
5420         (function_arg): Handle vector modes like floating-point modes.
5421         (function_arg_partial_nregs): Replace NPARM_REGS by SPARC_INT_ARG_MAX.
5422         If ARCH64, do not recheck alignment.
5423         (function_arg_pass_by_reference): Reorder the conditions.
5424         (sparc_return_in_memory): Move after function_arg_padding.
5425         Implement calling conventions for vector modes.
5426         (sparc_struct_value_rtx): Move after sparc_return_in_memory.
5427         (function_value): Move scope of 'regbase'.
5428         Implement calling conventions for vector modes.
5429         (sparc_builtin_saveregs): Replace NPARM_REGS by SPARC_INT_ARG_MAX
5430         and BASE_INCOMING_ARG_REG by SPARC_INCOMING_INT_ARG_FIRST.
5431         (sparc_va_arg): Use function_arg_pass_by_reference to test whether
5432         the argument is passed by reference.
5433         (sparc_type_code): Handle vector types.
5434
5435 2004-02-19  Alan Modra  <amodra@bigpond.net.au>
5436
5437         * function.c (assign_parms): When building decl_rtl for
5438         SPLIT_COMPLEX_ARGS, ensure inner modes of concat match outer.
5439
5440 2004-02-19  Olivier Hainque  <hainque@act-europe.fr>
5441
5442         * expr.c (is_aligning_offset): Check if we are aligning the
5443         expressions's address over BIGGEST_ALIGNMENT in bytes, not
5444         in bits.
5445
5446 2003-02-18  Matt Austern  <austern@apple.com>
5447
5448         * gcc.c (LIBGCC_SPEC): If REAL_LIBGCC_SPEC is defined, and
5449         LIBGCC_SPEC isn't, set LIBGCC_SPEC to REAL_LIBGCC_SPEC.
5450         (init_gcc_spec): Don't define or call if REAL_LIBGCC_SPEC is
5451         defined.  Instead use REAL_LIBGCC_SPEC, unmodifed, as the libgcc
5452         spec string.
5453         * doc/tm.texi (REAL_LIBGCC_SPEC): Document.
5454
5455 2004-02-18  Zack Weinberg  <zack@codesourcery.com>
5456
5457         * dwarf2out.c (loclabel_num): Move outside #ifdef
5458         DWARF2_DEBUGGING_INFO and mark with GTY(()).
5459         * config/ia64/ia64.c (struct extern_func_list,extern_func_head):
5460         Mark with GTY(()).
5461         (ia64_hpux_add_extern_decl): Save the decl, not the name string.
5462         Allocate memory with ggc_alloc.  No need to copy anything.
5463         (ia64_hpux_file_end): Update to match.
5464
5465 2004-02-18  Jakub Jelinek  <jakub@redhat.com>
5466
5467         * config/i386/i386.c (override_options): Don't imply 3DNow! for -m64
5468         by default.
5469
5470 2004-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
5471
5472         * config/s390/s390.md ("divmodtidi3"): Use canonical RTL.
5473         ("divmodtisi3"): Likewise.
5474         ("udivmoddi4", "udivmodtidi3"): Likewise.
5475         ("divmodsi4", "divmoddisi3"): Likewise.
5476         ("udivmodsi4", "udivmoddisi3"): Likewise.
5477         ("udivsi3", "umodsi3"): Likewise.
5478
5479 2004-02-18  Ulrich Weigand  <uweigand@de.ibm.com>
5480
5481         * config/s390/s390.c (s390_mainpool_start): Delete the main pool
5482         placeholder insn when chunkifying the pool.
5483
5484 2004-02-18  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
5485
5486         * pa.h (PIC_OFFSET_TABLE_REGNUM): Define to INVALID_REGNUM when not
5487         generating PIC code.
5488
5489 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5490
5491         * config/h8300/h8300-protos.h: Add a prototype for
5492         h8300_expand_branch.
5493         * config/h8300/h8300.c (h8300_expand_branch): New.
5494         * config/h8300/h8300.md (ble, bleu, bge, bgeu, blt, bltu, bgt,
5495         bgtu, beq, bne): Call h8300_expand_branch().
5496
5497 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5498
5499         * config/h8300/h8300-protos.h: Add prototypes for
5500         h8300_hard_regno_nregs and h8300_hard_regno_mode_ok.
5501         * config/h8300/h8300.c (h8300_hard_regno_nregs): New.
5502         (h8300_hard_regno_mode_ok): Likewise.
5503         * config/h8300/h8300.h (HARD_REGNO_NREGS): Call
5504         h8300_hard_regno_nregs().
5505         (HARD_REGNO_MODE_OK): Call h8300_hard_regno_mode_ok().
5506
5507 2004-02-18  Per Bothner  <per@bothner.com>
5508
5509         * cpphash.h (struct cpp_buffer):  Restore return_at_eof field.  This
5510         partly reverts my 2003-10-01 change, because we're back to logically
5511         including <command line> inside the main line.
5512         * cpplex.c (_cpp_get_fresh_line):  Check return_at_eof field.
5513         * cppmacro.c (cpp_scan_nooutput):  Set return_at_eof of current buffer.
5514         Fixes PR preprocessor/14103.
5515
5516         * cppfiles.c (_cpp_stack_include):  When appropriate decrement
5517         line_table's highest_location, fixing LAST_SOURCE_LINE_LOCATION.
5518         (cpp_push_include):  Don't need to increment pfile's line field.
5519         * line-map.h (LAST_SOURCE_LINE_LOCATION):  Only decrement by 1.
5520
5521         * c-ppoutput.c (print struct):  New first_time field.
5522         (init_pp_output):  Set print.first_time.
5523         (pp_file_change):  Use print.first_time, rather than MAIN_FILE_P,
5524         which is set also for (say) <command line>.  Clear print.first_time.
5525
5526         * cppfiles.c (struct _cpp_file):  Comment and type for pch field
5527         does not match the code, so fix both.
5528         (should_stack_file):  Inline include_pch_p function.
5529         (include_pch_p):  Remove pointless function.
5530
5531         * cpphash.h (struct cpp_buffer):  Remove unused search_cached field.
5532
5533 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5534
5535         * config/h8300/h8300.md (four define_peephole2's): Use
5536         h8300_regs_ok_for_stm().
5537
5538 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5539
5540         * config/h8300/h8300-protos.h: Update the prototype for
5541         expand_a_rotate().
5542         * config/h8300/h8300.c (expand_a_rotate): Remove the first
5543         argument.
5544         * config/h8300/h8300.md: Update all callers.
5545
5546 2004-02-18  Jan Hubicka  <jh@suse.cz>
5547
5548         * simplify-rtx.c (simplify_unary_operation): Deal with logicals on
5549         floats.
5550         (simplify_binary_operation): Deal with logicals on floats.
5551
5552         * i386.md (SSE fabs splitters): Emit new patterns.
5553         (SSE cmov splitters): Likewise.
5554         (sse_andv4sf3, sse_nandv4sf3, sse_iorv4sf3, sse_xorv4sf3
5555         (sse_andv2df3, sse_nandv2df3, sse_iorv2df3, sse_xorv2df3): Do not use
5556         subregs.
5557         (sse_andsf3, sse_nandsf3, sse_xorsf3): Kill.
5558         (sse_anddf3, sse_nanddf3, sse_xordf3): Kill.
5559
5560 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5561
5562         * config/h8300/h8300.c (expand_a_rotate): Don't generate insns
5563         by hand.
5564         (output_a_rotate): Tweak a comment.
5565         * config/h8300/h8300.md (*rotlqi3_1): Change to rotlqi3_1.
5566         (*rotlhi3_1): Change to rotlhi3_1.
5567         (*rotlsi3_1): Change to rotlsi3_1.
5568
5569 2004-02-18  Richard Earnshaw  <rearnsha@arm.com>
5570
5571         PR target/13866
5572         * arm.c (load_multiple_operation): Don't insist that the source reg
5573         of a post-increment component is the same as the destination.
5574         (store_multiple_operation): Likewise.
5575
5576 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5577
5578         * config/h8300/h8300.md: Move movsf patterns into one section
5579         of the file.
5580
5581 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5582
5583         * cfgloop.h, cfgloopanal.c, cpplex.c, except.h, loop-init.c,
5584         loop-unroll.c, scan-decls.c, scan.h, stor-layout.c,
5585         xcoffout.c, xcoffout.h, config/arm/mmintrin.h,
5586         config/mips/linux64.h, config/pa/pa-64.h,
5587         config/rs6000/aix51.h, config/rs6000/aix52.h,
5588         config/rs6000/spe.md, config/sparc/linux.h,
5589         config/sparc/linux64.h: Update copyright.
5590
5591 2004-02-18  Kazu Hirata  <kazu@cs.umass.edu>
5592
5593         * config/h8300/h8300.md: Move push patterns into one
5594         section of the file.
5595
5596 2004-02-18  Mark Mitchell <mark@codesourcery.com>
5597
5598         PR c++/11326
5599         * config/ia64/ia64.c (ia64_struct_value_rtx): Cope with NULL
5600         fntype.
5601
5602 2004-02-18  Paul Brook  <paul@codesourcery.com>
5603
5604         * rtlanal.c (rtx_varies_p): Return 0 for NULL_RTX
5605
5606 2004-02-18  Paul Brook  <paul@codesourcery.com>
5607
5608         PR debug/12934
5609         * dwarf2out.c (loc_descriptor_from_tree): Handle
5610         EXPR_WITH_FILE_LOCATION.
5611
5612 2004-02-18  Jakub Jelinek  <jakub@redhat.com>
5613
5614         * config/i386/i386.md (zero_extendqidi2, zero_extendqidi2,
5615         testdi_1_rex64, anddi_2, xordi_1_rex64, xordi_2_rex64): Remove
5616         trailing whitespace from instructions.
5617
5618 2004-02-17  Geoffrey Keating  <geoffk@apple.com>
5619
5620         * configure.ac: When generating auto-build.h, pass
5621         --enable-languages to the sub-configure.
5622         Put quotes around ${program_transform_name} when generating
5623         name of as, ld, nm, objdump.
5624         * configure: Regenerate.
5625
5626 2004-02-17  Matt Kraai  <kraai@alumni.cmu.edu>
5627
5628         * Makefile.in (s-check, s-config, s-conditions, s-flags)
5629         (s-codes, s-constants, s-emit, s-recog, s-opinit, s-extract)
5630         (s-peep, s-attr, s-attrtab, s-output, s-genrtl, s-modes)
5631         (s-preds, s-iov): Do not depend on move-if-change.
5632
5633 2004-02-17  James E Wilson  <wilson@specifixinc.com>
5634
5635         * caller-save.c (insert_restore): Pass mem through copy_rtx.
5636         (insert_save): Likewise.
5637
5638 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5639
5640         * config/h8300/h8300.c (h8300_emit_stack_adjustment): Fix a
5641         warning.
5642
5643 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5644
5645         * config/h8300/h8300.md (*one_complsi2_h8300): Change to
5646         *one_cmplsi2_h8300.
5647         (*one_complsi2_h8300hs): Change to *one_cmplsi2_h8300hs.
5648
5649 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5650
5651         * config/h8300/h8300-protos.h: Update the prototype of
5652         fix_bit_operand().
5653         * config/h8300/h8300.c (fix_bit_operand): Remove the second
5654         argument "what".
5655         * config/h8300/h8300.md: Update all callers.
5656
5657 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5658
5659         * config/h8300/h8300.c (fix_bit_operand): Change the name of
5660         the last argument to "code" from "type".
5661
5662 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5663
5664         * config/h8300/h8300.c: Remove an extern declaration of
5665         rtx_equal_function_value_matters.
5666
5667 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5668
5669         * config/h8300/h8300.c (fix_bit_operand): Don't generate insns
5670         by hand.
5671         * config/h8300/h8300.md (*andqi3_1): Change to andqi3_1.
5672         (*iorqi3_1): Change to iorqi3_1.
5673         (*xorqi3_1): Change to xorqi3_1.
5674
5675 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5676
5677         * c-common.c, cfghooks.c, rtlanal.c, varasm.c: Fix comment
5678         typos.
5679
5680 2004-02-17  Jan Hubicka  <jh@suse.cz>
5681
5682         * i386.c (x86_prologue_using_move, x86_epilogue_using_move): Disable for P4.
5683
5684 2004-02-18  Alan Modra  <amodra@bigpond.net.au>
5685
5686         PR optimization/14119
5687         * combine.c (try_combine): When attemting to fix unrecognized insns,
5688         don't delete SETs marked with REG_EH_REGION notes.
5689
5690 2004-02-17  Ulrich Weigand  <uweigand@de.ibm.com>
5691
5692         * combine.c (simplify_if_then_else): Do not replace
5693         (if_then_else (ne reg 0) (0) (const_int)) by (reg) if the
5694         modes differ.
5695
5696 2004-02017  Steven Bosscher  <stevenb@suse.de>
5697
5698         * (c-decl.c, c-semantics.c, calls.c, cgraph.c, cgraphunit.c,
5699         function.c, integrate.c, print-tree.c, toplev.c, tree-optimize.c,
5700         tree.h): Replace DECL_SAVED_INSNS with DECL_STRUCT_FUNCTION.
5701         * ada/utils.c: Likewise.
5702         * cp/decl.c: Likewise.
5703         * f/com.c: Likewise.
5704         * java/class.c: Likewise.
5705
5706 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5707
5708         * config/h8300/h8300.md: Fix comment typos.
5709
5710 2004-02-17  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5711
5712         * config/mips/t-iris6gld: Renamed to ...
5713         * config/mips/t-irix-gld: ... this.
5714         * config.gcc (mips-sgi-irix6*): Reflect this
5715         (mips-sgi-irix5*): Use it with GNU ld.
5716
5717         * config/mips/irix6-crti.asm, config/mips/irix6-crtn.asm: Renamed
5718         to ...
5719         * config/mips/irix-crti.asm, config/mips/irix-crtn.asm: ... this.
5720         * config/mips/t-irix-gld: Reflect this.
5721         * config/mips/iris6gld.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5722
5723         * config/mips/iris5gld.h: New file.
5724         * config.gcc (mips-sgi-irix5*): Use it with GNU ld.
5725         Only use collect2 without gas.
5726
5727         * config/mips/iris6.h (IRIX6_STARTFILE_SPEC, IRIX6_ENDFILE_SPEC):
5728         Renamed to IRIX_STARTFILE_SPEC, IRIX_ENDFILE_SPEC.
5729         (STARTFILE_SPEC, ENDFILE_SPEC, SUBTARGET_EXTRA_SPECS): Reflect this.
5730         * config/mips/iris6gld.h (STARTFILE_SPEC, ENDFILE_SPEC): Likewise.
5731
5732         * config/mips/iris6.h (SUBTARGET_EXTRA_SPECS): Moved ...
5733         * config/mips/iris5.h: ... here.
5734
5735         * config/mips/iris5.h (STARTFILE_SPEC, ENDFILE_SPEC): Renamed to
5736         IRIX_STARTFILE_SPEC, IRIX_ENDFILE_SPEC.
5737         (STARTFILE_SPEC, ENDFILE_SPEC): Define.
5738
5739         * config/mips/iris5gas.h (STARTFILE_SPEC, ENDFILE_SPEC): Simplify
5740         using irix_startfile_spec, irix_endfile_spec.
5741
5742 2004-02-16  Gunther Nikl  <gni@gecko.de>
5743
5744         * config/m68k/m68k.c: Remove obsolete support for HPUX_ASM.
5745
5746 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5747
5748         * config/h8300/h8300.c (h8300_expand_prologue): Don't generate
5749         insns by hand.
5750
5751 2004-02-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5752
5753         * cfghooks.c (split_edge): Speed up updating of dominators.
5754
5755 2004-02-17  Mark Mitchell  <mark@codesourcery.com>
5756
5757         PR c++/11326
5758         * c-common.c (flag_abi_version): Remove.
5759         * c-common.h (flag_abi_version): Likewise.
5760         * c-opts.c (c_common_handle_option): Remove OPT_fabi_version case.
5761         * c.opt (fabi-version): Remove.
5762         * calls.c (expand_call): Always pass a function type to
5763         struct_value_rtx.  Use convert_memory_address.
5764         * common.opt (fabi-version): Add it.
5765         * flags.h (flag_abi_version): Likewise.
5766         (abi_version_at_least): New macro.
5767         * opts.c (common_handle_option): Add OPT_fabi_version.
5768         * toplev.c (flag_abi_version): Define it.
5769         * config/ia64/ia64.c (ia64_struct_retval_addr_is_first_parm_p):
5770         New function.
5771         (ia64_output_mi_thunk): Use it.
5772         (ia64_struct_value_rtx): Likewise.
5773
5774 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5775
5776         * config/h8300/h8300.c (h8300_emit_stack_adjustment):
5777         Don't generate insns by hand.
5778
5779 2004-02-17  Andrew Pinski  <pinskia@physics.uc.edu>
5780
5781         PR c++/14178
5782         * doc/invoke.texi (fabi-version): The default is 2 now.
5783
5784 2004-02-17  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5785
5786         * loop-iv.c: New file.
5787         * Makefile.in (loop-iv.o): New.
5788         * basic_block.h (FOR_BB_INSNS, FOR_BB_INSNS_REVERSE): New macros.
5789         * cfgloop.c (fill_sons_in_loop, get_loop_body_in_dom_order,
5790         num_loop_branches): New functions.
5791         * cfgloop.h (get_loop_body_in_dom_order, num_loop_branches,
5792         iv_analysis_loop_init, iv_get_reaching_def, iv_analyse, get_iv_value,
5793         find_simple_exit, iv_number_of_iterations, iv_analysis_done,
5794         get_simple_loop_desc, free_simple_loop_desc): Declare.
5795         (simple_loop_desc): New inline function.
5796         (struct rtx_iv, struct niter_desc): New.
5797         * cfgloopmanip.c (loopify): Specify semantics more precisely.
5798         * expr.c (force_operand): Handle subregs of expressions created by
5799         loop unroller.
5800         * loop-init.c (loop_optimizer_init, loop_optimizer_finalize): Move
5801         parts of the initialization to toplev.c
5802         * loop-unroll.c (loop_exit_at_end_p): New.
5803         (unroll_and_peel_loops): Call iv_analysis_done.
5804         (decide_peel_once_rolling, decide_peel_completely,
5805         decide_unroll_stupid, decide_unroll_constant_iterations,
5806         decide_unroll_runtime_iterations, decide_peel_simple,
5807         peel_loop_simple, unroll_loop_stupid, unroll_loop_constant_iterations,
5808         unroll_loop_runtime_iterations): Use new simple loop analysis.
5809         * loop-unswitch.c (compare_and_jump_seq): New.
5810         (may_unswitch_on_p): Renamed to ...
5811         (may_unswitch_on): Use new iv analysis.
5812         (reversed_condition): Export.
5813         (unswitch_single_loop, unswitch_loop): Use new iv analysis.
5814         * predict.c (estimate_probability): Use new simple loop analysis.
5815         * rtl.h (get_mode_bounds, reversed_condition,compare_and_jump_seq,
5816         canon_condition, simplify_using_condition): Declare.
5817         * stor-layout.c (get_mode_bounds): New.
5818         * toplev.c (rest_of_handle_loop2): Some parts of
5819         initialization/finalization moved here from loop-init.c.
5820
5821 2004-02-17  Kazu Hirata  <kazu@cs.umass.edu>
5822
5823         * config/h8300/h8300.h (FIXED_REGISTERS): Add the soft frame
5824         pointer.
5825         (CALL_USED_REGISTERS): Likewise.
5826         (REG_ALLOC_ORDER): Likewise.
5827         (REG_CLASS) <GENERAL_REGS>: Likewise.
5828
5829 2004-02-16  Geoffrey Keating  <geoffk@apple.com>
5830
5831         * doc/md.texi (Insn Canonicalizations): Document left-chaining
5832         in associative operators.
5833         * rtlanal.c (commutative_operand_precedence): Create some new
5834         variables.  Prefer a commutative operand on the left, then
5835         binary expressions, then NEG and NOT.
5836
5837 2004-02-16  Matthias Klose  <doko@debian.org>
5838
5839         * config/t-slibgcc-elf-ver: Define SHLIB_NAME and SHLIB_SONAME
5840         in terms of SHLIB_SOVERSION.
5841         * config/m68k/t-slibgcc-elf-ver: New file.
5842         * config/pa/t-slibgcc-elf-ver: New file.
5843         * config.gcc (m68k-linux, parisc-linux): Use them when not
5844         sjlj exceptions are not configured.
5845
5846 2004-02-16  Eric Botcazou  <ebotcazou@libertysurf.fr>
5847
5848         * config/sparc/sparc.c (get_pc_symbol_name): Mark with GTY(()).
5849
5850 2004-02-16  Zack Weinberg  <zack@codesourcery.com>
5851
5852         * sdbout.c (sdb_debug_hooks): Correct the type_decl entry.
5853
5854 2004-02-16  Joseph S. Myers  <jsm@polyomino.org.uk>
5855
5856         * doc/sourcebuild.texi: Mention backends.html.
5857
5858 2004-02-16  Kazu Hirata  <kazu@cs.umass.edu>
5859
5860         * c-decl.c, c-ppoutput.c, cpphash.h, cpplib.h, dbxout.c,
5861         line-map.c, line-map.h, var-tracking.c: Fix comment
5862         formatting.
5863
5864 2004-02-16  Richard Henderson  <rth@redhat.com>
5865
5866         * cse.c (cse_insn): Don't lose REG_NON_LOCAL_GOTO note.
5867
5868         * fold-const.c (operand_equal_p): Fix VECTOR_CST comparison.
5869
5870 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
5871
5872         * config/h8300/h8300.md: Remove unnecessary parallels from
5873         all define_insn and define_split patterns.
5874
5875 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
5876
5877         * config/h8300/h8300.md: Remove explicit (set_attr "cc"
5878         "clobber").
5879
5880 2004-02-15  Bernardo Innocenti  <bernie@develer.com>
5881
5882         * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Restore support for
5883         '%#'.
5884
5885 2004-02-15  Kazu Hirata  <kazu@cs.umass.edu>
5886
5887         * config/ia64/ia64.c, config/mips/mips.c,
5888         config/mmix/mmix-modes.def: Fix comment typos.
5889
5890 2004-02-15  Roger Sayle  <roger@eyesopen.com>
5891
5892         * c-common.h (GET_DIRECTIVE_LINE): Remove unused macro.
5893         (get_directive_line): Remove unused function prototype.
5894
5895 2004-02-14  Josef Zlomek  <zlomekj@suse.cz>
5896
5897         * tree-inline.c (copy_body_r): Do not replace ret_label.
5898
5899 2004-02-14  Jan Hubicka  <jh@suse.cz>
5900
5901         * i386.c (x86_four_jump_limit): New variable.
5902         (k8_avoid_jump_misspredicts): Rename to ...
5903         (ix86_avoid_jump_misspredicts): .. this one.
5904         (ix86_pad_returns): Break out from ...
5905         (ix86_reorg): ... this one; do ix86_avoid_jump_misspredicts when asked
5906         to.
5907         * i386.h (TARGET_FOUR_JUMP_LIMIT): New macro.
5908
5909 2004-02-14  Josef Zlomek  <zlomekj@suse.cz>
5910
5911         * emit-rtl.c (set_decl_incoming_rtl): Check whether the 0th element of
5912         PARALLEL is NULL.
5913
5914 2004-02-14  Per Bothner  <per@bothner.com>
5915
5916         * fix-header.c (line_table):  Move local variable in main to global.
5917         * scan.h (line_table):  Use it.
5918         * scan-decls.c (scan_decls):  Need to call linemap_lookup on token's
5919         line (recently renamed to src_loc) before calling recognized_function.
5920
5921 2004-02-14  Matt Kraai  <kraai@alumni.cmu.edu>
5922
5923         * Makefile.in: Fix comment typos.
5924
5925 2004-02-14  Olivier Hainque  <hainque@act-europe.fr>
5926
5927         * loop.c (check_dbra_loop): Use gen_int_mode instead of GEN_INT
5928         for start_value when it is directly moved into reg, and factorize
5929         the retrieval of GET_MODE (reg).
5930
5931 2004-02-14  Richard Sandiford  <rsandifo@redhat.com>
5932
5933         * config/mips/mips-protos.h (mips_load_got_page): Delete.
5934         (mips_load_got_global): Delete.
5935         (mips_gotoff_page): Declare.
5936         * config/mips/mips.md (UNSPEC_LOAD_GOT): New constant.
5937         (*xgot_lo[sd]i, *got_disp[sd]i, *got_page[sd]i): Build an
5938         UNSPEC_LOAD_GOT pattern rather than a MEM.
5939         (*load_got[sd]i): New patterns.
5940         * config/mips/mips.c (mips_got_alias_set, mips_load_got): Delete.
5941         (mips_load_got_page, mips_load_got_global): Delete.
5942         (mips_gotoff_page): New function.
5943         (override_options): Don't initialize mips_got_alias_set.
5944
5945 2004-02-14  Richard Sandiford  <rsandifo@redhat.com>
5946
5947         * config/mips/mips.h (MASK_DEBUG_[ABEFI], TARGET_DEBUG_[ABEFI]_MODE)
5948         (TARGET_MIPS4100, TARGET_MIPS4300, TARGET_MIPS4KC, TARGET_MIPS5KC)
5949         (TARGET_SB1, TUNE_SB1, TUNE_SR71K, BIGGEST_MAX_ARGS_IN_REGISTERS)
5950         (GO_PRINTF, GO_PRINTF2, GO_DEBUG_RTX, DFMODE_NAN, SFMODE_NAN): Delete.
5951         (TARGET_SWITCHES): Remove MASK_DEBUG_[ABEFI].
5952         * config/mips/mips.c: Fix some overly-long lines.
5953         (SINGLE_WORD_MODE_P, PIC_OFFSET_TABLE_MASK): Delete.
5954         (init_cumulative_args): Remove TARGET_DEBUG_E_MODE handling.
5955
5956 2004-02-13  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
5957
5958         * configure.ac: Search for as, ld below libexec/gcc.
5959         * configure: Regenerate.
5960
5961 2004-02-14  Ben Elliston  <bje@wasabisystems.com>
5962
5963         * config/arm/mmintrin.h (_mm_setwcx): Reverse arguments in call to
5964         __builtin_arm_setwcx ().
5965         * config/arm/arm.c (arm_expand_builtin): Generate operands
5966         correctly and reverse their order in call to gen_iwmmxt_tmcr ().
5967
5968 2004-02-14  Ben Elliston  <bje@wasabisystems.com>
5969
5970         * config/arm/arm.c (bdesc_2arg): Correct builtin names "wmulsh"
5971         and "wmuluh" to "wmulsm" and "wmulum", respectively.
5972         * config/arm/arm.h (enum arm_builtins): Rename enumerators to
5973         ARM_BUILTIN_WMULSM and ARM_BUILTIN_WMULUM.
5974         * config/arm/mmintrin.h (_mm_mulhi_pi16): Update intrinsic call.
5975         (_mm_mulhi_pu16): Likewise.
5976
5977 2004-02-13  Zack Weinberg  <zack@codesourcery.com>
5978
5979         * xcoffout.c (xcoff_assign_fundamental_type_number): Check
5980         DECL_NAME != 0 before dereferencing.
5981
5982 2004-02-13  Ulrich Weigand  <uweigand@de.ibm.com>
5983
5984         * config/s390/s390-protos.h (s390_output_symbolic_const): Remove.
5985         (s390_output_addr_const_extra): Declare.
5986         (s390_output_pool_entry): Remove FILE * argument.
5987         * config/s390/s390.c (s390_output_symbolic_const): Remove.
5988         (s390_output_addr_const_extra): New function.
5989         (print_operand_address): Call output_addr_const instead of
5990         s390_output_symbolic_const.
5991         (print_operand): Likewise.
5992         (s390_output_pool_entry): Use assemble_integer for symbolic constants.
5993         Remove FILE * argument.
5994         * config/s390/s390.h (OUTPUT_ADDR_CONST_EXTRA): Define.
5995         * config/s390/s390.md ("*pool_entry"): Adapt s390_output_pool_entry
5996         call.
5997
5998 2004-02-13  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
5999
6000         * cfgloopanal.c (mark_irreducible_loops): Rewriten.
6001         (struct edge, struct vertex, struct graph): New.
6002         (dump_graph, new_graph, add_edge, dfs, check_irred, for_each_edge,
6003         free_graph): New functions.
6004
6005 2004-02-12  Chris Demetriou  <cgd@broadcom.com>
6006
6007         * config/mips/mips.md (casesi_internal, casesi_internal_di):
6008         Use ".set macro" to avoid warnings about multi-instruction
6009         macros, since they're intentional.
6010
6011 2004-02-12  Geoffrey Keating  <geoffk@apple.com>
6012
6013         * config/darwin.h: Add include guards.  Remove old, now incorrect,
6014         comment about STANDARD_EXEC_PREFIX.
6015
6016         * Makefile.in (install-man): Use $(CPP_INSTALL_NAME) and
6017         $(GCOV_INSTALL_NAME) to install manpages.  Remove generic rule
6018         for installing .1 manpages.  Add rules for installing cpp
6019         and gcov manpages under their installed names.
6020
6021 2004-02-12  Alexandre Oliva  <aoliva@redhat.com>
6022
6023         * configure.ac (gcc_cv_ld): Don't set to LD if target is not
6024         host, but try LD_FOR_TARGET first.
6025         * configure: Rebuilt.
6026
6027 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
6028
6029         * dbxout.c: Move declaration of dbxout_type_decl outside
6030         #ifdef DBX_DEBUGGING_INFO.
6031         * c-parse.in: Don't give the asmdef production a type.
6032
6033 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
6034
6035         * debug.h (struct gcc_debug_hooks): Add type_decl field.
6036         (debug_nothing_tree_int): Prototype.
6037         (dwarf_debug_hooks): Delete, unused.
6038         * debug.c (do_nothing_debug_hooks): Update.
6039         (debug_nothing_tree_int): New function.
6040         * langhooks.h (struct lang_hooks_for_decls):
6041         Remove builtin_type_decls field.
6042         * langhooks-def.h (LANG_HOOKS_BUILTIN_TYPE_DECLS): Delete.
6043         (LANG_HOOKS_DECLS): Update.
6044         * toplev.c (rest_of_decl_compilation, rest_of_type_compilation):
6045         Use debug_hooks->type_decl.
6046         * dbxout.c (preinit_symbols): New static.
6047         (dbx_debug_hooks, xcoff_debug_hooks): Update.
6048         (dbxout_init): Don't call DBX_OUTPUT_STANDARD_TYPES or
6049         lang_hooks.decls.builtin_type_decls.  Do scan preinit_symbols
6050         for symbols to output.
6051         (dbxout_type_decl): New function.
6052         (dbxout_symbol): If called before dbxout_init has run, queue
6053         the symbol for later.  Apply DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER
6054         to TYPE_DECLs before emitting them.
6055         * xcoffout.c (assign_type_number): Delete.
6056         (xcoff_type_numbers): New static table.
6057         (xcoff_assign_fundamental_type_number): New function.
6058         * xcoffout.h: Define DBX_ASSIGN_FUNDAMENTAL_TYPE_NUMBER, not
6059         DBX_OUTPUT_STANDARD_TYPES.  Remove unnecessary #ifdefs.
6060         * sdbout.c: Include varray.h.
6061         (deferred_global_decls): New static.
6062         (sdb_debug_hooks): Update.
6063         (sdbout_global_decl): If we can't emit something right now,
6064         remember it in deferred_global_decls.
6065         (sdbout_finish): Just scan deferred_global_decls; don't call getdecls.
6066         (sdbout_init): Initialize deferred_global_decls.
6067         * Makefile.in: Update dependencies of sdbout.o.
6068         * dwarf2out.c (dwarf2out_type_decl): New function.
6069         (dwarf2_debug_hooks): Update.
6070         * vmsdbgout.c (vmsdbg_debug_hooks): Update.
6071         * c-decl.c (getdecls): Just return 0.
6072         (check_for_loop_decls): Don't use getdecls.
6073         (record_builtin_type): Call debug_hooks->type_decl on the TYPE_DECL.
6074         * c-objc-common.c (c_objc_common_finish_file): Don't use getdecls.
6075
6076 2004-02-12  Ulrich Weigand  <uweigand@de.ibm.com>
6077
6078         * config/s390/s390.c (s390_sched_reorder2): Remove.
6079         (TARGET_SCHED_REORDER2): Do not redefine.
6080
6081 2004-02-12  Zack Weinberg  <zack@codesourcery.com>
6082
6083         * c-parse.in (maybe_type_qual): Delete.
6084         (maybe_volatile, simple_asm_expr, asmdef, asm_stmt)
6085         (asm_argument): New grammar rules.
6086         (extdef_1): Use asmdef.
6087         (maybeasm): Move down with other asm rules; use simple_asm_expr.
6088         (xexpr): Move up with other expression rules.
6089         (stmt): Use asm_stmt.
6090
6091         * c-typeck.c (build_asm_expr): New function - body mostly
6092         pulled from build_asm_stmt.
6093         (build_asm_stmt): Just handle tacking on the volatile qualifier.
6094         * c-tree.h (build_asm_expr, build_asm_stmt): Update prototypes.
6095
6096 2004-02-12  Richard Sandiford  <rsandifo@redhat.com>
6097
6098         PR bootstrap/13617
6099         * config/mips/mips-protos.h (mips_output_aligned_decl_common): Declare.
6100         (mips_declare_object): Make variadic.
6101         * config/mips/mips.h (ASM_OUTPUT_ALIGNED_DECL_COMMON): Use
6102         mips_output_aligned_decl_common.
6103         * config/mips/mips.c (mips_output_aligned_decl_common): New function.
6104         (mips_declare_object): Make variadic.
6105
6106 2004-02-12  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
6107
6108         * function.c (update_epilogue_consts): Teach about binary operations.
6109
6110         * emit-rtl.c (set_mem_attributes_minus_bitpos): Don't kill
6111         previous MEM_VOLATILE in REF.
6112         * function.c (fixup_var_refs): Save volatile_ok and set to 1.
6113         * expr.c (emit_block_move_via_movstr): Save and restore volatile_ok.
6114
6115 2004-02-12  Gunther Nikl  <gni@gecko.de>
6116
6117         * config.gcc: Restore support for m68k-openbsd.
6118
6119 2004-02-12  Jan Hubicka  <jh@suse.cz>
6120
6121         * tree-optimize.c (tree_rest_of_compilation): Do not release
6122         DECL_ARGUMENTS.
6123
6124 2004-02-11  Matt Kraai  <kraai@alumni.cmu.edu>
6125
6126         * doc/install.texi: Fix the spelling of "explicitly".
6127
6128 2004-02-11  Eric Christopher  <echristo@redhat.com>
6129
6130         * cppcharset.c (_cpp_interpret_string_notranslate): Rename and
6131         duplicate argument structure of cpp_interpret_string.
6132         * cpphash.h: Move prototype...
6133         * cpplib.h: Here.
6134         * cpplib.c: Fix calls to match new function signature.
6135
6136 2004-02-11  Joseph S. Myers  <jsm@polyomino.org.uk>
6137
6138         PR c/456
6139         * cppexp.c (num_binary_op): Don't allow comma operators in #if
6140         constant expressions at all outside C99 mode if pedantic.
6141
6142 2004-02-11  Uros Bizjak  <uros@kss-loka.si>
6143
6144         * optabs.h (enum optab_index): Add new OTI_log10 and OTI_log2.
6145         (log10_optab, log2_optab): Define corresponding macros.
6146         * optabs.c (init_optabs): Initialize log10_optab and log2_optab.
6147         * genopinit.c (optabs): Implement log10_optab and log2_optab
6148         using log10?f2 and log2?f2 patterns.
6149         * builtins.c (expand_builtin_mathfn): Handle BUILT_IN_LOG10{,F,L}
6150         using log10_optab, and BUILT_IN_LOG2{,F,L} using log2_optab.
6151         (expand_builtin): Expand BUILT_IN_LOG10{,F,L} and BUILT_IN_LOG2{,F,L}
6152         using expand_builtin_mathfn if flag_unsafe_math_optimizations is set.
6153
6154         * config/i386/i386.md (log10sf2, log10df2, log10xf2, log2sf2,
6155         log2df2, log2xf2): New patterns to implement log10, log10f, log10l,
6156         log2, log2f and log2l built-ins as inline x87 intrinsics.
6157
6158 2004-02-11  Richard Henderson  <rth@redhat.com>
6159
6160         PR target/1532
6161         * flow.c (insn_dead_p): A clobber of a dead hard register is a
6162         dead insn after reload.
6163
6164 2004-02-11  Ulrich Weigand  <uweigand@de.ibm.com>
6165
6166         * tree.h (frame_base_decl): Add GTY marker.
6167         * var-tracking.c (frame_base_decl): Likewise.
6168
6169 2004-02-11  Daniel Berlin  <dberlin@dberlin.org>
6170
6171         * dwarf2out.c (output_loc_list): Remove no longer necessary, and now
6172         incorrect, hunk.
6173         (add_location_or_const_value_attribute): Use text_section_label,
6174         not TEXT_SECTION_NAME.
6175
6176 2004-02-11  Per Bothner  <per@bothner.com>
6177
6178         Represent column numbers using line-map's source_location.
6179         The "next available source_location" is now managed internally by
6180         line-maps.c rather than by clients.
6181         * line-map.h (struct line_map):  New field column_bits.
6182         <from_line>:  Rename field to start_location.
6183         (struct line_maps):  New fields highest_location and max_column_hint.
6184         (linemap_check_files_exited):  New declaration.
6185         (linemap_line_start):  New declaration.
6186         (linemap_add):  Remove from_line parameter; use highest_location field.
6187         (SOURCE_LINE, LAST_SOURCE_LINE):  Modify to use column_bits.
6188         (SOURCE_COLUMN, LAST_SOURCE_LINE_LOCATION):  New macros.
6189         (CURRENT_LINE_MAP):  Remove macro.
6190         (linemap_position_for_column):  New inline function.
6191         * line-map.c (linemap_init):  Clear new fields.
6192         (linemap_check_files_exited):  New function, extracted from ...
6193         (linemap_free):  Use linemap_check_files_exited.
6194         (linemap_add):  Remove from_line parameter.  Various updates.
6195         (linemap_line_start):  New function.
6196         (linemap_lookeup):  Update for new field names.
6197         * cpphash.h (struct cpp_reader) <map>:  Field removed.  Because
6198         linemap_position_for_column may unpredictably change the current map,
6199         it is cleaner and simpler for us to not cache it in cpp_reader.
6200         (struct cpp_buffer):  New sysp field.
6201         Changed warned_cplusplus_comments and from_stage3 to bitfields.
6202         * cppinit.c (cpp_read_min_file):  pfile->map no longer exists.
6203         * cpplib.c (do_line, do_linemarker, _cpp_do_file_change):  Get
6204         current map using linemap_lookup.
6205         (do_linemarker):  Also set buffer's sysp field.
6206         (destringize_and_run):  No longer need to decrement current line.
6207         * cppfiles.c (_cpp_stack_file):  Set sysp from and in buffer.
6208         (search_path_head, open_file_failed):  Use buffer's sysp.
6209         (cpp_make_system_header):  Get current map using linemap_lookup.
6210         Also set buffer's sysp flag.
6211         * cppmacro.c (_cpp_builtin_macro_text):  Likewise use linemap_lookup.
6212         * cpphash.h (CPP_INCREMENT_LINE):  New macro.
6213         (struct cpp_buffer):  Moved fields saved_cur, saved_rlimit to ...
6214         (struct cpp_reader):  ... and adding saved_line_base field.
6215         * cpptrad.c (_cpp_overlay_buffer, _cpp_remove_overlay):
6216         Update accordingly.  Don't adjust line.
6217         (_cpp_scan_out_logical_line):  Use CPP_INCREMENT_LINE.
6218         * cpphash.c (CPP_IN_SYSTEM_HEADER):  Replaced macro by ...
6219         (cpp_in_system_header):  ... new inline function, using buffer's sysp.
6220         * cpperror.c (_cpp_begin_message):  Update to use cpp_in_system_header.
6221         * cpplex.c (_cpp_lex_direct):  Likewise.
6222         * cppmacro.c (_cpp_builtin_macro_text):  Likewise.
6223         * cppmacro.c (_cpp_create_definition):  Use buffer's sysp field.
6224         * cpplib.h (struct cpp_token):  Rename line field to src_loc.
6225         Remove col field as it is now subsumed by src_loc.
6226         * cpperror.c:  Update various field, parameter, and macro names.
6227         (print_location):  If col==0, try SOURCE_COLUMN of line.
6228         (cpp_error):  Use cur_token's src_loc field, rather than line+col.
6229         * cpplib.c (do_diagnostic):  Token's src_loc fields replaces line+col.
6230         * cpplex.c (_cpp_process_line_notes, _cpp_lex_direct,
6231         _cpp_skip_block_comment):  Use CPP_INCREMENT_LINE.
6232         (_cpp_temp_token):  Replace cpp_token's line+col fields by src_loc.
6233         (_cpp_get_fresh_line):  Don't need to adjust line for missing newline.
6234         (_cpp_lex_direct):  Use linemap_position_for_column.
6235         * c-ppoutput.c (maybe_print_line, print_line):  Don't take map
6236         parameter.  Instead get it from the line_table global.  Adjust callers.
6237         (print):  Remove map field.  Replace line field to src_line.
6238         (init_pp_output, account_for_newlines, maybe_print_line):  Adjust.
6239         (cb_line_change):  Use SOURCE_COLUMN.  Minor optimizations.
6240         (pp_file_change):  Use MAIN_FILE_P since we cannot checked print.map.
6241         Use LAST_SOURCE_LINE_LOCATION to "catch up" after #include.
6242         * cpptrad.c (copy_comment):  Rename variable.
6243         * c-lex.c (map):  Remove static variable, for same reason we removed
6244         cpp_reader's map field.
6245         (cb_line_change, cb_def_pragma, cb_define, cb_undef):  Hence we need
6246         to call linemap_lookup.
6247         (cb_line_change):  Token's line field replaced by src_loc.
6248         (fe_file_change):  Use MAINFILE_P and LAST_SOURCE_LINE macros.
6249         Don't save new_map.
6250
6251         * cpphash.h, cpperror.c, cpplib.h:  Some renames of fileline to
6252         source_location.
6253
6254 2004-02-11  Hartmut Penner  <hpenner@de.ibm.com>
6255
6256         * config/rs6000/altivec.md (*movv4si_internal): At least one
6257         operand must be register_operand.
6258         (*movv8hi_internal1): Likewise.
6259         (*movv16qi_internal1): Likewise.
6260         (*movv4sf_internal1): Likewise.
6261
6262 2004-02-10  Aldy Hernandez  <aldyh@redhat.com>
6263
6264         * config/rs6000/spe.md ("*movv2si_internal"): Check for register
6265         operand.
6266         (movv4hi_internal): Same.
6267         (movv2sf_internal): Same.
6268         (movv1di_internal): Same.
6269
6270 2004-02-11  Thiemo Seufer  <seufer@csv.ica.uni-stuttgart.de>
6271
6272         * config/mips/mips.h (TARGET_OLDABI): Define. Use TARGET_NEWABI and
6273         TARGET_OLDABI consistently.
6274         * config/mips/mips.c (function_arg,mips_setup_incoming_varargs,
6275         mips_va_arg,override_options,compute_frame_size,
6276         mips_initial_elimination_offset,mips16_fp_args,build_mips16_call_stub
6277         ,mips_return_in_memory,mips_strict_argument_naming): Use TARGET_NEWABI
6278         and TARGET_OLDABI consistently.
6279         * config/mips/mips.md (exception_receiver): Likewise.
6280         * config/mips/linux64.h: Likewise.
6281
6282 2004-02-11  Hartmut Penner  <hpenner@de.ibm.com>
6283
6284         * gcc/config/rs6000/rs6000.c (rs6000_override_options)
6285         Set AltiVec ABI and vrsave as default for ppc64 linux.
6286         (init_cumulative_args): Post error, if try to return
6287         value in AltiVec register without enable AltiVec.
6288         (function_arg_advance): Ditto for passing arguments.
6289
6290 2004-02-11  Richard Sandiford  <rsandifo@redhat.com>
6291
6292         * emit-rtl.c (mark_label_nuses): Check that a LABEL_REF refers to
6293         a label before updating its usage count.
6294
6295 2004-02-10  Matt Kraai  <kraai@alumni.cmu.edu>
6296
6297         * doc/install.texi: Remove extra cd.
6298
6299 2004-02-10  Ziemowit Laski  <zlaski@apple.com>
6300
6301         * c-common.c (vector_size_helper): Remove; call
6302         reconstruct_complex_type() instead.
6303         * tree.c (reconstruct_complex_type): New function
6304         (formerly vector_size_helper() in c-common.c).
6305         (make_vector): Make externally visible.
6306         * tree.h (reconstruct_complex_type, make_vector): Add prototypes.
6307
6308 2004-02-10  Kazu Hirata  <kazu@cs.umass.edu>
6309
6310         * config/h8300/h8300-protos.h: Add a prototype for
6311         h8300_regs_ok_for_stm.
6312         * config/h8300/h8300.c (h8300_regs_ok_for_stm): New.
6313         * config/h8300/h8300.md (stm_h8300s_2_advanced,
6314         stm_h8300s_2_normal, stm_h8300s_2, stm_h8300s_3_advanced,
6315         stm_h8300s_3_normal, stm_h8300s_3, stm_h8300s_4_advanced,
6316         stm_h8300s_4_normal, stm_h8300s_4, ldm_h8300s_2_advanced,
6317         ldm_h8300s_2_normal, ldm_h8300s_2, ldm_h8300s_3_advanced,
6318         ldm_h8300s_3_normal, ldm_h8300s_3, ldm_h8300s_4_advanced,
6319         ldm_h8300s_4_normal, ldm_h8300s_4): Use
6320         h8300_regs_ok_for_stm().
6321
6322 2004-02-10  Danny Smith  <dannysmith@users.sourceforge.net>
6323
6324         PR c/14088
6325         * real.c (real_from_string): Look for 'X' as well as 'x' in
6326         hexfloat strings.
6327
6328 2004-02-10  Kazu Hirata  <kazu@cs.umass.edu>
6329
6330         * config/h8300/h8300.md: Remove an incorrect comment about
6331         peephole2.  Add comments.
6332
6333 2004-02-10  Josef Zlomek  <zlomekj@suse.cz>
6334
6335         PR/14058
6336         * emit-rtl.c (set_decl_incoming_rtl): New.
6337         * tree.h (set_decl_incoming_rtl): New.
6338         * function.c (assign_parms): Use set_decl_incoming_rtl for setting
6339         DECL_INCOMING_RTL.
6340         * ada/misc.c (adjust_decl_rtl): Likewise.
6341
6342 2004-02-10  Per Bothner  <per@bothner.com>
6343
6344         * c-opts.c (c_common_post_options):   Don't emit working directory
6345         in cpp output if -P was specified.
6346
6347 2004-02-10  Paolo Bonzini  <bonzini@gnu.org>
6348
6349         PR c/14092
6350         * fold-const.c (fold) <NEGATE_EXPR>: Convert result of
6351         negate_expr back to the original type.
6352
6353 2004-02-10  Alan Modra  <amodra@bigpond.net.au>
6354
6355         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Don't
6356         bump retaddr here.
6357
6358 2004-02-10  Paolo Bonzini  <bonzini@gnu.org>
6359
6360         * rtl.h (schedule_insns, schedule_ebbs, fix_sched_param,
6361         gen_lowpart_SUBREG): Move under the file in which they
6362         are actually declared.
6363
6364 2004-02-10  Arnaud Charlet  <charlet@act-europe.fr>
6365
6366         * doc/sourcebuild.texi: Add libada documentation.
6367
6368         * doc/install.texi: Update documentation on Ada build, now
6369         that the GNAT lib and tools are built automatically.
6370
6371 2004-02-10  Richard Sandiford  <rsandifo@redhat.com>
6372
6373         * config/mips/mips.h (TARGET_GPWORD): Return false for TARGET_NEWABI
6374         && TARGET_IRIX.
6375
6376 2004-02-09  Ziemowit Laski  <zlaski@apple.com>
6377
6378         * objc/objc-act.c (get_super_receiver): Move '#ifdef OBJCPLUS'
6379         boundaries outside build_component_ref() call (a macro in ObjC++).
6380
6381 2004-02-09  Bob Wilson  <bob.wilson@acm.org>
6382
6383         * config/xtensa/xtensa-protos.h (xtensa_copy_incoming_a7): Update.
6384         (init_cumulative_args): Likewise.
6385         (a7_overlap_mentioned_p): Delete prototype.
6386         * config/xtensa/xtensa.c (struct machine_function): Replace
6387         incoming_a7_copied field with need_a7_copy and vararg_a7 flags.
6388         Add set_frame_ptr_insn field.
6389         (xtensa_emit_move_sequence): Update call to xtensa_copy_incoming_a7.
6390         (xtensa_copy_incoming_a7): Rewrite to check need_a7_copy flag and check
6391         if the operand is an argument in a7.  If so, copy a7 to a new pseudo
6392         at the function entry and replace the operand with the pseudo.
6393         (init_cumulative_args): Remove unused arguments.  Add new "incoming"
6394         argument and record this flag in CUMULATIVE_ARGS.
6395         (function_arg): Remove result_mode and special-case code to handle
6396         arguments in a7.  Instead, set need_a7_copy flag when there is an
6397         incoming argument in a7.
6398         (xtensa_expand_prologue): Remove code to search for set_frame_ptr insn
6399         and use the value recorded in cfun->machine->set_frame_ptr_insn.
6400         (xtensa_builtin_saveregs): Check for negative gp_left value.  Set
6401         need_a7_copy and vararg_a7 flags.  Use move_block_from_reg instead of
6402         special-case code.
6403         (a7_overlap_mentioned_p): Delete.
6404         * config/xtensa/xtensa.h (CUMULATIVE_ARGS): Add "incoming" flag.
6405         (INIT_CUMULATIVE_ARGS, INIT_CUMULATIVE_INCOMING_ARGS): Remove useless
6406         arguments to init_cumulative_args and pass "incoming" flag instead.
6407         (BLOCK_REG_PADDING): Delete.
6408         * config/xtensa/xtensa.md (movdi, movsf, movdf): Remove unnecessary
6409         checks for reload_in_progress and reload_completed.  Update calls to
6410         xtensa_copy_incoming_a7.
6411         (ashlsi3): Rename existing insn to ashlsi3_internal.  Add expander
6412         to call xtensa_copy_incoming_a7.
6413
6414 2004-02-09  DJ Delorie  <dj@redhat.com>
6415
6416         * config/i386/xm-djgpp.h (GCC_DRIVER_HOST_INITIALIZATION): No
6417         longer modify standard_exec_prefix, standard_bindir_prefix, or
6418         standard_startfile_prefix.
6419
6420 2004-02-09  James E Wilson  <wilson@specifixinc.com>
6421
6422         PR c++/11295
6423         * c-common.c (c_expand_expr, case STMT_EXPR): Change expand_expr call
6424         to expand_expr_real call, and pass in alt_rtl as last argument.
6425
6426         PR libstdc++/5625
6427         * builtin-types.def (BT_WORD, BT_FN_WORD_PTR): New.
6428         * builtins.c (expand_builtin): Handle BUILT_IN_EXTEND_POINTER.
6429         * builtins.def (BUILT_IN_EXTEND_POINTER): New.
6430         * except.c (expand_builtin_extend_pointer): New.
6431         * except.h (expand_builtin_extend_pointer): Declare.
6432
6433 2004-02-09  David Edelsohn  <edelsohn@gnu.org>
6434
6435         * config/rs6000/rs6000.c (rs6000_emit_move): Remove splitting slow
6436         unaligned loads and stores.
6437
6438 2004-02-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6439
6440         * config/mips/iris5.h (BSS_SECTION_ASM_OP): Define.
6441         * config/mips/iris6.h (BSS_SECTION_ASM_OP): Undef.
6442
6443         * config/mips/iris6.h (TARGET_ASM_NAMED_SECTION): Moved ...
6444         * config/mips/iris5.h: ... here.
6445         * config/mips/iris5gas.h (TARGET_ASM_NAMED_SECTION): Remove.
6446
6447         * config/mips/iris6.h (EXTRA_SECTION_FUNCTIONS): Move ...
6448         * config/mips/iris5.h: ... here.
6449
6450 2004-02-09  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
6451
6452         * configure.ac: Remove default executable files before AC_PROG_CC.
6453         * configure: Regenerate.
6454
6455 2004-02-09  Kazu Hirata  <kazu@cs.umass.edu>
6456
6457         PR target/13721
6458         * config/h8300/h8300.c (byte_reg): Call abort() if asked to
6459         print a operand other than a register.
6460
6461 2004-02-09  Roger Sayle  <roger@eyesopen.com>
6462
6463         * fold-const.c (fold) <NOP_EXPR>: Use the original type conversion
6464         tree code rather than call fold_convert, which doesn't specify a
6465         default floating point to integer conversion.
6466
6467 2004-02-08  Bernardo Innocenti  <bernie@develer.com>
6468
6469         * config/m68k/m68k.c, config/m68k/m68k.md (SGS, SGS_CMP_ORDER): Remove
6470         code to support SGS assembler.  Reformat adjacent code where possible.
6471         * config/m68k/m68k.c (switch_table_difference_label_flag): Remove
6472         definition.
6473         * config/m68k/m68k.h (PRINT_OPERAND_PUNCT_VALID_P): Remove support
6474         for '%#'.
6475         * config/m68k/linux.h, config/m68k/m68k.c,
6476         * config/m68k/math-68881.h: Replace `%#' with `#' in inline asm
6477         macros and asm_printf() format strings.
6478         * config/m68k/m68kelf.h (ASM_OUTPUT_CASE_END): Remove macro definition.
6479         * config/m68k/linux.h: Update copyright.
6480         * config/m68k/linux.h, config/m68k/m68k.c: Remove traling whitespace.
6481
6482 2004-02-08  Andreas Schwab  <schwab@suse.de>
6483             Bernardo Innocenti  <bernie@develer.com>
6484
6485         * config/m68k/m68k.h (REGISTER_NAMES): Prefix each name with
6486         REGISTER_PREFIX.
6487         * (M68K_FP_REG_NAME): New macro to specify an alternate name for the
6488         frame pointer register, overridable by OS targets.
6489         * (M68K_REGNAME): Macro to obtain register name for asm output,
6490         eventually replacing %a6 with M68K_FP_REG_NAME.
6491         * config/m68k/coff.h (REGISTER_NAMES): Don't redefine.
6492         * config/m68k/linux.h (REGISTER_NAMES): Likewise.
6493         * config/m68k/m68kelf.h (REGISTER_NAMES): Likewise.
6494         * config/m68k/netbsd-elf.h (REGISTER_NAMES): Likewise.
6495         * config/m68k/m68k.c: Use M68K_REGNAME(x) in place of reg_names[x].
6496
6497 2004-02-08  Kazu Hirata  <kazu@cs.umass.edu>
6498
6499         * target-def.h (TARGET_STRUCT_VALUE_RTX): Define as
6500         hook_rtx_tree_int_null.
6501         * targhooks.c (default_struct_value_rtx): Remove.
6502         * targhooks.h: Remove the prototype for
6503         default_struct_value_rtx.
6504         * config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
6505         config/fr30/fr30.c, config/h8300/h8300.c, config/i386/i386.c,
6506         config/ip2k/ip2k.c, config/iq2000/iq2000.c,
6507         config/m32r/m32r.c, config/mcore/mcore.c, config/mips/mips.c,
6508         config/mn10300/mn10300.c, config/pdp11/pdp11.c,
6509         config/rs6000/rs6000.c, config/s390/s390.c,
6510         config/stormy16/stormy16.c, config/v850/v850.c,
6511         config/xtensa/xtensa.c (TARGET_STRUCT_VALUE_RTX): Remove.
6512         * doc/tm.texi (TARGET_STRUCT_VALUE_RTX): Document the default.
6513
6514 2004-02-08  Joseph S. Myers  <jsm@polyomino.org.uk>
6515
6516         * README.Portability: Change "ISO C89" to "ISO C90".
6517         * c-parse.in (primary, initelt): Likewise.
6518
6519 2004-02-08  Richard Sandiford  <rsandifo@redhat.com>
6520
6521         * real.c (encode_ibm_extended): Normalize the input value before
6522         converting it to a double.  Handle the case where a normal value
6523         rounds to infinity.
6524
6525 2004-02-08  Kazu Hirata  <kazu@cs.umass.edu>
6526
6527         * c-objc-common.c (c_cannot_inline_tree_fn): Fix a typo in a
6528         warning.
6529         * cse.c (preferrable): Change to preferable. Update all of its
6530         callers.
6531         * genautomata.c (ainsn): Change
6532         first_ainsn_with_given_equialence_num to
6533         first_ainsn_with_given_equivalence_num.  Update all of its
6534         references.
6535
6536 2004-02-08  Jan Hubicka  <jh@suse.cz>
6537
6538         * schedule-ebb.c (schedule_ebbs): Do not allocate reg life data.
6539
6540 2004-02-07  David Edelsohn  <edelsohn@gnu.org>
6541
6542         * function.c (assign_parms): Fix formatting.
6543
6544 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6545
6546         * default.h (PROMOTE_PROTOTYPES): Remove.
6547         * system.h (PROMOTE_FUNCTION_RETURN, PROMOTE_PROTOTYPES,
6548         STRUCT_VALUE_REGNUM, SETUP_INCOMING_VARARGS,
6549         EXPAND_BUILTIN_SAVEREGS): Poison.
6550         * target-def.h (TARGET_PROMOTE_FUNCTION_RETURN): Define as
6551         hook_bool_tree_false.
6552         (TARGET_PROMOTE_PROTOTYPES): Likewise.
6553         * target.h: Replace SETUP_INCOMING_VARARGS with
6554         targetm.calls.setup_incoming_varargs().
6555         * targhooks.c (default_promote_function_return): Remove.
6556         (default_promote_prototypes): Likewise.
6557         (default_struct_value_rtx): Always abort().
6558         (default_expand_builtin_saveregs): Always print an error
6559         message.
6560         (default_setup_incoming_varargs): Do nothing.
6561         (default_pretend_outgoing_varargs_named): Don't depend on
6562         SETUP_INCOMING_VARARGS.
6563         * targhooks.h: Remove the prototype for
6564         default_promote_function_return and
6565         default_promote_prototypes.
6566
6567 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6568
6569         * system.h (SHARED_SECTION_ASM_OP): Poison.
6570         * varasm.c (data_section): Don't use SHARED_SECTION_ASM_OP.
6571         * doc/tm.texi (SHARED_SECTION_ASM_OP): Remove.
6572
6573 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6574
6575         Bug 13856
6576         * c-decl.c (diagnose_mismatched_decls): Only give special
6577         treatment when olddecl is DECL_BUILT_IN, if C_DECL_INVISIBLE
6578         is also true.
6579         (merge_decls): Don't clear DECL_BUILT_IN_CLASS and
6580         DECL_FUNCTION_CODE when defining a built-in function.
6581         Don't update DECL_ESTIMATED_INSNS.
6582         * dwarf2out.c (dwarf2out_decl): Don't ignore built-in
6583         FUNCTION_DECLs.
6584         * tree.h: Delete DECL_ESTIMATED_INSNS.
6585         * tree-inline.c (struct inline_data): Delete inlined_insns field.
6586         (expand_call_inline, optimize_inline_calls): Don't update
6587         DECL_ESTIMATED_INSNS nor inlined_insns.
6588         * cgraphunit.c (cgraph_analyze_function): Don't update
6589         DECL_ESTIMATED_INSNS.
6590
6591 2004-02-07  Zack Weinberg  <zack@codesourcery.com>
6592
6593         * c-common.c (shadow_warning): Delete.
6594         * c-common.h (free_parser_stacks, shadow_warning, sw_kind): Delete.
6595         * c-decl.c (warn_if_shadowing): Issue shadow warnings directly.
6596         * c-opts.c (c_common_parse_file): Don't call free_parser_stacks.
6597         * c-parse.in (free_parser_stacks): Delete.
6598
6599 2004-02-07  Nathanael Nerode  <neroden@gcc.gnu.org>
6600
6601         * Makefile.in, config/t-slibgcc-darwin, config/t-slibgcc-elf-ver,
6602         config/t-slibgcc-sld, config/mips/t-iris5-6, config/sh/t-linux:
6603         Use the top level mkinstalldirs, not the one in the gcc subdir.
6604         * mkinstalldirs: Remove (from the gcc subdir).
6605
6606 2004-02-07  Roger Sayle  <roger@eyesopen.com>
6607
6608         PR middle-end/13696
6609         * fold-const.c (fold_convert): New function to provide type
6610         conversion to the middle-end without using convert.
6611         (negate_expr, associate_trees, size_diffop, omit_one_operand,
6612         operand_equal_for_comparison_p, pedantic_omit_one_operand,
6613         invert_truthvalue, optimize_bit_field_compare, range_binop,
6614         decode_field_reference, make_range, build_range_check, unextend,
6615         fold_truthop, extract_muldiv_1, fold_mathfn_compare,
6616         fold_binary_op_with_conditional_arg, fold_inf_compare,
6617         fold_single_bit_test, fold, multiple_of_p): Replace all calls to
6618         convert with calls to fold_convert.
6619
6620 2004-02-07  Jan Hubicka  <jh@suse.cz>
6621
6622         * genrecog.c (find_operand): add extra argument stop.
6623         (validate_pattern): Verify that mach_dup is duplicating operand
6624         defined lexically earlier.
6625
6626 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6627
6628         * config.gcc: Don't mention MAX_LONG_TYPE_SIZE.
6629         * system.h (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
6630         MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Poison.
6631         * config/avr/avr.h, config/h8300/h8300.h, config/i386/i386.h,
6632         config/ia64/ia64.h, config/ip2k/ip2k.h,
6633         config/iq2000/iq2000.h, config/mips/iris5.h,
6634         config/mips/mips.h, config/pa/pa-64.h, config/pa/pa.h,
6635         config/rs6000/aix51.h, config/rs6000/aix52.h,
6636         config/rs6000/darwin.h, config/rs6000/rs6000.h,
6637         config/s390/s390.h, config/sh/sh.h, config/sparc/freebsd.h,
6638         config/sparc/linux.h, config/sparc/linux64.h,
6639         config/sparc/netbsd-elf.h, config/sparc/sparc.h,
6640         config/xtensa/xtensa.h: Remove the definitions of
6641         MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE, and/or
6642         MAX_WCHAR_TYPE_SIZE.
6643         * doc/tm.texi (MAX_LONG_TYPE_SIZE, MAX_LONG_DOUBLE_TYPE_SIZE,
6644         MAX_WCHAR_TYPE_SIZE, GCOV_TYPE_SIZE): Remove.
6645
6646 2004-02-07  Stephane Carrez  <stcarrez@nerim.fr>
6647
6648         PR bootstrap/13990
6649         * config/m68hc11/m68hc11.md ("doloop_end"): Pass dummy arguments to
6650         gen_rtx_NE.
6651
6652 2004-02-07  Josef Zlomek  <zlomekj@suse.cz>
6653
6654         * var-tracking.c (vt_add_function_parameters): Surround checkings by
6655         #ifdef ENABLE_CHECKING and #endif.
6656
6657 2004-02-07  Roger Sayle  <roger@eyesopen.com>
6658
6659         * fold-const.c (negate_expr_p, negate_expr): Optimize -(A+B) into
6660         either (-A)-B or (-B)-A, if A or B is easily negated respectively.
6661         (fold) <MINUS_EXPR>: Optimize (A*C) - (B*C) -> (A-B)*C for both
6662         integer types and floating point with unsafe_math_optimizations.
6663         Add similar optimization for (A*C1) - (A*C2) -> A*(C1-C2).
6664         Optimize A - B as A + (-B), if B is easily negated.
6665
6666 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6667
6668         * c-ppoutput.c, cfganal.c, diagnostic.h, print-rtl.c,
6669         config/darwin.c, config/darwin.h, config/ia64/ia64-c.c,
6670         config/m32r/linux.h, config/rs6000/ppc64-fp.c,
6671         config/sparc/openbsd.h, doc/makefile.texi, doc/passes.texi:
6672         Update copyright.
6673
6674 2004-02-07  Kazu Hirata  <kazu@cs.umass.edu>
6675
6676         * c-ppoutput.c, var-tracking.c: Fix comment typos.
6677
6678 2004-02-06  James E Wilson  <wilson@specifixinc.com>
6679
6680         * config/ia64/linux.h (MD_FALLBACK_FRAME_STATE_FOR): Only define for
6681         glibc 2.3 or better.
6682
6683 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6684
6685         * doc/tm.texi (TARGET_FLOAT_LIB_COMPARE_RETURNS_BOOL): Change
6686         to FLOAT_LIB_COMPARE_RETURNS_BOOL.
6687
6688 2004-02-07  Alan Modra  <amodra@bigpond.net.au>
6689
6690         * config/rs6000/t-linux64 (LIB2FUNCS_EXTRA): Add darwin-ldouble.c.
6691         (SHLIB_MAPFILES): Add libgcc-ppc64.ver.
6692         (SHLIB_MKMAP_OPTS): Delete.
6693         (TARGET_LIBGCC2_CFLAGS): Add -specs.
6694         (bispecs): Add rule.
6695         * config/rs6000/libgcc-ppc64.ver: New file.
6696         * config/rs6000/ppc64-fp.c (__fixtfdi, __floatditf): New functions.
6697         (__floatdidf, __floatdisf): Optimize multiply.
6698         (__fixunstfdi): New function.
6699         * config/rs6000/rs6000.c (rs6000_complex_function_value): Allow for
6700         real and imag parts larger than one register.
6701         (function_arg): Correct type of reg used when fp arg split partially
6702         to stack.
6703         * config/rs6000/darwin-ldouble.c: Protect with #if !_SOFT_FLOAT
6704         and __MACH__ or __powerpc64__.
6705
6706 2004-02-06  Roger Sayle  <roger@eyesopen.com>
6707             Ulrich Weigand  <uweigand@de.ibm.com>
6708
6709         * builtins.c (expand_builtin_signbit): Use extract_bit_field instead
6710         of gen_highpart or gen_lowpart when the floating point format is
6711         wider than the result mode.
6712
6713 2004-02-06  Andrew Pinski  <pinskia@physics.uc.edu>
6714
6715         * dwarf2out.c (loclabel_num): Move into #ifdef
6716         DWARF2_DEBUGGING_INFO.
6717
6718 2004-02-06  Ziemowit Laski  <zlaski@apple.com>
6719
6720         * objc/objc-act.c (build_super_template) the 'class' field of
6721         'struct _objc_super' shall be named 'super_class' #ifdef OBJCPLUS.
6722         (get_super_receiver): Likewise.
6723
6724 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6725
6726         * reload1.c (check_eliminable_occurrences): Optimize the reset
6727         of can_eliminate.
6728         (eliminate_regs_in_insn): Likewise.
6729
6730 2004-02-06  Daniel Berlin <dberlin@dberlin.org>
6731             Josef Zlomek  <zlomekj@suse.cz>
6732
6733         * dwarf2out.c (struct gcc_debug_hooks): Call dwarf2out_begin_function
6734         at the beginning of function, call dwarf2out_var_location for
6735         NOTE_INSN_VAR_LOCATION note.
6736         (struct var_loc_node, struct var_loc_list_def, loclabel_num,
6737         decl_loc_table): New.
6738         (lookup_decl_loc): New function.
6739         (add_var_loc_to_decl): New function.
6740         (based_loc_descr): Added parameter can_use_fbreg, DW_OP_fbreg is used
6741         only if can_use_fbreg.
6742         (mem_loc_descriptor): Added parameter can_use_fbreg, pass it to other
6743         functions.
6744         (loc_descriptor): Likewise. Process VAR_LOCATION.
6745         (concat_loc_descriptor): Call loc_descriptor with can_use_fbreg == true.
6746         (loc_descriptor_from_tree): Call mem_loc_descriptor with
6747         can_use_fbreg == true.
6748         (add_location_or_const_value_attribute): Added parameter enum
6749         dwarf_attribute attr, generate attribute ATTR.  Create the location list.
6750         (add_bound_info): Call loc_descriptor with can_use_fbreg == true.
6751         (gen_formal_parameter_die): Call add_location_or_const_value_attribute
6752         with attr == DW_AT_location.
6753         (gen_subprogram_die): Generate the location list for DW_AT_frame_base
6754         if frame_base_decl is defined and has a location list.
6755         (gen_variable_die): Call add_location_or_const_value_attribute with
6756         attr == DW_AT_location.
6757         (dwarf2out_var_location): New function.
6758         (dwarf2out_begin_function): New function.
6759         (dwarf2out_init): Create decl_loc_table.
6760
6761 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
6762
6763         * loop.c (force_movables): Transitively increase the priorities of
6764         all insns forces by an insn, not just the first one.
6765
6766 2004-02-06  Josef Zlomek  <zlomekj@suse.cz>
6767             Daniel Berlin <dberlin@dberlin.org>
6768
6769         Josef Zlomek  <zlomekj@suse.cz>
6770         * Makefile.in (var-tracking.o): New.
6771         * common.opt (fvar-tracking): New.
6772         * flags.h (flag_var_tracking): New.
6773         * gengtype.c (adjust_field_rtx_def): NOTE_INSN_VAR_LOCATION was added.
6774         * opts.c (common_handle_option): Add OPT_fvar_tracking.
6775         * print-rtl.c (print_rtx): NOTE_INSN_VAR_LOCATION was added.
6776         * rtl.c (note_insn_name): Likewise.
6777         * rtl.def (VAR_LOCATION): New.
6778         * rtl.h (NOTE_VAR_LOCATION): New.
6779         (NOTE_VAR_LOCATION_DECL): New.
6780         (NOTE_VAR_LOCATION_LOC): New.
6781         (enum insn_note): NOTE_INSN_VAR_LOCATION was added.
6782         (variable_tracking_main): New exported function.
6783         * timevar.def (TV_VAR_TRACKING): New.
6784         * toplev.c (enum dump_file_index): Added DFI_vartrack.
6785         (dump_file): "vartrack" was added (-dV).
6786         (flag_var_tracking): New.
6787         (f_options): "var-tracking" was added.
6788         (rest_of_handle_variable_tracking): New function.
6789         (rest_of_compilation): Run variable tracking.
6790         (process_options): If user has not specified flag_var_tracking set it
6791         according to optimize, debug_info_level and debug_hooks.
6792         * tree.h (frame_base_decl): New.
6793         * var-tracking.c: New file.
6794         * config/ia64/ia64.c (ia64_flag_var_tracking): New variable.
6795         (ia64_override_options): Set flags to run variable tracking in machine
6796         dependent reorg instead of toplev.c.
6797         (ia64_reorg): Run variable tracking if wanted.
6798         * doc/invoke.texi: Mention variable tracking in -dV,
6799         add and -fvar-tracking.
6800         * doc/passes.texi: Added variable tracking pass.
6801
6802         Daniel Berlin <dberlin@dberlin.org>
6803         * debug.h (struct gcc_debug_hooks): Added var_location debug hook.
6804         * dbxout.c (dbx_debug_hooks): Likewise.
6805         (xcoff_debug): Likewise.
6806         * debug.c (do_nothing_debug_hooks): Likewise.
6807         * dwarf2out.c (dwarf2_debug_hooks): Likewise.
6808         * dwarfout.c (dwarf_debug_hooks): Likewise.
6809         * sdbout.c (sdb_debug_hooks): Likewise.
6810         * vmsdbgout.c (vmsdbg_debug_hooks): Likewise.
6811         * final.c (final_scan_insn): Call var_location debug hook for each
6812         NOTE_INSN_VAR_LOCATION.
6813
6814 2004-02-06  Jan Hubicka  <jh@suse.cz>
6815
6816         * flow.c (update_life_info): Allocate reg_deaths when called from
6817         scheudler.
6818         (attempt_auto_inc):  Update life ranges accordingly.
6819
6820 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
6821
6822         PR debug/11816
6823         * dwarf2out.c (gen_decl_die): Handle anonymous struct members.
6824
6825 2004-02-06  Ulrich Weigand  <uweigand@de.ibm.com>
6826
6827         * cfganal.c (flow_call_edges_add): Never split a libcall block.
6828
6829 2004-02-06  Daniel Berlin  <dberlin@dberlin.org>
6830
6831         * dwarf2out.c (output_loc_list): Don't use deltas if we have
6832         a separate line info table in use.
6833         Use the correct size for terminators.
6834         (output_die): Use offset, not delta.
6835
6836 2004-02-06  H.J. Lu  <hongjiu.lu@intel.com>
6837
6838         * doc/invoke.texi: Remove the pni option from -mfpmath=.
6839
6840 2004-02-06  Jan Hubicka  <jh@suse.cz>
6841
6842         * recog.c (split_all_insns): Do not update reg info.
6843         * regrename.c (regrename_optimize): Likewise.
6844         * toplev.c (rest_of_handle_reorder_blocks): Likewise.
6845         * flow.c (struct propagate_block_info): Add insn_num field.
6846         (reg_deaths): New array.
6847         (life_analysis): Free reg_deaths info.
6848         (allocate_reg_life_data): Allocate reg_deaths array.
6849         (propagate_one_insn): Use new array.
6850         (init_propagate_block): Initialize it.
6851         (free_propagate_block_info): Finish compuation of
6852         REG_LIVE_LENGTH
6853         (attempt_auto_inc): Sanity check that REG_INFO is not
6854         computed at same time.
6855         (mark_used_regs): Update new array.
6856
6857         * reg-stack.c (subst_stack_regs): Unshare clobbers before
6858         substitution.
6859
6860 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6861
6862         * config/s390/s390.md (*extendsiqi2_short_displ): Change to
6863         *extendqisi2_short_displ.
6864
6865 2004-02-06  Alan Modra  <amodra@bigpond.net.au>
6866
6867         * doc/tm.texi (INIT_CUMULATIVE_ARGS): Update doco.
6868         * calls.c (expand_call): Pass n_named_args to INIT_CUMULATIVE_ARGS.
6869         (emit_library_call_value_1): Likewise pass nargs.
6870         * expr.c (block_move_libcall_safe_for_call_parm): Pass 3 here.
6871         * function.c (assign_parms): Pass -1 to INIT_CUMULATIVE_ARGS.
6872         * config/rs6000/rs6000.c (init_cumulative_args): Use n_named_args
6873         parameter instead of scanning TYPE_ARGS_TYPES to count args.
6874         * config/rs6000/rs6000-protos.h (init_cumulative_args): Update
6875         prototype.
6876         * config/rs6000/rs6000.h (INIT_CUMULATIVE_ARGS): Pass extra arg.
6877         (INIT_CUMULATIVE_INCOMING_ARGS): Set extra arg to 1000.
6878         (INIT_CUMULATIVE_LIBCALL_ARGS): Set extra arg to 0.
6879         * config/sh/sh.c (sh_output_mi_thunk): Pass 1 as n_named_args to
6880         INIT_CUMULATIVE_ARGS.
6881         * config/alpha/alpha.h (INIT_CUMULATIVE_ARGS): Update.
6882         * config/alpha/unicosmk.h, config/alpha/vms.h, config/arc/arc.h,
6883         config/arm/arm.h, config/avr/avr.h, config/c4x/c4x.h,
6884         config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.h,
6885         config/h8300/h8300.h, config/i386/i386.h, config/i860/i860.h,
6886         config/ia64/ia64.h, config/ip2k/ip2k.h, config/iq2000/iq2000.h,
6887         config/iq2000/iq2000.c, config/m32r/m32r.h, config/m68hc11/m68hc11.h,
6888         config/m68k/m68k.h, config/mcore/mcore.h, config/mips/mips.h,
6889         config/mmix/mmix.h, config/mn10300/mn10300.h, config/ns32k/ns32k.h,
6890         config/pa/pa.h, config/pdp11/pdp11.h, config/s390/s390.h,
6891         config/sh/sh.h, config/sparc/sparc.h, config/stormy16/stormy16.h,
6892         config/v850/v850.h, config/vax/vax.h, config/xtensa/xtensa.h: Likewise.
6893
6894 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6895
6896         * genemit.c (gen_exp) [CONST_INT]: Use const_int_rtx whenever
6897         possible.
6898
6899 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6900
6901         * reload1.c (eliminate_regs_in_insn): If a set has a REG_EQUAL
6902         note containing (plus (reg) (const_int)), where reg is an
6903         eliminable reg, then perform the register elimination without
6904         depending on eliminate_regs().
6905
6906 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6907
6908         * config/arc/arc.c (arc_return_in_memory): Check the return
6909         value of int_size_in_bytes against -1.  Don't check
6910         TREE_ADDRESSABLE.
6911         * config/avr/avr.c (avr_return_in_memory): Check the return
6912         value of int_size_in_bytes against -1.
6913         * config/ip2k/ip2k.c (ip2k_return_in_memory): Likewise.
6914         * config/m68hc11/m68hc11.c (m68hc11_return_in_memory):
6915         Likewise.
6916         * config/mcore/mcore.c (mcore_return_in_memory): Likewise.
6917         * config/stormy16/stormy16.c (xstormy16_return_in_memory):
6918         Likewise.
6919
6920 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6921
6922         * config/frv/frv-protos.h: Remove the prototype for
6923         frv_setup_incoming_varargs.
6924         * config/frv/frv.c (TARGET_SETUP_INCOMING_VARARGS): New.
6925         (frv_setup_incoming_varargs): Make it static.
6926         * config/frv/frv.h (SETUP_INCOMING_VARARGS): Remove.
6927
6928 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6929
6930         * config/fr30/fr30-protos.h: Remove the prototype for
6931         fr30_setup_incoming_varargs.
6932         Update the prototypes for fr30_num_arg_regs and
6933         fr30_function_arg_partial_nregs.
6934         * config/fr30/fr30.c (TARGET_STRUCT_VALUE_RTX): New.
6935         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
6936         (fr30_setup_incoming_varargs): Make it static.
6937         Add argument second_time.  Don't do anything when second_time
6938         is nonzero.
6939         (fr30_num_arg_regs): Change the type of the first argument to
6940         enum machine_mode.
6941         (fr30_function_arg_partial_nregs): Change the type of the
6942         second argument to enum machine_mode.
6943         * config/fr30/fr30.h (STRUCT_VALUE): Remove.
6944         (SETUP_INCOMING_VARARGS): Remove.
6945
6946 2004-02-06  Kazu Hirata  <kazu@cs.umass.edu>
6947
6948         * config/arc/arc-protos.h: Remove the prototype for
6949         arc_setup_incoming_varargs.
6950         * config/arc/arc.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
6951         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
6952         (arc_setup_incoming_varargs): Make it static.
6953         (arc_external_libcall): Likewise.
6954         * config/arc/arc.h (SETUP_INCOMING_VARARGS): Remove.
6955         Remove the commented-out definition of
6956         ASM_OUTPUT_EXTERNAL_LIBCALL.
6957
6958 2004-02-05  SUGIOKA Toshinobu  <sugioka@itonet.co.jp>
6959
6960         * config/sh/t-linux (SHLIB_INSTALL): Prepend $$(DESTDIR)
6961         to $$(slibdir) in the installation commands.
6962
6963 2004-02-05  David Edelsohn  <edelsohn@gnu.org>
6964
6965         * reload.c (refers_to_regno_for_reload_p): Index hard_regno_nregs
6966         with inner_regno, not regno.
6967         * rtlanal.c (refers_to_regno_p): Same.
6968
6969 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
6970
6971         * config.gcc: Remove i370 support.
6972
6973 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
6974
6975         * doc/install.texi:  Update automake and autoconf version
6976         requirements.  Note where to find gcj automake version.
6977
6978 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
6979
6980         * Makefile.in (generate-manpages): Move dependencies to ...
6981         (man): here.
6982         * doc/makefile.texi: Document new targets.
6983         * doc/sourcebuild.texi (Make-lang.in): Document new langhooks.
6984
6985 2004-02-05  Kelley Cook  <kcook@gcc.gnu.org>
6986
6987         PR/13485
6988         Makefile.in (srcextra):  Add a level of indirection to ...
6989         (gcc.srcextra): ... here.
6990         (po-generated): Delete.
6991         (po/$(PACKAGE).pot: Use srcextra instead of po-generated.  Depend on
6992         options.c.
6993         (start.encap): Remove superfluous lang.srcextra dependency.
6994         objc/Make-lang.in (po-generated):  Delete.
6995
6996 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
6997
6998         * config/ia64/ia64.c (REG_GP): Remove.
6999
7000 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7001
7002         * config/mips/iris5gas.h (PREFERRED_DEBUGGING_TYPE): Define.
7003
7004 2004-02-05  Devang Patel  <dpatel@apple.com>
7005
7006         * dwarf2out.c (force_type_die): Look up input type itself
7007         instead of root_type() of type.
7008
7009 2004-02-05  Andreas Krebbel  <krebbel1@de.ibm.com>
7010
7011         * config/s390/s390.md ("*tmqidi_ext"): New insn.
7012         ("*extendqidi2_short_displ", "*extendsiqi2_short_displ"): Old
7013         pre-reload splitters are transformed to post-reload
7014         define_insn_and_split patterns.
7015         ("*tmqisi_ext"): Renamed old "*tmqi_ext".
7016
7017 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
7018
7019         * config/cris/cris.h: Replace PROMOTE_PROTOTYPES with
7020         TARGET_PROMOTE_PROTOTYPES.
7021
7022 2004-02-05  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7023
7024         PR middle-end/13750
7025         Revert:
7026         2004-01-15  Geoffrey Keating  <geoffk@apple.com>
7027         PR pch/13361
7028         * c-typeck.c (constructor_asmspec): Delete.
7029         (struct initializer_stack): Delete field 'asmspec'.
7030         (start_init): Delete saving of asmspec.
7031         (finish_init): Don't update constructor_asmspec.
7032         * dwarf2out.c (rtl_for_decl_location): Duplicate string from tree.
7033         * stmt.c (expand_asm): Duplicate strings from tree.
7034         (expand_asm_operands): Likewise.
7035         * tree.c (tree_size): Update computation of size of STRING_CST.
7036         (make_node): Don't make STRING_CST nodes.
7037         (build_string): Allocate string with tree node.
7038         * tree.def (STRING_CST): Update comment.
7039         * tree.h (TREE_STRING_POINTER): Adjust for change to STRING_CST.
7040         (tree_string): Place contents of string in tree node.
7041         * config/sh/sh.c (sh_handle_sp_switch_attribute): Duplicate string
7042         from tree.
7043
7044 2004-02-05  Joseph S. Myers  <jsm@polyomino.org.uk>
7045
7046         * diagnostic.h (DEFINE_DIAGNOSTIC_KIND): Change parameter M to
7047         msgid.
7048
7049 2004-02-05  Dorit Naishlos  <dorit@il.ibm.com>
7050
7051         * config/rs6000/altivec.md (*movv4si_internal): At least one
7052         operand must be altivec_register_operand.
7053         (*movv8hi_internal1): Likewise.
7054         (*movv16qi_internal1): Likewise.
7055         (*movv4sf_internal1): Likewise.
7056
7057 2004-02-05  David Edelsohn  <edelsohn@gnu.org>
7058
7059         * configure.ac (gcc_cv_as_powerpc_mfcrf): Correct test for mfcr.
7060         * configure: Regenerate.
7061
7062 2004-02-05  Jonathan Wakely  <redi@gcc.gnu.org>
7063
7064         * doc/install.texi: Update description of --gxx-include-dir to
7065         give correct default value.
7066
7067 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
7068
7069         * config/h8300/h8300.h (REG_OK_FOR_BASE_NONSTRICT_P): Replace
7070         8 with MAC_REG.
7071
7072 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
7073
7074         * config/pa/pa.c (emit_hpdiv_const): Replace gen_rtx with
7075         gen_rtx_PARALLEL.
7076
7077 2004-02-05  Kazu Hirata  <kazu@cs.umass.edu>
7078
7079         * emit-rtl.c: Update the comment about the file.
7080
7081 2004-02-05  Joseph S. Myers  <jsm@polyomino.org.uk>
7082
7083         * sourcebuild.texi (Test Idioms): Update testcase naming
7084         conventions.
7085
7086 2004-02-04  Per Bothner  <per@bothner.com>
7087
7088         Partially revert/redo 2003-10-01 change; fix -fworking-directory.
7089         * c-ppoutput.c (pp_dir_change):  New function.
7090         * c-common.h (pp_dir_change):  New declaration.
7091         * cpplib.h (struct cpp_options):  Remove working_directory field.
7092         * cppinit.c (cpp_find_main_file, cpp_push_main_file):  Merge back to
7093         (cpp_read_main_file):  as before 10-01.  Call _cpp_stack_file.
7094         Don't handle -fworking_directory here, but in c_common_post_options.
7095         (read_original_directory): Don't back up when done.
7096         Don't clear no-longer used working_directory flag.
7097         * cpplib.h:  Update declarations to match.
7098         * c-lex.c (cb_dir_change):  Move to c-opts.c.
7099         (init_c_lex):  Don't set dir_change callback here, since we want
7100         to set it even if flag_preprocess_only.
7101         * c-opts.c (cb_dir_change):  Function moved from c-lex.c.
7102         (c_common_post_options):  Set dir_change callback.
7103         Call pp_dir_change if approporiate.
7104         (finish_options):  Don't call cpp_find_main_file here.  Hence remove
7105         unneeded parameter and result. Do LC_RENAME for <built-in>.
7106         (c_common_post_options):  Call cpp_read_main_file here instead.
7107         (c_common_init):  Update accordingly.
7108         (push_command_line_include):  Don't cpp_push_main_file.
7109         Do LC_RENAME rather than LC_LEASE to get back to main file.
7110         Compared to pre-10-01 version, inline cpp_rename_to_main_file.
7111         (c_common_parse_file):  Call cpp_read_main_file for subsequent main
7112         files, but call finish_options for all files.
7113         * c-opts.c (sanitize_cpp_opts):  Don't set cpp_opts->working_directory.
7114         * fix-header.c (read_scan_file):  Call cpp_read_main_file instead of
7115         cpp_find_main_file + cpp_push_main_file.
7116         * c-lex.c (fe_file_change):  Don't set main_input_filename here.
7117         * opts.c (handle_options):  Only set main_input_filename first time.
7118
7119 2004-02-05  Ian Lance Taylor  <ian@wasabisystems.com>
7120
7121         * config/arm/arm.h (REG_CLASS_NAMES): Add missing comma.
7122
7123 2004-02-04  Geoffrey Keating  <geoffk@apple.com>
7124
7125         * reload.c (find_equiv_reg): When checking for register overlap,
7126         don't index hard_regno_nregs with a pseudo-reg.
7127
7128 2004-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7129
7130         * config/s390/s390.c (s390_trampoline_template): Remove gen_rtx().
7131
7132 2004-02-04  David Edelsohn  <edelsohn@gnu.org>
7133
7134         * reload.c (refers_to_regno_for_reload_p): Test regno, not inner_regno,
7135         against FIRST_PSEUDO_REGISTER.
7136
7137 2004-02-04  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
7138
7139         * Makefile.in: Move target, host overrides after per-language
7140         fragments.
7141
7142         * config/mips/t-iris5-as (FORCE_DEBUG_ADAFLAGS): Clear.
7143         (GNATLIBCFLAGS): Remove -g.
7144
7145 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7146
7147         * config/alpha/alpha.c, config/arc/arc.c, config/avr/avr.c,
7148         config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
7149         config/ia64/ia64.c, config/ia64/unwind-ia64.c,
7150         config/m32r/m32r.c, config/ns32k/ns32k.c, config/pa/pa.c,
7151         config/pdp11/pdp11.c, config/rs6000/rs6000.c,
7152         config/sparc/sparc.c, config/vax/vax.c: Revert the
7153         replacements of "FALLTHRU" with "Fall through" done in the
7154         previous patch.
7155
7156 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7157
7158         * config/darwin.c, config/darwin.h, config/freebsd-spec.h,
7159         config/arm/arm.c, config/arm/arm.md,
7160         config/cris/cris-protos.h, config/fr30/fr30.c,
7161         config/fr30/fr30.h, config/h8300/h8300.c, config/i386/i386.h,
7162         config/i860/i860.c, config/i860/i860.h, config/ia64/ia64-c.c,
7163         config/ia64/ia64.c, config/ia64/ia64.h, config/ip2k/ip2k.h,
7164         config/ip2k/ip2k.md, config/ip2k/libgcc.S,
7165         config/m32r/linux.h, config/m32r/m32r.c, config/m32r/m32r.h,
7166         config/m68k/m68k.c, config/m68k/netbsd-elf.h,
7167         config/mips/mips.c, config/mmix/mmix.c, config/mmix/mmix.md,
7168         config/ns32k/netbsd.h, config/ns32k/ns32k.c,
7169         config/ns32k/ns32k.h, config/pdp11/pdp11.h,
7170         config/rs6000/darwin-ldouble.c, config/s390/s390.h,
7171         config/s390/s390.md, config/sparc/netbsd-elf.h,
7172         config/sparc/openbsd.h, config/sparc/sparc.c,
7173         config/xtensa/lib2funcs.S: Fix comment formatting.
7174
7175 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7176
7177         * config/alpha/alpha.c, config/arc/arc.c,
7178         config/arm/arm-cores.def, config/arm/arm.c, config/arm/arm.h,
7179         config/arm/arm1026ejs.md, config/arm/arm1136jfs.md,
7180         config/arm/arm926ejs.md, config/arm/vfp.md, config/avr/avr.c,
7181         config/c4x/c4x.c, config/cris/cris.c, config/frv/frv.md,
7182         config/i386/i386.c, config/i386/i386.h, config/i386/i386.md,
7183         config/ia64/ia64.c, config/ia64/unwind-ia64.c,
7184         config/iq2000/iq2000.c, config/m32r/m32r.c,
7185         config/mips/mips.c, config/mmix/mmix.c, config/mmix/mmix.h,
7186         config/ns32k/ns32k.c, config/pa/pa.c, config/pdp11/pdp11.c,
7187         config/rs6000/darwin-ldouble.c, config/rs6000/rs6000.c,
7188         config/rs6000/rs6000.h, config/sparc/sparc.c,
7189         config/vax/vax.c: Fix comment typos.  Follow spelling
7190         conventions.
7191
7192 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7193
7194         * alloc-pool.h, c-convert.c, c-lang.c, c-tree.h,
7195         caller-save.c, df.h, genconfig.c, global.c, lcm.c,
7196         ra-rewrite.c, ra.c, regclass.c, regs.h, resource.c,
7197         sched-rgn.c, config/arm/aof.h, config/arm/cirrus.md,
7198         config/arm/fpa.md, config/arm/iwmmxt.md,
7199         config/arm/netbsd-elf.h, config/arm/netbsd.h,
7200         config/m68hc11/m68hc11.md, config/mips/iris5.h,
7201         config/mn10300/mn10300.md, config/rs6000/altivec.md,
7202         config/sparc/netbsd-elf.h: Update copyright.
7203
7204 2004-02-04  Eric Botcazou  <ebotcazou@libertysurf.fr>
7205
7206         * config/sparc/sparc.c (function_arg_pass_by_reference): Return 1
7207         for all modes whose size is greater than 8 bytes if ARCH32.
7208         (sparc_va_arg): Handle all modes whose size is greater than 8 bytes
7209         by reference if ARCH32.
7210
7211 2004-02-04  Aldy Hernandez  <aldyh@redhat.com>
7212
7213         * cgraphunit.c (cgraph_postorder): Fix typo in comment.
7214
7215 2004-02-04  Ulrich Weigand  <uweigand@de.ibm.com>
7216
7217         * config/s390/s390.md ("*la_64" + peepholes, "reload_indi"): Move
7218         to before adddi3 insn patterns.
7219         ("*la_31" + peepholes, "*la_31_and", "*la_31_and_cc", "force_la_31",
7220         "reload_insi"): Move to before addsi3 insn patterns.
7221
7222 2004-02-04  Mark Mitchell  <mark@codesourcery.com>
7223
7224         * calls.c (initialize_argument_information): Add CALL_FROM_THUNK_P
7225         parameter.  Use it instead of current_function_is_thunk.
7226         * function.h (struct function): Update documentation for is_thunk.
7227         * tree.h (CALL_FROM_THUNK_P): New macro.
7228         * config/alpha/alpha.c (alpha_sa_mask): Do not check
7229         no_new_pseudos when testing current_function_is_thunk.
7230         * config/rs6000/rs6000.c (rs6000_ra_ever_killed): Likeiwse.
7231
7232 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7233
7234         * doc/tm.texi: Replace SETUP_INCOMING_VARARGS with
7235         TARGET_SETUP_INCOMING_VARARGS.
7236
7237 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7238
7239         * emit-rtl.c (gen_rtx): Remove.
7240         * genattrtab.c: Don't mention gen_rtx in a comment.
7241         * rtl.h: Remove the prototype for gen_rtx.
7242         * doc/md.texi: Replace gen_rtx with gen_rtx_REG.
7243
7244 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7245
7246         * config/arc/arc.h, config/fr30/fr30.h
7247         (SETUP_INCOMING_VARARGS): Remove the target-independent
7248         comments.
7249         * doc/tm.texi: Don't mention deprecated target macros.
7250
7251 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7252
7253         * config/fr30/fr30.h (FUNCTION_VALUE): Remove the
7254         target-independent comment.
7255
7256 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7257
7258         * doc/interface.texi, doc/tm.texi, doc/trouble.texi: Don't
7259         mention deprecated target macros.
7260
7261 2004-02-04  Kazu Hirata  <kazu@cs.umass.edu>
7262
7263         * config.gcc: Remove obsolete ports and configurations.
7264         * config/linux-aout.h, config/netware.h,
7265         config/t-linux-gnulibc1, config/d30v/abi,
7266         config/d30v/d30v-protos.h, config/d30v/d30v.c,
7267         config/d30v/d30v.h, config/d30v/d30v.md,
7268         config/d30v/libgcc1.asm, config/d30v/t-d30v,
7269         config/dsp16xx/dsp16xx-modes.def,
7270         config/dsp16xx/dsp16xx-protos.h, config/dsp16xx/dsp16xx.c,
7271         config/dsp16xx/dsp16xx.h, config/dsp16xx/dsp16xx.md,
7272         config/i370/README, config/i370/i370-c.c,
7273         config/i370/i370-protos.h, config/i370/i370.c,
7274         config/i370/i370.h, config/i370/i370.md, config/i370/linux.h,
7275         config/i370/mvs.h, config/i370/oe.h, config/i370/t-i370,
7276         config/i386/freebsd-aout.h, config/i386/linux-aout.h,
7277         config/i386/moss.h, config/i386/netware.h,
7278         config/i386/svr3.ifile, config/i386/svr3dbx.h,
7279         config/i386/svr3gas.h, config/i386/svr3z.ifile,
7280         config/i386/t-udk, config/i386/udk.h, config/i386/vsta.h,
7281         config/i960/i960-c.c, config/i960/i960-coff.h,
7282         config/i960/i960-modes.def, config/i960/i960-protos.h,
7283         config/i960/i960.c, config/i960/i960.h, config/i960/i960.md,
7284         config/i960/rtems.h, config/i960/t-960bare,
7285         config/m68k/hp310.h, config/m68k/hp320.h,
7286         config/m68k/hp320base.h, config/m68k/m68kv4.h,
7287         config/m68k/netbsd.h, config/m68k/sgs.h, config/m68k/t-hp320:
7288         Remove.
7289         * doc/extend.texi, doc/install.texi, doc/invoke.texi,
7290         doc/md.texi: Remove mentions of obsolete ports.
7291
7292 2004-02-04  Jan Hubicka  <jh@suse.cz>
7293
7294         * alias.c (find_base_term, get_addr):  Do not dereference NULL
7295         pointer when all VALUE's locations has been invalidated.
7296         (rtx_equal_for_memref_p): Simplify checking of VALUEs.
7297
7298 2004-02-03  Wolfgang Bangerth  <bangerth@dealii.org>
7299
7300         * doc/invoke.texi (x86 options): Fix spelling/wording.
7301
7302 2004-02-03  Richard Sandiford  <rsandifo@redhat.com>
7303
7304         * config/mips/iris5.h (ASM_OUTPUT_ASCII): Use mips_output_ascii to
7305         put the original string in a comment.
7306         * config/mips/mips-protos.h (mips_output_ascii): Add prefix argument.
7307         * config/mips/mips.c (mips_output_ascii): Likewise.
7308         * config/mips/mips.h (ASM_OUTPUT_ASCII): Adjust accordingly.
7309
7310 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
7311
7312         * system.h (GIV_SORT_CRITERION): Poison.
7313         * config/avr/avr.h (GIV_SORT_CRITERION): Remove.
7314         * config/ip2k/ip2k.h (GIV_SORT_CRITERION): Likewise.
7315
7316 2004-02-03  Roger Sayle  <roger@eyesopen.com>
7317
7318         PR target/9348
7319         * expr.c (expand_expr_real) <MULT_EXPR>:  When performing widening
7320         multiplies with a multiplication of the wrong signedness, its the
7321         signedness of the multiplication that we've performed that needs to
7322         be passed to expand_mult_highpart_adjust.  Avoid emitting a nop-move
7323         if expand_mult_highpart_adjust places the result in target.
7324
7325 2004-02-03  Richard Henderson  <rth@redhat.com>
7326
7327         * varasm.c (const_desc_rtx_sym_eq): Compare symbol strings.
7328
7329 2004-02-03  J"orn Rennecke <joern.rennecke@superh.com>
7330
7331         * config.gcc (sh[234]l): Use little endian fragments.
7332
7333 2004-02-03  Paul Koning  <pkoning@equallogic.com>
7334
7335         * config/pdp11/pdp11-modes.def: Add RESET_FLOAT_FORMAT calls.
7336         * config/pdp11/pdp11-protos.h (legitimate_const_double_p): Add.
7337         * config/pdp11/pdp11.c (encode_pdp11_f, decode_pdp11_f,
7338         encode_pdp11_d, decode_pdp11_d): New functions to handle PDP11
7339         floating point format.
7340         (pdp11_f_format, pdp11_d_format): New real_format descriptors for
7341         the above functions.
7342         (output_move_quad): Output float values in correct target format.
7343         (legitimate_const_double_p): New function.
7344         * config/pdp11/pdp11.h: Fix typos.
7345         (FLOAT_WORDS_BIG_ENDIAN): Add definition.
7346         (TARGET_FLOAT_FORMAT): Ditto.
7347         (pdp11_f_format, pdp11_d_format): Add external declarations.
7348         (MAX_REGS_PER_ADDRESS): Corrected.
7349         (LEGITIMATE_CONSTANT_P): Use legitimate_const_double_p().
7350         (PRINT_OPERAND): Output float literals in target format.
7351
7352 2004-02-03  Mark Mitchell  <mark@codesourcery.com>
7353
7354         PR c++/13975
7355         * tree.h (enum tree_index): Add TI_PUBLIC, TI_PROTECTED, and
7356         TI_PRIVATE.
7357         (access_public_node): Redefine.
7358         (access_protected_node): Likewise.
7359         (access_private_node): Likewise.
7360         * tree.c (build_common_tree_nodes): Create access_public_node,
7361         access_protected_node, and access_private_node.
7362
7363 2004-02-03  Steve Ellcey  <sje@cup.hp.com>
7364
7365         * config/ia64/ia64.h (MASK_INLINE_INT_DIV_LAT): Change value.
7366         (MASK_INLINE_INT_DIV_THR): Ditto.
7367         (MASK_INLINE_SQRT_LAT): Ditto.
7368         (MASK_INLINE_SQRT_THR): Ditto.
7369         (MASK_DWARF2_ASM): Ditto.
7370         (MASK_EARLY_STOP_BITS): Ditto.
7371
7372 2004-02-02  Paul Brook  <paul@codesourcery.com>
7373
7374         Merge from csl-arm-branch.
7375
7376         2004-01-30  Paul Brook  <paul@codesourcery.com>
7377
7378         * aof.h (REGISTER_NAMES): Add vfp reg names
7379         (ADDITIONAL_REGISTER_NAMES): Ditto.
7380         * aout.h (REGISTER_NAMES): Ditto.
7381         (ADDITIONAL_REGISTER_NAMES): Ditto.
7382         * arm-protos.h: Update/Add Prototypes.
7383         * arm.c (init_fp_table): Rename from init_fpa_table. Update users.
7384         Only allow 0.0 for VFP.
7385         (fp_consts_inited): Rename from fpa_consts_inited.  Update users.
7386         (values_fp): Rename from values_fpa.  Update Users.
7387         (arm_const_double_rtx): Rename from const_double_rtx_ok_for_fpa.
7388         Update users.  Only check valid constants for this hardware.
7389         (arm_float_rhs_operand): Rename from fpa_rhs_operand.  Update Users.
7390         Only allow consts for FPA.
7391         (arm_float_add_operand): Rename from fpa_add_operand.  Update users.
7392         Only allow consts for FPA.
7393         (use_return_insn): Check for saved VFP regs.
7394         (arm_legitimate_address_p): Handle VFP DFmode addressing.
7395         (arm_legitimize_address): Ditto.
7396         (arm_general_register_operand): New function.
7397         (vfp_mem_operand): New function.
7398         (vfp_compare_operand): New function.
7399         (vfp_secondary_reload_class): New function.
7400         (arm_float_compare_operand): New function.
7401         (vfp_print_multi): New function.
7402         (vfp_output_fstmx): New function.
7403         (vfp_emit_fstm): New function.
7404         (arm_output_epilogue): Output VPF reg restore code.
7405         (arm_expand_prologue): Output VFP reg save code.
7406         (arm_print_operand): Add 'P'.
7407         (arm_hard_regno_mode_ok): Return modes for VFP regs.
7408         (arm_regno_class): Return classes for VFP regs.
7409         (arm_compute_initial_elimination_offset): Include space for VFP regs.
7410         (arm_get_frame_size): Ditto.
7411         * arm.h (FIXED_REGISTERS): Add VFP regs.
7412         (CALL_USED_REGISTERS): Ditto.
7413         (CONDITIONAL_REGISTER_USAGE): Enable VFP regs.
7414         (FIRST_VFP_REGNUM): Define.
7415         (LAST_VFP_REGNUM): Define.
7416         (IS_VFP_REGNUM): Define.
7417         (FIRST_PSEUDO_REGISTER): Include VFP regs.
7418         (HARD_REGNO_NREGS): Handle VFP regs.
7419         (REG_ALLOC_ORDER): Add VFP regs.
7420         (enum reg_class): Add VFP_REGS.
7421         (REG_CLASS_NAMES): Ditto.
7422         (REG_CLASS_CONTENTS): Ditto.
7423         (CANNOT_CHANGE_MODE_CLASS) Handle VFP Regs.
7424         (REG_CLASS_FROM_LETTER): Add 'w'.
7425         (EXTRA_CONSTRAINT_ARM): Add 'U'.
7426         (EXTRA_MEMORY_CONSTRAINT): Define.
7427         (SECONDARY_OUTPUT_RELOAD_CLASS): Handle VFP regs.
7428         (SECONDARY_INPUT_RELOAD_CLASS): Ditto.
7429         (REGISTER_MOVE_COST): Ditto.
7430         (PREDICATE_CODES): Add arm_general_register_operand,
7431         arm_float_compare_operand and vfp_compare_operand.
7432         * arm.md (various): Rename as above.
7433         (divsf3): Enable when TARGET_VFP.
7434         (divdf3): Ditto.
7435         (movdfcc): Ditto.
7436         (sqrtsf2): Ditto.
7437         (sqrtdf2): Ditto.
7438         (arm_movdi): Disable when TARGET_VFP.
7439         (arm_movsi_insn): Ditto.
7440         (movsi): Only split with general regs.
7441         (cmpsf): Use arm_float_compare_operand.
7442         (push_fp_multi): Restrict to TARGET_FPA.
7443         (vfp.md): Include.
7444         * vfp.md: New file.
7445         * fpa.md (various): Rename as above.
7446         * doc/md.texi: Document ARM w and U constraints.
7447
7448         2004-01-15  Paul Brook  <paul@codesourcery.com>
7449
7450         * config.gcc: Add with_fpu.  Allow with-float=softfp.
7451         * config/arm/arm.c (arm_override_options): Rename *-s to *s.
7452         Break out of loop when we find a float-abi.  Fix typo.
7453         * config/arm/arm.h (OPTION_DEFAULT_SPECS): Add "fpu".
7454         Set -mfloat-abi=.
7455         * doc/install.texi: Document --with-fpu.
7456
7457         2003-01-14  Paul Brook  <paul@codesourcery.com>
7458
7459         * config.gcc (with_arch): Add armv6.
7460         * config/arm/arm.h: Rename TARGET_CPU_*_s to TARGET_CPU_*s.
7461         * config/arm/arm.c (arm_overrride_options): Ditto.
7462
7463         2004-01-08  Richard Earnshaw  <rearnsha@arm.com>
7464
7465         * arm.c (FL_ARCH3M): Renamed from FL_FAST_MULT.
7466         (FL_ARCH6): Renamed from FL_ARCH6J.
7467         (arm_arch3m): Renamed from arm_fast_multiply.
7468         (arm_arch6): Renamed from arm_arch6j.
7469         * arm.h: Update all uses of above.
7470         * arm-cores.def: Likewise.
7471         * arm.md: Likewise.
7472
7473         * arm.h (CPP_CPU_ARCH_SPEC): Emit __ARM_ARCH_6J__ define for armV6j,
7474         not arm6j.  Add entry for arch armv6.
7475
7476         2004-01-07  Richard Earnshaw  <rearnsha@arm.com>
7477
7478         * arm.c (arm_emit_extendsi): Delete.
7479         * arm-protos.h (arm_emit_extendsi): Delete.
7480         * arm.md (zero_extendhisi2): Also handle zero-extension of
7481         non-subregs.
7482         (zero_extendqisi2, extendhisi2, extendqisi2): Likewise.
7483         (thumb_zero_extendhisi2): Only match if not v6.
7484         (arm_zero_extendhisi2, thumb_zero_extendqisi2, arm_zero_extendqisi2)
7485         (thumb_extendhisi2, arm_extendhisi2, arm_extendqisi)
7486         (thumb_extendqisi2): Likewise.
7487         (thumb_zero_extendhisi2_v6, arm_zero_extendhisi2_v6): New patterns.
7488         (thumb_zero_extendqisi2_v6, arm_zero_extendqisi2_v6): New patterns.
7489         (thumb_extendhisi2_insn_v6, arm_extendhisi2_v6): New patterns.
7490         (thumb_extendqisi2_v6, arm_extendqisi_v6): New patterns.
7491         (arm_zero_extendhisi2_reg, arm_zero_extendqisi2_reg): Delete.
7492         (arm_extendhisi2_reg, arm_extendqisi2_reg): Delete.
7493         (arm_zero_extendhisi2addsi): Remove subreg.  Add attributes.
7494         (arm_zero_extendqisi2addsi, arm_extendhisi2addsi): Likewise.
7495         (arm_extendqisi2addsi): Likewise.
7496
7497         2003-12-31  Mark Mitchell  <mark@codesourcery.com>
7498
7499         Revert this change:
7500         * config/arm/arm.h (THUMB_LEGTITIMIZE_RELOAD_ADDRESS): Reload REG
7501         + REG addressing modes.
7502
7503         * config/arm/arm.h (THUMB_LEGTITIMIZE_RELOAD_ADDRESS): Reload REG
7504         + REG addressing modes.
7505
7506         2003-12-30  Mark Mitchell  <mark@codesourcery.com>
7507
7508         * config/arm/arm.h (THUMB_LEGITIMATE_CONSTANT_P): Accept
7509         CONSTANT_P_RTX.
7510
7511         2003-30-12  Paul Brook  <paul@codesourcery.com>
7512
7513         * longlong.h: protect arm inlines with !defined (__thumb__)
7514
7515         2003-30-12  Paul Brook  <paul@codesourcery.com>
7516
7517         * config/arm/arm.h (TARGET_CPU_CPP_BUILTINS): Always define __arm__.
7518
7519         2003-12-30  Nathan Sidwell  <nathan@codesourcery.com>
7520
7521         * builtins.c (expand_builtin_apply_args_1): Fix typo in previous
7522         change.
7523
7524         2003-12-29  Nathan Sidwell  <nathan@codesourcery.com>
7525
7526         * builtins.c (expand_builtin_apply_args_1): Add pretend args size
7527         to the virtual incoming args pointer for downward stacks.
7528
7529         2003-12-29  Paul Brook  <paul@codesourcery.com>
7530
7531         * config/arm/arm-cores.def: Add cost function.
7532         * config/arm/arm.c (arm_*_rtx_costs): New functions.
7533         (arm_rtx_costs): Remove
7534         (struct processors): Add rtx_costs field.
7535         (all_cores, all_architectures): Ditto.
7536         (arm_override_options): Set targetm.rtx_costs.
7537         (thumb_rtx_costs): New function.
7538         (arm_rtx_costs_1): Remove cases handled elsewhere.
7539         * config/arm/arm.h (processor_type): Add COSTS parameter.
7540
7541         2003-12-29  Nathan Sidwell  <nathan@codesourcery.com>
7542
7543         * config/arm/arm.md (generic_sched): arm926 has its own scheduler.
7544         (arm926ejs.md): Include it.
7545         * config/arm/arm926ejs.md: New pipeline description.
7546
7547         2003-12-24  Paul Brook  <paul@codesourcery.com>
7548
7549         * config/arm/arm.c (arm_arch6j): New variable.
7550         (arm_override_options): Set it.
7551         (arm_emit_extendsi): New function.
7552         * config/arm/arm-protos.h (arm_emit_extendsi): Add prototype.
7553         * config/arm/arm.h (arm_arch6j): Declare.
7554         * config/arm/arm.md: Add sign/zero extend insns.
7555
7556         2003-12-23  Paul Brook  <paul@codesourcery.com>
7557
7558         * config/arm/arm.c (all_architectures): Add armv6.
7559         * doc/invoke.texi: Document it.
7560
7561         2003-12-19  Paul Brook  <paul@codesourcery.com>
7562
7563         * config/arm/arm.md: Add load1 and load_byte "type" attrs.  Modify
7564         insn patterns to match.
7565         * config/arm/arm-generic.md: Ditto.
7566         * config/arm/cirrus.md: Ditto.
7567         * config/arm/fpa.md: Ditto.
7568         * config/amm/iwmmxt.md: Ditto.
7569         * config/arm/arm1026ejs.md: Ditto.
7570         * config/arm/arm1135jfs.md: Ditto.  Add insn_reservation and bypasses
7571         for 11_loadb.
7572
7573         2003-12-18  Nathan Sidwell  <nathan@codesourcery.com>
7574
7575         * config/arm/arm-protos.h (arm_no_early_alu_shift_value_dep): Declare.
7576         * config/arm/arm.c (arm_adjust_cost): Check shift cost for
7577         TYPE_ALU_SHIFT and TYPE_ALU_SHIFT_REG.
7578         (arm_no_early_store_addr_dep, arm_no_early_alu_shift_dep,
7579         arm_no_early_mul_dep): Correctly deal with conditional execution,
7580         parallels and single shift operations.
7581         (arm_no_early_alu_shift_value_dep): Define.
7582         * arm.md (attr type): Replace 'normal' with 'alu',
7583         'alu_shift' and 'alu_shift_reg'.
7584         (attr core_cycles): Adjust.
7585         (*addsi3_carryin_shift, andsi_not_shiftsi_si, *arm_shiftsi3,
7586         *shiftsi3_compare0, *notsi_shiftsi, *notsi_shiftsi_compare0,
7587         *not_shiftsi_compare0_scratch, *cmpsi_shiftsi, *cmpsi_shiftsi_swp,
7588         *cmpsi_neg_shiftsi, *arith_shiftsi, *arith_shiftsi_compare0,
7589         *arith_shiftsi_compare0_scratch, *sub_shiftsi,
7590         *sub_shiftsi_compare0, *sub_shiftsi_compare0_scratch,
7591         *if_shift_move, *if_move_shift, *if_shift_shift): Set type
7592         attribute appropriately.
7593         * config/arm/arm1026ejs.md (alu_op): Adjust.
7594         (alu_shift_op, alu_shift_reg_op): New.
7595         * config/arm/arm1136.md: Add better bypasses for early
7596         registers. Remove load[234] and store[234] bypasses.
7597         (11_alu_op): Adjust.
7598         (11_alu_shift_op, 11_alu_shift_reg_op): New.
7599
7600         2003-12-15  Nathan Sidwell  <nathan@codesourcery.com>
7601
7602         * config/arm/arm-protos.h (arm_no_early_store_addr_dep,
7603         arm_no_early_alu_shift_dep, arm_no_early_mul_dep): Declare.
7604         * config/arm/arm.c (arm_no_early_store_addr_dep,
7605         arm_no_early_alu_shift_dep, arm_no_early_mul_dep): Define.
7606         * config/arm/arm1026ejs.md: Add load-store bypass.
7607         * config/arm/arm1136jfs.md (11_alu_op): Take 2 cycles.
7608         Add bypasses between instructions.
7609
7610         2003-12-10  Paul Brook  <paul@codesourcery.com>
7611
7612         * config/arm/arm.c (arm_fpu_model): New variable.
7613         (arm_fload_abi): New variable.
7614         (target_fpe_name): Rename from target_fp_name.
7615         (target_fpu_name): New variable.
7616         (arm_is_cirrus): Remove.
7617         (fpu_desc): New struct.
7618         (all_fpus): Define.
7619         (pf_model_for_fpu): Define.
7620         (all_loat_abis): Define.
7621         (arm_override_options): Set fp arch flags based on -mfpu=
7622         and -float-abi=.
7623         (FIRST_FPA_REGNUM): Rename from FIRST_ARM_FP_REGNUM.
7624         (LAST_FPA_REGNUM): Rename from LAST_ARM_FP_REGNUM.
7625         (*): Use new TARGET_* flags.
7626         * config/arm/arm.h (TARGET_ANY_HARD_FLOAT): Remove.
7627         (TARGET_HARD_FLOAT): No longer implies TARGET_FPA.
7628         (TARGET_SOFT_FLOAT): Ditto.
7629         (TARGET_SOFT_FLOAT_ABI): New.
7630         (TARGET_MAVERICK): Rename from TARGET_CIRRUS.  No longer implies
7631         TARGET_HARD_FLOAT.
7632         (TARGET_VFP): No longer implies TARGET_HARD_FLOAT.
7633         (TARGET_OPTIONS): Add -mfpu=.
7634         (FIRST_FPA_REGNUM): Rename from FIRST_ARM_FP_REGNUM.
7635         (LAST_FPA_REGNUM): Rename from LAST_ARM_FP_REGNUM.
7636         (arm_pf_model): Define.
7637         (arm_float_abi_type): Define.
7638         (fputype): Add FPUTYPE_VFP.  Change SOFT_FPA->NONE
7639         * config/arm/arm.md: Use new TARGET_* flags.
7640         * config/arm/cirrus.md: Ditto.
7641         * config/arm/fpa.md: Ditto.
7642         * config/arm/elf.h (ASM_SPEC): Pass -mfloat-abi= and -mfpu=.
7643         * config/arm/semi.h (ASM_SPEC): Ditto.
7644         * config/arm/netbsd-elf.h (SUBTARGET_ASM_FLOAT_SPEC): Specify vfp.
7645         (FPUTYPE_DEFAULT): Set to VFP.
7646         * doc/invoke.texi: Document -mfpu= and -mfloat-abi=.
7647
7648         2003-11-22  Phil Edwards  <phil@codesourcery.com>
7649
7650         PR target/12476
7651         * config/arm/arm.c (arm_output_mi_thunk):  In Thumb mode, use
7652         'bx' instead of 'b' to avoid branch range restrictions.  Output
7653         the thunk immediately before the thunked-to function.
7654         * config/arm/arm.h (ARM_DECLARE_FUNCTION_NAME):  Do not emit
7655         .thumb_func if a thunk is being generated.  Emit .code 16 along
7656         with .thumb_func if a thunk is not being generated.
7657
7658         2003-11-15  Nicolas Pitre <nico@cam.org>
7659
7660         * config/arm/arm.md (ashldi3, arm_ashldi3_1bit, ashrdi3,
7661         arm_ashrdi3_1bit, lshrdi3, arm_lshrdi3_1bit): New patterns.
7662         * config/arm/iwmmxt.md (ashrdi3_iwmmxt): Renamed from ashrdi3.
7663         (lshrdi3_iwmmxt): Renamed from lshrdi3.
7664         * config/arm/arm.c (IWMMXT_BUILTIN2): Renamed argument accordingly.
7665
7666         2003-11-12  Steve Woodford  <scw@wasabisystems.com>
7667             Ian Lance Taylor  <ian@wasabisystems.com>
7668
7669         * config/arm/lib1funcs.asm (ARM_DIV_BODY, ARM_MOD_BODY): Add new
7670         code for __ARM_ARCH__ >= 5 && ! defined (__OPTIMIZE_SIZE__).
7671
7672         2003-11-05  Phil Edwards  <phil@codesourcery.com>
7673
7674         * config/arm/arm.md (insn):  Add new V6 instruction names.
7675         (generic_sched):  New attr.
7676         * config/arm/arm-generic.md:  Use generic_sched here.
7677         * config/arm/arm1026ejs.md:  Do not model fetch/issue/decode
7678         stages of pipeline.  Adjust latency counts accordingly.
7679         * config/arm/arm1136jfs.md:  New file.
7680
7681         2003-10-28  Mark Mitchell  <mark@codesourcery.com>
7682
7683         * config/arm/arm.h (processor_type): New enumeration type.
7684         (CPP_ARCH_DEFAULT_SPEC): Set appropriately for ARM 926EJ-S,
7685         ARM1026EJ-S, ARM1136J-S, and ARM1136JF-S processor cores.
7686         (CPP_CPU_ARCH_SPEC): Likewise.
7687         * config/arm/arm.c (arm_tune): New variable.
7688         (all_cores): Use cores.def.
7689         (all_architectures): Add representative processor.
7690         (arm_override_options): Restructure way in which tuning
7691         information is deduced.
7692         * arm.md: Update "insn" and "type" attributes throughout.
7693         (insn): New attribute.
7694         (type): Compute "mult" from "insn" attribute.  Add load2,
7695         load3, load4 alternatives.
7696         (arm automaton): Move to arm-generic.md.
7697         * config/arm/arm-cores.def: New file.
7698         * config/arm/arm-generic.md: Likewise.
7699         * config/arm/arm1026ejs.md: Likewise.
7700
7701 2004-02-03  Eric Botcazou  <ebotcazou@libertysurf.fr>
7702
7703         * doc/invoke.texi (SPARC options): Remove -mflat and
7704         all -mxxx (xxx:chip) options.
7705         * config/sparc/aout.h (DBX_REGISTER_NUMBER): Delete.
7706         * config/sparc/litecoff.h (DBX_REGISTER_NUMBER): Likewise.
7707         * config/sparc/netbsd-elf.h (DBX_REGISTER_NUMBER): Likewise.
7708         * config/sparc/sol2.h (DBX_REGISTER_NUMBER): Likewise.
7709         * config/sparc/sparc-protos.h: Delete sparc_flat_* prototypes.
7710         * config/sparc/sparc.c: Likewise.
7711         (sparc_output_function_prologue): Remove TARGET_FLAT handling.
7712         (sparc_nonflat_function_prologue): Rename into sparc_function_prologue.
7713         (sparc_output_function_epilogue): Remove TARGET_FLAT handling.
7714         (sparc_nonflat_function_epilogue): Rename into sparc_function_epilogue.
7715         (struct sparc_frame_info, current_frame_info, zero_frame_info): Delete.
7716         (sparc_flat_must_save_register_p): Likewise.
7717         (sparc_flat_compute_frame_size): Likewise.
7718         (sparc_flat_save_restore): Likewise.
7719         (sparc_flat_function_prologue): Likewise.
7720         (sparc_flat_function_epilogue): Likewise.
7721         (sparc_flat_epilogue_delay_slots): Likewise.
7722         (sparc_flat_eligible_for_epilogue_delay): Likewise.
7723         (sparc_function_ok_for_sibcall): Remove TARGET_FLAT handling.
7724         * config/sparc/sparc.h (MASK_FLAT, TARGET_FLAT): Delete.
7725         (TARGET_SWITCHES): Remove -mflat and all -mxxx (xxx:chip) options.
7726         (SPARC_INCOMING_INT_ARG_FIRST): Remove TARGET_FLAT handling.
7727         (CONDITIONAL_REGISTER_USAGE): Likewise.
7728         (FRAME_POINTER_REQUIRED): Likewise.
7729         (INITIAL_ELIMINATION_OFFSET): Likewise.
7730         (BASE_RETURN_VALUE_REG): Likewise.
7731         (BASE_OUTGOING_VALUE_REG): Likewise.
7732         (BASE_PASSING_ARG_REG): Likewise.
7733         (BASE_INCOMING_ARG_REG): Likewise.
7734         (INCOMING_REGNO): Likewise.
7735         (OUTGOING_REGNO): Likewise.
7736         (LOCAL_REGNO): Likewise.
7737         (DELAY_SLOTS_FOR_EPILOGUE): Likewise.
7738         (ELIGIBLE_FOR_EPILOGUE_DELAY): Likewise.
7739         (EPILOGUE_USES): Likewise.
7740         * config/sparc/sparc.md ("isa" attribute): Change "v6" into "v7".
7741         ("flat" attribute): Delete.
7742         (do_builtin_setjmp_setup): Remove TARGET_FLAT and "flat" attribute
7743         handling.
7744         (call followed by jump define_peephole's): Delete.
7745         (exception_receiver): Likewise.
7746         (builtin_setjmp_receiver): Likewise.
7747         * config/sparc/t-sparclite (MULTILIB_OPTIONS): Remove -mflat.
7748
7749 2004-02-03  Paolo Bonzini  <bonzini@gnu.org>
7750
7751         PR c/11658
7752         PR c/13994
7753         * Makefile.in (c-parse.o, c-convert.o, c-typeck.o): Depend
7754         on langhooks.h.
7755         * objc/Make-lang.in (objc-parse.o): Depend on langhooks.h.
7756         * c-parse.in, c-convert.c, c-typeck.c, objc/objc-act.c:
7757         Include langhooks.h.  Replace c_common_truthvalue_conversion
7758         with the truthvalue_conversion language hook throughout.
7759         (expr_no_commas): Call default_conversion before save_expr
7760         for the first term of the production 'x ? : y'.
7761         * c-common.c (c_common_truthvalue_conversion): Remove
7762         obsolete block.  Invoke recursively the hook instead
7763         of this function.
7764         * c-convert.c (convert): handle ERROR_MARK_NODE.
7765         * c-typeck.c (build_binary_op): handle ERROR_MARK_NODE
7766         returned by the truthvalue_conversion language hook.
7767         * c-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Use
7768         c_objc_common_truthvalue_conversion.
7769         * c-objc-common.c (c_objc_common_truthvalue_conversion):
7770         New function.
7771         * c-tree.h (c_objc_common_truthvalue_conversion): Declare it.
7772         * objc/objc-lang.c (LANG_HOOKS_TRUTHVALUE_CONVERSION): Use
7773         c_objc_common_truthvalue_conversion.
7774
7775 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
7776
7777         * config/c4x/c4x.h (FUNCTION_VALUE): Use gen_rtx_REG instead
7778         of gen_rtx.
7779         (LIBCALL_VALUE): Likewise.
7780         * config/ip2k/ip2k.c (mdr_try_propagate_clr_sequence): Use
7781         gen_rtx_CC0 instead of gen_rtx.
7782         * config/m68hc11/m68hc11.c (m68hc11_emit_libcall): Use
7783         gen_rtx_fmt_e and gen_rtx_fmt_ee instead of gen_rtx.
7784         (m68hc11_expand_compare): Use gen_rtx_fmt_ee instead of
7785         gen_rtx.
7786         (m68hc11_emit_logical): Likewise.
7787
7788 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
7789
7790         * config/alpha/alpha.c, config/arm/arm.c, config/c4x/c4x.c,
7791         config/fr30/fr30.md, config/frv/frv.c, config/frv/frv.md,
7792         config/h8300/h8300.c, config/ia64/ia64.c, config/ip2k/ip2k.md,
7793         config/m32r/m32r.md, config/m68hc11/m68hc11.c,
7794         config/mips/mips.md, config/mmix/mmix.c,
7795         config/mn10300/mn10300.c, config/mn10300/mn10300.md,
7796         config/ns32k/ns32k.c, config/pa/pa.md, config/pdp11/pdp11.c,
7797         config/rs6000/altivec.md, config/s390/s390.c,
7798         config/s390/s390.h, config/s390/s390.md, config/sh/sh.c,
7799         config/sh/sh.h, config/sh/sh.md, config/stormy16/stormy16.c:
7800         Use const0_rtx instead of GEN_INT (0).  Do the same for other
7801         constants that are readily available.
7802
7803 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
7804
7805         * doloop.c, optabs.c, regmove.c, sched-deps.c,
7806         config/i386/i386.c, config/i386/i386.md: Use const0_rtx
7807         instead of GEN_INT (0).  Do the same for other constants that
7808         are readily available.
7809
7810 2004-02-03  Kazu Hirata  <kazu@cs.umass.edu>
7811
7812         * combine.c (simplify_set): Use gen_rtx_fmt_e instead of
7813         gen_rtx.
7814         * emit-rtl.c (init_emit_once): Use gen_rtx_PC and gen_rtx_CC0
7815         instead of gen_rtx.
7816         * reload1.c (init_elim_table): Use gen_rtx_fmt_e instead of
7817         gen_rtx.
7818         * config/ns32k/ns32k.md (udivmodhi4): Use gen_rtx_IOR and
7819         gen_rtx_ASHIFT instead of gen_rtx.
7820         (udivmodqi4): Likewise.
7821
7822 2004-02-02  Richard Henderson  <rth@redhat.com>
7823
7824         PR target/13789
7825         * expr.c (store_expr): Use force_operand before emit_move_insn.
7826
7827 2004-02-02  Jeff Law  <law@redhat.com>
7828             Roger Sayle  <roger@eyesopen.com>
7829
7830         * tree.c (commutative_tree_code, associative_tree_code): New
7831         functions.
7832         (iterative_hash_expr): Use commutative_tree_code.
7833         * tree.h (commutative_tree_code, associative_tree_code): Declare.
7834         * fold-const.c (operand_equal_p): Use commutative_tree_code
7835         rather than inlining the commutativity check.
7836         (fold): Likewise.
7837
7838 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
7839
7840         * system.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Poison.
7841         * config/frv/frv-protos.h: Remove the prototype for
7842         frv_function_arg_keep_as_reference.
7843         * config/frv/frv.c (frv_function_arg_keep_as_reference):
7844         Remove.
7845         * config/frv/frv.h (FUNCTION_ARG_KEEP_AS_REFERENCE): Likewise.
7846         * config/stormy16/stormy16.h: Remove the commented-out
7847         definition of FUNCTION_ARG_KEEP_AS_REFERENCE.
7848
7849 2004-02-03  Alan Modra  <amodra@bigpond.net.au>
7850
7851         PR target/13914
7852         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR): Use ap
7853         for retaddr_column.
7854
7855 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
7856
7857         * genemit.c (gen_exp): Generate gen_rtx_fmt_e* instead of
7858         gen_rtx.
7859
7860 2004-02-02  Eric Christopher  <echristo@redhat.com>
7861             Zack Weinberg  <zack@codesourcery.com>
7862
7863         * c-opts.c (c_common_handle_option): Add -finput-charset.
7864         * c.opt: Ditto.
7865         * cppcharset.c (one_iso88591_to_utf8): Remove.
7866         (convert_iso88591_utf8): Ditto.
7867         (conversion_tab): Remove 8859-1 converter.
7868         (_cpp_input_to_utf8): Remove.
7869         (_cpp_init_iconv_buffer): Ditto.
7870         (_cpp_close_iconv_buffer): Ditto.
7871         (_cpp_convert_input): New function.
7872         (_cpp_default_encoding): Ditto.
7873         * cpphash.h: Add/remove prototypes for above.
7874         * cppfiles.c (read_file_guts): Use _cpp_convert_input.
7875         * cppinit.c (cpp_create_reader): Use _cpp_default_encoding
7876         for narrow execution and input character sets.
7877         * cpplib.c (cpp_push_buffer): Delete uses of removed functions.
7878         * doc/cppopts.texi: Document -finput-charset.
7879
7880 2004-02-02  David Edelsohn  <edelsohn@gnu.org>
7881
7882         * rtlanal.c (refers_to_regno_p): Test regno, not inner_regno,
7883         against FIRST_PSEUDO_REGISTER.
7884
7885 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
7886
7887         * doc/invoke.texi (SPARC options): Further improve.
7888
7889 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
7890
7891         * config/arm/arm.md, config/c4x/c4x.md, config/cris/cris.md,
7892         config/h8300/h8300.c, config/ip2k/ip2k.md,
7893         config/iq2000/iq2000.c, config/mips/mips.c,
7894         config/rs6000/rs6000.c, config/rs6000/rs6000.md,
7895         config/sh/sh.c, config/sh/sh.md, config/stormy16/stormy16.c,
7896         config/v850/v850.md: Fix indentation.
7897
7898 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
7899
7900         * config/sparc/sparc.c (function_arg_slotno): Align TImode
7901         arguments on a 16-byte boundary in the parameter array if ARCH64.
7902         Split handling of TFmode.
7903
7904 2004-02-02  Paolo Bonzini  <bonzini@gnu.org>
7905
7906         * rtlanal.c (reg_overlap_mentioned_p) [!ENABLE_CHECKING]:
7907         Don't test CONSTANT_P (x).
7908         (reg_overlap_mentioned_p): Merge check for STRICT_LOWPART,
7909         ZERO_EXTRACT, SIGN_EXTRACT with the switch statement.
7910         Fix misindentation.
7911
7912 2004-02-02  Eric Botcazou  <ebotcazou@libertysurf.fr>
7913
7914         * doc/invoke.texi (SPARC options): Document that -mflat is deprecated.
7915
7916 2004-02-02  Kazu Hirata  <kazu@cs.umass.edu>
7917
7918         * config/arc/arc.md, config/arm/arm.c, config/arm/arm.md,
7919         config/c4x/c4x.c, config/c4x/c4x.md, config/cris/cris.md,
7920         config/frv/frv.c, config/h8300/h8300.c, config/ip2k/ip2k.md,
7921         config/iq2000/iq2000.c, config/m32r/m32r.c,
7922         config/mcore/mcore.c, config/mips/mips.c, config/mmix/mmix.md,
7923         config/mn10300/mn10300.c, config/rs6000/rs6000.c,
7924         config/rs6000/rs6000.md, config/sh/sh.c, config/sh/sh.md,
7925         config/stormy16/stormy16.c, config/v850/v850.md,
7926         config/xtensa/xtensa.c: Replace gen_rtx with gen_rtx_fmt_e*.
7927
7928 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
7929
7930         * config/mcore/mcore.c (block_move_sequence): Replace
7931         gen_rtx_CONST_INT with GEN_INT.
7932
7933 2004-02-02  Jan Hubicka  <jh@suse.cz>
7934
7935         * alias.c (record_set): Use hard_regno_nregs.
7936         * bt-load.c (find_btr_reference, note_btr_set): Likewise.
7937         * builtins.c (apply_args_size): Likewise.
7938         * caller-save.c (setup_save_areas, save_call_clobbered_regs,
7939         mark_set_regs, add_stored_regs, mark_referenced_regs,
7940         insert_restore, insert_save, insert_one_insn): Likewise.
7941         * cfgcleanup.c: Include regs.h
7942         (mark_effect, mentions_nonequal_regs): Likewise.
7943         * cfgrtl.c (mark_killed_regs): Likewise
7944         * combine.c (update_table_tick, record_value_for_reg,
7945         record_dead_and_set_regs, get_last_value_validate, use_crosses_set_p,
7946         reg_dead_at_p_1, reg_dead_at_p, mark_used_regs_combine, move_deaths,
7947         reg_bitfield_target_p, distribute_notes): Likewise.
7948         * cse.c (mention_regs, insert, invalidate, invalidate_for_call,
7949         exp_equiv_p, cse_insn): Likewise.
7950         * cselib.c (cselib_lookup): Likewise.
7951         (cselib_invalidate_regno, cselib_record_set): Likewise.
7952         * df.c (df_ref_record): Likewise.
7953         * dwarf2out.c (reg_loc_descriptor, multiple_reg_loc_descriptor):
7954         Likewise.
7955         * flow.c (mark_reg, insn_dead_p, mark_set_1, mark_used_reg,
7956         count_or_remove_death_notes_bb): Likewise.
7957         * function.c (aggregate_value_p, keep_stack_depressed): Likewise.
7958         * gloval.c (global_alloc, find_reg, mark_reg_store, mark_reg_conflicts,
7959         mark_reg_death, set_preference, reg_becomes_live, reg_dies): Likewise.
7960         * integrate.c (mark_stores): Likewise.
7961         * jump.c (delete_prior_computation): Likewise.
7962         * lcm.c (reg_dies, reg_becomes_live): Likewise.
7963         * local-alloc.c (combine_regs, find_free_reg, post_mark_life): Likewise.
7964         * loop.c (LOOP_REGNO_NREGS): Likewise.
7965         * postreload.c (reload_combine, reload_combine_note_store,
7966         reload_combine_note_use, reload_cse_move2add, move2add_note_store): Likewise.
7967         * ra-colorize.c (combine, color_usable_p, get_free_reg,
7968         calculate_dont_begin, calculate_dont_begin, colorize_one_web,
7969         try_recolor_web, insert_coalesced_conflicts, check_colors,
7970         break_precolored_alias): Likewise.
7971         * ra-debug.c: Include regs.h
7972         (ra_print_rtx_object): Likewise.
7973         * ra-rewrite (choose_spill_colors): Likewise.
7974         (spill_same_color_p, update_spill_colors, spill_is_free): Likewise.
7975         * ra.c (init_ra): Likewise.
7976         * recog.c (reg_fits_class_p, peep2_reg_dead_p,
7977         peep2_find_free_register): Likewise.
7978         * reg-stack.c (subst_stack_regs_pat, convert_regs_exit): Likewise.
7979         * regclass.c (hard_regno_nregs): New array.
7980         (init_reg_modes_once): Initialize it.
7981         (choose_hard_reg_mode): Use it.
7982         (record_reg_classes): Likewise.
7983         * regmove.c (mark_flags_life_zones): Likewise.
7984         * regrename.c (note_sets, clear_dead_regs, regrename_optimize,
7985         scan_rtx_reg, dump_def_use_chain, kill_value, set_value_regno,
7986         copy_value, maybe_mode_change, find_oldest_value_reg,
7987         copyprop_hardreg_forward_1):
7988         * regs.h (hard_regno_nregs): Declare.
7989         * realod.c (reload_inner_reg_of_subreg): Use it.
7990         (push_reload, combine_reloads, find_dummy_reload,
7991         hard_reg_set_here_p, operands_match_p, decompose, find_reloads,
7992         refers_to_regno_for_reload_p, find_equiv_reg, regno_clobbered_p,
7993         reload_adjust_reg_for_mode): Likewise.
7994         * reload1.c (compute_use_by_pseudos, count_pseudo,
7995         count_spilled_pseudo, find_reg, find_reload_regs, mark_home_live,
7996         spill_hard_reg, forget_old_reloads_1, mark_reload_reg_in_use,
7997         clear_reload_reg_in_use, reload_reg_free_for_value_p, free_for_value_p
7998         allocate_reload_reg, choose_reload_regs, emit_reload_insns,
7999         delete_output_reload): Likewise.
8000         * resource.c (update_live_status, mark_referenced_resources,
8001         mark_set_resources, mark_target_live_regs): Likewise.
8002         * rtlanal.c:  Include regs.h
8003         (refers_to_regno_p, reg_overlap_mentioned_p, dead_or_set_p,
8004         dead_or_set_regno_p, find_regno_note, find_reg_fusage,
8005         subreg_regno_offset, subreg_offset_representable_p,
8006         hoist_test_store): Likewise.
8007         * sched-deps.c (sched_analyze_1, sched_analyze_2): Likewise.
8008         * sched-rgn.c (check_live_1, update_live_1): Likewise.
8009         * stmt.c: Include regs.h
8010         (decl_conflicts_with_clobbers_p): Likewise.
8011         * varasm.c (make_decl_rtl): Likewise.
8012         * Makefile.in (cfgcleanup.o, rtlanal.o, ra-debug.o): Add regs.h dependnecy.
8013
8014 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
8015
8016         * config/arm/arm.c, config/arm/arm.h, config/arm/arm.md,
8017         config/arm/linux-gas.h, config/arm/netbsd-elf.h,
8018         config/arm/netbsd.h, config/arm/pe.c, config/avr/avr.c,
8019         config/avr/avr.h, config/avr/avr.md, config/c4x/c4x.h,
8020         config/cris/cris.h, config/fr30/fr30.h, config/frv/frv.c,
8021         config/frv/frv.h, config/ip2k/ip2k.c, config/iq2000/iq2000.c,
8022         config/iq2000/iq2000.h, config/m32r/m32r.c,
8023         config/m68hc11/m68hc11.c, config/m68hc11/m68hc11.h,
8024         config/m68hc11/m68hc11.md, config/m68k/m68k.md,
8025         config/mcore/mcore.c, config/mcore/mcore.h,
8026         config/mcore/mcore.md, config/mips/mips.c,
8027         config/ns32k/ns32k.h, config/ns32k/ns32k.md,
8028         config/rs6000/rs6000.c, config/s390/s390.c,
8029         config/s390/s390.md, config/sparc/sparc.c, config/v850/v850.c,
8030         config/xtensa/xtensa.h, config/xtensa/xtensa.md: Replace
8031         "gen_rtx (FOO, " with "gen_rtx_FOO (".
8032
8033 2004-02-01  Kazu Hirata  <kazu@cs.umass.edu>
8034
8035         * config/h8300/h8300.md (two peephole2's): New.
8036
8037 2004-02-01  Eric Botcazou  <ebotcazou@libertysurf.fr>
8038
8039         * config/sparc/sol2-bi.h: Handle TARGET_CPU_ultrasparc3.
8040         (CPP_CPU_SPEC): Handle -mcpu=ultrasparc3.
8041         (ASM_CPU_SPEC): Likewise
8042         * config/sparc/sol2.h: Handle TARGET_CPU_ultrasparc3.
8043         (ASM_CPU_SPEC): Remove -mcpu=v8plus.  Handle -mcpu=ultrasparc3.
8044
8045 2004-02-01  Roger Sayle  <roger@eyesopen.com>
8046
8047         * builtins.c (expand_builtin_pow): If flag_unsafe_math_optimizations
8048         isn't set, don't call expand_builtin_mathfn_2 to use the pow optab.
8049         (expand_builtin): Always call expand_builtin_pow.
8050
8051 2004-02-01  Roger Sayle  <roger@eyesopen.com>
8052
8053         * builtins.def (BUILT_IN_SIGNBIT, BUILT_IN_SIGNBITF,
8054         BUILT_IN_SIGNBITL): New GCC builtins.
8055         * builtins.c (expand_builtin_signbit): New function to RTL expand
8056         calls to signbit, signbitf and signbitl as inline intrinsics.
8057         (expand_builtin): Call expand_builtin_signbit for BUILT_IN_SIGNBIT*.
8058         (fold_builtin_signbit): New function to perform constant folding
8059         of signbit, signbitf and signbitl.
8060         (fold_builtin): Call fold_builtin_signbit for BUILT_IN_SIGNBIT*.
8061
8062         * doc/extend.texi: Document new signbit{,f,l} builtins.
8063
8064 2004-02-01  Richard Sandiford  <rsandifo@redhat.com>
8065
8066         * config/mips/mips.md (adddi3_internal_2): Remove superfluous %s.
8067
8068 2004-02-01  Chris Demetriou  <cgd@broadcom.com>
8069
8070         * config/mips/mips.h (PREDICATE_CODES): Remove entries for
8071         "mips_const_double_ok" and "simple_memory_operand", which were
8072         removed from the MIPS port with the mips-3_4-rewrite branch merge.
8073         * config/mips/mips.c (mips16_lay_out_constants): Update comment
8074         for removal of simple_memory_operand.
8075
8076 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8077
8078         * config/c4x/c4x.md: Use GEN_INT instead of
8079         gen_rtx (CONST_INT, ...).
8080
8081 2004-01-31  Richard Henderson  <rth@redhat.com>
8082
8083         * varasm.c (output_constant_pool): Don't zap the pool.
8084
8085 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8086
8087         * genrecog.c (decision_type): Add DT_const_int.
8088         (write_cond) [DT_const_int]: Print a comparison against small
8089         constant.
8090         (write_node): Simplify comparisons against small constants
8091         before printing tests.
8092
8093 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8094
8095         * config/m32r/m32r.c (m32r_load_pic_register): Use GEN_INT
8096         instead of gen_rtx_CONST_INT.
8097
8098 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8099
8100         * config/xtensa/xtensa.h (DYNAMIC_CHAIN_ADDRESS): Use GEN_INT
8101         instead of gen_rtx_CONST_INT.
8102
8103 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8104
8105         * target-def.h (TARGET_STRICT_ARGUMENT_NAMING): Define as
8106         hook_bool_CUMULATIVE_ARGS_false.
8107         * targhooks.c (default_strict_argument_naming): Rename to
8108         hook_bool_CUMULATIVE_ARGS_false.
8109         * targhooks.h: Update the prototype for
8110         default_strict_argument_naming.
8111
8112 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8113
8114         * config/sh/sh.c: Replace "gen_rtx (FOO, " with "gen_rtx_FOO (".
8115         * config/sh/sh.h: Likewise.
8116         * config/sh/sh.md: Likewise.
8117
8118 2004-01-31  Eric Botcazou  <ebotcazou@libertysurf.fr>
8119
8120         * doc/invoke.texi (SPARC options): Restructure and update.
8121
8122 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8123
8124         * system.h (PROMOTE_FUNCTION_ARGS, STRUCT_VALUE_INCOMING, and
8125         STRICT_ARGUMENT_NAMING): Poison.
8126         * target-def.h (TARGET_PROMOTE_FUNCTION_ARGS): Define as
8127         hook_bool_tree_false.
8128         * targhooks.c (default_promote_function_args): Remove.
8129         (default_struct_value_rtx): Don't use STRUCT_VALUE_INCOMING.
8130         Don't check incoming.
8131         (default_strict_argument_naming): Don't use
8132         STRICT_ARGUMENT_NAMING.
8133         * targhooks.h: Remove the prototype for
8134         default_promote_function_args.
8135
8136 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8137
8138         * config/i386/i386-protos.h: Remove the prototype for
8139         ix86_setup_incoming_varargs.
8140         * config/i386/i386.c (TARGET_SETUP_INCOMING_VARARGS): New.
8141         (ix86_setup_incoming_varargs): Make it static.
8142         * config/i386/i386.h (SETUP_INCOMING_VARARGS): Remove.
8143
8144 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8145
8146         * alloc-pool.c: Fix comment typos.
8147         * builtin-types.def: Likewise.
8148         * builtins.def: Likewise.
8149         * c-pretty-print.c: Likewise.
8150         * df.h: Likewise.
8151         * reload1.c: Likewise.
8152
8153 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8154
8155         * doc/invoke.texi: Follow spelling conventions.
8156         * doc/tm.texi: Likewise.
8157
8158 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8159
8160         * doc/install.texi: Fix typos.
8161         * doc/invoke.texi: Likewise.
8162
8163 2004-01-31  Ulrich Weigand  <uweigand@de.ibm.com>
8164
8165         * config/s390/s390.c (s390_decompose_address): Do not treat virtual
8166         registers as pointers.
8167         * config/s390/s390.md ("*la_31" second peephole2): Fix incorrect mode.
8168
8169 2004-01-31  Paolo Bonzini  <bonzini@gnu.org>
8170
8171         * combine.c (cse_main): Set gen_lowpart to gen_lowpart_for_combine
8172         and restore it to gen_lowpart_general on exit.
8173         (gen_lowpart_for_combine): Adjust all callers to go through
8174         gen_lowpart.
8175         * cse.c (cse_main): Set gen_lowpart to gen_lowpart_if_possible
8176         and restore it to gen_lowpart_general on exit.
8177         (gen_lowpart_if_possible): Adjust all callers to go through
8178         gen_lowpart.
8179         * emit-rtl.c (gen_lowpart_general): New name of gen_lowpart.
8180         (gen_lowpart): Declare as pointer to function, initialized to
8181         gen_lowpart_general.
8182         * rtl.h (gen_lowpart): Declare as pointer to function.
8183
8184 2004-01-31  Kazu Hirata  <kazu@cs.umass.edu>
8185
8186         * bt-load.c: Replace "gen_rtx (FOO, " with "gen_rtx_FOO (".
8187         * calls.c: Likewise.
8188         * emit-rtl.c: Likewise.
8189         * function.c: Likewise.
8190         * reload1.c: Likewise.
8191         * config/i386/cygming.h: Likewise.
8192         * config/i386/i386.c: Likewise.
8193         * config/i386/winnt.c: Likewise.
8194
8195 2004-01-30  Dara Hazeghi  <dhazeghi@yahoo.com>
8196
8197         PR bootstrap/9249
8198         * doc/install.texi: document --enable-__cxa_atexit option.
8199         * configure.ac: Disable __cxa_atexit if not supported.
8200         * configure: Regenerate.
8201
8202 2003-01-30  Daniel Berlin  <dberlin@dberlin.org>
8203
8204         * ggc-zone.c (ggc_free): New function.
8205
8206 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
8207
8208         alloc-pool.c, c-lex.c, c-pragma.h, c-semantics.c, cfghooks.c,
8209         cfghooks.h, cfglayout.c, cfgloopmanip.c, debug.c, debug.h,
8210         flow.c, genextract.c, ggc-common.c, ggc-page.c, ggc.h,
8211         ifcvt.c, jump.c, loop-unswitch.c, timevar.c, timevar.def,
8212         tree-optimize.c, vmsdbgout.c, config/fp-bit.c,
8213         config/alpha/alpha.c, config/alpha/alpha.h,
8214         config/alpha/alpha.md, config/alpha/unicosmk.h,
8215         config/alpha/vms.h, config/arm/linux-elf.h, config/avr/avr.c,
8216         config/c4x/c4x-protos.h, config/c4x/c4x.md,
8217         config/d30v/d30v.h, config/frv/frv.md, config/frv/frvbegin.c,
8218         config/frv/frvend.c, config/i386/cygming.h,
8219         config/i386/djgpp.h, config/i386/emmintrin.h,
8220         config/i386/gthr-win32.c, config/i386/i386-interix.h,
8221         config/i386/i386-protos.h, config/i386/openbsd.h,
8222         config/i386/winnt.c, config/i386/xm-mingw32.h,
8223         config/i386/xmmintrin.h, config/ia64/ia64.md,
8224         config/iq2000/iq2000.md, config/m32r/m32r.md,
8225         config/m68k/m68k.md, config/mcore/mcore-elf.h,
8226         config/mcore/mcore.md, config/mips/elf.h, config/mips/elf64.h,
8227         config/mips/iris5gas.h, config/mips/iris6.h,
8228         config/mips/iris6gas.h, config/mips/linux.h,
8229         config/mips/mips.md, config/mips/netbsd.h,
8230         config/mips/openbsd.h, config/mips/windiss.h,
8231         config/pa/fptr.c, config/rs6000/aix.h,
8232         config/rs6000/altivec.h, config/rs6000/darwin.h,
8233         config/rs6000/xcoff.h, config/s390/s390-protos.h,
8234         config/s390/s390.c, config/s390/s390.h, config/s390/s390.md,
8235         config/sh/netbsd-elf.h, config/sh/sh.h, config/sh/vxworks.h,
8236         config/sparc/sol2.h: Update copyright.
8237
8238 2004-01-30  Kelley Cook  <kcook@gcc.gnu.org>
8239
8240         * Makefile.in (abs_docdir, abs_srcdir): Define.
8241         (doc/%.dvi, doc/gccinstall.dvi): Use $(abs_docdir).
8242
8243 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
8244
8245         * genconfig.c (main): Have CC0_P check its operand even on a
8246         target without cc0.
8247
8248 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
8249
8250         * config/alpha/alpha.c: Remove mentions of deprecates macros
8251         in comments, remove some target-independent comments about target
8252         macros, and/or add minimal function comments for target hook
8253         implementations.
8254         * config/avr/avr.c: Likewise.
8255         * config/ia64/ia64.h: Likewise.
8256         * config/ip2k/ip2k.c: Likewise.
8257         * config/iq2000/iq2000.c: Likewise.
8258         * config/m32r/m32r.h: Likewise.
8259         * config/m68hc11/m68hc11.c: Likewise.
8260         * config/mcore/mcore.c: Likewise.
8261         * config/mmix/mmix.c: Likewise.
8262         * config/mn10300/mn10300.c: Likewise.
8263         * config/pa/pa.c: Likewise.
8264         * config/pdp11/pdp11.c: Likewise.
8265         * config/rs6000/rs6000.h: Likewise.
8266         * config/sh/sh.c: Likewise.
8267         * config/sh/sh.h: Likewise.
8268         * config/sparc/sparc.c: Likewise.
8269         * config/sparc/sparc.h: Likewise.
8270         * config/stormy16/stormy16.c: Likewise.
8271         * config/xtensa/xtensa.c: Likewise.
8272
8273 2004-01-30  Ulrich Weigand  <uweigand@de.ibm.com>
8274
8275         PR optimization/12147
8276         * reload1.c (reload_reg_free_p): RELOAD_OTHER conflicts with
8277         RELOAD_FOR_OPADDR_ADDR.
8278         (reload_reg_reaches_end_p): RELOAD_FOR_OTHER_ADDRESS register
8279         might be reused as RELOAD_FOR_OPADDR_ADDR register.
8280
8281 2004-01-30  Jan Hubicka  <jh@suse.cz>
8282
8283         * reload.c (get_secondary_mem): Fix updating of
8284         secondary_memlocs_elim_used.
8285
8286 2004-01-30  Richard Henderson  <rth@redhat.com>
8287
8288         * varasm.c (struct rtx_const, struct pool_constant): Remove.
8289         (MAX_RTX_HASH_TABLE): Remove.
8290         (const_rtx_hash_table, const_rtx_sym_hash_table): Remove.
8291         (first_pool, last_pool, pool_offset): Remove.
8292         (struct rtx_constant_pool): Split out from ...
8293         (struct varasm_status): ... here.  Reference one via pointer.
8294         (struct constant_descriptor_rtx): Merge struct pool_constant.
8295         (SYMHASH): Remove.
8296         (decode_rtx_const): Remove.
8297         (const_hash_rtx, compare_constant_rtx): Remove.
8298         (record_constant_rtx): Remove.
8299         (const_desc_rtx_hash, const_desc_rtx_eq): New.
8300         (const_desc_rtx_sym_hash, const_desc_rtx_sym_eq): New.
8301         (const_rtx_hash_1, const_rtx_hash): New.
8302         (init_varasm_status): Allocate a rtx_constant_pool, and its hashes.
8303         (simplify_subtraction): Use simplify_rtx.
8304         (force_const_mem): Rewrite to use new data structures.
8305         (find_pool_constant): Likewise.
8306         (get_pool_constant, get_pool_constant_mark,
8307         get_pool_constant_for_function, get_pool_mode,
8308         get_pool_mode_for_function, get_pool_offset, get_pool_size): Likewise.
8309         (output_constant_pool_2): Split out from output_constant_pool.
8310         (output_constant_pool_1): Likewise.  Use new pool datastructures.
8311         (output_constant_pool): Zap entire pool datastructure.
8312         (mark_constant): Use new pool datastructures.
8313         (mark_constants): Use for_each_rtx.
8314         (mark_constant_pool): Use new pool datastructures.
8315
8316 2004-01-30  Fariborz Jahanian <fjahanian@apple.com>
8317
8318         * config/rs6000/rs6000.c (rs6000_emit_move): Remove #if 0.
8319         Copy operands[1] to pseudo for simplify_gen_subreg.
8320
8321 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
8322
8323         * gcse.c (bypass_block): Fix a typo in the previous check-in
8324         to the file.
8325
8326 2004-01-30  Andrew Pinski <pinskia@physics.uc.edu>
8327
8328         * toplev.c: Include alloc-pool.h.
8329         * Makefile.in (toplev.c): Update dependencies.
8330
8331 2004-01-30  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
8332
8333         * combine.c (simplify_shift_const, case XOR): Be careful when
8334         commuting XOR with ASHIFTRT.
8335
8336 2004-01-30  Kazu Hirata  <kazu@cs.umass.edu>
8337             Eric Botcazou  <ebotcazou@libertysurf.fr>
8338
8339         * config/sparc/sparc-protos.h: Remove the prototype for
8340         sparc_builtin_saveregs.
8341         * config/sparc/sparc.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
8342         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
8343         (TARGET_PROMOTE_PROTOTYPES): Likewise.
8344         (TARGET_STRUCT_VALUE_RTX): Likewise.
8345         (TARGET_RETURN_IN_MEMORY): Likewise.
8346         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
8347         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
8348         (sparc_builtin_saveregs): Make it static.
8349         (sparc_promote_prototypes): New.
8350         (sparc_struct_value_rtx): Likewise.
8351         (sparc_return_in_memory): Likewise.
8352         * config/sparc/sparc.h: (PROMOTE_FUNCTION_ARGS): Remove.
8353         (PROMOTE_FUNCTION_RETURN): Likewise.
8354         (RETURN_IN_MEMORY): Likewise.
8355         (STRUCT_VALUE): Likewise.
8356         (STRUCT_VALUE_INCOMING): Likewise.
8357         (EXPAND_BUILTIN_SAVEREGS): Likewise.
8358         (STRICT_ARGUMENT_NAMING): Likewise.
8359         (PROMOTE_PROTOTYPES): Likewise.
8360
8361         * config/sparc/sparc.h (PROMOTE_MODE): Use word_mode.
8362
8363 2004-01-30  Eric Botcazou  <ebotcazou@libertysurf.fr>
8364
8365         PR c/12818
8366         * varasm.c (const_hash_1) <STRING_CST>: Use the
8367         address to compute the hash value if flag_writable_strings.
8368         (compare_constant) <STRING_CST>: Compare the addresses
8369         if flag_writable_strings.
8370         (build_constant_desc): Do not copy the expression for a
8371         STRING_CST if flag_writable_strings.
8372
8373 2004-01-30  Jan Hubicka  <jh@suse.cz>
8374
8375         * alloc-pool.c: Include hashtab.h
8376         (alloc_pool_descriptor): New structure
8377         (alloc_pool_hash): New global variable.
8378         (hash_descriptor, eq_descriptor, alloc_pool_descriptor): New.
8379         (create_alloc_pool): Update statistics.
8380         (free_alloc_pool): Likewise.
8381         (pool_alloc): Likewise.
8382         (output_info): New structure
8383         (print_statistics, dump_alloc_pool_statistics): New function.
8384         * alloc-pool.h (alloc_pool_def): Turn name to be constant.
8385         (dump_alloc_pool_statistics): Declare.
8386         * toplev.c (finalize):  Dump statistics.
8387
8388         * reload.c (secondary_memlocs_elim_used): New static variable.
8389         (get_secondary_mem): Update it.
8390         (find_reloads): Use it.
8391
8392 2004-01-30  Steven Bosscher <s.bosscher@student.tudelft.nl>
8393
8394         * toplev.c: Fix broken checkin of 2003-12-30, again.
8395
8396 2004-01-30  Ulrich Weigand  <uweigand@de.ibm.com>
8397
8398         * configure.ac (gcc_cv_as_dwarf2_debug_line): Enable test for
8399         s390*-*-* targets by specifying a 'nop' insn.
8400         * configure: Regenerate.
8401
8402 2004-01-30  Eric Botcazou  <ebotcazou@libertysurf.fr>
8403
8404         PR target/11475
8405         * config/sparc/sparc.md (movhi_lo_sum): Tighten predicates.
8406
8407 2004-01-29  Jakub Jelinek  <jakub@redhat.com>
8408
8409         * emit-rtl.c (change_address): Use XEXP (memref, 0) instead
8410         of addr when creating MEM copy.
8411
8412 2004-01-29  Devang Patel  <dpatel@apple.com>
8413
8414         * dwarf2out.c (gen_field_die): Do not equate decl number to die.
8415
8416 2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>
8417
8418         PR inline-asm/6162
8419         * reload.c (find_reloads): Only support one pair of commutative
8420         operands.
8421
8422 2004-01-29  Roger Sayle  <roger@eyesopen.com>
8423
8424         PR java/13824
8425         * tree.c (unsafe_for_reeval): Handle EXIT_BLOCK_EXPR nodes specially
8426         as their EXIT_BLOCK_LABELED_BLOCK operands can lead to unbounded
8427         recursion.
8428
8429 2004-01-29  Kazu Hirata  <kazu@cs.umass.edu>
8430
8431         * config/frv/frv.c: Don't mention deprecated macros in
8432         comments.  Remove some target-independent comments about
8433         target macros.
8434         * config/frv/frv.h: Likewise.
8435
8436 2004-01-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
8437
8438         * cfghooks.c (split_block): Set probability and count of the
8439         new edge.
8440
8441 2005-01-29  Josef Zlomek  <zlomekj@suse.cz>
8442
8443         * dwarf2out.c (struct die_struct): Added field decl_id.
8444         (decl_die_table): Changed to hash table.
8445         (decl_die_table_allocated): Deleted.
8446         (decl_die_table_in_use): Deleted.
8447         (DECL_DIE_TABLE_INCREMENT): Deleted.
8448         (decl_die_table_hash): New function.
8449         (decl_die_table_eq): New function.
8450         (lookup_decl_die): Lookup in a hash table.
8451         (equate_decl_number_to_die): Insert into a hash table.
8452         (dwarf2out_init): Init hash table decl_die_table.
8453
8454 2004-01-29  Jakub Jelinek  <jakub@redhat.com>
8455
8456         PR optimization/13424
8457         * expr.c (store_constructor): Revert 2003-12-03 change.
8458
8459         * emit-rtl.c (change_address): Check also if MEM_ATTRS is set as
8460         expected before returning early.  Avoid sharing RTL if they
8461         need to be changed.
8462
8463         * config/i386/i386.c (ix86_expand_movstr): Rework rep_mov and strmov
8464         handling so that memory attributes are preserved.  Don't call
8465         ix86_set_move_mem_attrs.
8466         (ix86_set_move_mem_attrs_1, ix86_set_move_mem_attrs): Removed.
8467         (ix86_expand_clrstr): Rename src argument to
8468         dst.  Rework rep_stos and strset handling so that memory attributes
8469         are preserved.
8470         (ix86_expand_strlen): Pass src argument to
8471         ix86_expand_strlensi_unroll_1.  Rework strlenqi_1 handling so that
8472         memory attributes are preserved.
8473         (ix86_expand_strlensi_unroll_1): Add src argument.  Use
8474         change_address instead of gen_rtx_MEM.
8475         * config/i386/i386.md (strmov, strmov_singleop, rep_mov): New
8476         expanders.
8477         (strmovdi_rex64, strmovsi, strmovsi_rex64, strmovhi, strmovhi_rex64,
8478         strmovqi, strmovqi_rex64): Remove.
8479         (rep_mov*, strmov*): Prefix insn names with *.
8480         (strset, strset_singleop, rep_stos): New expanders.
8481         (strsetdi_rex64, strsetsi, strsetsi_rex64, strsethi, strsethi_rex64,
8482         strsetqi, strsetqi_rex64): Remove.
8483         (rep_stos*, strset*): Prefix insn names with *.
8484         (rep_stosqi_rex64): Likewise.  Fix mode of dirflag reg from DImode
8485         to SImode.
8486         (cmpstrsi): Rework cmpstrqi_1 handling so that memory attributes
8487         are preserved.
8488         (cmpstrqi_nz_1, cmpstrqi_nz_rex_1, cmpstrqi_1, cmpstrqi_rex_1):
8489         Prefix insn names with *.
8490         (cmpstrqi_nz_1, cmpstrqi_1): New expanders.
8491         (strlenqi_1, strlenqi_rex_1): Prefix insn names with *.
8492         (strlenqi_1): New expander.
8493         * config/i386/i386.h (ix86_set_move_mem_attrs): Remove prototype.
8494
8495 2004-01-29  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
8496
8497         * Makefile.in (cfghooks.o): Add TIMEVAR_H and toplev.h dependency.
8498         * basic-block.h (tidy_fallthru_edge, tidy_fallthru_edges, dump_bb,
8499         verify_flow_info): Declaration removed.
8500         * cfg.c (verify_flow_info, dump_bb): Moved to cfghooks.c.
8501         (debug_bb, debug_bb_n): Add argument to dump_bb call.
8502         * cfgcleanup.c (try_simplify_condjump, try_crossjump_to_edge,
8503         try_optimize_cfg, delete_unreachable_blocks): Use delete_basic_block
8504         instead of delete_block.
8505         * cfghooks.c: Include timevar.h and toplev.h.
8506         (cfg_hooks): Define here.
8507         (verify_flow_info, dump_bb): Moved from cfg.c.
8508         (redirect_edge_and_branch, redirect_edge_and_branch_force,
8509         split_block, split_block_after_labels, move_block_after,
8510         delete_basic_block, split_edge, create_basic_block,
8511         create_empty_bb, can_merge_blocks_p, merge_blocks,
8512         make_forwarder_block, tidy_fallthru_edge, tidy_fallthru_edges):
8513         New functions.
8514         * cfghooks.h (struct cfg_hooks): Added fields name,
8515         make_forwarder_block, tidy_fallthru_edge and
8516         move_block_after. Changed type of verify_flow_info, dump_bb,
8517         split_block fields. Renamed cfgh_split_edge and delete_block
8518         fields.
8519         (redirect_edge_and_branch, redirect_edge_and_branch_force,
8520         split_block, delete_block, split_edge, create_basic_block,
8521         can_merge_blocks_p, merge_blocks): Macros removed.
8522         (cfg_hooks): Do not export.
8523         (verify_flow_info, dump_bb, redirect_edge_and_branch,
8524         redirect_edge_and_branch_force, split_block, split_block_after_labels,
8525         move_block_after, delete_basic_block, split_edge, create_basic_block,
8526         create_empty_bb, can_merge_blocks_p, merge_blocks,
8527         make_forwarder_block, tidy_fallthru_edge, tidy_fallthru_edges):
8528         Declare.
8529         (cfg_layout_rtl_cfg_hooks): Declare.
8530         * cfgloop.c (update_latch_info, mfb_keep_just, mfb_keep_nonlatch):
8531         New functions.
8532         (canonicalize_loop_headers): Use new semantics of make_forwarder_block.
8533         (redirect_edge_with_latch_update): Removed.
8534         (make_forwarder_block): Moved to cfghooks.c, semantics changed.
8535         * cfgloopmanip.c (remove_bbs): Do not update dominators here.
8536         * cfgrtl.c (cfg_layout_split_block, rtl_split_block, rtl_dump_bb,
8537         rtl_delete_block, rtl_split_block, rtl_merge_blocks,
8538         tidy_fallthru_edge, rtl_split_edge, cfg_layout_delete_block,
8539         cfg_layout_merge_blocks, cfg_layout_split_edge): Partly moved to
8540         cfghooks.c.
8541         (rtl_create_basic_block): Coding style fix.
8542         (rtl_tidy_fallthru_edge, rtl_move_block_after,
8543         rtl_make_forwarder_block): New functions.
8544         (update_cfg_after_block_merging): Removed.
8545         (rtl_cfg_hooks, cfg_layout_rtl_cfg_hooks): Fill in new entries.
8546         * flow.c (verify_wide_reg, verify_local_live_at_start): Add argument
8547         to dump_bb.
8548         * ifcvt.c (merge_if_block, find_cond_trap, find_if_case_1,
8549         find_if_case_2): Don't update dominators.
8550         * timevar.def (TV_CFG_VERIFY): New.
8551         * loop-unswitch.c (unswitch_loop): Don't call add_to_dominance_info.
8552         * cfglayout.c (copy_bbs): Don't call add_to_dominance_info.
8553         * cfgloopmanip.c (split_loop_bb): Don't update dominators.
8554         (remove_bbs): Don't call remove_bbs.
8555         (create_preheader): Use make_forwarder_block.
8556         (mfb_keep_just, mfb_update_loops): New static functions.
8557
8558 2004-01-29  Kazu Hirata  <kazu@cs.umass.edu>
8559
8560         * config/avr/avr.h: Remove target-independent comments about
8561         target macros.
8562
8563 2004-01-28  Daniel Berlin  <dberlin@dberlin.org>
8564
8565         * timevar.c (timevar_print): Mention when checking is enabled.
8566
8567 2004-01-28  Giovanni Bajo  <giovannibajo@gcc.gnu.org>
8568
8569         * c-lex.c (c_lex): Rename to...
8570         (c_lex_with_flags): Add new parameter to get CPP flags.
8571         (c_lex): Thunk to c_lex_with_flags while keeping the old interface.
8572         * c-pragma.h (c_lex_with_flags): Declare.
8573
8574 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8575
8576         * config/mcore/mcore.c (mcore_external_libcall): Add a
8577         comment.
8578         (mcore_return_in_memory): Likewise.
8579
8580 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8581
8582         * config/mcore/mcore-protos.h: Remove the prototype for
8583         mcore_setup_incoming_varargs.
8584         * config/mcore/mcore.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
8585         (TARGET_PROMOTE_FUNCTION_ARGS): Likewise.
8586         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
8587         (TARGET_PROMOTE_PROTOTYPES): Likewise.
8588         (TARGET_STRUCT_VALUE_RTX): Likewise.
8589         (TARGET_RETURN_IN_MEMORY): Likewise.
8590         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
8591         (mcore_setup_incoming_varargs): Make it static.  Receive the
8592         first argument by reference.  Add argument second_time.
8593         (mcore_external_libcall): New.
8594         (mcore_return_in_memory): Likewise.
8595         * config/mcore/mcore.h (PROMOTE_FUNCTION_ARGS): New.
8596         (PROMOTE_FUNCTION_RETURN): Likewise.
8597         (STRUCT_VALUE): Likewise.
8598         (RETURN_IN_MEMORY): Likewise.
8599         (SETUP_INCOMING_VARARGS): Likewise.
8600         (PROMOTE_PROTOTYPES): Likewise.
8601         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
8602
8603 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8604
8605         * config/m32r/m32r-protos.h: Remove the prototype for
8606         m32r_setup_incoming_varargs.
8607         * config/m32r/m32r.c (TARGET_PROMOTE_PROTOTYPES): New.
8608         (TARGET_STRUCT_VALUE_RTX): Likewise.
8609         (TARGET_RETURN_IN_MEMORY): Likewise.
8610         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
8611         (m32r_return_in_memory): New.
8612         (m32r_setup_incoming_varargs): Make it static.
8613         * config/m32r/m32r.h: Remove #undef of
8614         ASM_OUTPUT_EXTERNAL_LIBCALL.  Remove the commented-out
8615         definitions of PROMOTE_FUNCTION_ARGS and
8616         PROMOTE_FUNCTION_RETURN.
8617         (PROMOTE_PROTOTYPES): Remove.
8618         (RETURN_IN_MEMORY): Likewise.
8619         (STRUCT_VALUE): Likewise.
8620
8621 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8622
8623         * config/m68k/m68k.c (TARGET_PROMOTE_PROTOTYPES): New.
8624         (TARGET_STRUCT_VALUE_RTX): Likewise.
8625         (m68k_struct_value_rtx): Likewise.
8626         * config/m68k/m68k.h (STRUCT_VALUE_REGNUM): Rename to
8627         STRUCT_VALUE_REGNUM.
8628         (PROMOTE_PROTOTYPES): Remove.
8629         * config/m68k/m68kelf.h (STRUCT_VALUE_REGNUM): Rename to
8630         STRUCT_VALUE_REGNUM.
8631         * config/m68k/m68kv4.h (STRUCT_VALUE_REGNUM): Likewise.
8632         * config/m68k/netbsd-elf.h (STRUCT_VALUE_REGNUM): Likewise.
8633
8634 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8635
8636         * config/stormy16/stormy16.c
8637         (TARGET_BUILD_BUILTIN_VA_LIST_TYPE): Rename to
8638         TARGET_BUILD_BUILTIN_VA_LIST.
8639
8640 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8641
8642         * config/v850/v850.c (TARGET_PROMOTE_PROTOTYPES): New.
8643         (TARGET_STRUCT_VALUE_RTX): Likewise.
8644         (TARGET_RETURN_IN_MEMORY): Likewise.
8645         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
8646         (v850_return_in_memory): Likewise.
8647         (v850_setup_incoming_varargs): Likewise.
8648         * config/v850/v850.h (PROMOTE_PROTOTYPES): Remove.
8649         (SETUP_INCOMING_VARARGS): Likewise.
8650         (RETURN_IN_MEMORY): Likewise.
8651         (STRUCT_VALUE): Likewise.
8652
8653 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8654
8655         * config/fr30/fr30.c (TARGET_PROMOTE_PROTOTYPES): New.
8656         (fr30_setup_incoming_varargs): Don't use
8657         STRICT_ARGUMENT_NAMING.
8658         * config/fr30/fr30.h (PROMOTE_PROTOTYPES): Remove.
8659         (STRICT_ARGUMENT_NAMING): Likewise.
8660
8661 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8662
8663         * config/frv/frv-protos.h: Remove the prototype for
8664         frv_expand_builtin_saveregs.
8665         * config/frv/frv.c (TARGET_STRUCT_VALUE_RTX): Likewise.
8666         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
8667         (frv_stack_info): Use FRV_STRUCT_VALUE_REGNUM instead of
8668         STRUCT_VALUE_REGNUM.
8669         (frv_expand_builtin_saveregs): Make it static.
8670         (frv_struct_value_rtx): New.
8671         * config/frv/frv.h (EXPAND_BUILTIN_SAVEREGS): Remove.
8672
8673 2004-01-29  Jan Hubicka  <jh@suse.cz>
8674
8675         PR c++/12850
8676         * cgraph.c (cgraph_remove_node): Clear out saved/insns/arguments and
8677         initial pointers.
8678         * cgraphunit.c (cgraph_finalize_function): Clear out DECL_SAVED_INSNS
8679         for functions that will be only inlined.
8680         (cgraph_mark_function_to_output): Likewise.
8681         (cgraph_expand_function): Sanity check that DECL_DEFER_OUTPUT is clear;
8682         do not clear function body.
8683         * tree-optimize.c (clear_decl_rtl): Use decl_function_context.
8684         (tree_rest_of_compilation): Reorganize the logic releasing function
8685         body to use callgraph datastructure.
8686
8687 2004-01-28  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
8688
8689         * pa.md: Change predicate of a peephole2 pattern from reg_or_0_operand
8690         to register_operand.
8691
8692 2004-01-28  Zack Weinberg  <zack@codesourcery.com>
8693
8694         * config/ia64/ia64.md (fetchadd_acq_si, fetchadd_acq_di)
8695         (cmpxchg_acq_si, cmpxchg_acq_di): Exchange match_dup and
8696         match_operand expressions so that all match_dups appear
8697         lexically after their corresponding match_operands.
8698
8699 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8700
8701         * config/h8300/h8300.c (WORD_REG_USED): Use
8702         HARD_FRAME_POINTER_REGNUM instead of FRAME_POINTER_REGNUM.
8703         (compute_saved_regs): Likewise.
8704         (h8300_expand_prologue): Likewise.  Allocate locals after
8705         saving registers.
8706         (h8300_expand_epilogue): Use HARD_FRAME_POINTER_REGNUM instead
8707         of FRAME_POINTER_REGNUM.  Deallocate locals before saving
8708         registers.
8709         (h8300_initial_elimination_offset): Adjust for the new frame
8710         layout, which swaps flips the order of locals and saved
8711         registers.
8712         * config/h8300/h8300.h (FIRST_PSEUDO_REGISTER): Change to 12.
8713         (HARD_FRAME_POINTER_REGNUM): New.
8714         (ELIMINABLE_REGS): Add an elimination rule from
8715         FRAME_POINTER_REGNUM to HARD_FRAME_POINTER_REGNUM.
8716         (REGISTER_NAMES): Add fp.
8717         * config/h8300/h8300.md (FP_REG): Change to 11.
8718         (HFP_REG): New.
8719
8720 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8721
8722         * genrecog.c (write_node): Remove a useless local variable.
8723
8724 2004-01-28  Ian Lance Taylor  <ian@wasabisystems.com>
8725
8726         * Makefile.in (options.c options.h): Use stamp file s-options to
8727         avoid unnecessary rebuilds.
8728         (options.o): New target listing dependencies.
8729         (gtyp-gen.h): Use stamp file s-gtyp-gen.
8730         (STAGESTUFF): Add s-gtyp-gen.
8731
8732 2004-01-28  Richard Henderson  <rth@redhat.com>
8733
8734         * ggc.h (ggc_free): Declare.
8735         * ggc-common.c (ggc_realloc): Use it.
8736         * ggc-page.c: Remove lots of inline markers.
8737         (globals): Add free_object_list.
8738         (ggc_alloc): Tidy.
8739         (ggc_free, validate_free_objects): New.
8740         (poison_pages): Provide default.
8741         (ggc_collect): Call validate_free_objects; emit markers to
8742         the debug file.
8743
8744 2004-01-28  Zack Weinberg  <zack@codesourcery.com>
8745             Jim Wilson  <wilson@specifixinc.com>
8746
8747         * config/ia64/ia64.c (ia64_split_tmode, ia64_split_tmode_move):
8748         Rewrite to use POST_INC/POST_DEC/POST_MODIFY instead of a
8749         scratch pointer.
8750         (ia64_secondary_reload_class): Delete case GR_REGS.
8751         * config/ia64/ia64.md (movti, *movti_internal, movtf, *movtf_internal):
8752         Do not allocate a scratch register.
8753         (reload_inti, reload_outti, reload_intf, reload_outtf): Delete.
8754
8755 2004-01-28  Jan Hubicka  <jh@suse.cz>
8756
8757         * gcse.c (bypass_block): Prevent edges to be unified when we are
8758         about to emit compenstation code.
8759
8760 2004-01-28  Nick Clifton  <nickc@redhat.com>
8761
8762         * config/arm/arm.c (arm_expand_builtin): Force second argument of
8763         the setcwx insn into a register.
8764
8765 2004-01-28  Richard Sandiford  <rsandifo@redhat.com>
8766
8767         * config/fp-bit.c (pack_d): When using paired doubles to implement
8768         a long double, round the high part separately.
8769         (unpack_d): Fix the case in which the high part is a power of two
8770         and the low part is a nonzero value of the opposite sign.
8771
8772 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8773
8774         * config/c4x/c4x.c (TARGET_ASM_EXTERNAL_LIBCALL): New.
8775         (TARGET_STRUCT_VALUE_RTX): Likewise.
8776         (c4x_external_libcall): Likewise.
8777         (c4x_struct_value_rtx): Likewise.
8778         * config/c4x/c4x.h: Remove.
8779         (STRUCT_VALUE_REGNUM): Likewise.
8780         (ASM_OUTPUT_EXTERNAL_LIBCALL): Likewise.
8781
8782 2004-01-28  Kazu Hirata  <kazu@cs.umass.edu>
8783
8784         * config/i386/i386.c (TARGET_PROMOTE_PROTOTYPES): New.
8785         (TARGET_STRUCT_VALUE_RTX): Likewise.
8786         * config/i386/i386.h (STRUCT_VALUE_INCOMING): Remove.
8787         (STRUCT_VALUE): Likewise.
8788         (PROMOTE_PROTOTYPES): Likewise.
8789
8790 2004-01-27  Roger Sayle  <roger@eyesopen.com>
8791
8792         * config/pa/pa.c (emit_move_sequence): Check that operand1 is a
8793         CONST_INT before using INTVAL.
8794
8795 2004-01-27  Ulrich Weigand  <uweigand@de.ibm.com>
8796
8797         * config/s390/s390.h (TARGET_DEFAULT): Default to !TARGET_BACKCHAIN.
8798         * config/s390/s390.c (s390_return_addr_rtx): Fail for all but current
8799         frame if !TARGET_BACKCHAIN.
8800         * config/s390/s390.md ("allocate_stack"): Use pattern only if
8801         TARGET_BACKCHAIN.
8802         * doc/invoke.texi (-mbackchain/-mno-backchain): Document new default.
8803
8804 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
8805
8806         * ia64.c (ia64_function_arg): When placing HFAs in integer
8807         registers, do not special case the mode used for complex
8808         types.  Do not advance int_regs until the current register
8809         is full.
8810
8811 2004-01-27  Richard Sandiford  <rsandifo@redhat.com>
8812
8813         PR target/7297
8814         * except.c (init_eh): Use a 5-word __jbuf for __builtin_setjmp().
8815
8816 2004-01-27  David Edelsohn  <edelsohn@gnu.org>
8817
8818         * config/rs6000/rs6000.c (rs6000_emit_move): #if 0 splitting
8819         slow, unaligned loads and stores while debugging.  Fix formatting.
8820
8821 2004-01-27  David Edelsohn  <edelsohn@gnu.org>
8822
8823         * config/rs6000/rs6000.md (save_stack_nonlocal): Use Pmode instead
8824         of computing wmode.
8825         (restore_stack_nonlocal): Same.
8826
8827 2004-01-27  Devang Patel <dpatel@apple.com>
8828
8829         * Makefile.in (dwarf2out.o): Depend on input.h
8830         * dbxout.c (dbx_debug_hooks): Add new empty hook for
8831         imported_module_or_decl.
8832         (xcoff_debug_hooks): Same.
8833         * sdbout.c (sdb_debug_hooks): Same.
8834         * vmsdbgout.c (vmsdbg_debug_hooks): Same.
8835         * debug.c (do_nothing_debug_hooks): Same.
8836         (debug_nothing_tree_tree): New function.
8837         * debug.h (gcc_debug_hooks): New hook, imported_module_or_decl.
8838         * dwarf2out.c: Include input.h.
8839         (dwarf2_debug_hooks): Add new hook for imported_module_or_decl.
8840         (remove_child_TAG): New function.
8841         (dwarf_tag_name): Handle DW_TAG_imported_module.
8842         (gen_subprogram_die): Equate decl number to declaration die. Do not
8843         remove all children dies while reusing declaration die for definition.
8844         Instead, selectively remove only formal parameters.
8845         (gen_variable_die): Equate variable decl to declaration die.
8846         (gen_field_die): Equate field decl to line number.
8847         (force_namespace_die): Replace it with ...
8848         (force_decl_die): ... this.
8849         (force_type_die): New function.
8850         (setup_namespace_context): Replace use of force_namespace_die() with
8851         force_decl_die().
8852         (gen_namespace_die): Same.
8853         (dwarf2out_imported_module_or_decl): New function.
8854
8855 2004-01-27  Bob Wilson  <bob.wilson@acm.org>
8856
8857         * config/xtensa/xtensa.c (xtensa_copy_incoming_a7): Remove SUBREG
8858         on CQImode and CHImode incoming arguments in register a7.
8859         (function_arg): Wrap BLKmode argument in register a7 in a PARALLEL.
8860         * config/xtensa/xtensa.h (BLOCK_REG_PADDING): Define.
8861         * config/xtensa/xtensa.md (movdi, movdf): Only call force_reg or
8862         xtensa_copy_incoming_a7 before reload.
8863
8864 2004-01-27  J"orn Rennecke <joern.rennecke@superh.com>
8865
8866         * coverage.c (get_coverage_counts): Give a different message
8867         if flag_guess_branch_prob is set.
8868         * predict.c (counts_to_freqs): Return an int.
8869         (estimate_bb_frequencies): If counts_to_freqs returns zero,
8870         calculate estimates.
8871
8872 2004-01-27  Kazu Hirata  <kazu@cs.umass.edu>
8873
8874         * config/iq2000/iq2000-protos.h: Remove the prototype for
8875         iq2000_setup_incoming_varargs.
8876         * config/iq2000/iq2000.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
8877         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
8878         (TARGET_PROMOTE_PROTOTYPES): Likewise.
8879         (TARGET_STRUCT_VALUE_RTX): Likewise.
8880         (TARGET_RETURN_IN_MEMORY): Likewise.
8881         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
8882         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
8883         (iq2000_return_in_memory): Likewise.
8884         (iq2000_setup_incoming_varargs): Make it static.  Receive the
8885         first argument by reference.
8886         * config/iq2000/iq2000.h (PROMOTE_FUNCTION_ARGS): Remove.
8887         (PROMOTE_FUNCTION_RETURN): Likewise.
8888         (PROMOTE_PROTOTYPES): Likewise.
8889         (RETURN_IN_MEMORY): Likewise.
8890         (STRUCT_VALUE): Likewise.
8891         (SETUP_INCOMING_VARARGS): Likewise.
8892         (STRICT_ARGUMENT_NAMING): Likewise.
8893
8894 2004-01-24  James A. Morrison  <ja2morri@uwaterloo.ca>
8895
8896         * fixinc/fixinc.c (test_test): Initialize res.
8897         (start_flexer): Initialize pz_cmd_save.
8898
8899 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
8900
8901         * doc/rtl.texi (Arithmetic): Rewrite entries for PLUS,
8902         SS_PLUS, US_PLUS, LO_SUM, MINUS, SS_MINUS, US_MINUS.
8903
8904 2004-01-27  Zack Weinberg  <zack@codesourcery.com>
8905
8906         PR 7198
8907         * config/ia64/ia64.md (*nmaddsf4, *nmadddf4, *nmadddf4_alts)
8908         (*nmadddf4_trunc, *nmaddxf4, *nmaddxf4_truncsf, *nmaddxf4_truncdf)
8909         (*nmaddxf4_alts, *nmaddxf4_truncdf_alts):
8910         Rewrite pattern as (minus (op 3) (mult (op 1) (op 2))).
8911         Possibly rename pattern for consistency.
8912         Remove ??? comments suggesting that this be done.
8913         (*nmaddsf4_alts, *nmadddf4_truncsf_alts, *nmaddxf4_truncsf_alts):
8914         New patterns.
8915         (divsi3_internal, divdi3_internal_lat, divdi3_internal_thr)
8916         (divsf3_internal_lat, divsf3_internal_thr, sqrtsf2_internal_thr)
8917         (divdf3_internal_lat, divdf3_internal_thr, sqrtdf2_internal_thr)
8918         (divxf3_internal_lat, divxf3_internal_thr, sqrtxf2_internal_thr):
8919         Update to match.
8920
8921 2004-01-27  Ian Lance Taylor  <ian@wasabisystems.com>
8922
8923         * config/arm/arm.c (output_return_instruction): Only restore IP
8924         into SP if frame_pointer_needed.
8925
8926 2004-01-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
8927
8928         * config/sparc/sparc.c (function_arg_pass_by_reference): Return 1
8929         for SCmode and DCmode if ARCH32.
8930         (sparc_va_arg): Handle SCmode and DCmode by reference if ARCH32.
8931         * config/sparc/sparc.h (RETURN_IN_MEMORY): Return 0 for TCmode
8932         if ARCH32.
8933         (BASE_RETURN_VALUE_REG): Return 32 for all FP modes except TFmode
8934         if ARCH32.
8935         (BASE_OUTGOING_VALUE_REG): Likewise.
8936
8937 2004-01-27  Eric Botcazou  <ebotcazou@libertysurf.fr>
8938
8939         PR target/10904
8940         PR target/13058
8941         * config/sparc/sparc.h (CANNOT_CHANGE_MODE_CLASS): New.
8942         Forbid mode changes from SImode for lower FP regs if ARCH64.
8943
8944 2004-01-27  J"orn Rennecke <joern.rennecke@superh.com>
8945
8946         * Makefile.in (bt-load.o): Depend on except.h.
8947         * bt-load.c (except.h): #include.
8948         (compute_defs_uses_and_gen): If insn at end of BB can throw
8949         within this function, consider registers used by it unavailable for
8950         btr migration.
8951         (move_btr_def): If insn at end of BB can throw, insert before rather
8952         than after.
8953
8954         * flags.h (flag_btr_bb_exclusive): Declare.
8955         * toplev.c (flag_btr_bb_exclusive): New variable.
8956         (f_options): Add btr-bb-exclusive.
8957         * bt-load.c (augment_live_range): Restore old behaviour if
8958         flag_btr_bb_exclusive is set.
8959         * common.opt: Add entry for -fbtr-bb-exclusive.
8960         * opts.c (common_handle_options): Same.
8961         * doc/invoke.texi: Document -fbtr-bb-exclusive.
8962
8963         * bt-load.c (btrs_live_at_end): New variable.
8964         (compute_defs_uses_and_gen): Compute its pointed-to array.
8965         (clear_btr_from_live_range, add_btr_to_live_range): Update it.
8966         (augment_live_range): When augmenting with a new dominator,
8967         use only its btrs_live_at_end set, but also add in the full set
8968         of the old dominator.
8969         (btr_def_live_range): Use btrs_live_at_end.
8970         (move_btr_def): Set other_btr_uses_before_def, and move new set
8971         to the end of the basic block, if appropriate.
8972         (migrate_btr_defs): Allocate and free btrs_live_at_end.
8973
8974         * bt-load.c (basic_block_freq): Remove outdated comment.
8975
8976 2004-01-27  Alan Modra  <amodra@bigpond.net.au>
8977
8978         * config/rs6000/rs6000.h: Correct target_flags free bits comment.
8979         (PREDICATE_CODES): Remove duplicate.
8980         * config/rs6000/linux64.h (CPP_SYSV_SPEC): Don't define.
8981         (SUBSUBTARGET_OVERRIDE_OPTIONS): Disallow 32 bit TARGET_PROFILE_KERNEL.
8982         (MASK_PROFILE_KERNEL): Adjust define.
8983
8984 2004-01-27  Jakub Jelinek  <jakub@redhat.com>
8985
8986         * config/i386/i386.c (ix86_constant_alignment): Decrease alignment
8987         of long string literals from 32 bytes to sizeof (void *) when !-Os
8988         and to 1 with -Os.
8989
8990 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
8991
8992         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Accept
8993         constant addresses in the normal mode.
8994
8995 2004-01-26  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
8996
8997         * system.h (CHAR_BITFIELD): Delete.
8998         (BOOL_BITFIELD): New.
8999         * c-decl.c (c_scope): Use BOOL_BITFIELD.
9000         * gengtype-lex.l: Recognize BOOL_BITFIELD instead of CHAR_BITFIELD.
9001
9002 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9003
9004         * config/arc/arc.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9005         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
9006         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9007         (TARGET_STRUCT_VALUE_RTX): Likewise.
9008         (TARGET_RETURN_IN_MEMORY): Likewise.
9009         (arc_return_in_memory): Likewise.
9010         * config/arc/arc.h (PROMOTE_FUNCTION_ARGS): Remove.
9011         (PROMOTE_FUNCTION_RETURN): Likewise.
9012         (RETURN_IN_MEMORY): Likewise.
9013         (STRUCT_VALUE): Likewise.
9014
9015 2004-01-26  Richard Henderson  <rth@redhat.com>
9016
9017         * c-parse.in (extension): Use itype.
9018         (SAVE_EXT_FLAGS): Don't allocate a tree.
9019         (RESTORE_EXT_FLAGS): Don't read a tree.
9020
9021 2004-01-26  Jan Hubicka  <jh@suse.cz>
9022
9023         * cselib.c (discard_useless_values):  Clear out value pointer pointing
9024         to datastructure to be recycled.
9025
9026 2004-01-25  Jan Hubicka  <jh@suse.cz>
9027
9028         * genextract.c (main): Do not output the memset when not checking.
9029
9030 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9031
9032         * config/h8300/h8300.c (h8300_tiny_constant_address_p): Use a
9033         switch statement instead of a chain of if statements.
9034
9035 2004-01-26  Jeff Law  <law@redhat.com>
9036
9037         * doc/contrib.texi: Minor cleanup for Paolo Carlini's entry.  Add
9038         acute accents for Petur Runolfsson's entry.
9039
9040 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9041
9042         * config/pdp11/pdp11.c (TARGET_STRUCT_VALUE_RTX): New.
9043         (TARGET_RETURN_IN_MEMORY): Likewise.
9044         * config/pdp11/pdp11.h (STRUCT_VALUE): Remove.
9045         (RETURN_IN_MEMORY): Likewise.
9046
9047 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
9048
9049          * config/rs6000/rs6000.c (rs6000_emit_move): split slow
9050          unaligned load/store into smaller loads and stores.
9051
9052 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
9053
9054         * function.c (assign_parms): Do not assign
9055         long long argument to memory in prologue if
9056         is it loaded into register.
9057
9058 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
9059
9060          PR middle-end/13779
9061          * expr.c (emit_group_load): split constant
9062          correctly into register components of PARALLEL insn.
9063
9064 2004-01-26  Fariborz Jahanian  <fjahanian@apple.com>
9065
9066         * gcc/config/rs6000/rs6000.md (save_stack_nonlocal):
9067         Use adjust_address_nv directly with appropriate mode.
9068         (restore_stack_nonlocal): Ditto.
9069
9070 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9071
9072         * config/xtensa/xtensa-protos.h: Remove the prototype for
9073         xtensa_builtin_saveregs.
9074         * config/xtensa/xtensa.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9075         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
9076         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9077         (TARGET_STRUCT_VALUE_RTX): Likewise.
9078         (TARGET_RETURN_IN_MEMORY): Likewise.
9079         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
9080         (xtensa_builtin_saveregs): Make it static.
9081         (xtensa_return_in_memory): New.
9082         * config/xtensa/xtensa.h (PROMOTE_FUNCTION_ARGS: Remove.
9083         (PROMOTE_FUNCTION_RETURN): Likewise.
9084         (PROMOTE_PROTOTYPES): Likewise.
9085         (STRUCT_VALUE): Likewise.
9086         (RETURN_IN_MEMORY): Likewise.
9087         (EXPAND_BUILTIN_SAVEREGS): Likewise.
9088
9089 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9090
9091         * config/arm/arm.c (TARGET_SETUP_INCOMING_VARARGS): New.
9092         (arm_setup_incoming_varargs): Likewise.
9093         * config/arm/arm.h (SETUP_INCOMING_VARARGS): Remove.
9094
9095 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9096
9097         * config/cris/cris.c (TARGET_SETUP_INCOMING_VARARGS): New.
9098         (cris_setup_incoming_varargs): Likewise.
9099         * config/cris/cris.h (SETUP_INCOMING_VARARGS): Remove.
9100
9101 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9102
9103         * config/ns32k/ns32k.c (TARGET_STRUCT_VALUE_RTX): New.
9104         (ns32k_struct_value_rtx): Likewise.
9105         * config/ns32k/ns32k.h (STRUCT_VALUE_REGNUM): Rename to
9106         NS32K_STRUCT_VALUE_REGNUM.
9107
9108 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9109
9110         * config/arm/arm.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9111         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9112         (TARGET_STRUCT_VALUE_RTX): Likewise.
9113         (arm_struct_value_rtx): Likewise.
9114         * config/arm/arm.h (PROMOTE_FUNCTION_ARGS): Remove.
9115         (STRUCT_VALUE): Likewise.
9116         (STRUCT_VALUE_REGNUM): Likewise.
9117         (PROMOTE_PROTOTYPES): Likewise.
9118
9119 2004-01-26  Kazu Hirata  <kazu@cs.umass.edu>
9120
9121         * config/ia64/ia64-protos.h: Remove the prototype for
9122         ia64_setup_incoming_varargs and ia64_return_in_memory.
9123         * config/ia64/ia64.c (TARGET_STRUCT_VALUE_RTX): New.
9124         (TARGET_RETURN_IN_MEMORY): Likewise.
9125         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
9126         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
9127         (ia64_setup_incoming_varargs): Adjust the arguments to meet
9128         the requirement of TARGET_SETUP_INCOMING_VARARGS.
9129         (ia64_return_in_memory): Make it static.  Change the return
9130         type to bool from int.  Add an argument.
9131         (ia64_struct_value_rtx): New.
9132         * config/ia64/ia64.h: Remove commented-out definitions of
9133         PROMOTE_FUNCTION_ARGS, PROMOTE_FUNCTION_RETURN, and
9134         PROMOTE_PROTOTYPES.
9135         (RETURN_IN_MEMORY): Remove.
9136         (STRUCT_VALUE_REGNUM): Likewise.
9137         (STRICT_ARGUMENT_NAMING): Likewise.
9138
9139 2004-01-26  Eric Botcazou  <ebotcazou@libertysurf.fr>
9140
9141         PR target/13666
9142         * config/sparc/sparc.c (function_arg_union_value): New function.
9143         (function_arg): Use it to deal with unions.
9144         (function_value): Likewise.  Define 'regbase' only for ARCH64.
9145         Replace a conditional statement by a simpler one.
9146
9147 2004-01-26  Richard Sandiford  <rsandifo@redhat.com>
9148
9149         * config/mips/mips.c (mips16_optimize_gp): Delete.
9150         (mips_reorg): Don't call it.
9151
9152 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9153
9154         * config/c4x/c4x.md (addqi3_noclobber): Move up pecking order.
9155         (floatunsqihf2): Remove operand 6.
9156         (fixhfqi_set, fix_trunchfqi2, fixuns_trunchfqi2): Group with other
9157         fix patterns.
9158         (ldi_conditional, ldf_conditional): Validate operands.
9159
9160 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9161
9162         * config/c4x/c4x.h (BCT_CHECK_LOOP_ITERATIONS): Remove.
9163         (HAVE_GAS_HIDDEN): Undefine as interim measure.
9164
9165 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9166
9167         * config/c4x/c4x.c (c4x_legitimate_address_p):  Invalidate direct
9168         memory references if TARGET_EXPOSE_LDP nonzero.
9169
9170 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9171
9172         * config/c4x/c4x.c (legitimize_operands): Truncate invalid shift counts.
9173
9174 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9175
9176         * config/c4x/c4x.c (c4x_valid_operands): More aggressively reject
9177         invalid operand combinations.
9178
9179 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9180
9181         * config/c4x/c4x.c (c4x_check_legit_addr): Rename to
9182         c4x_legitimate_address_p.  Fix post_modify check.
9183
9184         * config/c4x/c4x-protos.h (c4x_check_legit_addr): Adjust.
9185         * config/c4x/c4x.h (c4x_check_legit_addr): Adjust.
9186
9187 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9188
9189         * config/pa/pa-protos.h: Remove the prototype for
9190         hppa_builtin_saveregs.  Add a prototype for
9191         pa_return_in_memory.
9192         * config/pa/pa.c (TARGET_PROMOTE_FUNCTION_RETURN): New.
9193         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9194         (TARGET_STRUCT_VALUE_RTX): Likewise.
9195         (TARGET_RETURN_IN_MEMORY): Likewise.
9196         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
9197         (pa_struct_value_rtx): Likewise.
9198         (pa_return_in_memory): Likewise.
9199         * config/pa/pa.h (STRUCT_VALUE_REGNUM): Rename to
9200         PA_STRUCT_VALUE_REGNUM.
9201         (INIT_CUMULATIVE_ARGS): Use pa_return_in_memory.
9202         (EXPAND_BUILTIN_SAVEREGS): Remove.
9203         (PROMOTE_PROTOTYPES): Likewise.
9204         (PROMOTE_FUNCTION_RETURN): Likewise.
9205
9206 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9207
9208         * config/vax/vax.c (TARGET_PROMOTE_PROTOTYPES): New.
9209         (TARGET_STRUCT_VALUE_RTX): Likewise.
9210         (vax_struct_value_rtx): Likewise.
9211         * config/vax/vax.h (STRUCT_VALUE_REGNUM): Rename to
9212         VAX_STRUCT_VALUE_REGNUM.
9213         (PROMOTE_PROTOTYPES): Remove.
9214
9215 2004-01-26  Michael Hayes  <m.hayes@elec.canterbury.ac.nz>
9216
9217         * config/c4x/c4x.h (LEGITIMIZE_RELOAD_ADDRESS):  Handle symref.
9218
9219 2003-04-25  Chris Demetriou  <cgd@broadcom.com>
9220
9221         * config/mips/mips.h (ISA_HAS_HILO_INTERLOCKS): MIPS32, MIPS32r2,
9222         and MIPS64 have HI/LO interlocks.  Update comment.
9223
9224 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9225
9226         * config/stormy16/stormy16-protos.h: Remove the prototype for
9227         xstormy16_setup_incoming_varargs.
9228         * config/stormy16/stormy16.c
9229         (xstormy16_setup_incoming_varargs): Remove.
9230         (xstormy16_return_in_memory): New.
9231         (TARGET_PROMOTE_FUNCTION_ARGS): Likewise.
9232         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
9233         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9234         (TARGET_STRUCT_VALUE_RTX): Likewise.
9235         (TARGET_RETURN_IN_MEMORY): Likewise.
9236         * config/stormy16/stormy16.h (PROMOTE_FUNCTION_ARGS): Remove.
9237         (PROMOTE_FUNCTION_RETURN): Likewise
9238         (PROMOTE_PROTOTYPES): Likewise
9239         (RETURN_IN_MEMORY): Likewise
9240         (STRUCT_VALUE): Likewise
9241         (SETUP_INCOMING_VARARGS): Likewise
9242
9243 2004-01-25  Richard Sandiford  <rsandifo@redhat.com>
9244
9245         * config/mips/mips.c (mips_offset_within_object_p): New function.
9246         (mips_symbolic_constant_p): Use it in the SYMBOL_SMALL_DATA and
9247         SYMBOL_CONSTANT_POOL cases.  Also use it for SYMBOL_GENERAL if the
9248         ABI has 64-bit pointers and the object file only allows 32-bit symbols.
9249
9250 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9251
9252         * config/sh/sh.h (PROMOTE_FUNCTION_ARGS): Remove.
9253         (PROMOTE_FUNCTION_RETURN): Likewise.
9254
9255 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9256
9257         * config/mn10300/mn10300-protos.h: Remove the prototype for
9258         mn10300_builtin_saveregs.
9259         * config/mn10300/mn10300.c (TARGET_PROMOTE_PROTOTYPES): New.
9260         (TARGET_STRUCT_VALUE_RTX): Likewise.
9261         (TARGET_RETURN_IN_MEMORY): Likewise.
9262         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
9263         (mn10300_return_in_memory): Likewise.
9264         (mn10300_builtin_saveregs): Make it static.
9265         * config/mn10300/mn10300.h (PROMOTE_PROTOTYPES): Remove.
9266         (RETURN_IN_MEMORY): Likewise.
9267         (STRUCT_VALUE): Likewise.
9268         (EXPAND_BUILTIN_SAVEREGS): Likewise.
9269
9270 2004-01-25  Eric Botcazou  <ebotcazou@act-europe.fr>
9271
9272         PR bootstrap/13853
9273         * cfgcleanup.c (try_optimize_cfg): Explicitly test against 0.
9274
9275 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9276
9277         * config/h8300/lib1funcs.asm (divnorm, modnorm): Optimize by
9278         using ccr.
9279
9280 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9281
9282         * config/i860/i860-protos.h: Remove the prototype for
9283         i860_saveregs.
9284         * config/i860/i860.c (i860_saveregs): Make it static.
9285         (i860_struct_value_rtx): New.
9286         (TARGET_STRUCT_VALUE_RTX): Likewise.
9287         (TARGET_EXPAND_BUILTIN_SAVEREGS): Likewise.
9288         * config/i860/i860.h (STRUCT_VALUE_REGNUM): Rename to
9289         I860_STRUCT_VALUE_REGNUM.
9290         (EXPAND_BUILTIN_SAVEREGS): Remove.
9291
9292 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9293
9294         * config/m68hc11/m68hc11.c (TARGET_STRUCT_VALUE_RTX): New.
9295         (TARGET_RETURN_IN_MEMORY): Likewise.
9296         (m68hc11_struct_value_rtx): Likewise.
9297         (m68hc11_return_in_memory): Likewise.
9298         * config/m68hc11/m68hc11.h: Remove a commented-out definition
9299         of PROMOTE_PROTOTYPES.
9300         (RETURN_IN_MEMORY): Remove.
9301         (STRUCT_VALUE_REGNUM): Likewise.
9302
9303 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9304
9305         * config/mmix/mmix-protos.h: Remove the prototype for
9306         mmix_setup_incoming_varargs.
9307         * config/mmix/mmix.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9308         (TARGET_STRUCT_VALUE_RTX): Likewise.
9309         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
9310         (mmix_setup_incoming_varargs): Make it static.
9311         (mmix_struct_value_rtx): New.
9312         * config/mmix/mmix.h (PROMOTE_FUNCTION_ARGS): Remove.
9313         Remove a commented-out definition of PROMOTE_FUNCTION_RETURN.
9314         (STRUCT_VALUE_REGNUM): Remove.
9315         (SETUP_INCOMING_VARARGS): Likewise.
9316
9317 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9318
9319         * config/mips/mips-protos.h: Remove the prototypes for
9320         mips_setup_incoming_varargs and mips_return_in_memory.
9321         * config/mips/mips.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9322         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
9323         (TARGET_PROMOTE_PROTOTYPES): Likewise.
9324         (TARGET_STRUCT_VALUE_RTX): Likewise.
9325         (TARGET_RETURN_IN_MEMORY): Likewise.
9326         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
9327         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
9328         (mips_setup_incoming_varargs): Match the prototype for
9329         TARGET_SETUP_INCOMING_VARARGS.
9330         (mips_return_in_memory): Make it static.  Add argument fntype.
9331         (mips_strict_argument_naming): New.
9332         * config/mips/mips.h (PROMOTE_PROTOTYPES): Remove.
9333         (PROMOTE_FUNCTION_ARGS): Likewise.
9334         (PROMOTE_FUNCTION_RETURN): Likewise.
9335         (STRUCT_VALUE): Likewise.
9336         (RETURN_IN_MEMORY): Likewise.
9337         (SETUP_INCOMING_VARARGS): Likewise.
9338         (STRICT_ARGUMENT_NAMING): Likewise.
9339
9340 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9341
9342         * config/ip2k/ip2k.c (TARGET_STRUCT_VALUE_RTX): New.
9343         (TARGET_RETURN_IN_MEMORY): Likewise.
9344         (TARGET_SETUP_INCOMING_VARARGS): Likewise.
9345         (ip2k_return_in_memory): Likewise.
9346         (ip2k_setup_incoming_varargs): Likewise.
9347         * config/ip2k/ip2k.h (RETURN_IN_MEMORY): Remove.
9348         (STRUCT_VALUE): Likewise.
9349         (STRUCT_VALUE_INCOMING): Likewise.
9350         (SETUP_INCOMING_VARARGS): Likewise.
9351
9352 2004-01-25  Kazu Hirata  <kazu@cs.umass.edu>
9353
9354         * config/avr/avr.c (TARGET_STRUCT_VALUE_RTX): New.
9355         (TARGET_RETURN_IN_MEMORY): Likewise.
9356         (TARGET_STRICT_ARGUMENT_NAMING): Likewise.
9357         (avr_return_in_memory): Remove.
9358         * config/avr/avr.h (RETURN_IN_MEMORY): Remove.
9359         (STRUCT_VALUE): Likewise.
9360         (STRUCT_VALUE_INCOMING): Likewise.
9361         (STRICT_ARGUMENT_NAMING): Likewise.
9362
9363 2004-01-25  Jan Hubicka  <jh@suse.cz>
9364
9365         * combine.c (recog_for_combine): Avoid allocating unnecesary RTX.
9366
9367 2004-01-25  Richard Sandiford  <rsandifo@redhat.com>
9368
9369         * config/mips/mips-protos.h (mips_reg_mode_ok_for_base_p): Delete.
9370         (mips_regno_mode_ok_for_base_p): Declare.
9371         * config/mips/mips.h (ARG_POINTER_REGNUM): Renumber to 77.
9372         (FRAME_POINTER_REGNUM): Renumber to 78.
9373         (FIRST_PSEUDO_REGISTER): Update comment accordingly.
9374         (BASE_REG_P, GP_REG_OR_PSEUDO_STRICT_P): Delete.
9375         (GP_REG_OR_PSEUDO_NONSTRICT_P): Delete.
9376         (REGNO_MODE_OK_FOR_BASE_P): Use mips_regno_mode_ok_for_base_p.
9377         (REG_MODE_OK_FOR_BASE_P): Likewise.
9378         * config/mips/mips.c (mips_reg_names, mips_sw_reg_names): Change
9379         entry for 77 to "$arg" and entry for 78 to "$frame".
9380         (mips_regno_to_class): Map 77 and 78 to ALL_REGS.
9381         (mips_reg_mode_ok_for_base_p): Remove.
9382         (mips_regno_mode_ok_for_base_p): New function, derived from old
9383         BASE_REG_P macro.  Don't enforce the mips16 stack pointer
9384         restrictions unless we're being strict.
9385         (mips_valid_base_register_p): Use mips_regno_mode_ok_for_base_p.
9386
9387 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9388
9389         * c-common.h: Fix comment typos.
9390         * c-decl.c: Likewise.
9391         * cgraphunit.c: Likewise.
9392         * combine.c: Likewise.
9393         * et-forest.c: Likewise.
9394         * flow.c: Likewise.
9395         * function.c: Likewise.
9396         * ifcvt.c: Likewise.
9397         * integrate.c: Likewise.
9398         * jump.c: Likewise.
9399         * postreload.c: Likewise.
9400         * varray.c: Likewise.
9401
9402 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9403
9404         * doc/frontends.texi: Update copyright.
9405         * doc/gcov.texi: Likewise.
9406         * doc/gty.texi: Likewise.
9407         * doc/sourcebuild.texi: Likewise.
9408         * doc/standards.texi: Likewise.
9409
9410 2004-01-24  Herman A.J. ten Brugge  <hermantenbrugge@home.nl>
9411
9412         PR target/12978
9413         * c4x.md: (movstrqi*) Use match_scratch instead of match_dup.
9414         Remove movstrqi_small because it conflicts with movstrqi_large.
9415
9416 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9417
9418         * config/cris/cris.c (TARGET_PROMOTE_FUNCTION_ARGS): New.
9419         (TARGET_STRUCT_VALUE_RTX): Likewise.
9420         (cris_struct_value_rtx): Likewise.
9421         * config/cris/cris.h (PROMOTE_FUNCTION_ARGS): Remove.
9422         (CRIS_STACKADJ_REG): Use CRIS_STRUCT_VALUE_REGNUM instead of
9423         STRUCT_VALUE_REGNUM.
9424         (STRUCT_VALUE_REGNUM): Rename to CRIS_STRUCT_VALUE_REGNUM.
9425
9426 2004-01-24  Ian Lance Taylor  <ian@wasabisystems.com>
9427
9428         PR bootstrap/13848
9429         * cse.c (cse_cc_succs): Change the mode of the source expression
9430         as soon as decide we need a new mode.  Don't permit changing modes
9431         if we found a match in a successor block.
9432         (cse_condition_code_reg): Save original mode of source expression
9433         so that we know whether we have to change the mode in other
9434         insns.
9435
9436 2004-01-24  Jan Hubicka  <jh@suse.cz>
9437
9438         * emit-rtl.c (change_address, adjust_address_1, offset_address,
9439         widen_memory_access):  Return early when there is nothing to change.
9440
9441 2004-01-24  Jakub Jelinek  <jakub@redhat.com>
9442
9443         * simplify-rtx.c (simplify_relational_operation): Don't
9444         simplify address == constant into address + -constant == 0.
9445
9446 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9447
9448         * gcc.c (process_command): Don't internationalize the
9449         Copyright message.
9450         * mips-tfile.c (main): Likewise.
9451
9452 2004-01-24  Andreas Tobler  <a.tobler@schweiz.ch>
9453
9454         * cse.c: (cse_cc_succs) Fix comparison warning.
9455
9456 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9457
9458         * config/h8300/h8300.md: Remove extraneous USE in expanders.
9459
9460 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9461
9462         * config/h8300/h8300-protos.h: Provide prototypes for
9463         h8300_legitimate_constant_p and h8300_legitimate_address_p.
9464         * config/h8300/h8300.c (h8300_legitimate_constant_p): New.
9465         (h8300_rtx_ok_for_base_p): Likewise.
9466         (h8300_legitimate_address_p): Likewise.
9467         * config/h8300/h8300.h (LEGITIMATE_CONSTANT_P): Use
9468         h8300_legitimate_constant_p.
9469         (RTX_OK_FOR_BASE_P): Remove.
9470         (GO_IF_LEGITIMATE_ADDRESS): Use h8300_legitimate_address_p.
9471
9472 2004-01-24  Kazu Hirata  <kazu@cs.umass.edu>
9473
9474         * config/h8300/h8300.h (REG_OK_FOR_INDEX_NONSTRICT_P): New.
9475         (REG_OK_FOR_BASE_NONSTRICT_P): Likewise.
9476         (REG_OK_FOR_INDEX_STRICT_P): Likewise.
9477         (REG_OK_FOR_BASE_STRICT_P): Likewise.
9478         (REG_OK_FOR_INDEX_STRICT_P): Use REGNO_OK_FOR_INDEX_P.
9479         (REG_OK_FOR_BASE_STRICT_P): Use REGNO_OK_FOR_BASE_P.
9480         (REG_OK_FOR_INDEX_P): Use REG_OK_FOR_INDEX_STRICT_P.
9481         (REG_OK_FOR_BASE_P): Use REG_OK_FOR_BASE_STRICT_P.
9482
9483 2004-01-24  Jan Hubicka  <jh@suse.cz>
9484
9485         * cselib.c (remove_useless_values):  Do not access discarded values.
9486
9487 2004-01-24  Joseph S. Myers  <jsm@polyomino.org.uk>
9488
9489         * c-typeck.c (build_conditional_expr): Do not allow non-lvalue
9490         arrays.
9491
9492 2004-01-23  Kazu Hirata  <kazu@cs.umass.edu>
9493
9494         * recog.c: Fix a typo in copyright.
9495
9496 2004-01-23  Andrew Pinski  <apinski@apple.com>
9497
9498         * config/rs6000/rs6000.md (call): Fix misappiled patch.
9499         (call_value): Likewise.
9500
9501 2004-01-23  Richard Henderson  <rth@redhat.com>
9502
9503         PR opt/12941
9504         * combine.c (SHIFT_COUNT_TRUNCATED): Provide default value.
9505         (simplify_comparison): Don't simplify (eq (zero_extract c 1 r) 0)
9506         if SHIFT_COUNT_TRUNCATED is set.
9507
9508 2004-01-23  Bob Wilson  <bob.wilson@acm.org>
9509
9510         * config/xtensa/xtensa.c (xtensa_va_arg): Handle complex values as
9511         separate real and imaginary parts.
9512         * config/xtensa/xtensa.h (SPLIT_COMPLEX_ARGS): Define.
9513
9514 2004-01-23  Hartmut Penner <hpenner@de.ibm.com>
9515
9516         PR target/13674
9517         * config/rs6000/rs6000.md (movdf_hardfloat64): Do not disparage
9518         loading into GPR.
9519
9520 2004-01-23  Jan Hubicka  <jh@suse.cz>
9521
9522         * emit-rtl.c (change_address_1):  Do not re-generate the RTX if nothing
9523         change.
9524
9525         * alloc-pool.c (align_four): Kill.
9526         (create_alloc_pool): Align size to eight.
9527         (free_alloc_pool, free_pool): Invalidate deallocated data.
9528
9529 2004-01-23  Ian Lance Taylor  <ian@wasabisystems.com>
9530
9531         PR gcc/1532
9532         * cse.c (cse_change_cc_mode): New static function.
9533         (cse_change_cc_mode_insns, cse_cc_succs): Likewise.
9534         (cse_condition_code_reg): New function.
9535         * rtl.h (cse_condition_code_reg): Declare.
9536         * toplev.c (rest_of_handle_cse2): Call cse_condition_code_reg.
9537         * target.h (struct gcc_target): Add fixed_condition_code_regs and
9538         cc_modes_compatible.
9539         * target-def.h (TARGET_FIXED_CONDITION_CODE_REGS): Define.
9540         (TARGET_CC_MODES_COMPATIBLE): Define.
9541         (TARGET_INITIALIZER): Add new initializers.
9542         * targhooks.c (default_cc_modes_compatible): New function.
9543         * targhooks.c (default_cc_modes_compatible): Declare.
9544         * hooks.c (hook_bool_intp_intp_false): New function.
9545         * hooks.h (hook_bool_intp_intp_false): Declare.
9546         * config/i386/i386.c (TARGET_FIXED_CONDITION_CODE_REGS): Define.
9547         (TARGET_CC_MODES_COMPATIBLE): Define.
9548         (ix86_fixed_condition_code_regs): New static function.
9549         (ix86_cc_modes_compatible): Likewise.
9550         * doc/tm.texi (Condition Code): Document new hooks.
9551
9552 2004-01-23  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9553
9554         * fixinc/inclhack.def (bad_lval): Renamed to ...
9555         (alpha_bad_lval): ... this.
9556         Removed file list.
9557         Restrict to alpha*-dec-osf*.
9558         * fixinc/fixincl.x: Regenerate.
9559         * fixinc/tests/base/dirent.h: Remove, moving test ...
9560         * fixinc/tests/base/testing.h: ... here, reflecting new name.
9561
9562 2004-01-23  Zack Weinberg  <zack@codesourcery.com>
9563
9564         PR c/13814
9565         * c-decl.c (diagnose_mismatched_decls): Also discard a
9566         built-in if we encounter an old-style definition with the
9567         same name.
9568
9569 2004-01-23  Jakub Jelinek  <jakub@redhat.com>
9570
9571         * config.gcc (powerpc*-*): Clear $with_cpu or $with_tune if it was
9572         set to default{32,64}.
9573
9574 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
9575
9576         * config/rs6000/linux64.h (MD_FALLBACK_FRAME_STATE_FOR)
9577         [!__powerpc64__]: Corrected to handle kernels with changed ucontext.
9578
9579 2004-01-23  Eric Botcazou  <ebotcazou@act-europe.fr>
9580             Olivier Hainque  <hainque@act-europe.fr>
9581
9582         * fold-const.c (fold_binary_op_with_conditional_arg): Only
9583         build a COMPOUND_EXPR if 'arg' is really a SAVE_EXPR.
9584
9585 2004-01-23  Daniel Jacobowitz  <drow@mvista.com>
9586
9587         * config/arm/arm.c (arm_legitimate_address_p): Don't check the mode
9588         size for minipool references.
9589
9590 2004-01-23  Roger Sayle  <roger@eyesopen.com>
9591
9592         * real.c (real_floor, real_ceil): Tweak to allow input and output
9593         arguments to overlap.
9594         (real_round): New function to implement round(3m) semantics.
9595         * real.h (real_round): Prototype here.
9596         * builtins.c (fold_builtin_round): New function to constant fold
9597         round, roundf and roundl.
9598         (fold_builtin): Call fold_builtin_round for BUILT_IN_ROUND{,F,L}.
9599
9600 2004-01-23  Alexandre Oliva  <aoliva@redhat.com>
9601
9602         PR optimization/13819
9603         * config/sh/sh.c (sh_reorg): Compensate for sharing of CLOBBERs
9604         introduced by 2004-01-20's Jan Hubicka's copy_insn change.
9605         (sh_handle_sp_switch_attribute): Remove warning.
9606
9607 2003-11-30  Jan Hubicka  <jh@suse.cz>
9608
9609         * i386.c (ix86_emit_restore_regs_using_mov):  Deal with large offsets.
9610
9611 2004-01-23  J"orn Rennecke <joern.rennecke@superh.com>
9612
9613         * doc/tm.texi: Insert some weasel words when LOAD_EXTEND_OP
9614         may or may not return non-NIL.
9615         * postreload.c (reload_cse_simplify_operands): In LOAD_EXTEND_OP code,
9616         check CANNOT_CHANGE_MODE_CLASS
9617
9618 2004-01-23  Jan Hubicka  <jh@suse.cz>
9619
9620         * basic-block.h (PROP_POSTRELOAD): New macro.
9621         (CLEANUP_LOG_LINKS): New.
9622         * cfgcleanup.c (cleanup_cfg): Only PROP_LOG_LINKS when asked to.
9623         * toplev.c (rest_of_handle_life):  Preserve LOG_LINKS trought cleanup_cfg.
9624
9625         * cselib.c (value_pool): New.
9626         (new_cselib_val): Use pool.
9627         (cselib_init): Initialize value_pool
9628         (cselib_finish): Free pool.
9629
9630 2004-01-23  Eric Botcazou  <ebotcazou@libertysurf.fr>
9631
9632         * config/sparc/sparc.c (scan_record_type): New function.
9633         (function_arg_slotno): Use it to determine which kinds of
9634         registers the record can be passed in.
9635
9636 2004-01-22  James A. Mmorrison  <ja2morri@uwaterloo.ca>
9637
9638         * config/pa/fptr.c: Fix old-style definition.
9639
9640 2004-01-22  Paolo Bonzini  <bonzini@gnu.org>
9641
9642         PR optimization/13724
9643         * cse.c (fold_rtx) <SUBREG>:  Fold a SUBREG to zero if it
9644         represents the zero bits produced by a ZERO_EXTEND operation.
9645
9646 2004-01-22  Roger Sayle  <roger@eyesopen.com>
9647
9648         PR optimization/13821
9649         * simplify-rtx.c (simplify_subreg): Use subreg_lowpart_offset to
9650         correctly calculate the lowpart offset of the contracted subreg.
9651
9652 2004-01-22  Ian Lance Taylor  <ian@wasabisystems.com>
9653
9654         * doc/invoke.texi (Optimize Options): Note that --param arguments
9655         are subject to change without notice.
9656
9657 2004-01-22  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
9658
9659         * config.gcc (mips-sgi-irix6*o32): Removed.
9660         * config/mips/iris6-o32-as.h: Likewise.
9661         * config/mips/iris6-o32-gas.h: Likewise.
9662         * config/mips/iris6-o32.h: Likewise.
9663
9664 2004-01-22  Jan Hubicka  <jh@suse.cz>
9665
9666         * cfgcleanup.c (first_pass): New static variable.
9667         (try_forward_edges):  Add work limiting check for threading.
9668         (try_crossjump_bb):  Add work limiting check for crossjumping.
9669         (try_optimize_cfg):  Maintain first pass variable.
9670
9671 2004-01-22  Bob Wilson  <bob.wilson@acm.org>
9672
9673         * config/xtensa/xtensa.c (function_arg): Generalize logic so that it
9674         handles complex and vector modes.
9675
9676 2004-01-22  Kazu Hirata  <kazu@cs.umass.edu>
9677
9678         * config/h8300/h8300.h (REG_OK_FOR_INDEX_P_STRICT): Remove.
9679         (REG_OK_FOR_BASE_P_STRICT): Likewise.
9680         (STRICT): Likewise.
9681
9682 2004-01-22  Daniel Jacobowitz  <drow@mvista.com>
9683
9684         * c-semantics.c (genrtl_while_stmt, genrtl_do_stmt_1)
9685         (genrtl_for_stmt): Remove emit_nop calls.
9686
9687 2004-01-22  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9688
9689         PR target/13713
9690         PR target/13324
9691         * pa.md (movstrsi_prereload, movstrsi_postreload, movstrdi_prereload,
9692         movstrdi_postreload, clrstrsi_prereload, clrstrsi_postreload,
9693         clrstrdi_prereload, clrstrdi_postreload): Fix constraints.
9694
9695 2004-01-22  Daniel Jacobowitz  <drow@mvista.com>
9696
9697         * config/arm/arm.c: Include "debug.h".
9698         (thumb_pushpop): Take two new arguments.  Add some commentary.
9699         Output frame information when pushing.
9700         (thumb_exit, thumb_unexpanded_epilogue): Update calls to
9701         thumb_pushpop.
9702         (thumb_output_function_prologue): Likewise.  Accumulate a CFA
9703         offset, and pass it to thumb_pushpop.  Output CFI information.
9704         (thumb_expand_prologue): Add some frame-related markers and notes.
9705
9706 2004-01-22  Ulrich Weigand  <uweigand@de.ibm.com>
9707
9708         * config/s390/s390.c (s390_frame_info): Allow large frame sizes
9709         for TARGET_64BIT.
9710         (s390_arg_frame_offset): Change return type to HOST_WIDE_INT.
9711         * config/s390/s390-protos.h (s390_arg_frame_offset): Likewise.
9712
9713 2004-01-22  Roger Sayle  <roger@eyesopen.com>
9714             Paolo Bonzini  <bonzini@gnu.org>
9715
9716         * rtlanal.c (subreg_lsb_1): New function split out from subreg_lsb.
9717         (subreg_lsb): Change to call new subreg_lsb_1 helper function.
9718         * rtl.h (subreg_lsb_1): Prototype here.
9719         * simplify-rtx.c (simplify_subreg): Optimize subregs of zero and
9720         sign extensions.
9721
9722 2004-01-22  Kazu Hirata  <kazu@cs.umass.edu>
9723
9724         * doc/tm.texi (CASE_VECTOR_PC_RELATIVE): Mention that the
9725         macro need not be defined if jump-tables should contain
9726         relative addresses only when -fPIC or -fPIC is in effect.
9727
9728 2004-01-22  Jan Hubicka  <jh@suse.cz>
9729
9730         * alias.c (reg_base_value): Turn into varray.
9731         (reg_base_value_size): Kill.
9732         (old_reg_base_value): New deletable varray.
9733         (alias_invariant_size): New variable.
9734         (REG_BASE_VALUE): Update to use varray.
9735         (find_base_value): Likewise.
9736         (record_set): Likewise.
9737         (record_base_value): Likewise.
9738         (memrefs_conflict_p): Likewise.
9739         (record_set): Likewise
9740         (record_base_value): Likewise.
9741         (memrefs_conflict_p): Use alias_invariant_size.
9742         (init_alias_analysis): Use varray; set alias_invariant_size;
9743         rescale other arrays to be sized by maxreg.
9744         (end_alias_analysis): Save reg_base_value; clear alias_invariant_size.
9745
9746 2004-01-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
9747
9748         * config/sparc/sparc.c (function_arg_slotno): Use
9749         FLOAT_TYPE_P to detect FP fields in structures.
9750         (function_arg_record_value_1): Likewise.
9751         (function_arg_record_value_2): Likewise.
9752
9753 2004-01-22  Jan Hubicka  <jh@suse.cz>
9754
9755         * function.c (allocate_struct_function): Do not initialize expr, emit
9756         and varasm.
9757         (prepare_function_start): Do it here.
9758         * c-parse.in (maybe_type_qual): Do not produce line number notes.
9759
9760 2004-01-22  Eric Botcazou  <ebotcazou@libertysurf.fr>
9761
9762         PR target/13559
9763         * config/sparc/sparc.c (function_arg_record_value_3): Revert
9764         to 'word_mode' once the first slot has been filled.
9765
9766 2004-01-22  Olivier Hainque  <hainque@act-europe.fr>
9767
9768         * config/sparc/sparc.c (function_arg_record_value_1): Fix
9769         computation of the number of integer registers required.
9770
9771 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
9772
9773         * config/i386/i386.md: Simplify certain comparisons of
9774         const_int.
9775
9776 2004-01-21  Andrew Pinski  <apinski@apple.com>
9777
9778         PR target/13785
9779         * config/rs6000/rs6000.md (call_value): Force operand
9780         1 not operand 0 into a register.
9781
9782 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
9783
9784         * cpperror.c, cpptrad.c, longlong.h, params.def, rtl.def,
9785         unwind-dw2-fde.h: Update copyright.
9786
9787 2004-01-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9788
9789         * pa-protos.h: Update copyright.
9790         * pa.h: Likewise.
9791         * pa.md: Likewise.
9792
9793 2004-01-21  Caroline Tice  <ctice@apple.com>
9794
9795         PR target/12308
9796         * config/i386/i386.md (fix_truncxfdi2): Add clause to clobber
9797         flags register.
9798         (fix_truncdfdi2): Likewise.
9799         (fix_truncsfdi2): Likewise.
9800         (*fix_truncdi_1): Likewise.
9801         (fix_truncxfsi2): Likewise.
9802         (fix_truncdfsi2): Likewise.
9803         (fix_truncsfsi2): Likewise.
9804         (*fix_truncsi_1): Likewise.
9805         (fix_truncxfhi2): Likewise.
9806         (fix_truncdfhi2): Likewise.
9807         (fix_truncsfhi2): Likewise.
9808         (*fix_trunchi_1): Likewise.
9809
9810 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
9811
9812         * alias.c, basic-block.h, c-common.c, c-common.h,
9813         c-cppbuiltin.c, c-opts.c, c-pragma.c, c-pretty-print.c,
9814         calls.c, cfg.c, cfgcleanup.c, cfgrtl.c, cgraph.h, collect2.c,
9815         combine.c, cppcharset.c, cpphash.h, cppinit.c, cpplib.c,
9816         cpplib.h, cppmacro.c, crtstuff.c, cselib.c, cselib.h,
9817         defaults.h, df.c, dominance.c, et-forest.c, expmed.c, expr.c,
9818         expr.h, fix-header.c, function.h, gcc.c, gcse.c, genattrtab.c,
9819         genautomata.c, genconditions.c, genemit.c, genflags.c,
9820         gengtype.c, gengtype.h, genopinit.c, genrecog.c, gensupport.c,
9821         ggc-zone.c, graph.c, haifa-sched.c, input.h, integrate.c,
9822         langhooks-def.h, langhooks.c, langhooks.h, line-map.c,
9823         line-map.h, local-alloc.c, optabs.c, optabs.h, postreload.c,
9824         ra.h, recog.c, reg-stack.c, regmove.c, reload.c, reorg.c,
9825         rtl.c, sched-deps.c, sched-ebb.c, sdbout.c, system.h,
9826         target.h, targhooks.c, toplev.h, tree-inline.c, unwind-pe.h,
9827         unwind.h, varray.c, varray.h: Update copyright.
9828
9829 2004-01-21  Kazu Hirata  <kazu@cs.umass.edu>
9830
9831         * config/h8300/coff.h: Update copyright.
9832         * config/h8300/elf.h: Likewise.
9833         * config/h8300/h8300-protos.h: Likewise.
9834         * config/h8300/h8300.c: Likewise.
9835         * config/h8300/h8300.h: Likewise.
9836         * config/h8300/h8300.md: Likewise.
9837
9838 2004-01-21  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9839
9840         * fixinc/inclhack.def (hpux10_stdio_declarations, ultrix_const3,
9841         ultrix_locale, ultrix_stdlib, ultrix_strings, ultrix_sys_time,
9842         ultrix_unistd): New hacks.
9843         * fixinc/tests/base/stdio.h (HPUX10_STDIO_DECLARATIONS_CHECK,
9844         ULTRIX_CONST2_CHECK): Add checks.
9845         * fixinc/tests/base/stdlib.h (ULTRIX_STDLIB_CHECK): Likewise.
9846         * fixinc/tests/base/strings.h (ULTRIX_STRINGS2_CHECK): Likewise.
9847         * fixinc/tests/base/unistd.h (ULTRIX_UNISTD_CHECK): Likewise.
9848         * fixinc/tests/base/sys/time.h (ULTRIX_SYS_TIME_CHECK): Likewise.
9849         * fixinc/tests/base/locale.h: New file.
9850         * fixinc/fixincl.x: Rebuilt.
9851
9852 2004-01-21  Andreas Jaeger  <aj@suse.de>
9853             Michael Matz  <matz@suse.de>
9854
9855         * doc/extend.texi (Extended Asm): Clarify memory clobber.
9856
9857 2004-01-21  Jakub Jelinek  <jakub@redhat.com>
9858
9859         * crtstuff.c (frame_dummy, __do_global_ctors_1): Call
9860         _Jv_RegisterClasses through a function pointer.
9861
9862 2004-01-21  Falk Hueffner  <falk@debian.org>
9863
9864         PR target/12898
9865         * config/alpha/alpha.c (alpha_emit_set_const_1): If
9866         no_new_pseudos, use gen_rtx_SET directly for SImode constants
9867         which need multiple instructions to emit.
9868
9869 2004-01-21  Inaoka Kazuhiro  <inaoka.kazuhiro@renesas.com>
9870
9871         * config/m32r/m32r.h (CPP_SPEC): Define.
9872
9873 2004-01-21  Zack Weinberg  <zack@codesourcery.com>
9874
9875         * c-decl.c (merge_decls): Kill different_binding_level and
9876         different_tu arguments; simplify throughout.
9877         (duplicate_decls): Likewise.
9878         (pushdecl, merge_translation_unit_decls): Update calls to
9879         duplicate_decls.
9880
9881 2004-01-20  Kaveh R. Ghazi  <ghazi@caip.rutgers.edu>
9882
9883         * Makefile.in (pretty-print.o): Depend on $(CONFIG_H) and
9884         $(SYSTEM_H).
9885         (print-rtl1.o): Depend on $(SYSTEM_H).
9886
9887 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
9888
9889         PR bootstrap/12730
9890         * configure.ac: Delete definition and subsitution of docdir.
9891         Add info, man, srcman and srcinfo to target hooks. Create doc/
9892         directory.
9893         * configure: Regenerate.
9894         * Makefile.in: Don't substitute docdir and delete all references
9895         throughout.
9896         (MAKEINFOFLAGS): Define.
9897         (stmp-docobjdir): Delete.
9898         (INFOFILES, MANFILES): Define.
9899         (info): Call lang.info, srcinfo and lang.srcinfo.
9900         (generated-manpages): Call lang.man, srcman and lang.srcman.
9901         (srcinfo, srcman): New rules to copy back files to source directory.
9902         (doc/%.info, doc/%.dvi, doc/%.1, doc/%.7): New implict rule.
9903         (install-man): Revamp rule.
9904         (clean): Update dvi directory.
9905         (distclean): Delete TAGS from front end directorys.
9906         (maintainer-clean): Delete all document files in source directory.
9907
9908         objc/Make-lang.in (objc.man, objc.info): Dummy entries.
9909         (objc.srcman, objc.srcinfo): Likewise.
9910
9911 2004-01-20  Bruce Korb  <bkorb@gnu.org>
9912
9913         * fixinc/inclhack.def(math_exception): bypass only for glibc.
9914         (matherr_decl): rename & relocate as exception_structure.
9915         This fix must precede the math_exception fix.
9916
9917 2004-01-20  Roger Sayle  <roger@eyesopen.com>
9918
9919         * fold-const.c (fold_convert): Rename to fold_convert_const.
9920         (fold_convert_const): Change arguments to take a tree_code,
9921         a type and the operand/expression to be converted.  Return
9922         NULL_TREE if no simplification is possible.  Add support for
9923         FIX_CEIL_EXPR and FIX_FLOOR_EXPR in addition to FIX_TRUNC_EXPR.
9924         (fold): Handle FIX_CEIL_EXPR and FIX_FLOOR_EXPR.
9925         Adjust call to fold_convert to match new fold_convert_const.
9926         Avoid modifying the tree passed to fold in-place.
9927
9928 2004-01-21  Alan Modra  <amodra@bigpond.net.au>
9929
9930         * config/rs6000/sysv4.h (DWARF2_FRAME_REG_OUT): Define.
9931         * dwarf2out.c (output_cfi): Map regs using DWARF2_FRAME_REG_OUT.
9932         * doc/tm.texi (DWARF_FRAME_REGNUM, DWARF2_FRAME_REG_OUT): Document.
9933
9934 2004-01-20  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
9935
9936         * pa-protos.h (compute_frame_size): Use HOST_WIDE_INT for frame sizes.
9937         * pa.c (store_reg, store_reg_modify, load_reg, set_reg_plus_d):
9938         Likewise.  Handle frames larger than 0x7fffffff on 64-bit ports.
9939         (emit_move_sequence): Check scratch_reg first in various if statements.
9940         Extend source simplification to handle all 64-bit CONST_INTs.
9941         (pa_output_function_prologue): Use HOST_WIDE_INT_PRINT_DEC for printing
9942         frame size.
9943         (hppa_expand_prologue, hppa_expand_epilogue): Use HOST_WIDE_INT for
9944         frame offset calculations.
9945         * pa.h (NEW_HP_ASSEMBLER): Add comment.
9946         (MAX_LEGIT_64BIT_CONST_INT, MIN_LEGIT_64BIT_CONST_INT,
9947         LEGITIMATE_64BIT_CONST_INT_P): Define.
9948         (LEGITIMATE_CONSTANT_P): Use LEGITIMATE_64BIT_CONST_INT_P.  Treat
9949         any CONST_INT as legitimate during and after reload.
9950         (VAL_32_BITS_P, INT_32_BITS): Define.
9951         (LEGITIMIZE_RELOAD_ADDRESS): Handle large frame offsets.
9952
9953 2004-01-20  Jan Hubicka  <jh@suse.cz>
9954
9955         * emit-rtl.c (verify_rtx_sharing, copy_insn_1,
9956         emit_copy_of_insn_after, emit_copy_of_insn_after): Clobbers
9957         containing hard regs are shared.
9958         (gen_hard_reg_clobber): New function.
9959         (hard_reg_clobbers): New array.
9960         * genemit.c (gen_exp): Use gen_hard_reg_clobber.
9961         (copy_rtx): Do not copy clobbers containing hard regs.
9962         * rtl.h (gen_hard_reg_clobber): Declare.
9963
9964 2004-01-20  Jan Hubicka  <jh@suse.cz>
9965
9966         * varray.c:  Include hashtab.h
9967         (varray_descriptor): New structure.
9968         (hash_descriptor, eq_descriptor, varray_descriptor,
9969         print_statistics): New static functions
9970         (varray_init, varray_grow): Update statistics
9971         (dump_varray_statistics): New function.
9972         * varray.h (dump_varray_statistics): Declare.
9973         * toplev.c (finalize): Call it.
9974         * Makefile.in (varray.o): Add dependency.
9975
9976 2004-01-20  Jan Hubicka  <jh@suse.cz>
9977
9978         * cselib.c: Include alloc-pool.h
9979         (empty_vals, empty_elt_lists, empty_elt_loc_lists): Kill.
9980         (elt_loc_list_pool, elt_list_pool, cselib_val_pool): Declare.
9981         (new_elt_list, new_elt_loc_list, unchain_one_elt_list,
9982         unchain_one_elt_loc_list_pool, unchain_one_value,
9983         new_cselib_val): Simplify using allocpool.
9984         (cselib_init): Initialize allocpools.
9985         (cselib_finish): Finish allocpools.
9986         * Makefile.in (cselib.o): Depend on alloc-pool.h
9987
9988 2004-01-20  Richard Sandiford  <rsandifo@redhat.com>
9989
9990         * config/mips/mips.c (mips_load_call_address): Make the call insn
9991         use $gp if it could be calling a lazy binding stub.
9992
9993 2004-01-20  Kazu Hirata  <kazu@cs.umass.edu>
9994
9995         * config/s390/s390.c (TARGET_PROMOTE_FUNCTION_ARGS): Define.
9996         (TARGET_PROMOTE_FUNCTION_RETURN): Likewise.
9997         (TARGET_STRUCT_VALUE_RTX): Likewise.
9998         * config/s390/s390.h (PROMOTE_FUNCTION_ARGS): Remove.
9999         (PROMOTE_FUNCTION_RETURN): Remove.
10000         (STRUCT_VALUE): Remove.
10001
10002 2004-01-20  Denis Chertykov  <denisc@overta.ru>
10003
10004         PR bootstrap/13735
10005         * config/avr/avr.h (BASE_REG_CLASS): Don't permit to use X
10006         register as pointer after reload.
10007
10008 2004-01-20  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
10009
10010         PR optimization/12440
10011         * loop.c: Include ggc.h.
10012         (loop_optimize): Run garbage collector between optimization of loops.
10013         * Makefile.in (loop.o): Add GGC_H dependency.
10014
10015 2004-01-20  Hartmut Penner  <hpenner@de.ibm.com>
10016
10017         * gcc/config/rs6000/rs6000.c (function_arg) Handle
10018         vector register special in function without prototype.
10019         (function_arg_advance): Vector parameters get always
10020         GPRs allocated for the linux64 target.
10021
10022 2004-01-20  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
10023
10024         * config/m32r/m32r.h (TARGET_M32R2). Test for TARGET_M32R2_MASK
10025         not TARGET_M32RX_MASK.
10026
10027 2004-01-20  Eric Botcazou  <ebotcazou@libertysurf.fr>
10028
10029         PR target/13557
10030         * config/sparc/sparc.c (function_arg): Reorder the cases.
10031
10032 2004-01-19  Per Bothner  <per@bothner.com>
10033
10034         Move cpp_reader's line_maps field to a shared global.
10035         * cpphash.h (cpp_reader):  Rename line_maps field to line_table
10036         and change the type to a pointer rather than a struct.
10037         * cppinit.c (cpp_push_main_field):  Adjust accordingly.
10038         * cpplib.c (do_include_common, _cpp_do_file_change, cpp_get_callbacks):
10039         Likewise.
10040         * cppfiles.c (validate_pch):  Likewise.
10041         * cppmacro.c (_cpp_warn_if_unused_macro, _cpp_builtin_macro_text):
10042         Likewise.
10043         * cpperror.c (print_location):  Likewise.
10044         * cpplib.h (cpp_create_reader):  New line_maps pointer parameter.
10045         * cppinit.c (cpp_create_reader):  Handle new parameter.
10046         (cpp_destroy):  Don't free line_maps - that's no longer our job.
10047         * input.h (line_table):  New variable.
10048         * toplev.c (line_table):  Declare variable.
10049         (general_init):  Initialize line_table.
10050         * c-opts.c (c_common_init_options):  Pass line_table to
10051         cpp_create_reader.
10052         * fix-header.c (read_scan_file):  New local variable line_table.
10053         Initialize, and pass it to cpp_create_reader.
10054         * Makefile.in (LIBS, LIBDEPS):  Add libcpp.a.
10055         (C_AND_OBJC_OBJS, fix-header):  Remove redundant libcpp.a.
10056
10057 2004-01-19  Per Bothner  <per@bothner.com>
10058
10059         Implement a cache for linemap_lookup.
10060         * line-map.h (struct_line_maps):  Add cache field.
10061         * line-map.c (linemap_init):  Zero cache field.
10062         (linemap_add):  Set cache field to offset of newly allocated map.
10063         (linemap_lookup):  Use and set cache field.
10064
10065 2004-01-20  Kaz Kojima  <kkojima@gcc.gnu.org>
10066
10067         PR optimization/13567
10068         * cse.c (cse_basic_block): Call cse_insn with a non-null
10069         libcall_insn for the last SET insn of a no-confilict block.
10070
10071 2004-01-20  Kelley Cook  <kcook@gcc.gnu.org>
10072
10073         * Makefile.in (target_noncanonical, program_transform_name): Use
10074         immediate define instead of deferred.
10075         (GCC_INSTALL_NAME, GCC_TARGET_INSTALL_NAME, CPP_INSTALL_NAME,
10076         PROTOIZE_INSTALL_NAME, UNPROTOIZE_INSTALL_NAME, GCOV_INSTALL_NAME,
10077         GCCBUG_INSTALL_NAME): Define via a immediate $(shell) instead of
10078         deferred backquote.
10079
10080 2004-01-20  Joseph S. Myers  <jsm@polyomino.org.uk>
10081
10082         * c-decl.c (c_init_decl_processing): Set pedantic_lvalues to
10083         true unconditionally.
10084         * c-typeck.c (unary_complex_lvalue, pedantic_lvalue_warning):
10085         Remove.
10086         (build_unary_op, build_modify_expr): Don't handle extended
10087         lvalues.
10088         (build_component_ref, build_conditional_expr): Call non_lvalue
10089         instead of pedantic_non_lvalue.
10090         (build_c_cast): Don't condition use of non_lvalue on pedantic.
10091         * fold-const.c (fold): Don't check pedantic directly for
10092         COMPOUND_EXPR.  Ensure that results for COMPOUND_EXPR are
10093         passed to pedantic_non_lvalue.
10094         * doc/extend.texi: Remove documentation of extended lvalues.
10095
10096 2004-01-19  Roger Sayle  <roger@eyesopen.com>
10097
10098         PR optimization/5263
10099         * simplify-rtx.c (associative_constant_p): Delete.
10100         (simplify_associative_operation): Rewrite to linearize terms, and
10101         attempt to simplify new term against both left and right subterms.
10102         (simplify_binary_operation): Call swap_commutative_operands_p on
10103         op0 and op1, not trueop0 and trueop1.  Move the initialization of
10104         trueop0 and trueop1 down to where first needed.
10105         (simplify_relational_operation): Likewise.
10106         * rtlanal.c (commutative_operand_precedence): Also order constant
10107         operands using avoid_constant_pool_reference.
10108
10109 2004-01-19  Richard Henderson  <rth@redhat.com>
10110
10111         * config/alpha/alpha.c (aligned_memory_operand): Check MEM_ALIGN,
10112         don't check memory mode.
10113         (unaligned_memory_operand): Likewise.
10114         (reload_inqi, reload_inhi, reload_outqi, reload_outhi): Don't
10115         abort for op0 not MEM.
10116
10117         * config/alpha/alpha.c (alpha_expand_mov_nobwx): If the destination
10118         is not a reg, copy to a scratch first.
10119         (aligned_loadqi, aligned_loadhi, unaligned_loadqi, unaligned_loadhi,
10120         unaligned_loadqi_le, unaligned_loadqi_be, unaligned_loadhi_le,
10121         unaligned_loadhi_be): Expect op0 in DImode; don't SUBREG.
10122         (reload_inqi, reload_inhi): Fix mode of op0.
10123         (reload_inqi_help, reload_inhi_help, reload_outqi_help,
10124         reload_outhi_help): Likewise.  Use define_insn_and_split.
10125
10126         * config/alpha/alpha.md (call peepholes): Check for REG_NORETURN
10127         as well as $29 dead.
10128
10129 2004-01-19  Eric Botcazou  <ebotcazou@libertysurf.fr>
10130
10131         * config/sparc/sol2.h (ASM_DECLARE_OBJECT_NAME): New.  Emit
10132         "tls_object" for thread-local objects.
10133         * config/sparc/sparc.c (sparc_elf_asm_named_section): Emit
10134         "#tls" for thread-local sections.
10135         * configure.ac (thread-local checks): Specify --fatal-warnings in
10136         every binutils-specific checks.  For sparc*-*-*, test whether the
10137         OS is Solaris and the tools are native and act accordingly.
10138         * configure: Rebuild.
10139
10140 2004-01-19  Jeff Law  <law@redhat.com>
10141
10142         * contrib.texi: Update Paolo Carlini's entry.  New entries for
10143         Jerry Quinn and Petur Runolfsson.
10144
10145 2004-01-19  Roger Sayle  <roger@eyesopen.com>
10146
10147         * config/i386/i386.md (*movhi_1, *movqi_1): When optimizing for
10148         size, don't use the larger zero-extending loads.
10149
10150 2004-01-19  Richard Henderson  <rth@redhat.com>
10151
10152         * alpha.h (HARD_REGNO_MODE_OK): Disallow SImode in FP regs.
10153         * alpha.md (UNSPEC_NT_LDA): Remove.
10154         (UNSPEC_CVTLQ, cvtlq): New.
10155         (extendsidi2_1): Rename from extendsidi2_nofix; remove f/f.
10156         (extendsidi2_fix): Remove.
10157         (extendsidi2 splitter): Use cvtlq.
10158         (extendsidi2 fp peepholes): Remove.
10159         (cvtql): Use SFmode instead of SImode.
10160         (fix_trunc?fsi): Update to match.
10161         (floatsisf2_ieee, floatsisf2, floatsidf2_ieee, floatsidf2): New.
10162         (movsi): Rename from movsi_nofix, remove f alternatives.
10163         (movsi_nt_vms): Similarly.
10164         (movsi_fix, movsi_nt_vms_fix): Remove.
10165         (nt_lda): Remove.
10166         * alpha.c (alpha_expand_prologue): Use adddi3, not nt_lda.
10167
10168 2004-01-19  Jan Hubicka  <jh@suse.cz>
10169
10170         * cgraph.c (cgraph_remove_node): Fix removal from linked list.
10171         * cgraphunit.c (cgraph_finalize_compilation_unit): Clear next_needed
10172         list.
10173         (cgraph_remove_unreachable_nodes): New function
10174         (cgraph_decide_inlining_of_small_function): Fix pasto.
10175         (cgraph_decide_inlining_incrementally): Fix pasto.
10176         (cgrpah_decide_inlining): Likewise; remove unreachable nodes.
10177
10178 2004-01-19  Steven Bosscher  <stevenb@suse.de>
10179
10180         * gengtype.c (header_file): Make it static.
10181         (write_types_process_field, write_enum_defn): Minor whitespace fixes.
10182         * gengtype.h (header_file): No longer extern.
10183
10184 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
10185
10186         * defaults.h (CASE_VECTOR_PC_RELATIVE): Provide the default.
10187         * expr.c (CASE_VECTOR_PC_RELATIVE): Remove.
10188         * stmt.c (CASE_VECTOR_PC_RELATIVE): Likewise.
10189
10190 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
10191
10192         * stmt.c (HAVE_casesi): Define it not already defined.
10193         (HAVE_tablejump): Likewise.
10194         (expand_end_case_type): Resort to the binary tree method if
10195         neither casesi or tablejump is available.
10196
10197 2004-01-18  Daniel Jacobowitz  <drow@mvista.com>
10198
10199         * final.c (final_scan_insn): Make non-static again.
10200         * output.h (final_scan_insn): Re-add prototype.
10201         * config/arc/arc.c (arc_output_function_epilogue): Add NULL
10202         to final_scan_insn call.
10203         * config/cris/cris.c (cris_target_asm_function_epilogue): Likewise.
10204         * config/mips/mips.c (mips_output_conditional_branch): Likewise.
10205         * config/pa/pa.c (output_lbranch, output_call): Likewise.
10206         * config/sh/sh.c (print_slot): Likewise.
10207         * config/sparc/sparc.c (sparc_nonflat_function_epilogue): Likewise.
10208         (output_sibcall, sparc_flat_function_epilogue): Likewise.
10209
10210 2004-01-18  Jan Hubicka  <jh@suse.cz>
10211
10212         * basic-block.h (try_redirect_by_replacing_jump): Declare.
10213         * cfgcleanup.c (try_optimize_cfg): Use it.
10214         * cfgrtl.c (try_redirect_by_replacing_jump): Export.
10215         (rtl_redirect_edge_and_branch, cfg_layout_redirect_edge_and_branch):
10216         Kill hack.
10217         (cfg_layout_merge_blocks): Use try_redirect_by_replacing_jump.
10218
10219         Revert:
10220         2004-01-16  Geoffrey Keating  <geoffk@apple.com>
10221
10222                 * cfgrtl.c (try_redirect_by_replacing_jump): Optimize tablejumps
10223                 even after reload, just don't remove the actual jump tables.
10224
10225 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
10226
10227         * config/rs6000/rs6000.h (STRICT_ARGUMENT_NAMING): Remove.
10228
10229 2004-01-18  Kazu Hirata  <kazu@cs.umass.edu>
10230
10231         * defaults.h (ASM_OUTPUT_ADDR_VEC_ELT): Fix the computation of
10232         the size of a pointer in bytes.
10233
10234 2004-01-18  Roger Sayle  <roger@eyesopen.com>
10235
10236         * builtins.c (expand_builtin_expect_jump): Fix thinko of reusing
10237         live "next" variable, which could lead to an infinite loop.
10238
10239 2004-01-18  Andrew Pinski  <pinskia@physics.uc.edu>
10240
10241         * config/rs6000/altivec.h: Wrap C++ functions in extern "C++"
10242         block.
10243
10244         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
10245         Check for NULL in the chain and remove repeated code.
10246
10247 2004-01-18  Jan Hubicka  <jh@suse.cz>
10248
10249         * coverage.c (checksum_string): Rename to ...
10250         (coverage_checksum_string): ... this one, Use crc32_string; recognize
10251         names containing random number and zero the number out in order to get
10252         match.
10253
10254 2004-01-18  Richard Sandiford  <rsandifo@redhat.com>
10255
10256         * config/mips/mips.c (mips_got_alias_set): Mark for PCH.
10257
10258 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
10259
10260         * doc/c-tree.texi, doc/cpp.texi, doc/extend.texi,
10261         doc/frontends.texi, doc/gcov.texi, doc/gty.texi, doc/install.texi,
10262         doc/invoke.texi, doc/libgcc.texi, doc/md.texi, doc/rtl.texi,
10263         doc/sourcebuild.texi, doc/standards.texi, doc/tm.texi,
10264         doc/trouble.texi: Remove trailing whitespace.
10265
10266 2004-01-18  Richard Sandiford  <rsandifo@redhat.com>
10267
10268         PR target/7618
10269         * config/mips/mips.c: Include cfglayout.h.
10270         (TARGET_ASM_OUTPUT_MI_THUNK, TARGET_ASM_CAN_OUTPUT_MI_THUNK): Define.
10271         (mips_unspec_offset_high): Add temporary register argument.
10272         (mips_load_call_address): New function, split out from...
10273         (mips_expand_call): ...here.
10274         (mips_output_cplocal): New function.
10275         (mips_output_function_prologue, mips_output_function_epilogue): Use it.
10276         (mips_emit_loadgp): New function, split out from...
10277         (mips_expand_prologue): ...here.
10278         (mips_output_mi_thunk): New function.
10279
10280 2004-01-17  Bernardo Innocenti  <bernie@develer.com>
10281
10282         * longlong.h (mc68020, __mc68030__, mc68030, __mc68040__, mc68040,
10283         mcpu32): Remove redundant checks for implied target predefines.
10284
10285 2004-1-17  Andrew Pinski  <pinskia@physics.uc.edu>
10286
10287         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
10288         Return type is unsigned int not int.
10289         * config/rs6000/rs6000-protos.h (rs6000_special_round_type_align):
10290         Likewise.
10291
10292 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
10293
10294         * doc/contrib.texi, doc/cppenv.texi, doc/extend.texi,
10295         doc/install.texi, doc/invoke.texi, doc/tm.texi: Consistently use
10296         "GNU/Linux" and "Microsoft Windows" terminology.
10297
10298 2004-01-18  Joseph S. Myers  <jsm@polyomino.org.uk>
10299
10300         * doc/c-tree.texi, doc/compat.texi, doc/cpp.texi,
10301         doc/cppopts.texi, doc/extend.texi, doc/install.texi,
10302         doc/interface.texi, doc/invoke.texi, doc/libgcc.texi, doc/md.texi,
10303         doc/objc.texi, doc/rtl.texi, doc/tm.texi, doc/trouble.texi: Use
10304         @smallexample instead of @example.
10305
10306 2004-01-17  Ziemowit Laski  <zlaski@apple.com>
10307
10308         * objc/objc-act.c (build_objc_method_call): Use target
10309         hooks instead of macros to determine if ..._stret
10310         dispatchers should be used (NeXT runtime only).
10311
10312 2004-01-17  Roger Sayle  <roger@eyesopen.com>
10313
10314         * builtins.c (expand_builtin_expect_jump): Fix mistake in my
10315         last patch.  Use XEXP (x, 0) to get a LABEL_REF's CODE_LABEL.
10316
10317 2004-01-17  Daniel Jacobowitz  <drow@mvista.com>
10318
10319         * rtl.h (emit_insn_before_sameloc, emit_jump_insn_before_sameloc)
10320         (emit_call_insn_before_sameloc, emit_insn_after_sameloc)
10321         (emit_jump_insn_after_sameloc, emit_call_insn_after_sameloc): New
10322         macros.
10323         * reload1.c (emit_reload_insns): Use them.
10324         * emit-rtl.c (emit_insn_before_sameloc, emit_insn_after_sameloc)
10325         (emit_jump_insn_after_sameloc, emit_call_insn_after_sameloc): Check
10326         for NULL PATTERN.
10327
10328 2004-01-17  Daniel Jacobowitz  <drow@mvista.com>
10329
10330         * final.c (SEEN_BB, SEEN_NOTE, SEEN_EMITTED): Define.
10331         (final_scan_insn): Update to take an additional SEEN argument.  Emit
10332         a line note after the prologue.  Make static.
10333         (line_note_exists): Remove.
10334         (final): Don't initialize line_note_exists.  Update call to
10335         final_scan_insn.
10336         * output.h (final_scan_insn): Remove prologue.
10337         * function.c (set_insn_locators): Update comment.
10338         (thread_prologue_and_epilogue_insns): Add a comment.
10339
10340 2004-01-17  Andrew Pinski  <pinskia@physics.uc.edu>
10341
10342         PR target/10781
10343         * config/rs6000/rs6000-protos.h (rs6000_special_round_type_align):
10344         Prototype.
10345         * config/rs6000/rs6000.c (rs6000_special_round_type_align):
10346         New function.
10347         * config/rs6000/linux64.h (ROUND_TYPE_ALIGN): Use it.
10348         * config/rs6000/aix.h (ROUND_TYPE_ALIGN): Likewise.
10349         * config/rs6000/darwin.h (ROUND_TYPE_ALIGN): Likewise.
10350
10351 2004-01-17  Jan Hubicka  <jh@suse.cz>
10352
10353         * toplev.c (rest_of_handle_reorder_blocks): Fix pasto in previous
10354         commit.
10355
10356         * toplev.c (HAVE_conditional_execution): Provide default.
10357         (rest_of_handle_reorder_blocks): For conditional_execution target
10358         update liveness once after all transformations
10359         (rest_of_compilation): Do crossjumping before ce3.
10360
10361 2004-01-17  Geoffrey Keating  <geoffk@apple.com>
10362
10363         * alias.c (new_alias_set): Mark last_alias_set for PCH.
10364         (get_varargs_alias_set): Rename 'set' to 'varargs_set' and mark it
10365         for PCH.
10366         (get_frame_alias_set): Likewise, except rename it to 'frame_set'.
10367         * config/rs6000/rs6000.c (rs6000_sr_alias_set): Mark for PCH.
10368         (get_TOC_alias_set): Mark 'set' for PCH.
10369
10370 2004-01-16  Geoffrey Keating  <geoffk@apple.com>
10371
10372         * cfgrtl.c (try_redirect_by_replacing_jump): Optimize tablejumps
10373         even after reload, just don't remove the actual jump tables.
10374
10375 2004-01-17  J. Brobecker  <brobecker@gnat.com>
10376
10377         * dwarf2out.c (is_subrange_type): Renamed from is_ada_subrange_type().
10378         Remove checks for is_ada() and TREE_UNSIGNED.
10379         (subrange_type_die): Emit a byte_size attribute if the subrange
10380         type size is different from the base type size.
10381         (modified_type_die): Replace call to is_ada_subrange_type() by
10382         call to is_subrange_type().
10383
10384 2004-01-16  Andrew Pinski  <pinskia@physics.uc.edu>
10385
10386         * config/sh/sh.c: Include ggc.h.
10387
10388 2004-01-16  Geoffrey Keating  <geoffk@apple.com>
10389
10390         * Makefile.in (MD5_H): New.
10391         (fold-const.o): Depend on md5.h.
10392         (dwarf2out.o): Likewise.
10393         (cppfiles.o): Likewise.
10394         * cppfiles.c: Include md5.h.
10395         (should_stack_file): Check against list read from PCH file.
10396         (struct pchf_data): New.
10397         (pchf): New variable.
10398         (struct pchf_adder_info): New.
10399         (pchf_adder): New.
10400         (pchf_save_compare): New.
10401         (_cpp_save_file_entries): New.
10402         (_cpp_read_file_entries): New.
10403         (struct pchf_compare_data): New.
10404         (pchf_compare): New.
10405         (check_file_against_entries): New.
10406         * cpphash.h (_cpp_save_file_entries): Prototype.
10407         (_cpp_read_file_entries): Prototype.
10408         * cpppch.c (cpp_write_pch_state): Write the list of headers.
10409         (cpp_read_state): Read the list of headers.
10410
10411 2004-01-17  Jan Hubicka  <jh@suse.cz>
10412
10413         * c-common.c (c_estimate_num_insns_1): Handle builtin_constant_p and
10414         builtin_expect specially.
10415         * params.def (PARAM_MAX_INLINE_INSNS_AUTO): Set to 100.
10416         (PARAM_LARGE_FUNCTION_INSNS): Set to 3000.
10417         * invoke.texi (max-inline-insns-single): Set to 100.
10418         (large-function-insns): Set to 3000.
10419
10420 2004-01-16  Eric Christopher  <echristo@redhat.com>
10421             Chandrakala Chavva <cchavva@redhat.com>
10422
10423         * cppcharset.c (one_iso88591_to_utf8): New function.
10424         (convert_iso88591_utf8): Ditto. Use.
10425         (conversion_tab): Use.
10426         (_cpp_input_to_utf8): New function.
10427         (_cpp_init_iconv_buffer): Ditto.
10428         (_cpp_close_iconv_buffer): Ditto.
10429         * cpphash.h: Prototype new functions.
10430         (cpp_buffer): Add input_cset_desc.
10431         * cppinit.c: Add input_charset default.
10432         * cpplib.c (cpp_push_buffer): Support init and
10433         close of iconv.
10434         * cpplib.h (cpp_options): Add input_charset.
10435
10436 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
10437
10438         * system.h (ASM_OUTPUT_SECTION_NAME): Poison.
10439         * config/alpha/unicosmk.h: Remove a commented-out definition
10440         of ASM_OUTPUT_SECTION_NAME.
10441         * config/stormy16/stormy16.h: Likewise.
10442
10443 2004-01-16  Rainer Orth  <ro@TechFak.Uni-Bielefeld.DE>
10444
10445         * fixinc/inclhack.def (alpha___extern_prefix): Renamed to ...
10446         (alpha___extern_prefix_sys_stat): ... this.
10447         Apply to <sys/mount.h>, too.
10448         Tweak to match more variations.
10449         * fixinc/tests/base/sys/stat.h: Adapt for new hackname.
10450
10451         * fixinc/inclhack.def (alpha___extern_prefix,
10452         alpha___extern_prefix_standards): New hacks to obey
10453         __PRAGMA_EXTERN_PREFIX.
10454         * fixinc/tests/base/testing.h [ALPHA___EXTERN_PREFIX_CHECK]: New
10455         test.
10456         * fixinc/tests/base/standards.h: Likewise.
10457
10458         * fixincl/inclhack.def (alpha_pthread): Tweak to match more
10459         variations.
10460         New testcase.
10461         * fixinc/tests/base/pthread.h: Handle it.
10462
10463         * fixincl/inclhack.def (bad_lval): Sort file list.
10464         Add many missing files up to Tru64 UNIX V5.1B.
10465         * gcc/fixinc/tests/base/libgen.h: Renamed to ...
10466         * gcc/fixinc/tests/base/dirent.h: ... this to match new file list
10467         order.
10468
10469         * fixinc/fixincl.x: Regenerate.
10470
10471 2004-01-16  Mark Mitchell  <mark@codesourcery.com>
10472
10473         * version.c (version_string): Change to 3.5.0.
10474         * doc/include/gcc-common.texi (version-GCC): Likewise.
10475
10476 2004-01-16  Jan Hubicka  <jh@suse.cz>
10477
10478         * i386.md (load_tp_di): Fix pasto.
10479
10480         PR opt/13608
10481         * i386.c (ix86_compute_frame_layout): Fix for alloca on leaf function.
10482
10483         * c-pretty-print.c (pp_c_type_cast, pp_c_abstract_declarator,
10484         pp_c_character_constant, pp_c_floating_constant,
10485         pp_c_additive_expression, pp_c_shift_expression,
10486         pp_c_equality_expression, pp_c_and_expression,
10487         pp_c_exclusive_or_expression, pp_c_inclusive_or_expression,
10488         pp_c_logical_and_expression): Remove inline modifier.
10489         * dwarf2out.c (get_AT): Likewise.
10490         * et-forest.c (et_splay): Likewise.
10491         * ra.h (ra_alloc, ra_calloc): Likewise
10492
10493 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
10494
10495         * config/frv/frv-protos.h: Fix comment formatting.
10496         * config/frv/frv.c: Likewise.
10497         * config/frv/frv.h: Likewise.
10498         * config/frv/frv.md: Likewise.
10499         * config/frv/frvbegin.c: Likewise.
10500         * config/frv/frvend.c: Likewise.
10501
10502 2004-01-16  Kazu Hirata  <kazu@cs.umass.edu>
10503
10504         * system.h (LINKER_DOES_NOT_WORK_WITH_DWARF2): Poison.
10505         * doc/tm.texi (PREFERRED_DEBUGGING_TYPE): Don't mention
10506         LINKER_DOES_NOT_WORK_WITH_DWARF2.
10507         (LINKER_DOES_NOT_WORK_WITH_DWARF2): Remove.
10508
10509 2004-01-16  J"orn Rennecke <joern.rennecke@superh.com>
10510
10511         PR 11864
10512         * postreload.c (reload_cse_simplify_operands): Don't remove
10513         implicit extension from LOAD_EXTEND_OP.
10514
10515 2004-01-16  Jan Hubicka  <jh@suse.cz>
10516
10517         PR opt/11350
10518         * cfgcleanup.c (try_optimize_cfg): Suppress tablejump removal
10519         after reload.
10520         * cfgrtl.c (rtl_can_merge_blocks, cfglayout_can_merge_blocks,
10521         rtl_try_redirect_by_replacing_branch): Likewise.
10522
10523 2004-01-15  Geoffrey Keating  <geoffk@apple.com>
10524
10525         PR pch/13689
10526         * alias.c (struct alias_set_entry): Mark for GC.
10527         (alias_sets): Make static, mark for GC.
10528         (record_alias_subset): Use GC to allocate alias structures.
10529         * varray.c (element): Make generic varrays GCed.
10530
10531         PR pch/13361
10532         * c-typeck.c (constructor_asmspec): Delete.
10533         (struct initializer_stack): Delete field 'asmspec'.
10534         (start_init): Delete saving of asmspec.
10535         (finish_init): Don't update constructor_asmspec.
10536         * dwarf2out.c (rtl_for_decl_location): Duplicate string from tree.
10537         * stmt.c (expand_asm): Duplicate strings from tree.
10538         (expand_asm_operands): Likewise.
10539         * tree.c (tree_size): Update computation of size of STRING_CST.
10540         (make_node): Don't make STRING_CST nodes.
10541         (build_string): Allocate string with tree node.
10542         * tree.def (STRING_CST): Update comment.
10543         * tree.h (TREE_STRING_POINTER): Adjust for change to STRING_CST.
10544         (tree_string): Place contents of string in tree node.
10545         * config/sh/sh.c (sh_handle_sp_switch_attribute): Duplicate string
10546         from tree.
10547
10548         * config/rs6000/rs6000.c (rs6000_va_arg): No need to special-case
10549         altivec operands.
10550
10551 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10552
10553         * c-common.h: Fix comment formatting.
10554         * c-cppbuiltin.c: Likewise.
10555         * c-pragma.c: Likewise.
10556         * calls.c: Likewise.
10557         * collect2.c: Likewise.
10558         * cppcharset.c: Likewise.
10559         * cpptrad.c: Likewise.
10560         * dbxout.c: Likewise.
10561         * defaults.h: Likewise.
10562         * dwarf2out.c: Likewise.
10563         * fold-const.c: Likewise.
10564         * genautomata.c: Likewise.
10565         * genconditions.c: Likewise.
10566         * genflags.c: Likewise.
10567         * gengtype.c: Likewise.
10568         * integrate.c: Likewise.
10569         * loop.c: Likewise.
10570         * predict.c: Likewise.
10571         * sdbout.c: Likewise.
10572
10573 2004-01-15  Zack Weinberg  <zack@codesourcery.com>
10574
10575         * config/ia64/ia64.md (*movti_internal): C output template
10576         extracted to ia64.c.
10577         (*movti_internal_reg): Delete.
10578         (reload_inti, reload_outti): Use the correct mode on operand 2
10579         in the first place, don't fix it up in the output template.
10580         (movtf, reload_ointf, reload_outtf): New expanders.
10581         (*movtf_internal): New define_insn_and_split.
10582         * config/ia64/ia64.c (ia64_split_timode): Rename to ia64_split_tmode;
10583         make static; do not hand TFmode CONST_DOUBLEs to split_double.
10584         (ia64_split_tmode_move): New function, body mostly pulled
10585         from ia64.md:*movti_internal.
10586         (ia64_function_arg_words): New function, extracted common
10587         logic from ia64_function_arg et seq.
10588         (ia64_function_arg_offset): Likewise.  Handle correctly the
10589         case of a scalar quantity 16 bytes wide with only 8-byte alignment.
10590         (ia64_function_arg, ia64_function_arg_partial_nregs)
10591         (ia64_function_arg_advance): Use ia64_function_arg_words and
10592         ia64_function_arg_offset.
10593         (ia64_function_value): TCmode does not go in float regs.
10594         (ia64_secondary_reload_class): Also handle TFmode.
10595         * config/ia64/ia64-protos.h: Remove prototype for
10596         ia64_split_timode; add prototype for ia64_split_tmode_move.
10597
10598 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
10599
10600         * Makefile.in (MAINT): Make it an immediate assignment.
10601
10602 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10603
10604         * config/m32r/m32r.md: Remove useless calls to gen_lowpart.
10605
10606 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10607
10608         * config/h8300/coff.h: Replace Hitachi with Renesas.
10609         * config/h8300/elf.h: Likewise.
10610         * config/h8300/h8300-protos.h: Likewise.
10611         * config/h8300/h8300.c: Likewise.
10612         * config/h8300/h8300.h: Likewise.
10613         * config/h8300/h8300.md: Likewise.
10614         * config/h8300/lib1funcs.asm: Likewise.
10615
10616 2004-01-15  Andrew Pinski  <apinski@apple.com>
10617
10618         * config/rs6000/rs6000.c (uses_TOC): Wrap #if TARGET_ELF
10619         around it.
10620
10621 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10622
10623         * config/h8300/h8300.c (h8300_return_in_memory): New.
10624         (TARGET_STRUCT_VALUE_RTX): Likewise.
10625         (TARGET_RETURN_IN_MEMORY): Likewise.
10626         * config/h8300/h8300.h (STRUCT_VALUE): Remove.
10627         (RETURN_IN_MEMORY): Likewise.
10628
10629 2004-01-15  Richard Earnshaw  <rearnsha@arm.com>
10630
10631         PR optimization/13375
10632         * gcse.c (handle_avail_expr): Just return if the source is not a
10633         single set.
10634
10635 2004-01-15  Richard Earnshaw  <rearnsha@arm.com>
10636             Daniel Jacobowitz  <drow@mvista.com>
10637
10638         * arm/lib1funcs.asm (ARM_FUNC_START): Correct interworking case.
10639         (EQUIV): Define.
10640         (ARM_FUNC_ALIAS): New macro.
10641         * arm/ieee754-df.S (gedf2, ledf2, nedf2, eqdf2): Use it.
10642         * arm/ieee754-sf.S (gesf2, lesf2, nesf2, eqsf2): Use it.
10643
10644 2004-01-15  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
10645
10646         PR optimization/12372
10647         * calls.c (expand_call): Add call_fusage data for stack arguments in
10648         constant calls.
10649
10650 2004-01-15  Alan Modra  <amodra@bigpond.net.au>
10651
10652         * config/rs6000/rs6000.c (uses_TOC): Correct comment.  Make static.
10653         (rs6000_elf_declare_function_name): Formatting.
10654         * config/rs6000/rs6000-protos.h (uses_TOC): Remove declaration.
10655
10656 2004-01-15  Jan Hubicka  <jh@suse.cz>
10657
10658         PR bootstrap/13692
10659         * sched-deps.c (sched_analyze_1, sched_analyze_2): Fix thinko in
10660         previous patch.
10661
10662 2004-01-15  Richard Henderson  <rth@redhat.com>
10663
10664         * config/alpha/alpha.h (REG_ALLOC_ORDER): Reorder fp regs after
10665         integer regs of the same call-savedness.
10666
10667 2004-01-15  Andreas Schwab  <schwab@suse.de>
10668
10669         PR bootstrap/13562
10670         * config/m68k/m68k.c (output_move_const_into_data_reg): Clear cc
10671         status for NOTB/NOTW/NEGW methods.
10672
10673 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10674
10675         * doc/invoke.texi: Update dump file names.  Fix a typo.
10676
10677 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10678
10679         * builtins.c (expand_builtin_va_end): Don't use
10680         EXPAND_BUILTIN_VA_END.
10681         * system.h (EXPAND_BUILTIN_VA_END): Poison.
10682         * config/d30v/d30v.h: Remove a commented-out definition of
10683         EXPAND_BUILTIN_VA_END.
10684         * config/stormy16/stormy16.h: Likewise.
10685
10686 2004-01-15  Kazu Hirata  <kazu@cs.umass.edu>
10687
10688         * system.h (STRUCT_VALUE_INCOMING_REGNUM): Poison.
10689         * targhooks.c (default_struct_value_rtx): Don't use
10690         STRUCT_VALUE_INCOMING_REGNUM.
10691
10692 2004-01-15  Kelley Cook  <kcook@gcc.gnu.org>
10693
10694         PR bootstrap/12744
10695         * configure.in: Revamp enable-generated-files-in-srcdir rule to define
10696         GENINSRC and not parsedir.  Define srcextra as a langhook.
10697         * configure: Regenerate.
10698         * Makefile.in: Suppress default .l.c rule.  Don't substitute
10699         parsedir and delete all references throughout.  Conditionally define
10700         rule for srcextra dependent on GENINSRC.
10701         (stmp-docobjdir): Delete.
10702         (c-parse.o, gengtype-lex.o, gengtype-yacc.o): Use implicit build rule.
10703         (srcextra): Copy c-parse.y, c-parse.c, gengtype-lex.c, gengtype-yacc.c,
10704         and gengtype-yacc.h back to source directory.
10705         (maintainer-clean): Delete all parse files in source directory.
10706         (distclean): Delete generated files.
10707
10708         * objc/Make-lang.in (objc-parse.o): Use implicit build rule.
10709         (objc-parse.c, objc-parse.y): Don't use parsedir.
10710         (objc.srcextra): Copy objc-parse.y and objc-parse.c back to source
10711         directory if requested.
10712         (po-generated): Don't use parsedir.
10713         (objc.maintainer-clean): Delete above files from source directory.
10714
10715 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10716
10717         * doc/tm.texi (FUNCTION_VALUE): Fix a typo.
10718
10719 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10720
10721         * doc/tm.texi: Replace RETURN_IN_MEMORY with
10722         TARGET_RETURN_IN_MEMORY.
10723
10724 2004-01-15  Jan Hubicka  <jh@suse.cz>
10725
10726         * builtins.c (std_expand_builtin_va_arg): Align operand when needed.
10727         * i386.c (init_cumulative_args): Set warn_sse; fix handling of variadic
10728         functions accepting SSE arguments
10729         (function_arg): Warn only when asked to warn.
10730         * i386.h (ix86_args): Add warn_sse/warn_mmx fiels.
10731
10732 2004-01-14  Joseph S. Myers  <jsm@polyomino.org.uk>
10733
10734         * c-parse.in (stmts_and_decls): Make label at end of compound
10735         statement a hard error.
10736
10737 2004-01-14  Jan Hubicka  <jh@suse.cz>
10738
10739         * cgraph.c (create_edge): Use local.redefined_extern_inline.
10740         * cgraph.h (cgraph_local_info): Sort fields by size; add
10741         redefined_extern_inline
10742         (cgraph_global_info): Sort fields by size.
10743         (cgraph_node): Likewise.
10744         * cgraphunit.c (cgraph_finalize_function): Se
10745         local.redefined_extern_inline on redefinition.
10746         (cgraph_analyze_function): Use it; fix formating.
10747
10748 2004-01-14  Jan Hubicka  <jh@suse.cz>
10749
10750         PR c++/10776
10751         * sched-deps.c (trye_dependency_cache, anti_dependency_cache,
10752         outptu_dependency_cache, forward_dependency_cahe): Trun to vectors of
10753         bitmaps
10754         (cache_size): New variable
10755         (add_dependence): Update use; canonize early memory locations
10756         (sched_analyze_1): Likewise.
10757         (sched_analyze_2): Likewise.
10758         (init_dependency_caches): Initialize bitmaps.
10759         (free_dependency_caches): Free bitmaps
10760
10761 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10762
10763         * calls.c: Replace STRICT_ARGUMENT_NAMING in comments with
10764         targetm.calls.strict_argument_naming().
10765         * target.h: Likewise.
10766
10767 2004-01-14  Richard Henderson  <rth@redhat.com>
10768
10769         PR debug/13231
10770         * dwarf2out.c (dwarf2out_stack_adjust): Skip prologue and epilogue
10771         instructions.
10772
10773 2004-01-14  Richard Henderson  <rth@redhat.com>
10774
10775         PR c++/12491
10776         * except.c (struct eh_region): Add u.fixup.resolved.
10777         (resolve_one_fixup_region): Split out from ...
10778         (resolve_fixup_regions): ... here.
10779
10780 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10781
10782         * config/mn10300/mn10300.h (STRUCT_VALUE): Change to 0.
10783
10784 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10785
10786         * config/alpha/alpha.h (STRUCT_VALUE): Remove.
10787         * config/alpha/vms.h (STRUCT_VALUE_REGNUM): Remove #undef.
10788         (STRUCT_VALUE): Remove.
10789
10790 2004-01-14  Steven Bosscher  <stevenb@suse.de>
10791
10792         * system.h: Poison PROMOTED_MODE
10793         * integrate.c (expand_inline_function): Don't mention the
10794         PROMOTED_MODE.
10795         * loop.c (update_giv_derive): Same.
10796         * tree.h (DECL_RTL): Same.
10797
10798 2004-01-14  J"orn Rennecke <joern.rennecke@superh.com>
10799
10800         PR target/9365
10801         * sh.c (gen_block_redirect): Add special handling of RETURN.
10802         (gen_far_branch) Don't call gen_stuff_delay_slot if there is no
10803         far branch target (i.e. it's a return).
10804
10805 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10806
10807         * regrename.c (find_oldest_value_reg): Fix a warning.
10808
10809 2004-01-14  Richard Earnshaw  <rearnsha@arm.com>
10810
10811         PR bootstrap/12527
10812         * config.gcc (arm*-*-linux*): Don't include unknown-elf.h in tm_file.
10813         Move linux-gas.h and linux-elf.h before aout.h.
10814         * arm/arm.h (INITIALIZE_TRAMPOLINE): Only define if not already.
10815         * arm/linux-elf.h (SUBTARGET_CPU_DEFAULT): Define.
10816
10817 2004-01-14  Kazu Hirata  <kazu@cs.umass.edu>
10818
10819         * config/m32r/m32r.md: Use GEN_INT instead of gen_rtx
10820         (CONST_INT, VOIDmode, ...).
10821
10822 2004-01-14  Richard Earnshaw  <rearnsha@arm.com>
10823
10824         * regrename.c (find_oldest_value_reg): If the replacement uses
10825         multiple hard registers, check that all of them are in CLASS.
10826
10827 2004-01-14  Jan Hubicka  <jh@suse.cz>
10828
10829         * alias.c (get_alias_set):  Initialize alias set to 0 when subset is
10830         impossible.
10831
10832 2004-01-14  Kelley Cook  <kcook@gcc.gnu.org>
10833
10834         * Makefile.in: Define MAINT from --enable-maintainer-mode.
10835
10836 2004-01-14  Hartmut Penner  <hpenner@de.ibm.com>
10837
10838         * gcc/config/rs6000/rs6000.c (rs6000_stack_info)
10839         Calculate always vrsave_mask if TARGET_ALTIVEC.
10840         (rs6000_emit_prologue): Emit code for vrsave
10841         only if TARGET_ALTIVEC_VRSAVE.
10842         (rs6000_emit_epilogue): Likewise.
10843
10844 2004-01-14  Eric Botcazou  <ebotcazou@libertysurf.fr>
10845
10846         * config/sparc/sparc.md (tie_add32): Fix pasto.
10847         (tie_add64): Likewise.
10848
10849 2004-01-14  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
10850
10851         * config/i386/i386.md (*addqi_1_slp): Do not access operands[2].
10852
10853 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10854
10855         * config/iq2000/iq2000-protos.h: Fix comment formatting.
10856         * config/iq2000/iq2000.c: Likewise.
10857         * config/iq2000/iq2000.md: Likewise.
10858
10859 2004-01-14  J. Brobecker  <brobecker@gnat.com>
10860
10861         * dwarf2out.c (is_ada_subrange_type): No longer check the TYPE_NAME.
10862         (subrange_type_die): Add handle for nameless subrange types.
10863
10864 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10865
10866         * config/h8300/h8300-protos.h: Replace do_movsi with
10867         h8300_expand_movsi.
10868         * config/h8300/h8300.c (do_movsi): Change to
10869         h8300_expand_movsi.
10870         * config/h8300/h8300.md (movsi): Replace do_movsi with
10871         h8300_expand_movsi.
10872         (movsf): Likewise.
10873
10874 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10875
10876         * config/h8300/h8300.c (dosize): Change to
10877         h8300_emit_stack_adjustment.  Update callers.
10878
10879 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10880
10881         * config/h8300/h8300.md (movstrictqi): Add an alternative with
10882         the source being post_inc.  Tighten the predicate for the
10883         destination to register_operand.
10884         (movstricthi): Likewise.
10885
10886 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10887
10888         * system.h (SHARED_BSS_SECTION_ASM_OP): Poison.
10889         * varasm.c (bss_section): Don't use SHARED_BSS_SECTION_ASM_OP.
10890         * doc/tm.texi (SHARED_BSS_SECTION_ASM_OP): Remove.
10891
10892 2004-01-14  Jan Hubicka  <jh@suse.cz>
10893
10894         Partial fix PR c++/12850
10895         * cgraphunit.c (cgraph_finalize_function): Always ggc_collect when
10896         at zero nest level.
10897
10898 2004-01-13  Bernardo Innocenti  <bernie@develer.com>
10899
10900         * config/m68k/netbsd-elf.h (REGISTER_NAMES): Add missing "argptr"
10901         pseudo-register.
10902
10903 2004-01-13  Devang Patel <dpatel@apple.com
10904
10905         PR debug/7078
10906         * dbxout.c (dbxout_symbol_name): Emit mangled names for
10907         NAMESPACE_DECL memebers.
10908
10909 2004-01-13  Andrew Pinski  <pinskia@physics.uc.edu>
10910
10911         PR c++/12709
10912         * c-common.c (finish_fname_decls): Use the chain only if the
10913         tree is an expr_stmt.
10914
10915 2004-01-13  Vladimir Makarov  <vmakarov@redhat.com>
10916
10917         * rtl.def: Add comment about new option in automata_option.
10918
10919         * genautomata.c (PROGRESS_OPTION): New macro.
10920         (progress_flag): New global variable.
10921         (gen_automata_option): Process `progress'.
10922         (transform_insn_regexps, check_unit_distributions_to_automata,
10923         make_automaton, NDFA_to_DFA, build_automaton, create_automata,
10924         expand_automata, write_automata): Print about the progress only if
10925         progress_flag.  Remove fflush.
10926         (initiate_automaton_gen): Process command line flag `-progress'.
10927
10928         * doc/md.texi: Describe the new option.
10929
10930 2004-01-13  Zdenek Dvorak  <rakdver@atrey.karlin.mff.cuni.cz>
10931
10932         * cfg.c (dump_bb): Dump entry edges.
10933
10934 2004-01-13  Richard Earnshaw  <rearnsha@arm.com>
10935
10936         * arm.c (thumb_legitimate_address_p): Only allow constant pool
10937         references from SImode.
10938         * arm.md (thumb_movhi_insn): Don't allow minipool references.
10939
10940 2004-01-13  Kazu Hirata  <kazu@cs.umass.edu>
10941
10942         * system.h (TEXT_SECTION): Poison.
10943         * varasm.c (text_section): Don't use TEXT_SECTION.
10944         * config/sh/sh.c (sh_file_start): Fix a comment typo.
10945         * doc/tm.texi (TEXT_SECTION): Remove.
10946
10947 2004-01-13  Ben Elliston  <bje@wasabisystems.com>
10948
10949         * doc/rtl.texi (Vector Operations): Remove defunct vec_const item.
10950
10951 2004-01-12  James E Wilson  <wilson@specifixinc.com>
10952
10953         * unwind-libunwind.c: Delete.
10954
10955 2004-01-12  Zack Weinberg  <zack@codesourcery.com>
10956
10957         PR 13656
10958         * c-decl.c (diagnose_mismatched_decls): Whenever newtype or
10959         oldtype is set, set *newtypep or *oldtypep too.  Do not set
10960         them at the very end.
10961         (validate_proto_after_old_defn): Restructure for comprehensibility;
10962         make error messages clearer.
10963
10964 2004-01-12  Zack Weinberg  <zack@codesourcery.com>
10965
10966         * varray.h (VARRAY_POP): Add checking variant, aborts on underflow.
10967         (VARRAY_TOP): Use VARRAY_CHECK so the access is bounds-checked.
10968         * varray.c: No need to prototype error.
10969         (varray_check_failed): Wrap long string onto two lines.
10970         (varray_underflow): New function.
10971
10972 2004-01-13  Steven Bosscher  <stevenb@suse.de>
10973
10974         PR c++/13376
10975         * function.h (struct function): Kill `name' field.
10976         (current_function_name): Make it an extern function.
10977         * function.c (current_function_name): New function.
10978         * graph.c: Update all uses of current_function_name.
10979         * gcse.c: Likewise.
10980         * config/alpha/alpha.c, config/avr/avr.c, config/c4x/c4x.c,
10981         config/mips/mips.c, config/pdp11/pdp11.c: Likewise.
10982         * config/ip2k/ip2k.c (function_prologue): Use MAIN_NAME_P
10983         instead of a strcmp with "main".
10984
10985 2004-01-13  Jan Hubicka  <jh@suse.cz>
10986
10987         * c-decl.c (diagnose_mismatched_decls):  Fix warning calls.
10988
10989         * cgraphunit.c (cgraph_optimize_function):  Always do
10990         optimize_inline_calls when there is always_inline callee.
10991         (cgraph_decide_inlining): Fix formating.
10992         * tree-inline.c (inlinable_function_p): Do sorry for alwaysinline
10993         functions.
10994         (expand_call_inline): Likewise.
10995         * toplev.h (sorry): Fix prototype.
10996
10997 2004-01-12  Roger Sayle  <roger@eyesopen.com>
10998
10999         * builtins.c (expand_builtin_expect_jump): Simplify logic. Handle
11000         conditional jumps that drop through to unconditional jumps or the
11001         end of the sequence.
11002
11003 2004-01-13  Jan Hubicka  <jh@suse.cz>
11004
11005         * alias.c (new_alias_set): Construct the alias_set varray.
11006         (init_alias_once): Don't do it here.
11007
11008 2004-01-12  Marc Espie <espie@openbsd.org>
11009
11010         * system.h: handle YYBYACC like YYBISON.
11011
11012 2004-01-12  Jonathan Merriman <jonm@dualitymedia.com>
11013
11014         PR target/10847
11015         * config.gcc: No longer includes conflicting header sparc/sol2.h when
11016         building on sparc64-*-openbsd*.
11017
11018 2004-01-12  Andrew Pinski  <pinskia@physics.uc.edu>
11019
11020         PR debug/13539
11021         * dbxout.c (dbxout_type): Protected inheritance is not
11022         private but protected.
11023
11024 2004-01-12  Richard Sandiford  <rsandifo@redhat.com>
11025
11026         * config/mips/mips.c (mips_symbolic_constant_p): Revert last patch.
11027
11028 2004-01-12  Kazu Hirata  <kazu@cs.umass.edu>
11029
11030         PR optimization/12508.
11031         * combine.c (try_combine): Remove a dead set in a parallel
11032         even if its destination is a subreg.
11033
11034         Revert:
11035         2003-06-03  Kazu Hirata  <kazu@cs.umass.edu>
11036         * combine.c (simplify_set): Don't move a subreg in SET_SRC to
11037         SET_DEST if WORD_REGISTER_OPERATIONS is not defined.
11038
11039 2004-01-12  Geoffrey Keating  <geoffk@apple.com>
11040
11041         * real.c: Update copyright date.
11042         * emit-rtl.c: Likewise.
11043         * rtl.h: Likewise.
11044         * dwarf2out.c: Likewise.
11045         * config/rs6000/darwin-ldouble.c: Likewise.
11046         * config/rs6000/rs6000.md: Likewise.
11047
11048 2004-01-12  David Edelsohn  <edelsohn@gnu.org>
11049
11050         * config/rs6000/rs6000.c (rs6000_init_libfuncs): Add AIX
11051         TFmode to SImode libfuncs.
11052
11053 2004-01-12  Roger Sayle  <roger@eyesopen.com>
11054
11055         PR middle-end/11397
11056         * varasm.c (assemble_alias): Remove weak aliases from weak_decls.
11057
11058 2004-01-12  Jan Hubicka  <jh@suse.cz>
11059
11060         PR opt/12826
11061         * loop.c (insert_loop_mem): Preffer VOLATILE memory references to be
11062         stored.
11063
11064         PR opt/12863
11065         * cfgcleanup.c (label_is_jump_target_p): Move to...
11066         * rtlanal.c (label_is_jump_target_p): ... here.
11067         * cfgrtl.c (cfg_layout_redirect_edge_and_branch):  Fix redirecting of fallthru
11068         edges unified with branch edges.
11069
11070 2004-01-12  Richard Earnshaw  <rearnsha@arm.com>
11071
11072         * simplify-rtx.c (simplify_immed_subreg): Correctly extract the
11073         high word of an integral CONST_DOUBLE.
11074
11075 2004-01-12  Paul Brook  <paul@codesourcery.com>
11076
11077         * simplify-rtx.c (simplify_plus_minus): Always generate canonical form.
11078
11079 2004-01-12  J"orn Rennecke <joern.rennecke@superh.com>
11080
11081         PR target/13585
11082         * sh-protos.h (check_use_sfunc_addr): Declare.
11083         * sh.c (extract_sfunc_addr, check_use_sfunc_addr): New functions.
11084         * sh.md (use_sfunc_addr): Use check_use_sfunc_addr in insn predicate.
11085
11086 2004-01-12  Jan Hubicka  <jh@suse.cz>
11087
11088         * alias.c:  Invlude varray.h
11089         (alias_sets): Turn into varray.
11090         (get_alias_set_entry): Use VARRAY; mark inline.
11091         (mems_in_disjoint_alias_sets_p): Mark inline.
11092         (record_alias_subset): Use varray.
11093         (init_alias_once): Initialize varray.
11094         (new_alias_set): Grow array.
11095         * varray.c: Make VARRAY_GENERIC_PTR non GTYized.
11096
11097 2004-01-12  Jan Hubicka  <jh@suse.cz>
11098
11099         Partial fix for PR opt/10776 II
11100         * cselib.c: Include params.h
11101         (cselib_invalidate_mem):  Limit amount of nonconflicting memory
11102         locations.
11103         * params.def (PARAM_MAX_CSELIB_MEMORY_LOCATIONS): New.
11104         * Makefile.in (cselib.o): Depend on params.h
11105
11106 2004-01-12  Richard Sandiford  <rsandifo@redhat.com>
11107
11108         * combine.c (combine_simplify_rtx): Don't pass VOIDmode to
11109         simplify_unary_operation if the operand has a known mode.
11110
11111 2004-01-12  Hartmut Penner  <hpenner@de.ibm.com>
11112
11113         PR target/13534
11114         * gcc/config/rs6000/rs6000.c (word_offset_memref_operand): New
11115         predicate to handle 'ld' conform addresses.
11116         * gcc/config/rs6000/rs6000.h (EXTRA_CONSTRAINT): New 'Y'
11117         contraint.
11118         (EXTRA_MEMORY_CONSTRAINT): Tell reload which constraint
11119         are memory contraints.
11120         * gcc/config/rs6000/rs6000-protos.h (word_offset_memref_operand):
11121         New prototype.
11122         * gcc/config/rs6000/rs6000.md (*movdf_hardfloat64):
11123         Change 'o' to 'Y' constraint.
11124         (*movdf_softfloat64): Ditto.
11125
11126 2004-01-12  Bernardo Innocenti  <bernie@develer.com>
11127
11128         * gcc/config/m68k/m68k.md: Switch from the "*..." syntax to the
11129         brace-enclosed syntax in all C output statements.
11130
11131 2004-01-12  David Edelsohn  <edelsohn@gnu.org>
11132
11133         PR target/13401
11134         * config/rs6000/rs6000.c (rs6000_output_function_epilogue):
11135         Objective-C language type value is 14.
11136
11137 2004-01-12  Markus F.X.J. Oberhumer  <markus@oberhumer.com>
11138
11139         PR c/12148
11140         * config/m68k/fpgnulib.c: Fix `-mshort' bugs: Use `long' instead of
11141         `int' in a number of places to make sure we always have a SImode
11142         and not a HImode.  Add a 'L' suffix to a number of constants.
11143
11144 2004-01-11  John David Anglin  <dave.anglin@nrc-cnrc.gc.ca>
11145
11146         * pa.c: Don't include obstack.h.
11147
11148         * pa.md: Correct constraint in pattern for loading PIC label address.
11149
11150 2004-01-11  Kaz Kojima  <kkojima@gcc.gnu.org>
11151
11152         * config/sh/linux.h (ASM_PREFERRED_EH_DATA_FORMAT): Undefine
11153          before defining.
11154
11155 2004-01-11  Steven Bosscher  <stevenb@suse.de>
11156
11157         PR fortran/9972
11158         * toplev.c (rest_of_handle_inline): Also consider functions
11159         for deferral if the language is GNU F77.
11160
11161 2004-01-11  Zack Weinberg  <zack@codesourcery.com>
11162
11163         * c-decl.c (diagnose_arglist_conflict): Add missing space to
11164         diagnostic messages.
11165
11166 2004-01-11  Jakub Jelinek  <jakub@redhat.com>
11167
11168         PR middle-end/13392
11169         * builtins.c (expand_builtin_expect_jump): Handle conditional jumps
11170         to drop through label.  Don't fall back to SCC even when conditional
11171         jump has not been found.
11172
11173 2004-01-11  Jan Hubicka  <jh@suse.cz>
11174
11175         * invoke.texi: Fix syntax error in previous patch.
11176
11177         Partial fix for PR opt/10776
11178         * Makefile.in (reload.o): Include param.h
11179         * params.def (PARAM_MAX_RELOAD_SEARCH_INSNS): New parameter.
11180         * reload.c: Include params.h.
11181         (find_equiv_reg): Work limiting check.
11182         * invoke.texi: Document.
11183
11184 2004-01-11  Richard Sandiford  <rsandifo@redhat.com>
11185
11186         * config/mips/mips.c (mips_symbolic_constant_p): Don't allow
11187         out-of-bounds accesses to string constants.  Simplify mips16
11188         case accordingly.
11189
11190 2004-01-11  Richard Sandiford  <rsandifo@redhat.com>
11191
11192         PR optimization/13469
11193         * toplev.c (rest_of_compilation): Call purge_all_dead_edges after
11194         reload_cse_regs (-fnon-call-exceptions only).
11195
11196 2004-01-11  Kazu Hirata  <kazu@cs.umass.edu>
11197
11198         * config/mcore/lib1.asm: Fix comment formatting.
11199         * config/mcore/mcore-elf.h: Likewise.
11200         * config/mcore/mcore.c: Likewise.
11201         * config/mcore/mcore.h: Likewise.
11202         * config/mcore/mcore.md: Likewise.
11203
11204 2004-01-10  Zack Weinberg  <zack@codesourcery.com>
11205
11206         * c-decl.c (duplicate_decls): Break apart into...
11207         (diagnose_arglist_conflict, validate_proto_after_old_defn)
11208         (locate_old_defn, diagnose_mismatched_decls, merge_decls):
11209         ... these new functions.  Restructure for comprehensibility.
11210         Remove various archaic special cases.  Always report the
11211         location of the previous declaration when a diagnostic is issued.
11212         (redeclaration_error_message): Fold into diagnose_mismatched_decls.
11213         (match_builtin_function_types): Delete unnecessary forward declaration.
11214
11215 2004-01-10  Zack Weinberg  <zack@codesourcery.com>
11216
11217         * genautomata.c (make_automaton, NDFA_to_DFA):
11218         Print progress bars with '.' characters instead of '*'.
11219         (build_automaton): Change notes to match.
11220
11221 2004-01-10  Kazu Hirata  <kazu@cs.umass.edu>
11222
11223         * config/m32r/m32r.md: Use define_constants for unspec and
11224         unspec_volatile.
11225
11226 2004-01-10  Jan Hubicka  <jh@suse.cz>
11227
11228         PR opt/11635
11229         * expr.c (expand_expr_real):  More curefully expand union casts.
11230
11231 2004-01-10  Kazu Hirata  <kazu@cs.umass.edu>
11232
11233         * config/m32r/m32r.md (flush_icache): Use 1 for
11234         unspec_volatile.
11235
11236 2004-01-10  David Edelsohn  <edelsohn@gnu.org>
11237             James E Wilson  <wilson@specifixinc.com>
11238
11239         PR debug/12860
11240         * dbxout.c (dbxout_symbol): Remove initialization of
11241         current_sym_code, current_sym_value, and current_sym_addr.
11242         (dbxout_symbol_location): Same.
11243         (dbxout_prepare_symbol): Zero current_sym_code,
11244         current_sym_value, and current_sym_addr.
11245
11246 2004-01-10  Richard Sandiford  <rsandifo@redhat.com>
11247
11248         * tree.c (get_unwidened): Reorder conditions so that the null pointer
11249         check is done first.
11250
11251 2004-01-09  Eric Christopher  <echristo@redhat.com>
11252
11253         * toplev.c (rest_of_handle_cfg): Add reg_scan pass
11254         if we're running mark_constant_function.
11255
11256 2004-01-09  Jeff Bailey  <jbailey@nisa.net>
11257
11258         PR target/12561
11259         * config/t-gnu: Rename SYSTEM_HEADER_DIR to NATIVE_SYSTEM_HEADER_DIR.
11260
11261 2004-01-09  Andrew Pinski <pinskia@physics.uc.edu>
11262
11263         PR debug/11231
11264         * dbxout.c (dbxout_type_fields): Return if any item is
11265         error_mark_node or the type is error_mark_node.
11266
11267 2004-01-09  Geoffrey Keating  <geoffk@apple.com>
11268
11269         * config/rs6000/darwin-ldouble.c: Add big comment explaining
11270         exactly what is expected as a 'long double'.
11271         (_xlqadd): When a value to be returned is representable as a
11272         'double', just return it directly, do not construct it using a union.
11273         Also, correct final fixup.
11274         (_xlqmul): Likewise.
11275         (_xlqdiv): Likewise.
11276         * real.c (encode_ibm_extended): Make consistent with darwin-ldouble.c.
11277
11278         * config/rs6000/rs6000.md (fix_trunctfdi2): Delete.
11279
11280 2004-01-09  Richard Henderson  <rth@redhat.com>
11281
11282         * recog.c (constrain_operands): Validate mem operands.
11283
11284 2004-01-09   James E Wilson  <wilson@specifixinc.com>
11285
11286         * gcc.c (init_spec): Remove -lunwind from shared case.
11287         * conifg/ia64/t-hpux (SHLIB_LINK): Add -lunwind.
11288
11289 2004-01-09  Steve Ellcey  <sje@cup.hp.com>
11290
11291         * configure.ac: (gcc_cv_ld_hidden) Set to true for ia64*-*-hpux*.
11292         * configure: Regenerate
11293
11294 2004-01-09  Joseph S. Myers  <jsm@polyomino.org.uk>
11295
11296         PR c/11234
11297         * c-typeck.c (build_c_cast): If pedantic, warn for conversions
11298         between function and object pointers.
11299         (digest_init): When comparing a pointer to function type to the
11300         target type, only apply TREE_TYPE once to the pointer to function
11301         type.
11302         * except.c (for_each_eh_label_1): Treat data as a pointer to a
11303         function pointer rather than casting it to a function pointer.
11304         (for_each_eh_label): Update caller.
11305         * recog.h (struct insn_data): Use a struct or union for output.
11306         * genoutput.c (output_insn_data): Update.
11307         * final.c (get_insn_template): Update.
11308
11309 2004-01-09  Mark Mitchell  <mark@codesourcery.com>
11310
11311         * expr.h (expand_expr): Make it a macro, not a function.
11312         (expand_expr_real): New function.
11313         * expr.c (store_expr): Adjust logic for deciding whether or not to
11314         copy the value returned by expand_expr.
11315         (expand_expr): Rename to ...
11316         (expand_expr_real): ... this.  Add alt_rtl parameter.  Adjust
11317         calls to language hooks.
11318         * c-common.h (c_expand_expr): Adjust prototype.
11319         * c-common.c (c_expand_expr): Add alt_rtl parameter.
11320         * langhooks-def.h (lhd_expand_expr): Change prototype.
11321         * langhooks.c (lhd_expand_expr): Add all_rtl parameter.
11322         * langhooks.h (lang_hooks): Change type of expand_expr.
11323         * stmt.c (stmt_status): Add x_last_expr_alt_rtl.
11324         (last_expr_alt_rtl): Likewise.
11325         (expand_expr_stmt_value): Set last_expr_alt_rtl.
11326         (clear_last_expr): Clear it.
11327         (expand_end_stmt_expr): Set RTL_EXPR_ATL_RTL.
11328         (expand_end_bindings): Save and restor last_expr_alt_rtl.
11329         * tree.def (RTL_EXPR): Give it an additional operand.
11330         * tree.h (RTL_EXPR_ALT_RTL): New macro.
11331
11332 2004-01-09  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
11333
11334         * config/m32r/m32r.h (TARGET_CPU_CPP_BUILTINS): Add __m32r__.
11335         * config/m32r/m32r.c (call26_operand): Allow in PIC mode.
11336
11337 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
11338
11339         PR target/13380.
11340         * config/m32r/m32r.md: Replace (reg:SI 17) with (reg:CC 17)
11341         or (ne:SI (reg:CC 17) (const_int 0)).
11342         Be specific about modes wherever possible.
11343
11344 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
11345
11346         * config/m32r/m32r.c (m32r_expand_block_move): Call
11347         gen_movestrsi_internal with two more arguments.
11348         (m32r_output_block_move): Adjust operand numbers.
11349         Properly update the source and destination pointers.
11350         * config/m32r/m32r.md (movstrsi_internal): Use 'r' instead of
11351         'r+'.  Change the set detinations to match_operand.
11352
11353 2004-01-09  Kazu Hirata  <kazu@cs.umass.edu>
11354
11355         * final.c (FIRST_INSN_ADDRESS): Remove.
11356         (shorten_branches): Don't use FIRST_INSN_ADDRESS.
11357         * system.h (FIRST_INSN_ADDRESS): Poison.
11358         * config/avr/avr.h: Remove a comment about FIRST_INSN_ADDRESS.
11359         * config/m32r/m32r-protos.h: Remove the prototype for
11360         m32r_first_insn_address.
11361         * config/m32r/m32r.c (m32r_first_insn_address): Remove.
11362         * config/m32r/m32r.h (FIRST_INSN_ADDRESS): Likewise.
11363         * doc/md.texi (FIRST_INSN_ADDRESS): Likewise.
11364
11365 2004-01-09  J. Brobecker  <brobecker@gnat.com>
11366
11367         * dwarf2out.c (gen_enumeration_type_die): Return the DIE that
11368         we just created.
11369         (is_ada_subrange_type): DIEs for enumeration subtypes should be
11370         emitted as subrange types too.
11371         (subrange_type_die): Add handling of enumeration subtypes.
11372
11373 2004-01-08  Richard Henderson  <rth@redhat.com>
11374
11375         PR opt/12441
11376         Revert: Sat Mar 30 14:08:55 CET 2002  Jan Hubicka  <jh@suse.cz>
11377         * i386.c (aligned_operand): Be prepared for SUBREGed registers.
11378         (ix86_decompose_address): Use REG_P instead of GET_CODE (...) == REG.
11379         (ix86_address_cost): Be prepared for SUBREGed registers.
11380         (legitimate_address_p): Accept SUBREGed registers.
11381
11382 2004-01-08  Kelley Cook  <kcook@gcc.gnu.org>
11383
11384         * Makefile.in: Rename configure.in to configure.ac
11385         * doc/sourcebuild.texi: Likewise.
11386         * configure: Regenerate.
11387         * config.in: Regenerate.
11388
11389 2004-01-08  Stuart Hastings  <stuart@apple.com>
11390
11391         * config/i386/i386.md: Typos in MMX/SSE immediate shifts.
11392
11393 2004-01-08  Jan Hubicka  <jh@suse.cz>
11394
11395         * cgraphunit.c (cgraph_decide_inlining):  Fix typo.
11396
11397 2004-01-08  Geoffrey Keating  <geoffk@apple.com>
11398
11399         * config/rs6000/rs6000.md (cmptf_internal1): Correct branch offset.
11400         (UNSPEC_FIX_TRUNC_TF): New constant.
11401         (movtf_internal): Make splitter active only when insn is active.
11402         (extenddftf2): Rewrite to properly load zero into low part.
11403         (extenddftf2_internal): New.
11404         (extendsftf2): Rewrite.
11405         (truncdftf2): Correct length.
11406         (floatditf2): Delete.
11407         (fix_trunc_helper): New.
11408         (fix_trunctfdi2): Use fix_trunc_helper.
11409         (fix_trunctfsi2): Likewise.fix_trunc
11410         (fix_trunctfsi2_internal): New.
11411
11412         * config/rs6000/rs6000.c (legitimate_lo_sum_address_p): lo_sum
11413         addresses are legitimate on Darwin even when flag_pic.
11414         (rs6000_legitimize_reload_address) [TARGET_MACHO]: Don't create
11415         non-offsettable addresses for loads of TFmode constants.
11416
11417 2004-01-08  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
11418
11419         * config/m32r/m32r.h (ASM_OUTPUT_ALIGNED_BSS): Actually emit
11420         variables in the appropriate bss section.
11421
11422 2004-01-09  Alan Modra  <amodra@bigpond.net.au>
11423
11424         * config/rs6000/linux64.h (SUBSUBTARGET_OVERRIDE_OPTIONS): Ensure
11425         target_flags has MASK_POWERPC64 when -m64.
11426         * config/rs6000/rs6000.c (processor_target_table): Add MASK_POWERPC64
11427         to 620, 630, power3, power4 and rs64a entries.
11428         * config/rs6000/rs6000.h (MASK_64BIT): Expand comment.
11429
11430 2004-01-08  Richard Sandiford  <rsandifo@redhat.com>
11431
11432         * simplify-rtx.c (simplify_immed_subreg): Fix construction of
11433         floating-point constants.
11434
11435 2004-01-08  J. Brobecker  <brobecker@gnat.com>
11436
11437         * dwarf2out.c (subrange_type_die): Add context_die parameter.
11438         Create the subrange_type DIE using the given context DIE.
11439         (modified_type_die): Update call to subrange_type_die.
11440
11441 2004-01-08  Zack Weinberg  <zack@codesourcery.com>
11442
11443         * dwarf2.h, unwind-dw2-fde.h, unwind-pe.h, unwind.h:
11444         Add multiple-include guard.
11445
11446 2004-01-08  Hartmut Penner  <hpenner@de.ibm.com>
11447
11448         * gcc/config/rs6000/rs6000.c (easy_vector_constant): Accept
11449         all vector constant loadable by vsplt*.
11450         (output_vec_const_move): Likewise.
11451
11452 2004-01-07  Joseph S. Myers  <jsm@polyomino.org.uk>
11453
11454         PR c/6024
11455         * c-typeck.c (comptypes): Only treat enumerated types in the same
11456         translation unit as compatible with each other when they are the
11457         same type.
11458         * doc/extend.texi: Update.
11459
11460 2004-01-07  Joseph S. Myers  <jsm@polyomino.org.uk>
11461
11462         PR c/12165
11463         * c-decl.c (grokdeclarator): Take type qualifiers of typedefed
11464         array type from the array element type.
11465
11466 2004-01-07  Alan Modra  <amodra@bigpond.net.au>
11467
11468         * config/rs6000/rs6000.c (rs6000_dbx_register_number): New function.
11469         * config/rs6000/rs6000-protos.h (rs6000_dbx_register_number): Declare.
11470         * config/rs6000/rs6000.h (DWARF_FRAME_REGNUM): Define.
11471         (DWARF_REG_TO_UNWIND_COLUMN): Correct column adjustment and comment.
11472         * config/rs6000/sysv4.h (DBX_REGISTER_NUMBER): Define.
11473
11474 2004-01-06  Eric Christopher  <echristo@redhat.com>
11475
11476         * config/mips/mips.h (MDEBUG_ASM_SPEC): Change for dwarf2 default.
11477         (DWARF2_DEBUGGING_INFO): Define.
11478         (PREFERRED_DEBUGGING_TYPE): Set to dwarf2.
11479         * config/mips/openbsd.h (PREFERRED_DEBUGGING_TYPE): Remove.
11480         * config/mips/iris6.h (SUBTARGET_ASM_DEBUGGING_SPEC): Only pass -g0
11481         for irix as.
11482         (SUBTARGET_ASM_OPTIMIZING_SPEC): Only pass O0 for irix as.
11483         * config/mips/iris6gas.h (MDEBUG_ASM_SPEC): Remove.
11484         * config/mips/iris5gas.h: Ditto.
11485         (DBX_DEBUGGING_INFO): Remove.
11486         (DWARF2_DEBUGGING_INFO): Ditto.
11487         (MIPS_DEBUGGING_INFO): Ditto.
11488         (PREFERRED_DEBUGGING_TYPE): Ditto.
11489         * config/mips/elf.h (DWARF2_DEBUGGING_INFO): Remove.
11490         (PREFERRED_DEBUGGING_TYPE): Ditto.
11491         (SUBTARGET_ASM_DEBUGGING_SPEC): Ditto.
11492         * config/mips/elf64.h: Ditto.
11493
11494 2004-01-06  Jan Hubicka  <jh@suse.cz>
11495
11496         * Makefile.in (STAGEPROFILE_FLAGS_TO_PASS): Use -fprofile-generate.
11497         (STAGEFEEDBACK_FLAGS_TO_PASS): Use -fprofile-use.
11498
11499 2004-01-06  Geoffrey Keating  <geoffk@apple.com>
11500
11501         * config/rs6000/t-darwin (LIB2FUNCS_EXTRA): Compile darwin-ldouble.c.
11502         (TARGET_LIBGCC2_CFLAGS): Use -mlong-double-128.
11503         * config/rs6000/darwin-ldouble.c: New.
11504
11505         * emit-rtl.c (gen_lowpart_common): Use simplify_gen_subreg
11506         for constants.
11507         (constant_subword): Delete.
11508         * rtl.h (constant_subword): Delete prototype.
11509         (immed_double_const): Is not in varasm.c.
11510         * simplify-rtx.c (simplify_immed_subreg): New.
11511         (simplify_subreg): Use simplify_immed_subreg.
11512
11513         * config/rs6000/rs6000.md (floatsitf2): Use expand_float rather
11514         than trying to generate RTL directly.
11515         (fix_trunctfsi2): Use expand_fix rather than trying to generate
11516         RTL directly.
11517
11518         * dwarf2out.c (add_const_value_attribute): Remove incorrect comment.
11519
11520 2004-01-06  David Edelsohn  <edelsohn@gnu.org>
11521
11522         * config/rs6000/xcoff.h (EXTRA_SECTION_FUNCTIONS): Split each
11523         function into a separate macro.
11524         (read_only_data_section): Add void argument.
11525         (private_data_section): Same.
11526         (read_only_private_data_section): Same.
11527         (toc_section): Same.
11528
11529 2004-01-06  Jan Hubicka  <jh@suse.cz>
11530
11531         * invoke.texi:  Remove typo in last change.
11532
11533         PR target/10301
11534         * config.gcc: Accept opteron and athlon-64 as variants
11535         of k8.
11536         * i386.c (override_options): Likewise.
11537         * invoke.texi (i386 -mtune): Expand documentation.
11538
11539 2004-01-06  Kazu Hirata  <kazu@cs.umass.edu>
11540
11541         * alias.c: Fix comment typos.
11542         * builtins.c: Likewise.
11543         * cfg.c: Likewise.
11544         * df.c: Likewise.
11545         * dominance.c: Likewise.
11546         * dwarf2out.c: Likewise.
11547         * emit-rtl.c: Likewise.
11548         * expr.c: Likewise.
11549         * final.c: Likewise.
11550         * fold-const.c: Likewise.
11551         * gcse.c: Likewise.
11552         * genattrtab.c: Likewise.
11553         * genrecog.c: Likewise.
11554         * gensupport.c: Likewise.
11555         * ggc-zone.c: Likewise.
11556         * integrate.c: Likewise.
11557         * local-alloc.c: Likewise.
11558         * loop.c: Likewise.
11559         * recog.c: Likewise.
11560         * regmove.c: Likewise.
11561         * reg-stack.c: Likewise.
11562         * reorg.c: Likewise.
11563         * rtlanal.c: Likewise.
11564         * rtl.h: Likewise.
11565         * sched-ebb.c: Likewise.
11566         * simplify-rtx.c: Likewise.
11567         * toplev.c: Likewise.
11568         * varasm.c: Likewise.
11569
11570 2004-01-06  Kazu Hirata  <kazu@cs.umass.edu>
11571
11572         * doc/install.texi: Fix typos.
11573         * doc/invoke.texi: Likewise.
11574         * doc/md.texi: Likewise.
11575
11576 2004-01-06  Kazuhiro Inaoka  <inaoka.kazuhiro@renesas.com>
11577
11578         * config/m32r/m32r.h (TRAMPOLINE_LINE_SIZE): Changed
11579
11580 2004-01-06  Jan Hubicka  <jh@suse.cz>
11581
11582         * i386.c (init_cumulative_args):  Add handling of MMX_REGPARM.
11583         (function_arg_advance):  Do not pass aggregates in SSE; deal handling
11584         of MMX_REGPARM.
11585         (function_arg): Add new warnings about ABI changes;  fix SSE_REGPARM;
11586         add MMX_REGPARM.
11587         * i386.h (ix86_args): Add mmx_words/mmx_regs/mmx_regno fields.
11588         (SSE_REGPARM_MAX): Default to 3 on i386 -msse ABI.
11589         (MMX_REGPARM_MAX): Similarly for -mmmx.
11590
11591 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11592
11593         * config/sh/linux.h: Fix comment formatting.
11594         * config/sh/netbsd-elf.h: Likewise.
11595         * config/sh/sh.c: Likewise.
11596         * config/sh/sh.h: Likewise.
11597         * config/sh/vxworks.h: Likewise.
11598
11599 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11600
11601         * system.h (ASM_OUTPUT_MAIN_SOURCE_FILENAME): Poison.
11602         * toplev.c (output_file_directive): Don't use
11603         ASM_OUTPUT_MAIN_SOURCE_FILENAME.
11604
11605 2004-01-05  Steven Bosscher <s.bosscher@student.tudelft.nl>
11606
11607         * toplev.c: Fix broken checkin of 2003-12-30.
11608
11609 2004-01-05  Daniel Berlin  <dberlin@dberlin.org>
11610
11611         * ggc-zone.c: Remove everything in #ifdef USING_MALLOC_PAGE_GROUPS
11612         (USING_MMAP): We don't support non-mmap.
11613         (struct alloc_chunk): Steal 1 bit from typecode, use it to mark
11614         large objects.
11615         (struct page_entry): Remove bytes_free.
11616         (struct page_table_chain): Remove.
11617         (struct globals): Remove page_table member.
11618         (loookup_page_table_entry): Function deleted.
11619         (set_page_table_entry): Ditto.
11620         (ggc_allocated_p): No longer need page table lookups.
11621         (ggc_marked_p): Ditto.
11622         (alloc_small_page): Don't care about bytes_free anymore.
11623         (alloc_large_page): Round up size.
11624         (ggc_alloc_zone_1): Mark large objects as such, and calculate
11625         their size the new way.
11626         Remove page table lookups and setting.
11627         (ggc_get_size): Calculate large object size the new way.
11628         (sweep_pages): Redo to account for fact that we no longer have
11629         bytes_free.
11630         (ggc_collect): No longer need to reincrement bytes_free.
11631         (ggc_pch_alloc_object): Handle new large objects properly.
11632         (ggc_pch_read): Put PCH stuff into it's own uncollected zone.
11633
11634 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11635
11636         * doc/invoke.texi: Remove a page break.
11637
11638 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11639
11640         * config/avr/avr.c (avr_output_function_prologue): Remove an
11641         extra pair of curly braces.
11642
11643 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11644
11645         * config/mn10300/mn10300.c: Fix comment formatting.
11646         * config/mn10300/mn10300.h: Likewise.
11647
11648 2004-01-05  Richard Kenner  <kenner@vlsi1.ultra.nyu.edu>
11649
11650         * tree.h: Update documentation on nothrow_flag.
11651         * print-tree.c (print_node): Print TREE_NOTHROW as "align-ok" for
11652         types.
11653
11654 2004-01-05  Kazu Hirata  <kazu@cs.umass.edu>
11655
11656         * doc/invoke.texi: Remove traces of dead ports.
11657
11658 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
11659
11660         * doc/invoke.texi: Add documentation for the MIPS -mexplicit-relocs
11661         option.
11662
11663 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
11664
11665         PR target/12945
11666         * coverage.c (coverage_counter_alloc): Set SYMBOL_FLAG_LOCAL for
11667         counter labels.
11668         * config/mips/mips.c (INTERNAL_SYMBOL_P): Delete.
11669         (mips_classify_symbol): Always treat SYMBOL_REF_FLAG as indicating
11670         string constants if TARGET_MIPS16.  Use SYMBOL_REF_DECL to check
11671         the binding of decl symbols, otherwise check SYMBOL_REF_LOCAL_P.
11672         (mips_symbol_insns): Don't trust the local/global classification.
11673         (m16_usym8_4, m16_usym5_4): Same mips16 change as mips_classify_symbol.
11674         (override_options): Make -mabicalls -fno-unit-at-a-time imply
11675         -mno-explicit-relocs.
11676         (mips_encode_section_info): Don't use SYMBOL_REF_FLAG to distinguish
11677         between local and global symbols.
11678
11679 2004-01-05  Richard Sandiford  <rsandifo@redhat.com>
11680
11681         * config/mips/mips-protos.h (mips_dangerous_for_la25_p): Declare.
11682         (mips_preferred_reload_class): Declare.
11683         * config/mips/mips.h (DANGEROUS_FOR_LA25_P): Replace with function.
11684         (EXTRA_CONSTRAINT): Update accordingly.
11685         (PREFERRED_RELOAD_CLASS): Use mips_preferred_reload_class.
11686         * config/mips/mips.c (mips_dangerous_for_la25_p): New function.
11687         (mips_preferred_reload_class): New function.  Prefer LEA_REGS if
11688         mips_dangerous_for_la25_p.
11689         (mips_secondary_reload_class): Use LEA_REGS rather than GR_REGS
11690         if mips_dangerous_for_la25_p.
11691
11692 2004-01-05  Bernardo Innocenti  <bernie@develer.com>
11693
11694         * config/m68k/m68k.c (output_andsi3): Fix signed/unsigned comparison
11695         warning.
11696
11697 2004-01-04  Nathanael Nerode  <neroden@gcc.gnu.org>
11698
11699         * configure.ac: Use AC_PROG_CPP_WERROR.
11700         * configure: Regenerate.
11701
11702 2004-01-04  Zack Weinberg  <zack@codesourcery.com>
11703
11704         * .cvsignore: Add autom4te.cache.
11705
11706 2004-01-04  Richard Sandiford  <rsandifo@redhat.com>
11707
11708         * doc/invoke.texi: Revamp documentation of MIPS options.  Remove
11709         -mabi=meabi, -mabi-fake-default, -mmips-as, -mgas, -mmips-tfile,
11710         -m4650, -mfix7000 and -(m)no-crt0.  Put endianness options first,
11711         then architecture options, then ABI options.  General rewording.
11712
11713 2004-01-04  Joseph S. Myers  <jsm@polyomino.org.uk>
11714
11715         PR c/3414
11716         * doc/extend.texi: Clarify definition of malloc attribute.
11717
11718 2004-01-04  Jan Hubicka  <jh@suse.cz>
11719
11720         * Makefile.in (cgraph.o, cgraphunit.o): Add intl.h dependency.
11721         * cgraph.c (create_edge, dump_cgraph): Update to use inline_failed
11722         * cgraph.h (cgraph_edge): Replace inline_call by inline_failed
11723         (cgraph_inline_p): Add extra argument reason.
11724         * cgraphunit.c: Minor formating fixes.
11725         cgraph_first_inlined_callee): New functions.
11726         (record_call_1): Record builtins too.
11727         (cgraph_analyze_function): Update inline_failed messages.
11728         (cgraph_mark_functions_to_output, cgraph_expand_function, cgraph_inlined_into,
11729         cgraph_inlined_callees, cgraph_estimate_growth): Update to use inline_failed.
11730         (cgraph_check_inline_limits): Likewise; Add argument reason.
11731         (cgraph_set_inline_failed): New static function.
11732         (cgraph_decide_inlining_of_small_function, cgraph_decide_inlining): Set
11733         reasons.
11734         (cgraph_inline_p): Add new argument reason.
11735         * tree-inline.c (expand_call_inline):  Update warning.
11736
11737 2004-01-03  Nathanael Nerode  <neroden@gcc.gnu.org>
11738
11739         * configure.ac: Replace AC_INIT, AC_OUTPUT, AC_CANONICAL_SYSTEM
11740         with modern equivalents.
11741         * configure: Regenerate.
11742
11743         * configure.ac: Replace gcc_AC_CHECK_TYPE with AC_CHECK_TYPE.
11744         * aclocal.m4 (gcc_AC_CHECK_TYPE): Remove.
11745         * configure: Regenerate.
11746
11747         * doc/install.texi: Note that 'gcc' is now a 2.57 directory.
11748
11749         * configure.in: Rename to configure.ac.
11750         * configure.ac: Renamed from configure.in; make minimum necessary
11751         changes for autoconf 2.5x.
11752         * aclocal.m4: Make minimum necessary changes for autoconf 2.5x.
11753         * configure: Regenerate with autoconf 2.57.
11754
11755 2004-01-03  Kazu Hirata  <kazu@cs.umass.edu>
11756
11757         * config/mips/linux.h: Fix comment formatting.
11758         * config/mips/mips.c: Likewise.
11759         * config/mips/mips.h: Likewise.
11760         * config/mips/mips.md: Likewise.
11761         * config/mips/netbsd.h: Likewise.
11762         * config/mips/windiss.h: Likewise.
11763
11764 2004-01-02  Richard Henderson  <rth@redhat.com>
11765
11766         * config/i386/i386.md (fp constant pool splitter): Reorg suppression
11767         for sse and 387; add suppression for mmx.
11768
11769 2004-01-02  Andrew Pinski  <pinskia@physics.uc.edu>
11770
11771         * loop.c (loop_optimize): Free all loops_info's mems.
11772
11773         * c-typeck.c (finish_init): Free spelling_base before
11774         setting it again.
11775
11776         * cfgloop.c (flow_loops_find): Always free the sbitmap
11777         headers.
11778
11779         * predict.c (estimate_probability): Free bbs after being
11780         done with it.
11781
11782 2004-01-02  Kazu Hirata  <kazu@cs.umass.edu>
11783
11784         * config/mn10300/mn10300.h (PREDICATE_CODES): Add
11785         const_8bit_operand and call_address_operand.
11786
11787 2004-01-02  Jan Hubicka  <jh@suse.cz>
11788
11789         * cgraphunit.c (cgraph_optimize_function):  Call optimize_inline_calls
11790         when there is nothing to inline but warnings are requested.
11791         (cgraph_decide_inlining):  Fix memory leak.
11792
11793 2004-01-02  Jan Hubicka  <jh@suse.cz>
11794
11795         * expr.c (store_constructor):  Fix pasto in previous patch.
11796
11797 2004-01-02  Kazu Hirata  <kazu@cs.umass.edu>
11798
11799         * config/i386/cygming.h: Fix comment formatting.
11800         * config/i386/djgpp.h: Likewise.
11801         * config/i386/gthr-win32.c: Likewise.
11802         * config/i386/i386-interix.h: Likewise.
11803         * config/i386/i386.c: Likewise.
11804         * config/i386/i386.h: Likewise.
11805         * config/i386/openbsd.h: Likewise.
11806         * config/i386/winnt.c: Likewise.
11807         * config/i386/xm-mingw32.h: Likewise.
11808
11809 2004-01-02  Joseph S. Myers  <jsm@polyomino.org.uk>
11810
11811         * doc/gcc.texi, doc/invoke.texi, doc/install.texi: Update
11812         copyright and last modification dates.
11813
11814 2004-01-02  Andreas Jaeger  <aj@suse.de>, Gerald Pfeifer  <gp@suse.de>
11815
11816         * doc/install.texi (Specific): Mention x86_64.
11817
11818 2004-01-01  Hans-Peter Nilsson  <hp@bitrange.com>
11819
11820         * builtins.c (expand_builtin_apply_args_1) [STACK_GROWS_DOWNWARD]:
11821         Call force_operand on plus_constant result.
11822
11823 2004-01-01  Jan Hubicka  <jh@suse.cz>
11824
11825         * expmed.c (store_bit_field, extract_bit_field): Use new named patterns
11826         * expr.c (store_constructor): Use vec_init pattern.
11827         * genopinit.c (optabs): Initailize vec_set/vec_extract/vec_init.
11828         * optabs.h (optab_index): ADD OTI_vec_set/OTI_vec_extract/OTI_vec_init
11829         (vec_set_optab, vec_extract_optab, vec_init_optab): New.
11830         * i386.md (vec_setv2df, vec_extractv2df, vec_setv4sf, vec_extractv4sf):
11831         New patterns.
11832         (sse2_unpc?pd): Fix pattern.
11833         (sse2_movlpd): Kill.
11834         (sse2_movsd): Deal with movlpd too.
11835         * i386.c (ix86_expand_builtin): Use sse2_movsd instead of sse2_movlpd.
11836         (ix86_expand_vector_init): New.
11837         * emmintrin.h (__mm_set_pd, __mm_set_ps): Use vector extensions.
11838         * md.texi (vec_set, vec_extract): Document
11839
11840 2003-12-31  Jan Hubicka  <jh@suse.cz>
11841
11842         PR opt/13473
11843         * recog.c (validate_replace_rtx_1):  Take care for RTL sharing inside
11844         ASM input operands
11845
11846         PR opt/12617
11847         * toplev.c (dump_file_index): Reorder ce3 and bbro.
11848         (dump_file): Likewise.
11849         (rest_of_compilation): Likewise.
11850
11851         PR debug/13367
11852         * cgraph.c (cgraph_function_possibly_inlined):  Even with
11853         flag_really_no_inline we inline always_inline functions.
11854         * cgraphunit.c (cgraph_analyze_function): Clear inlinable flag
11855         for non-always_inline functions when there is flag_really_no_inline.
11856         (cgraph_decide_inlining): Limit work done when not inlining.
11857         (cgraph_decide_inlining_incrementally): Likewise.
11858         (cgraph_optimize_function): Check whether something got inlined.
11859         * c-objc-common.c (c_disregard_inline_limits): Do not always inline
11860         extern inline functions when not inlining.
11861
11862         * opts.c (decode_options):  Disable crossjumping at -O1
11863         * invoke.texi (-O1): Document change.
11864
11865 See ChangeLog.10 for earlier changes.